/********** Template CSS **********/
/* Custom Css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Quicksand:wght@300..700&display=swap');


.quicksand-bold {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.quicksand-samibold {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.quicksand-ragular {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Fonts */
:root {
    --default-font: 'Poppins', sans-serif;
    --heading-font: "Quicksand", sans-serif;
    --nav-font: 'Poppins', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {
    --primary-color: #2490eb;
    --primary-dark-color: #14457b;
    --dark-color: #18100f;
    --secondary-color: #666666;
    --grey-color: #f4f6f9;
    --white-color: #ffffff;
    --primary-light-color: #e8e8ff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

.form-control::-webkit-input-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* Chrome/Opera/Safari */
    color: rgb(216, 216, 216);
    font-size: 14px;
    font-family: var(--default-font);
    font-weight: 300 !important;
}

.form-control::-moz-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* Firefox 19+ */
    color: rgb(216, 216, 216);
    font-size: 14px;
    font-family: var(--default-font);
    font-weight: 300 !important;
}

.form-control:-ms-input-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* IE 10+ */
    color: rgb(216, 216, 216);
    font-size: 14px;
    font-family: var(--default-font);
    font-weight: 300 !important;
}

.form-control:-moz-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* Firefox 18- */
    color: rgb(216, 216, 216);
    font-size: 14px;
    font-family: var(--default-font);
    font-weight: 300 !important;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
    color: var(--primary-dark-color);
    font-family: var(--default-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

.content-block {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--subheader-color), transparent 25%);
    text-decoration: none;
}

ul {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-dark-color);
    font-family: var(--heading-font);
    font-weight: 600 !important;
}

.tag-header,
.header-box h5 {
    background-color: var(--primary-light-color);
    color: var(--primary-color);
    font-size: 15px;
    padding: 6px 20px;
    font-weight: 500;
    font-family: var(--default-font);
    border-radius: 5px;
    line-height: normal !important;
    margin-bottom: 20px;
}

.tag-header.light-tag {
    background-color: #fff !important;
}

.header-box h2 {
    font-size: 48px;
    line-height: 56px !important;
    margin-bottom: 20px;
}

.header-box p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.section-gap {
    padding: 100px 0;
}

.top-header-right a,
.social-link-top {
    color: var(--grey-color);
    font-size: 13px;
    font-weight: 500;
}

.social-link-top a {
    color: var(--grey-color);
}



.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-theme {
    background-color: var(--primary-color) !important;
    border-radius: 6px;
    font-weight: 600;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    padding: 12px 26px !important;
}

.btn.btn-theme:hover {
    background-color: var(--primary-color) !important;
}

