:root {
    --white: #fff;
    --black: #000;
    --blue: #0e53ae;
    --body-font: "Poppins", sans-serif;
    --heading: "Roboto", sans-serif;
}

/* 

font-family: "Poppins", sans-serif;
font-family: "Roboto", sans-serif;
font-family: "Jost", sans-serif;

*/

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
}

a {
    text-decoration: none !important;
    display: inline-block;
}

p:last-of-type {
    margin-bottom: 0px;
}

p {
    color: #444;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-control,
.form-select {
    background: transparent;
    border: 0px;
    box-shadow: none;
    outline: none;
    border-radius: 0px;
}

.form-control:focus,
.form-select:focus {
    background: transparent;
    border: 0px;
    box-shadow: none !important;
    outline: none !important;
}

img {
    width: 100%;
    height: 100%;
}

/*=== Common Css Start ===*/

/*--- Section Spacing Start ---*/

.sec-space-40 {
    padding: 40px 0;
}

.sec-space {
    padding: 80px 0;
}

.sec-space-top {
    padding: 80px 0 0;
}

.sec-space-bottom {
    padding: 0 0 80px;
}

/*--- Section Spacing End ---*/

/*--- Section Heading Start ---*/

.section-head {
    margin-bottom: 15px;
}

.section-head h2 {
    padding-bottom: 15px;
    position: relative;
    font-family: var(--heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    color: var(--blue);
    margin-bottom: 0px;
}

.section-head span {
    flex: 1;
    height: 2px;
    border-bottom: 1px solid #e5e5e5;
    margin-left: 15px;
}


.icon-s {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    line-height: 40px;
    font-size: 20px;
    margin-left: 15px;
    background: #f5f5f5;
    color: #d12020;
    text-align: center;
    border-radius: 2px;
}



/*--- Section Heading End ---*/

/*--- Button Start ---*/

.btn {
    font-size: 14px;
    border-radius: 0px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-family: var(--subheading);
    font-weight: 600;
    letter-spacing: 1px;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-solid {
    background: var(--red);
    color: #fff;
    transition: all .5s;
    border-radius: 25px;
}

.btn-solid:hover {
    color: var(--white);
    background: var(--black);
    transition: all .5s;
}

.btn-hamburger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background: #000814;
    position: relative;
    transition: all .5s;
}

.btn-hamburger:hover {
    background: var(--white);
    transition: all .5s;
}

.btn-hamburger::before,
.btn-hamburger::after {
    position: absolute;
    height: 2px;
    right: 10px;
    content: '';
    background: var(--white);
    transition: all .5s;
}

.btn-hamburger:hover::before,
.btn-hamburger:hover::after {
    background: #0b0c54;
    transition: all .5s;
}

.btn-hamburger::before {
    top: 15px;
    content: '';
    width: 12px;
    transition: all .5s;
}

.btn-hamburger::after {
    bottom: 15px;
    content: '';
    width: 20px;
}

.btn-hamburger:hover::before {
    transition: all .5s;
    width: 20px;
}

/*--- Button End ---*/

/*=== Common Css End ===*/

/*--- Animation Start ---*/

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}


/*--- Animation End ---*/

/*--- Header Start ---*/

.header-show {
    position: fixed;
    background: var(--white);
    top: 0;
    z-index: 999;
    width: 100%;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.header-top-bg {
    background: ;
}

.navbar-brand {
    width: 220px;
    height: auto;
    padding: 15px 0;
}

.header-top-bg {
    padding: 10px 0;
    background: var(--blue);
}

.header-contact ul li a,
.header-social ul li a {
    color: var(--white);
}

.header-contact ul li,
.header-social ul li {
    margin-right: 20px;
}

.header-contact ul li:last-child,
.header-social ul li:last-child {
    margin-right: 0px;
}

.header-contact ul li a span {
    margin-right: 5px;
}

.navbar {
    padding: 0px;
}

.navbar-collapse ul>li {
    margin-right: 45px;
}

.navbar-collapse ul>li:last-child {
    margin-right: 0px;
}

.navbar-collapse ul>li>a {
    padding: 24px 0 !important;
    color: var(--black) !important;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 9;
    font-size: 14px;
    transition: all .4s;
}

.navbar-collapse ul>li>a.active,
.navbar-collapse ul>li>a:hover {
    color: var(--blue) !important;
    transition: all .4s;
}

.navbar-collapse ul>li>a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--blue);
    content: '';
    transition: all .4s;
}

