#banner{
    width: 100%;
    height: 400px;

    display: flex;
    justify-content: center;
    align-content: center;


    background-image: url("../img/employment.webp");
    background-position: start left;
    background-repeat: no-repeat;
    background-size: cover;
}

#banner h3{
    font-family: var(--paci);
    font-size: 4em;
    width: 40%;

    margin-top: 150px;
    margin-left: auto;
    margin-right: 30px;
}

#contact-section{
    width: 80%;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;

    margin-left: auto;
    margin-right: auto;
}

#contact-title{
    /* font-family: var(--lato); */
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    width: 90%;
    /* margin-left: 250px; */
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 2.6em;
}

#contact-left{
    width: 90%;
    height: 100%;
    /* background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url("../img/contact-2.jpg"); */
    background-position:center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: wrap;

    /* padding-bottom: 50px; */
    /* padding-top: 50px; */
}

#contact-right{
    width: 100%;
 
    
    background-image: url('../img/contact.jpeg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;



}

@media (min-width:1910px) {
    #contact-right{
        min-height: 918px;
    }
}

#contact-right img{
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: top;
}

#contact-phone{
    width: 51%;
    color:#333;
    /* font-family: var(--mont); */
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.4em;
}

#contact-phone a{
    color: var(--orange);
   text-decoration: none;
   font-weight: bolder;
   height: 70px;
}

#contact-phone a:hover{
    text-decoration: underline;
}

#contact-email{
    width: 51%;
    color: #333;
    /* font-family: var(--mont); */
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.4em;
}

#contact-email a{
   color: #666;
   text-decoration: none;
   font-weight: bolder;
}

#contact-email a:hover{
    text-decoration: underline;
    
}


@media (max-width:1000px) {
    #contact-left{
        width: 100%;
    }

    #contact-title{
        margin-left: 10px;
        text-align: center;
    }

    #contact-phone{
        width: 90%;
    }

    #contact-email{
        width: 90%;
    }

    #contact-right{
        width: 100%;
        min-height: 300px;
    }

    #contact-section .estimate-form{
        margin-left: 10px;
        width: 90%;
    }
}


.contact{
    width: 100%;
    margin-top: 38px;
    height: max-content;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding-bottom: 100px;
    /* align-items: flex-start; */

    /* background-color: aquamarine; */

}

.contact p{
    width: 50%;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--popp);
    margin-bottom: 30px;
    font-size: 1.2em;
}

.contact p b{
    font-size: 2em;
    color: var(--blue);
}

.estimate-form{
    width: 60%;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding: 30px;
    padding-right: 50px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    scroll-snap-align: center;
}

.estimate-form label{
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: var(--popp);
    font-size: 1.2em;
}

.estimate-form label input, .estimate-form label select{
    width: 100%;
    height: 40px;
    outline: none;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    font-family: var(--popp);
    padding-left: 15px;
    font-size: 1em;
}

.estimate-form select{
    width: 103% !important;
}

.estimate-form textarea{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    outline: none;
    border: 1px solid #ddd;
    min-height: 100px;
    max-height: 210px;
    font-family: var(--popp);
    padding: 15px 0px 15px 15px;
}



.estimate-form button{
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 5px;
    text-transform: capitalize;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    background-color: var(--);
}

.estimate-form button:hover{
    background-color: var(--blue);
    color: #fff;
    cursor: pointer;
}

.grecaptcha-badge { 
    visibility: hidden;
}

/* .contact-form{
    width: 100%;
    height: 500px;
    background-color:crimson;
    position: -webkit-sticky;
    top: 0;
    position: sticky;
    display: flex;
} */

@media (min-width: 760px) and (height:1024px){
    #banner h3{
        margin-top: 100px;
    }
}


@media (min-width: 300px) and (max-width:760px){
    #banner h3{
        margin-left: 30px;
        margin-right: auto;
        margin-top: 100px;
        line-height: 75px;
    }

    .contact p{
        width: 90%;
    }

    .contact p b{
        word-break: break-all;
    }

    #contact-section{
        width: 90%;
    }
}