.btn.btn-dark-theme {
    background-color: var(--dark-color) !important;
    border: 0;
    border-radius: 3px !important;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

header.sticky-top {
    background-color: var(--light);
}

.header-top {
    background-color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

a.navbar-brand img {
    max-width: 180px;
}

/* Hero Slider */
.overlay-banner.position-absolute {
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}

.service-item {
    position: relative;
    padding: 30px 20px;
    transition: .5s;
    border-right: 1px solid var(--primary-light-color);
    border-bottom: 1px solid var(--primary-light-color);
}

.service-item:hover {
    background-color: var(--grey-color) !important;
}

.my-service-box:nth-child(4) .service-item,
.my-service-box:last-child .service-item {
    border-right: 0 !important;
}

.service-item .service-icon {
    max-width: 72px;
}

.service-item:hover .service-icon {
    transform: rotate(0deg);

}

.service-item:hover .service-icon img {
    transform: rotateY(180deg);
    transition: all 0.5s ease;
}

.service-item .service-icon img {
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.service-item p {
    color: var(--secondary-color);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.price-carousel .owl-nav,
.award-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-slider .owl-dots {
    bottom: 30px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    position: absolute;
}

.hero-slider .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    background-color: var(--light);
    border-radius: 50%;
    display: block;
    margin: 0 4px;
    transition: all 0.3s ease-in-out 0s;
}

.hero-slider .owl-dots .owl-dot.active span {
    width: 30px;
    border-radius: 15px;
    background-color: var(--light);

}

option {
    color: #000;
}

.partnet-img {
    padding: 15px;
    border-radius: 5px;
    position: relative;
    background-color: var(--primary-light-color);
}

.partnet-img img {
    max-width: 180px;
    margin: auto;
    max-height: 68px;
    width: auto !important;
}

.partnet-img::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 30%;
    top: 0;
    left: 0;
    border-left: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
}

.partnet-img::before {
    content: "";
    position: absolute;
    width: 30%;
    height: 30%;
    bottom: 0;
    right: 0;
    border-right: 2px solid var(--primary-dark-color);
    border-bottom: 2px solid var(--primary-dark-color);
}



.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next,
.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next,
.award-carousel .owl-nav .owl-prev,
.award-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    font-size: 18px;
    border-radius: 3px;
    transition: .5s;
    opacity: 0.4;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
}

.hero-slider .owl-nav .owl-prev {
    left: 30px;
}

.hero-slider .owl-nav .owl-next {
    right: 30px;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover,
.hero-slider .owl-nav .owl-prev:hover,
.hero-slider .owl-nav .owl-next:hover,
.award-carousel .owl-nav .owl-next:hover,
.award-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
}

@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.home-about .about-one {
    max-width: 24vw;
}

.about-two {
    position: absolute;
    bottom: 0px;
    right: 3vw;
    width: 17vw !important;
    z-index: 0;
    height: auto !important;
}

ul.about-home-list li span {
    color: var(--primary-color);
    font-size: 30px;
    margin-right: 15px;
    line-height: 1;
}

ul.about-home-list li {
    display: flex;
    align-items: center;
}


/* Feature Box */
.feature-box {
    background: var(--primary-color);
    padding: 25px 30px 40px;
    transition: all 0.2s ease-in-out 0s;
    margin-top: -100px;
}

.feature-box:hover {
    margin-top: -120px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.feature-box.sacond-color {
    background-color: var(--primary-dark-color);
}

.feature-box .feature-icon {
    width: 72px;
    margin-bottom: 20px;
}

.feature-box h5 {
    color: var(--primary-light-color);
    font-size: 30px;
    margin-top: 0px;
}

.feature-box p,
.feature-box ul.open-hrs li {
    color: var(--primary-light-color);
    border-color: var(--primary-color) !important;
}


.feature-box .contact-action span {
    font-size: 24px;
    background-color: var(--primary-light-color);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-right: 15px;
}

.feature-box .contact-action.d-flex.mt-5 a.phone {
    color: var(--primary-light-color);
    font-size: 28px;
    line-height: 50px;
    margin: 0;
}

.feature-box .day-open {
    color: #fff;
    font-weight: 400;
    padding-bottom: 6px;
}

section.feature-block {
    position: relative;
    z-index: 1010;
}

.home-about {
    background-color: var(--grey-color);
}

.price-block {
    background-color: var(--grey-color);
    padding-bottom: 350px;
}

section.appointment {
    margin-top: -240px;
    padding-bottom: 100px;
}

.service-slider {
    margin-top: 30px;
    transition: all 0.3s ease-in-out 0s;
    border: 5px solid #fff;
}

.price-carousel .owl-item.active.center .service-slider {
    margin-top: 0px;
    border-color: var(--primary-color);
}

.bg-white.service-slider .price-thmb {
    max-height: 220px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: var(--grey-color);
}

.bg-white.service-slider .price-thmb .price-box {
    position: absolute;
    bottom: 0;
    background: var(--primary-color);
    color: #fff;
    right: 0;
    padding: 5px;
    font-size: 26px;
}

.bg-white.service-slider .price-thmb .price-box small {
    font-size: 16px;
}

.price-carousel .owl-item .service-slider ul li {
    margin-bottom: 10px;
}

.price-carousel .owl-item .service-slider ul li span {
    font-size: 28px;
    margin-right: 5px;
    line-height: 1;
    top: 6px;
    position: relative;
}


.appointment .primarybackground {
    background-color: var(--primary-color);
    position: relative;
}

.appointment .primarybackground::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    display: inline-block;
    width: 1000%;
    height: 100%;
    z-index: 1;
    background: var(--primary-color);
}

.lady-doc {
    margin: -80px 0 0 20px;
    max-width: 320px;
}









.team-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary-color);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.team-carousel .team-item {
    margin-bottom: 25px;
}

.team-carousel .team-item .social-links {
    position: absolute;
    top: -100px;
    background: #2390eb;
    padding: 7px 14px;
    right: 15px;
    font-size: 20px;
    opacity: 0;
    transition: all 0.6s ease-in-out 0s;
}

