#hero{
    width: 100%;
    height: 400px;
    background: url(images/banner.jpg);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px;
    margin-top: 65px;
    color: #000;
}
#hero h2{
    font-size: 45px;
    font-weight: bolder;
    margin-bottom: 18px;
    color: #000;
}

#contact{
    width: 100%;
    padding: 50px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
#contact .left{
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
#contact .left h4{
    color: #9AC03E;
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}
#contact .left p{
    width: 60%;
}
#contact .left .map{
    width: 90%;
    height: 280px;
    margin-top: 16px;
}
#contact .left .map iframe{
    width: 100%;
    height: 100%;
}

#contact .right{
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact .right form{
    width: 100%;
    border: 1px solid rgba(128, 128, 128, 0.315);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
#contact .right form h3{
    font-size: 30px;
    font-weight: bold;
    color: #9AC03E;
}
#contact .right form input{
    width: 100%;
    padding: 14px 18px;
    margin: 12px 0px;
    border: 1px solid rgba(128, 128, 128, 0.301);
    outline: none;
    border-radius: 8px;
    font-size: 15px;
}
#contact .right form textarea{
    width: 100%;
    padding: 14px 18px;
    margin: 12px 0px;
    border: 1px solid rgba(128, 128, 128, 0.301);
    outline: none;
    border-radius: 8px;
    font-size: 15px;
}

#contact .right form input[type="submit"]{
    width: 100%;
    background-color: #9AC03E;
    color: white;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}
#contact .right form input[type="submit"]:hover{
    background-color: #628315;
}
#contact .right form input[type="submit"]:active{
    scale: 0.9;
}


@media (max-width:799px){
    #contact{
        padding: 40px 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #hero{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #hero h2{
        font-size: 40px;
    }
    #contact .left{
        width: 100%;
    }
    #contact .right{
        width: 100%;
        margin-top: 22px;
    }
}