.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    background: transparent;
    z-index: 9999;
    display: none;
    z-index: 99;
}

.contact-card-container{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 100px 30px;
}

.contact-card{
    display: block;
    flex: 0 0 auto;
    flex-basis: 30%;
    width: 30%;
    height: 400px;
    border: solid 1px #dadada;
    padding: 100px 30px 0;
    position: relative;
}

.contact-card h3{
    font-family: 'Montserrat';
    color: #b8967e;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
}

.contact-card-email{
    text-transform: lowercase !important;
    font-size: 25px !important;
}

.contact-card h1{
    color: #0a1e35;
    font-size: 35px;
    letter-spacing: .02in;
    font-family: 'dragon-serialregular';
    text-transform: capitalize;
    padding-top: 20px;
}

.contact-card img{
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.contact-form-container{
    display: flex;
    width: 100%;
    height: 160vh;
    padding: 0 60px 100px;
}

.contact-form{
    width: 50%;
    height: 100%;

}

.customer-service{
    width: 50%;
    height: 100%;
}

.sticky-image{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    object-fit: cover;
}

.form-heading{
    width: 60%;
    display: block;
}

.form-heading h1{
    color: #0a1e35;
    font-size: 50px;
    letter-spacing: .02in;
    font-family: 'dragon-serialregular';
}

.together{
    border-bottom: solid 3px #b8967e;
}

.form-heading h3{
    font-family: 'Montserrat';
    color: #0a1e35;
    font-weight: 500;
    font-size: 14px;
    padding: 40px 0;
}

.form input, .form textarea, select{
    display: block;
    width: 75%;
    margin: 30px auto;
    border: none;
    border-bottom: solid 1px #dadada;
    outline: none;
    padding: 20px 10px;
    font-size: 18px;
}

.form input::placeholder, .form textarea::placeholder{
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
}

.myButton{
    padding: 30px 25%;
}

#submit-bg{
    border: solid 1px #0a1e35;
}

#submit-btn:hover #submit-btn-text{
    color: #0a1e35;
}

#submit-btn:hover #submit-btn-icon{
    content: url(../../icons/right-blue.png);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (max-width: 1199px){
    .contact-card-container{
        display: block;
    }
    .contact-card{
        width: 100%;
        margin-top: 20px;
    }

    .contact-form-container{
        height: 180vh;
    }
}

@media screen and (max-width: 993px) {
    .contact-card-container{
        display: block;
    }

    .contact-card{
        width: 100%;
    }

    .contact-form-container{
        height: 100vh;
        padding: 0 20px 0;
    }

    .form-heading h1{
        font-size: 25px;
    }

    .form-heading h3{
        font-size: 12;
    }

    .form input, .form textarea{
        width: 90%;
        padding: 20px 0;
    }

    .customer-service{
        height: 80%;
    }
}

@media screen and (max-width: 600px) {
    .contact-card-container{
        padding: 30px 10px;
    }

    .contact-card{
        width: 100%;
        flex-basis: 100%;
        padding: 50px 20px;
        height: fit-content;
    }

    .contact-card h3{
        font-size: 15px;
        z-index: 9;
    }

    .contact-card h1{
        font-size: 25px;
        z-index: 9;
    }

    .contact-card img{
        width: 50px;
        right: 10px;
        bottom: 10px;
    }

    .contact-form-container{
        width: 100%;
        padding: 30px 10px;
        height: fit-content;
    }

    .customer-service{
        display: none;
    }

    .contact-form{
        width: 100%;
        height: fit-content;
    }

    .myButton{
        padding: 20px 0;
    }
    .form-heading{
        width: 100%;
    }

    .form-heading h1{
        font-size: 25px;
    }

    .form-heading h3{
        font-size: 12px;
    }

    .form input, .form textarea{
        width: 85%;
    }
    
    
}

@media only screen and (max-width: 717px) and (max-height: 512px){
    .contact-form-container{
        height: 200vh;
    }
}

@media only screen and (max-width: 1024px) and (max-height: 600px){
    .contact-form-container{
        height: 200vh;
    }

    .contact-card-container{
        display: block;
    }

    .contact-card{
        width: 100%;
    }

}

@media only screen and (max-width: 1024px) and (min-height: 1366px){
    .contact-form-container{
        height: 90vh;
    }

    .form input, .form textarea{
        width: 90%;
    }
}