.team-carousel .team-item:hover .social-links {
    top: 10px;
    opacity: 1;
}

.team-carousel .team-item .social-links a {
    color: #fff;
    margin: 7px 0;
}



.team-carousel .team-item .doctor-info {
    background: #fff;
    width: 90%;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10);
    margin: -30px auto 0;
    position: relative;
    padding: 20px;
    text-align: center;
}

.doctor-image {
    min-height: 472px;
    background: #f5f5f5;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


.testimonial-carousel .owl-dots,
.team-carousel .owl-dots,
testimonial-carousel .owl-dots,
.casestudies-carousel .owl-dots,
.partner-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casestudies-carousel .owl-dots {
    justify-content: start !important;
    margin-left: 20px;
}

.testimonial-carousel .owl-dot,
.team-carousel .owl-dot,
testimonial-carousel .owl-dot,
.casestudies-carousel .owl-dot,
.partner-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active,
.team-carousel .owl-dot.active,
testimonial-carousel .owl-dot.active,
.casestudies-carousel .owl-dot.active,
.partner-carousel .owl-dot.active {
    background: var(--secondary-color);
}

.testimonial-carousel .owl-item img {
    width: 92px;
    height: 92px;
}

.position-absolute.comma-icon {
    right: 60px;
    font-size: 80px;
    opacity: 0.2;
    bottom: 10px;
}

.btn-theme {
    background-color: var(--secondary) !important;
    color: #fff !important;
}

/* About Page */
.banner-content h2 {
    color: var(--primary-dark-color);
    font-size: 90px;
    font-weight: 700 !important;
}

.banner-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.banner-content h4 {
    font-size: 26px;
    display: inline-block;
    font-weight: 600 !important;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    font-family: var(--default-font);
}

.about-left-border {
    padding-right: 5%;
    border-right: 10px solid var(--primary-color);
    margin-right: 5%;
    background-color: var(--primary-light-color);
    height: 100%;
    display: flex;
    align-items: center;
}

.icon-about .fa {
    font-size: 30px;
}

.icon-about {
    text-align: center;
    background: #e8e8ff;
    padding: 15px;
    border-radius: 5px;
}

.goal-block {
    background-color: var(--primary-color);
}

.exprience-box {
    transition: all 0.3s ease-in-out 0s;
}

.exprience-box:hover {
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.30);
}

.ex-content h4 span {
    font-weight: 700;
    font-size: 32px;
    color: var(--primary-color);
}

.ex-content h4 {
    font-size: 16px;
}

.ex-content p {
    color: var(--dark-color);
    font-weight: 600;
}

.exprience-box .ex-icon {
    width: 42px;
}


ul.d-flex.flex-wrap.side-list li {
    width: 42%;
    margin: 0 7% 7px 0;
    font-size: 14px;
}

ul.d-flex.flex-wrap.side-list {
    margin: 30px 0 0 0;
}

.count-block h3 {
    font-size: 60px;
    line-height: 1;
    display: inline-block;
}

.count-block p {
    font-size: 20px;
}

.count-block {
    background-color: var(--light);
}

.count-block.text-end {
    border-bottom: 1px solid var(--light);
    margin-bottom: 25px;
}

.border-right-count {
    border-right: 5px solid var(--primary-color);
}

.border-left-count {
    border-left: 5px solid var(--primary-color);
    padding-left: 30px;
}

.contact-box {
    background: #fff;
    color: var(--primary-color);
    width: 100px;
    height: 70px;
    transform: rotate(-15deg);
}

.team-image {
    height: 100vh;
    max-height: 350px;
}

.bg-light.about-circle {
    width: 120px;
    height: 120px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}

.mission-box {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.mission-box h3 span img {
    width: 52px;
    margin-right: 7px;
}

.mission-box h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700 !important;
}

.mission-box p {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: justify;
}

.wards-item {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
}

.wards-item .award-img {
    width: 180px;
    margin: 15px auto 20px;
    min-height: 175px;
    display: flex;
    align-items: center;

}

.wards-item p {
    text-align: center;
    font-size: 15px;
}

/* Service Page */
.services-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out 0s;

}