.navbar-collapse ul>li>a.active::before,
.navbar-collapse ul>li>a:hover::before {
    width: 100%;
    transition: all .4s;
}

/*=== Header End ===*/


/*--- Banner Start ---*/

.home-slider {
    position: relative;
    background: url(../images/banner.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}

.banner-text h6 {
    color: var(--white);
    font-size: 20px;
    line-height: 30px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    position: relative;
    padding-left: 120px;
}

.banner-text h6::before {
    position: absolute;
    left: 0;
    top: 15px;
    width: 105px;
    background: var(--white);
    height: 1px;
    content: '';
}

.banner-text h1 {
    color: var(--white);
    font-size: 62px;
    line-height: 74px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
}

.banner-text p {
    font-size: 16px;
    line-height: 28px;
    color: var(--white);
    margin-top: 35px;
    margin-bottom: 35px;
    font-weight: 500;
}

.banner-text .btn {
    padding: 15px 35px;
    border-radius: 30px;
    border-radius: 0px;
    margin-top: 5px;
    background: var(--white);
    color: var(--blue);
}


/*--- Banner End ---*/

/*--- About Home Start ---*/

.about-content {
    height: 100%;
    position: relative;
}

.about-home-image {
    position: relative;
    overflow: hidden;
    height: 560px;
    padding: 30px;
    margin-left: 30px;
    z-index: 1;
}

.about-home-image img {
    object-fit: cover;
}

.about-home-image::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 60%;
    background-image: linear-gradient(to bottom, transparent, transparent 20%, #fff 20%), linear-gradient(to right, #000, #000 20%, #fff 20%);
    background-size: 5px 5px;
    content: '';
    z-index: -1;
}

.about-home-image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 60%;
    background-image: linear-gradient(to bottom, transparent, transparent 20%, #fff 20%), linear-gradient(to right, #000, #000 20%, #fff 20%);
    background-size: 5px 5px;
    content: '';
    z-index: -1;
}

.about-content .desig-about {
    margin-top: 40px;
}

.about-content .desig-about h6 {
    color: var(--black);
    font-size: 18px;
    line-height: 28px;
    flex: 1;
}

.about-content .desig-about .icon {
    font-size: 24px;
    color: var(--white);
    padding: 15px;
    background: var(--blue);
    margin-right: 15px;
    width: 60px;
    height: 60px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    border-radius: 5px;
}

/*--- About Home End ---*/


/* Specialized in start */
.specialized-in-w {
    position: relative;
    margin-top: -100px;
    z-index: 1;
}

.specialized-heading span {
    color: var(--blue);
}

.specialized-box {
    text-align: center;
    padding: 30px;
    transition: all .4s ease-out;
}

.specialized-row [class*="col-"]:nth-child(1) .specialized-box {
    background: #1E88E5;
}

.specialized-row [class*="col-"]:nth-child(2) .specialized-box {
    background: #1976D2;
}

.specialized-row [class*="col-"]:nth-child(3) .specialized-box {
    background: #1565C0;
}

.specialized-box h3 {
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px;
    position: relative;
    transition: all .4s ease-out;

}

.specialized-box h3::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0px;
    height: 1px;
    background: var(--white);
    transition: all .4s;
}

.specialized-box:hover h3::before {
    width: 50%;
    transition: all .4s;
}

.specialized-box:hover h3 {
    color: #fff;
    transition: all .4s ease-in;
}

.specialized-icon {
    max-width: 128px;
    margin: 0 auto 15px;
    padding: 30px;
    border: 3px solid #f2f2f2;
    border-radius: 50%;
}

.specialized-box:hover .specialized-icon {
    background: #f7f7f7;
    transition: all .4s ease-in;
}

.specialized-icon img {
    filter: brightness(0) invert(1);
    transition: all .4s ease-in;

}

.specialized-box:hover .specialized-icon img {
    filter: brightness(1) invert(0);
    transition: all .4s ease-in;

}

/*.specialized-box{background-color: #009EBB;text-align: center;transition: 0.8s;}*/
/*.specialized-box:hover{transform: rotateY(360deg);}*/
.specialized-box img {
    width: 100%;
}

/*.specialized-box img{margin-bottom: 6px;}
  .specialized-box{width: 370px; height: 232px; border-radius: 65px;border:2px solid var(--blue); text-align: center;  padding:45px; }
  .specialized-box-content{position:absolute;}
  .specialized-box{position: relative;background: url("../img/box-1.png"); background-repeat: no-repeat;background-position: top right;}*/
.specialized-in-w {
    margin-bottom: 50px;
}

