.contact-form{
    background-color:var(--orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 80px 0px;
    & h3{
        color:var(--white);
        font-size:2.5rem;
        font-family:'ProximaNovaSemiBold';
        line-height:1;
        width:100%;
}
}

#wpcf7-f16-o1{
    width:80%;
}

.contact__form__container{
    display:flex;
    flex-direction: row-reverse;
    padding: 50px 0 0 0;
    justify-content: center;
    gap:30px;
    & p{
        color:var(--white);
        margin:0;
        font-size:0.9rem;
        font-family: 'ProximaNovaSemiBold';
    }
}

.form__content__left{
    width:50%;
}

.form__content__right{
    width:50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

textarea{
    height: 236px;
    width: 100%;
    border:none;
    font-family: 'ProximaNovaLight';
    font-size: 0.9rem;
    padding-top:10px;
    text-indent:10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
}

input{
    border:none;
    height:50px;
    width:100%;
    font-family: 'ProximaNovaLight';
    margin: 10px 0;
    font-size: 0.9rem;
    text-indent:10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
}

.form__input{
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form__infos{
    & p{
        font-size:0.8rem;
        line-height:1.2;
    }
}

.submit__button{
    display: flex;
    justify-content: center;
    flex-direction: column;
    & p{
        width:60%;
    }
    & input{
    width: 100%;
    border: 1.5px solid var(--white);
    background-color: var(--orange);
    border-radius: 50px;
    transition:all 0.2s;
    cursor:pointer;
    color: var(--white);
    font-family: 'ProximaNovaSemiBold';
    &:hover, :focus, :active{
        border: 1.5px solid var(--orange);
        background-color: var(--white);
        color: var(--orange);
    }
    }
}

.wpcf7 form .wpcf7-response-output{
    font-family: 'ProximaNovaLight';
    color: var(--white);
    font-size: 0.9rem;
}


/* ------------------------ responsive ---------------------- */
@media screen and (max-width:1024px){
.submit__button {
  & p {
    width: 100%;
    & input{
        height:45px;
    }
  }
}
}

@media screen and (max-width:768px){
    .contact-form{
        padding: 30px 50px 0px 50px;
        & h3{
            font-size:2rem;
        }
    }

    #wpcf7-f16-o1{
        width:100%;
    }
}

@media screen and (max-width:480px){
    .contact-form{
        padding:30px 30px 0 30px;
        & h3{
            font-size:1.8rem;
        }
    }

    input{
        height:40px;
    }

    textarea{
        height:180px;
    }

    #wpcf7-f16-o1{
        width:100%;
    }

    .contact__form__container{
        flex-direction:column-reverse;
        gap:0;
    }

    .form__content__left, .form__content__right{
        width:100%;
    }

    .submit__button{
        padding-top:15px;
    }
}