/*===================================
PAGE BANNER
===================================*/

.page-banner{
    padding:120px 0;
    background:
    linear-gradient(
    rgba(5,63,126,.85),
    rgba(5,63,126,.85)
    ),
    url('../images/bg-img.jpg');

    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-family:'Outfit',sans-serif;
    font-size:60px;
    font-weight:800;
    margin-bottom:15px;
}

.breadcrumb-nav{
    font-size:16px;
}

.breadcrumb-nav a{
    color:#16D3D3;
    text-decoration:none;
}

.breadcrumb-nav span{
    margin:0 8px;
}


/*===================================
COMMON
===================================*/

.section-badge{
    display:inline-block;
    background:#EAFDFC;
    color:#053F7E;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title{
    font-family:'Outfit',sans-serif;
    font-size:48px;
    font-weight:800;
    color:#053F7E;
    margin-bottom:20px;
}


/*===================================
CONTACT INFO SECTION
===================================*/

.contact-info-section{
    background:#fff;
}

.contact-info-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.contact-info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.contact-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:20px;
    background:linear-gradient(
    135deg,
    #053F7E,
    #16D3D3
    );
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    font-size:32px;
    color:#fff;
}

.contact-info-card h4{
    font-family:'Outfit',sans-serif;
    color:#053F7E;
    font-weight:700;
    margin-bottom:15px;
}

.contact-info-card p,
.contact-info-card a{
    color:#666;
    text-decoration:none;
    line-height:1.8;
}


/*===================================
CONTACT FORM SECTION
===================================*/

.contact-form-section{
    background:#f8fbff;
}

.contact-content p{
    color:#666;
    line-height:1.9;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #dbe4ec;
    box-shadow:none;
}

.form-control:focus{
    border-color:#16D3D3;
    box-shadow:none;
}

textarea.form-control{
    height:auto;
    resize:none;
}

.submit-btn{
    width:100%;
    border:none;
    padding:15px;
    border-radius:50px;
    background:linear-gradient(
    135deg,
    #053F7E,
    #16D3D3
    );
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-3px);
}


/*===================================
MAP SECTION
===================================*/

.map-section{
    line-height:0;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
}


/*===================================
CTA SECTION
===================================*/

.contact-cta{
    padding:100px 0;
    background:#fff;
}

.cta-box{
    background:linear-gradient(
    135deg,
    #053F7E,
    #16D3D3
    );
    padding:70px 50px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-family:'Outfit',sans-serif;
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    line-height:1.9;
}

.appointment-btn{
    display:inline-block;
    background:#fff;
    color:#053F7E;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.appointment-btn:hover{
    transform:translateY(-3px);
    color:#053F7E;
}


/*===================================
RESPONSIVE
===================================*/

@media(max-width:991px){

    .page-banner{
        padding:90px 0;
    }

    .page-banner h1{
        font-size:42px;
    }

    .section-title{
        font-size:36px;
    }

    .contact-form-box{
        padding:30px;
    }

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .page-banner h1{
        font-size:32px;
    }

    .section-title{
        font-size:28px;
    }

    .contact-info-card{
        padding:30px 20px;
    }

    .contact-form-box{
        padding:25px;
    }

    .map-section iframe{
        height:350px;
    }

    .cta-box{
        padding:40px 20px;
    }

    .cta-box h2{
        font-size:28px;
    }

    .cta-box p{
        font-size:15px;
    }

}