.form-section .col {
    display: block;
    text-align: center;
    max-width: 860px;
}

.paralax.form-section .h1 {
    color: white;
    margin: 0;
    font-size: 20px;
    opacity: 0;
    transform: translateX(0px) translateY(-30px);
    transition: all 0.6s ease-in-out;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 0 #c3a03d;
}

.paralax.form-section.anim .h1 {
    opacity: 1;
    transform: translateX(0px) translateY(0px);
}

.paralax.form-section .h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #c3a03d;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.paralax.form-section .h2 {
    color: white;
    font-weight: 600;
    font-size: 50px;
    opacity: 0;
    transform: translateX(0px) translateY(30px);
    transition: all 0.6s ease-in-out;
    
}

.paralax.form-section.anim .h2 {
    opacity: 1;
    transform: translateX(0px) translateY(0px);
}

.paralax.form-section .text-description  {
        opacity: 0;
    transform: translateX(0px) translateY(30px);
    transition: all 0.6s ease-in-out;
}

.paralax.form-section .text-description p {
    color: white;
    font-size: 18px;
    line-height: 160%;
    opacity: 0.75;
}

.paralax.form-section.anim .text-description  {
    opacity: 1;
    transform: translateX(0px) translateY(0px);
}

.form-section .contact-form {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease-in-out;
    width: 100%;
}

.form-section.anim .contact-form {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.6s;
}


.form-section .field1 {
    width: 50%;
    padding-right: 12px;
}

.form-section .field2 {
    width: 50%;
    clear: none;
    padding-left: 12px;
}

.form-section .button {
    margin-bottom: 0;
}



@media screen and (max-width: 890px) {
    .paralax.form-section .h2 {
        font-size: 32px;
    }

}    


@media screen and (max-width: 540px) {


    .form-section .field1 {
        width: 100%;
        padding-right: 0;
    }

    .form-section .field2 {
        width: 100%;
        padding-left: 0;
    }

}