#contact {
    position: relative;
    margin-top: -50px;
    border-top: 6px solid #FF7F50;
}

#contact::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: -6px;
    right: 0;
    background: linear-gradient(to left top, rgba(22, 18, 76, 0.5), rgba(255, 127, 80, 0.5)), url('../img/tisae-contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    clip-path: polygon(30% 0, 100% 100%, 100% 0);
}

.contact {
    position: relative;
    padding: 60px 60px 0 60px;
    max-width: 50vw;
    margin-left: 4vw;
    z-index: 1;
}

.contact-title {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
}

.contact-form label {
    width: 100%;
    margin: 16px 0;
}

label.medium-label {
    width: calc(50% - 16px);
}

label.medium-label.margin-right {
    margin-right: 32px;
}

.contact-form-send {
    background-color: #16124C;
    width: 100%;
    margin-top: 16px;
}

.contact-form-send:hover {
    background-color: #1b186e;
}

.contact-form-send:disabled {
    background-color: grey;
}

.rgpd {
    color: #16124C;
    font-weight: 100;
}

input.rgpd {
    display: inline;
    height: auto;
    width: auto
}

/*---- RESPONSIVE ----*/

@media screen and (max-width: 1200px) {
    .contact {
        max-width: 65vw;
        margin-left: 0;
    }
}

@media screen and (max-width: 992px) {
    .contact, #contact {
        position: inherit;
    }

    #contact::after {
        display: none;
    }

    .contact {
        background-color: white;
        max-width: none;
        margin-left: 0;
    }

    label.medium-label {
        width: 100%;
    }

    label.medium-label.margin-right {
        margin-right: 0;
    }
}