.services-box .service-icon {
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.services-box h4.mb-3.quicksand-bold {
    font-weight: 700 !important;
    font-size: 26px;
}

.services-box ul.service-features li {
    margin-bottom: 0px;
    font-size: 16px;
    color: #717171;
}

ul.service-features li span {
    font-size: 22px;
    color: #000;
    display: inline-block;
    margin-right: 6px;
    text-align: center;
    line-height: normal;
    border-radius: 50%;
    position: relative;
    top: 2px;
}

.services-box .service-icon img {
    transition: all 0.3s ease-in-out 0s;
}

.services-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services-box:hover .service-icon img {
    transform: scale(1.1);
}

.services-box p.price-service {
    position: absolute;
    bottom: 5%;
    z-index: 1000;
    background: var(--primary-color);
    color: #fff;
    height: 72px;
    font-size: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    right: 5%;
    font-weight: 600;
    padding: 0 25px;
    border-radius: 5px 25px;
    transition: all 0.3s ease-in-out 0s;
}

.services-box:hover p.price-service {
    border-radius: 15px;
}

.appointment-block {
    background-color: var(--primary-color);
}

.service-page-form .form-select,
.service-page-form .wpcf7-form.init input {
    background-color: var(--primary-light-color)
}

.service-page-form input[type="submit"] {
    background-color: var(--primary-color) !important;
    padding: 10px 20px !important;
    width: auto !important;
    color: var(--primary-light-color);
}

.wpcf7-spinner {
    position: absolute;
    bottom: 13px;
    z-index: 101010;
    left: 38px;
}






/* Form Style */
.wpcf7-form.init select,
.wpcf7-form.init input {
    height: 50px;
    padding-left: 15px;
}

.wpcf7-form.init p {
    margin: 0 !important;
}

.btn.btn-dark,
.btn.btn-outline-dark {
    color: #fff;
}

.home-page-form .form-select,
.home-page-form .wpcf7-form.init input {
    border-radius: 3px;
    background-color: #ffffff66;
    color: #fff;
}


.home-page-form .wpcf7-form.init input::-webkit-input-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* Chrome/Opera/Safari */
    color: rgb(255, 255, 255);

}

.home-page-form .wpcf7-form.init input::-moz-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* Firefox 19+ */
    color: rgb(255, 255, 255);
}

.home-page-form .wpcf7-form.init input:-ms-input-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* IE 10+ */
    color: rgb(255, 255, 255);
}

.home-page-form .wpcf7-form.init input:-moz-placeholder,
.form-control[type=file]:not(:disabled):not([readonly]) {
    /* Firefox 18- */
    color: rgb(255, 255, 255);
}

.testimonials {
    background-color: var(--grey-color);
}

.casestides-block {
    background-color: var(--grey-color);
}

.casestudies-image {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.casestudies-box {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.10);
}

.casestudies-box p {
    margin-top: 25px;
    color: var(--secondary-color);
}


/* Menu Humburger */
div#hamburger-1 {
    display: none;
}

.collapse.navbar-collapse.is-active {
    display: block !important;
}

