/* ==========================================
   CONTACT PAGE
========================================== */

.contact-info h2{
    margin-bottom:20px;
}

.contact-box{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.contact-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eaf6eb;
    color:#2E7D32;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.contact-box h5{
    margin-bottom:5px;
    font-weight:700;
}

.contact-box p{
    margin:0;
    color:#666;
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.contact-form .form-control{
    height:55px;
    border-radius:12px;
}

.contact-form textarea.form-control{
    height:auto;
}

.map-box{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

@media(max-width:768px){

    .contact-form{
        padding:25px;
    }

}