/* Specialized in end */


/*-- Clinic Location's start --*/
/*.location-background{background-color: #E8E8E8;padding: 40px 0;}*/
.location-w {
    background: url("../images/bg-add.jpg")no-repeat;
    background-size: cover;
    padding: 80px 0;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.location-w::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    content: '';
    z-index: -1;
}

.location-box {
    background: #0490b3;
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    transition: all .5s;

}

.location-box:hover {
    background: var(--black);
    transition: all .5s;
}

.location-box h5 {
    font-family: var(--heading);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--white);
}

.location-box h6 {
    line-height: normal;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: var(--white);
}

.location-box h6 span {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: var(--white);
}

.schedule {
    column-gap: 25px;
}

.location-box p {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    color: var(--white);
}

.location-box p span {
    margin-right: 6px;
    color: var(--white);
}

.location-box ul li a {
    color: var(--white);
    font-size: 16px;
    margin-right: 20px;
    font-weight: 600;
    line-height: normal;
    transition: all .4s;
}

.location-box ul li a span {
    margin-right: 8px;
    color: var(--white);
}

.appointment {
    padding: 0 25px;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    margin-top: 15px;
    transition: all .4s;
}

.location-box:hover .appointment {
    background: #c0155c;
    color: var(--white);
    transition: all .4s;
}

.location-box .location-lists li {
    margin-bottom: 15px;
}

.location-box .location-lists li:last-child {
    margin-bottom: 0px;
}

.location-box .location-lists li a:hover {
    color: #d12020;
    transition: all .4s;
}


/*-- Clinic Location's end --*/


/* Diabetes Tips Start  */

.tip-nav-cover {
    background: #f7f7f7;
    position: relative;
    z-index: 1;
}

/* .tip-nav-cover::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: '';
    z-index: -1;
    backdrop-filter: blur(6px);
} */

.tip-nav-cover .nav-link {
    background: var(--black);
    color: var(--white);
    border-radius: 0px;
    padding: 15px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    position: relative;
}

.tip-nav-cover .nav-link:after {
    content: '\2b';
    position: absolute;
    top: 9px;
    right: 10px;
    font-size: 22px;
}

.tip-nav-cover .nav-link.active:after {
    content: '\f068';
    font-family: "Font Awesome 6 Pro";

}

.tip-nav-cover .nav-link.active {
    color: var(--white);
    background: var(--blue);
}

.tip-tab-content {
    background: #f7f7f7;
    padding: 40px;
}

.tip-image {
    margin-left: 40px;
}

.tip-content h4 {
    font-family: var(--heading);
    margin-bottom: 15px;
    font-size: 20px;
}

/* Diabetes Tips End  */

/* Video Gallery Start  */

.video-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    transition: all .5s;
    z-index: 1;
}

.video-image img {
    object-fit: cover;
    transition: all .5s;
}

.video-image:hover img {
    transform: scale(1.2);
    transition: all .5s;
}

.play {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play a {
    color: #d30000;
    font-size: 40px;
}

.owl-prev,
.owl-next {
    background: var(--black) !important;
    width: 36px;
    height: 36px;
    line-height: 36px !important;
    color: var(--white) !important;
    font-size: 15px !important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transition: all .4s ease-in-out;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--blue) !important;
    transition: all .4s;
}

.slider-video .owl-nav .owl-next {
    transform: translate(20px, -50%);
    right: 0;
}

.slider-video .owl-nav .owl-prev {
    transform: translate(-20px, -50%);
}


/* Video Gallery End  */


/* Testimonial Start  */


.testimonial-section {
    background: #f9f9f9;
    padding: 70px 0;
}

.testimonial-section .section-title {
    margin-bottom: 30px;
}

.testimonial-slider.owl-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
}

.testimonial-slider.owl-carousel .owl-nav button {
    height: 44px;
    width: 44px;
    border: 1px solid #ebebeb;
    font-size: 17px;
    color: var(--blue);
    background: #ffffff;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: -190px;
    top: 50%;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-60px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.testimonial-slider.owl-carousel .owl-nav button:hover {
    border-color: var(--blue);
    color: var(--white);
    background: var(--blue);
}

.testimonial-slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -190px;
}

.testimonial-slider .ts-item {
    text-align: center;
}

.testimonial-slider .ts-item p {
    font-size: 16px;
    color: #707079;
    line-height: 28px;
    margin-bottom: 30px;
}

.testimonial-slider .ts-item .ti-author {
    margin-bottom: 30px;
}


