


/* Section */
.contact{
    padding-top: 107px;
}

.contact-hero{
    height: 50vh;
    background-image: url('../images/contact-us2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}


/* .hero-contact{
    height: 50vh;
    background-image: url('../images/contact-us2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
} */

/* .contact h1{
    color: whitesmoke;
    position: absolute;
    left: 40%;
    top: 32%;
} */


section{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 35px;
    padding-top: 20px;
}

.vl {
    border-left: 2px solid yellowgreen;
    height: 830px;
  }

hr{
    color: yellowgreen;
}

.headEr{
    text-align: center;
    padding: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
    font-weight: 800;
    font-size: 22pt;
    color: yellowgreen;

}

.contact-sec{
    display: flex;
    justify-content:space-evenly;
    padding-top: 20px;
}

.info{
    width: 33%;
}

.info p{
    padding: 7px;
    margin: 7px;
    color: gray;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 13pt;
}

span{
    color: yellowgreen;
    text-transform: uppercase;
}

/* Form */

.form-div{
    padding: 20px;
}

.form-div label{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: yellowgreen;
    font-size: 14pt;
}

.form-div p{
   margin-bottom: 40px;
}

.form-div input{
    padding: 9px;
    font-size: 13pt;
    border: none;
    border-bottom: 2px solid yellowgreen;
    outline: none;
    color: gray;
}

.form-div input:focus{
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(93, 128, 22);
}

textarea{
    color: gray;
    outline: none;
    border-color: rgb(190, 245, 81);
    padding: 10px;
    font-size: 13pt;
}

textarea:focus{
    border-color: lawngreen;
}

button{
    margin: 10px;
    padding: 12px 25px;
    font-size: 15pt;
    border: none;
    background-color: black;
}


button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
button:hover span {
    padding-right: 25px;
  }
  
button:hover span:after {
    opacity: 1;
    right: 0;
  }



/* responsiveness */

@media screen and (max-width: 900px){
    .contact{
        width: 100%;
        padding-top: 75px;

    }

    .contact{
        padding-top: 108px;
    }

    .contact-hero{
        background-image: url('../images/contact-us-a.jpg');
    }

    .contact-sec{
        display: block;
    }

    .info{
        width: 100%;
        margin-bottom: 70px;
    }

    .info p{
        font-size: 12pt;
    }

    .headEr{
        padding: 0px;
        margin: 0px;
        font-size: 14pt;
    }

    .form-div{
        padding: 20px;
        border: 1px solid rgba(172, 255, 47, 0.331);
    }


    .vl{
        display: none;
    }
}



@media screen and (max-width: 400px){
    .contact-hero{
        background-image: url('../images/contact-us2a.jpg') !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        height: 35vh;
    }

    .contact-sec{
        padding-top: 0px;
    }

    .headEr{
        padding: 0px !important;
        margin: 0px !important;
        font-size: 11pt !important;
        padding-top: 0px !important;
    }

}