/*=========================================
CONTACT FORM + MAP SECTION
=========================================*/
#hero {
   min-height: 80vh;
}

.contact-section{
    padding:50px 0;
    background:#f8f9fb;
}

.contact-card,
.map-card{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
    border:1px solid rgba(0,0,0,.05);
    
}

.contact-card-title{
    font-size:32px;
    font-weight:700;
    color:var(--navy);
    margin-bottom:12px;
}

.contact-card-sub{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:30px;
    font-size:.95rem;
}

/* FORM */

.contact-card .form-control{
    height:58px;
    border-radius:10px;
    border:1px solid #d8dee7;
    padding:0 18px;
    font-size:.95rem;
    transition:.3s;
    box-shadow:none;
}

.contact-card .form-control:focus{
    border-color:#007363;
    box-shadow:0 0 0 .18rem rgba(0,115,99,.12);
}

/* BUTTON */

.btn-submit{
    width:100%;
    height:58px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#007363,#009580);
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.btn-submit:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,115,99,.25);
}

/* MAP */

.map-card{
    padding:15px;
    overflow:hidden;
}

.map-card iframe{
    width:100%;
    
    
    border:none;
    border-radius:18px;
    display:block;
}

/* Section Heading */

.contact-section .section-title{
    margin-bottom:0;
}

.contact-section .section-eyebrow{
    margin-bottom:12px;
}

/*=========================================
TABLET
=========================================*/

@media (max-width:991px){

.contact-section{
    padding:70px 0;
}

.contact-card,
.map-card{
    padding:28px;
}

.contact-card-title{
    font-size:28px;
}



}

/*=========================================
MOBILE
=========================================*/

@media (max-width:767px){
.hero-title {
    font-size: 35px;
}
p.mb-none {
    display: none;
}
.contact-section{
    padding:30px 0;
}
#why {
    padding: 30px 0;
}

.contact-card,
.map-card{
    padding:20px;
    border-radius:18px;
}

.contact-card{
    margin-bottom:25px;
}

.contact-card-title{
    font-size:24px;
}

.contact-card-sub{
    font-size:.9rem;
    margin-bottom:22px;
}

.contact-card .form-control{
    height:52px;
}

.btn-submit{
    height:52px;
}

.map-card{
    padding:10px;
}

.map-card iframe{
    min-height:320px;
    border-radius:12px;
}
#about {
  
    padding: 30px 0 20px;
}

}