.testimonial-slider .ts-item .ti-author h5 {
    font-size: 20px;
    color: #19191a;
    display: inline-block;
}

.user-image {
    border-radius: 50%;
    overflow: hidden;
    width: 80px;
    height: 80px;
}

.user-image img {
    width: 100%;
    height: 100%;
}

.owl-dots {
    display: flex;
    justify-content: center;
    column-gap: 8px;
    margin-top: 25px;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #898989 !important;
}

.owl-dots .owl-dot.active {
    background: var(--blue) !important;
}


/* Testimonial End  */


/* Gallery Start  */

.gallery-image {
    display: block;
    height: 300px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-image::before {
    position: absolute;
    left: 0%;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.2);
    transition: all .4s;
    z-index: 1;
}

.gallery-image:hover::before {
    background: rgba(0, 0, 0, 0.8);
    transition: all .4s;
}

.gallery-image img {
    object-fit: cover;
    transition: all .5s;
}

.gallery-image:hover img {
    transform: scale(1.1);
    transition: all .5s;
}

.zoom-i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.gallery-image:hover .zoom-i {
    opacity: 1;
    visibility: visible;
    transition: all .4s;
}


/* Gallery End  */


/*--- Footer Start   ---*/

.footer-main {
    background: #000814;
    padding: 60px 0 0 0;
}


a.ft-logo img {
    width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
}

.ft-text {
    padding: 30px 0 30px;
    margin-bottom: 25px;
    position: relative;
}

.ft-text p {
    color: #d5d5d5;
}

.ft-text:before {
    position: absolute;
    width: 120px;
    height: 1px;
    background: #666;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-right: 30px;
    transition: all .3s;
}

.footer-links ul li a {
    color: #d5d5d5;
    font-weight: 400;
    transition: all .3s;
    padding: 5px 0;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
}

.footer-links ul li a:hover {
    color: var(--white);
    transition: all .3s;
}


.copyright {
    border-top: 1px solid #2e2e2e;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 30px;
}

.copyright p {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    margin: 10px 0;
}

.copyright p span {
    font-weight: 600;
}

.ft-social-media ul li {
    margin-right: 10px;
    padding-left: 0px;
}

.ft-social-media ul li:last-child {
    margin-right: 0px;
}

.ft-social-media ul li a {
    font-size: 17px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--white);
    border-radius: 50%;
    text-align: center;
    padding: 0px;
    color: #0b0c54;
}



/*--- Footer End   ---*/


/* Sidebar Start  */


.sidebar {
    display: block;
    position: fixed;
    right: 15px;
    bottom: 50px;
    z-index: 99;
}

.add-button {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    background: var(--black);
    color: var(--white);
    position: relative;
    z-index: 99;
    cursor: pointer;
}

.all-button ul {
    column-gap: 3px;
}

.all-button ul li:last-child {
    margin-bottom: 0px;
}

.all-button ul li a {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 21px;
    color: var(--white);
    border-radius: 5px;
}

.all-button ul li:nth-child(1) a {
    background: #296e5f;
}

.all-button ul li:nth-child(2) a {
    background: #359916;
}

.all-button ul li:nth-child(3) a {
    background: lightseagreen;
}

/* Sidebar End  */




/*--- Appointment Start ---*/

.single-select .form-select {
    border: 1px solid #000;
    margin-bottom: 25px;
}

.patient-title h5 {
    font-size: 16px;
    padding-bottom: 5px;
}

.modal-dialog {
    max-width: 650px;
}

.modal-title span {
    color: #296e5f;
}

.modal-body {
    padding: 30px 50px;
}


.single-input input.form-control {
    border: 1px solid var(--black);
    height: 44px;
    line-height: 44px;
    margin-bottom: 15px;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.single-input input.form-control:focus {
    border: 1px solid var(--black);
    transition: all .4s;
    -webkit-transition: all .4s;
}

.single-input textarea.form-control {
    border: 1px solid var(--black);
    height: 130px;
}

.single-input textarea.form-control:focus {
    border: 1px solid var(--black);
    transition: all .4s;
    -webkit-transition: all .4s;
}

.wpcf7-submit {
    background: var(--blue) !important;
    color: var(--white) !important;
    border-radius: 30px !important;
    padding: 6px 30px !important;
    display: block;
    margin: 0 auto;
    border: 0px !important;
    outline: 0px !important;
    box-shadow: none !important;
    font-size: 15px !important;
}


/*--- Appointment End ---*/

.about-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

.wpcf7-spinner {
    position: absolute;
    bottom: 10px;
    right: 30px;
}