.hamburger .line {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

.footer {
    background-color: var(--primary-dark-color);
}

.footer-bottom {
    background-color: var(--primary-color);
}

.footer-link h4 {
    color: #fff;
    font-size: 20px;
}

.footer-link a{
color: #9e9e9e;
}
.footer-link a i{color: #fff;font-size: 12px;}
.footer-link p {
    color: #9e9e9e;
}
a.btn-primary i{
color: #fff;
}
.footer-link a:hover {
    color: #fff;
}


/* Service Page */
.team-details-box {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
}

.team-details-box:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.team-details-box .team-image {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    padding: 4px;
}

.team-details-box .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crop instead of squish */
    border-radius: 50%;
}

.team-details-box .team-details h4 {
    font-size: 22px;
}

.team-details-box .team-details h6 {
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 5px;
}

ul.team-features {
    margin-left: 15px;
    min-height: 150px;
    margin-bottom: 25px;
}

ul.team-features li {
    font-size: 15px;
    color: var(--dark-color);
    margin-bottom: 0px;
    line-height: 1.2;
}

.social-team a {
    width: 34px;
    font-size: 16px;
    height: 34px;
    line-height: 1;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 0;
    color: #fff;
}

.social-team {
    position: absolute;
    bottom: -50px;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
    z-index: 30;
}

.team-details-box:hover .social-team {
    bottom: 45%;
    opacity: 1;
}

.team-details-box:hover .doctor-info {
    position: relative;
    z-index: 20;
}

.team-details-box::after {
    content: "";
    width: 0%;
    height: 0%;
    background-color: #32046ecb;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}

.team-details-box:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.team-details-box:hover .team-details h4,
.team-details-box:hover .team-details h6 {
    color: #fff !important;

}

ul.team-features li span {
    color: var(--primary-color);
    font-size: 24px;
    position: relative;
    top: 4px;
    margin-right: 10px;
}


/* Contact Page */
.contact-icon {
    font-size: 16px;
    background: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 15px;
}

.contact-image {
    margin-top: 100px;
    border-radius: 30px;
    overflow: hidden;
}

.contact-pg-form {
    background-color: var(--primary-color);
    padding: 40px
}

/* RESPONSIVE CSS */
@media (max-width: 1366px) {
    .overlay-banner h1.display-3 {
        line-height: 1 !important;
    }

    .feature-box {
        margin-top: -46px;
    }

    ul.list-unstyled.open-hrs {
        margin-top: 33px;
    }

    .home-about .about-one {
        max-width: 33vw;
    }

    .service-item {
        padding: 30px 16px;
    }

    .price-carousel .owl-item .service-slider ul li {
        display: flex;
        align-items: baseline;
    }

    .price-carousel .owl-item .service-slider ul li span {
        font-size: 24px;
        top: 4px;
    }

    .service-slider h3 {
        font-size: 22px;
    }

    .price-carousel .owl-item .service-slider ul li {
        margin-bottom: 0;
        font-size: 14px;
    }

    .doctor-image {
        min-height: auto;
    }
}

@media (max-width: 1200px) {
    .feature-box {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .feature-box:hover {
        margin-top: 30px;

    }

    .service-item h4 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 14px;
    }
    .banner-content h2 {
    font-size: 64px;
}
.header-box h2 {
    font-size: 36px;
    line-height: 44px !important;
}
.mission-box h3 {
    font-size: 18px;
}
.mission-box {
    padding: 20px;
}
.mission-box h3 span img {
    width: 42px;
}
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 10px;
        left: 50%;
        background: var(--primary-color);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 992px) {
    nav.navbar.navbar-expand-lg {
        padding: 0 !important;
    }

    div#hamburger-1 {
        display: block;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #ffffff;
    }

    .navbar-light .navbar-nav .nav-link {
        color: var(--primary-dark-color);
    }

    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    h1.display-1 {
        font-size: 34px;
    }

    h1.display-4 {
        font-size: 28px;
    }

    .service-item .service-icon {
        width: 110px;
        height: 80px;
    }

    .service-item {
        height: auto;
        padding: 25px 15px;
    }

    .testimonial-item p {
        font-size: 18px !important;
    }

    .banner-content h2 {
        font-size: 40px;
    }

    .banner-content h2 span {
        font-size: 26px;
    }

    .count-block h3 {
        font-size: 36px;
    }

    h1.display-5 {
        font-size: 28px;
    }

    .feature-box .feature-icon {
        width: 52px;
        margin-bottom: 0;
    }

    .feature-box h5 {
        font-size: 24px;
        margin-top: 10px;
    }

    .feature-box p,
    .feature-box ul.open-hrs li {
        font-size: 14px;
    }

    .feature-box .contact-action.d-flex.mt-5 a.phone {
        font-size: 22px;
    }

    .header-box h2 {
        font-size: 36px;
        line-height: 40px !important;
    }

    .home-about .about-one {
        max-width: 44vw;
    }

    .section-gap {
        padding: 50px 0;
    }

    ul.list-unstyled.about-home-list {
        margin-top: 30px !important;
    }

    .service-item,
    .my-service-box:nth-child(4) .service-item,
    .my-service-box:last-child .service-item {
        padding: 20px 20px;
        border: 1px solid var(--primary-light-color) !important;
    }

    section.appointment {
        margin-top: 0;
        padding-bottom: 40px;
    }

    .lady-doc {
        margin: -50px auto 20px;
        max-width: 320px;
    }

    .appointment .primarybackground::before {
        display: none;
    }

    .home-page-form {
        padding-bottom: 30px;
    }

    .mb-4.header-box {
        text-align: center;
    }

    .casestudies-image {
        width: 100%;
        position: absolute;
        z-index: 1;
    }

    .mb-2.header-box {
        position: relative;
        z-index: 2;
    }

    .footer-link {
        margin: 20px 0;
    }

    .navbar-nav ul {
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        padding: 20px;
        position: fixed;
        left: -100%;
        margin: 0;
        max-width: 320px;
        top: 0;
        height: 100%;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar-collapse.is-active .navbar-nav ul {
        left: 0%;
    }

    .our-goal {
        padding: 30px 20px;
        margin-top: -10px;
        border-radius: 30px;
    }

    .overlay-banner.position-absolute {
        /* position: relative !important;
    background: var(--primary-color);
    padding: 30px 0; */
    }

    .hero-slider .owl-dots .owl-dot span {
        background-color: var(--primary-color);
    }

    .hero-slider .owl-dots .owl-dot.active span {
        background-color: var(--secondary);
    }

    .hero-slider .owl-dots {
        bottom: -30px;
    }

    .contact-action.d-flex.mt-5 {
        margin-top: 0 !important;
    }
    .about-left-border .header-box.text-end{
        text-align: center !important;
    }
    .about-left-border {
    padding: 30px;
    border-right: 0;
    border-bottom: 10px solid var(--primary-color);
    margin-right: 0;
}
.mission-box.mt-5, .mission-box {
    margin-bottom: 20px;
    margin-top: 0 !important;
}
}

@media (max-width: 768px) {
    .hero-slider .owl-nav .owl-prev {
        left: 0;
    }

    .hero-slider .owl-nav .owl-next {
        right: 0;
    }

    .hero-slider .owl-nav .owl-prev,
    .hero-slider .owl-nav .owl-next {
        top: auto;
        transform: none;
        bottom: 36px;
    }

    .hero-slider .owl-nav {
        width: 97px;
        display: block;
        background: #000;
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
    }

    .feature-box:hover {
        margin-top: 10px;
    }

    .feature-box {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .home-about .about-one {
        max-width: 80%;
    }

    .about-two {
        width: 50% !important;
    }
.wards-item .award-img {
    width: 100px;
    margin: 15px auto 0;
    height: 100px;
    min-height: auto;
}
.services-box {
    flex-direction: column;
}
.services-box .service-icon {
    margin: auto;
}
.services-box p.price-service {
    position: relative;
    bottom: 0;
    width: 100%;
    right: 0;
    margin-top: 25px;
    height: 50px;
    font-size: 22px;
    padding: 0 18px;
    border-radius: 3px 8px;
}
ul.service-features li span {
    font-size: 18px;
    margin-right: 6px;
    top: -3px;
}
.services-box ul.service-features li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
    align-items: flex-start;
    display: flex;

}
.team-details-box .team-details h4 {
    font-size: 20px;
}
ul.team-features {
    margin-left: 0;
    min-height: auto;
    margin-bottom: 20px;
}
ul.team-features li {
    font-size: 14px;
    margin-bottom: 7px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
}
ul.team-features li span {
    top: -3px;
    margin-right: 6px;
}
.service-page-form {
    padding: 15px !important;
}
}

@media (max-width: 480px) {
    a.navbar-brand img {
    max-width: 140px;
}

    .header-box h2 {
        font-size: 28px;
        line-height: normal !important;
    }

    .mb-4.header-box {
        margin-bottom: 0 !important;
    }

    .bg-white.service-slider .price-thmb .price-box {
        font-size: 18px;
    }

    .price-carousel .owl-nav,
    .award-carousel .owl-nav,
    .service-slider {
        margin-top: 0;
    }

    .hero-slider .owl-nav {
        bottom: -40px;
    }

}

@media (max-width: 420px) {
    .service-item .service-icon {
        width: 52px;
        height: auto;
        margin-bottom: 0 !important;
    }

    .exprience-box {
        flex-direction: column;
    }

    .section-gap {
        padding: 40px 0;
    }

    h1.display-1 {
        font-size: 28px;
    }

    .bg-white.text-center.rounded.p-5 {
        padding: 20px !important;
    }

    .owl-carousel.price-carousel {
        padding: 20px !important;
    }

    .row.gx-5 {
        --bs-gutter-x: 0;
    }

    .testimonial-item p {
        font-size: 16px !important;
    }

    .container-fluid.bg-dark.text-light.py-5 {
        padding: 20px 0 !important;
    }

    .team-carousel .owl-nav {
        position: relative;
    }

    .container.py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .service-item {
        padding: 15px 15px;
        min-height: 300px;
    }
}