/********** Template CSS **********/
:root {
    --primary: #337ab7;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #0b255d;
}

option {
    padding: 20px;
}

.team::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: #0b255d;
}

.team::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: #0b255d;
}

.headtop {
    background-color: #0b255d;
    color: white;
}

.headright {
    background-color: #337ab7;
}

.topright {
    margin-left: 40px;
}

.aboutstart {
    flex-direction: row-reverse;
}

.foot {
    background-color: #0b255d;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
    border-radius: 5px;
}

.row.g-3 {
    /* border: 2px solid #007BFF; */
    /* Blue border color */
    border-radius: 8px;
    /* Rounded corners */
    padding: 15px;
    /* Add some padding inside the border */
    margin: 10px;
    /* Add some margin outside the div */
    background-color: #f8f9fa;
}

.icons.active {
    background-color: white;
}

.accordion-button:not(.collapsed) {
    color: #0b255d;
    background-color: #FFFFFF;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/* General Button Active State */
.btn:active {
    background-color: #003d80;
    /* Darker shade of blue */
    transform: scale(0.95);
    /* Slightly shrink the button */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
    transition: all 0.1s ease;
    /* Smooth transition */
}

/* Specific Icon Buttons Active State (Optional) */
.btn-twitter:active {
    background-color: #0d8ddb;
    /* Slightly darker Twitter blue */
}

.btn-check:checked+.btn-secondary:focus,
.btn-check:active+.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #0d8ddb;
}

.btn-facebook:active {
    background-color: #145dbf;
    /* Slightly darker Facebook blue */
}

.btn-linkedin:active {
    background-color: #084d96;
    /* Slightly darker LinkedIn blue */
}

.btn-instagram:active {
    background: linear-gradient(45deg, #6d3080, #c12c5b, #d65e1b);
    /* Darker gradient */
}

.btn-youtube:active {
    background-color: #cc0000;
    /* Darker YouTube red */
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #0b255d;
}


h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h1 {
    color: #0b255d !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    border-radius: 5px;
}

.btn-primary:hover {
    background: #091E3E;
    border-color: #fff;
    color: #fff !important;
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.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;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #0b255d;
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #337ab7;
}

@media (max-width: 991.98px) {

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, .85); */
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
        text-shadow: none;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: #0b255d;
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: #0b255d;
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(#0b255d, #0b255d), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(#0b255d, #0b255d), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    /* background: rgba(6, 163, 218, .7); */
    background: #0b255d;
}

.service-item img {
    height: 300px;
    width: 100%;
}

.service-item .bg-light {
    border-bottom: 5px !important;
    background-color: #0b255d !important;
}

.service-item .bg-light h5 {
    color: #FFFFFF !important;
    font-size: 15px !important;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius: 100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background: url(../img/home/test-2.jpg) center center no-repeat;
    background-size: cover;
}

.partner-slider {
    width: 100%;
    margin: 0 auto;
}

.partner-logo {
    /* padding: 20px; */
    width: 150px;
    height: 120px;
    /* margin: 0 0px; */
    display: flex;


    background: white;
    border: 1px solid;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    align-self: center;

    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.offer-text {
    /* background: rgba(6, 163, 218, .85); */
    background: visible;
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/home/test.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    /* background: rgba(6, 163, 218, .85); */
    background: #0b255d;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #0b255d;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #337ab7;
}

.testimonial-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.logo_name {
    font-size: 25px;
}



.doctor_name {
    text-align: right;
}

.home-slide-text1 {
    text-shadow: black 0.1em 0.1em 0.2em;
}

.home-slide-text2 {
    text-shadow: black 0.1em 0.1em 0.2em;
    font-size: 32px !important;
}

.feature-text {
    text-align: left;
}

.blog_item {

    margin-top: 20px;

}

/* .blog_content{
    border: 1px solid #ecf9ff;
} */
p.m-0.p-1.text-white {
    margin: 0px 0px 0px 18px !important;
}

#contact_us_form .inp {
    height: 55px;
}

.appointment-new {
    width: 50%;
    margin: 0px auto;
    margin-bottom: 145px !important;
}

.post-date {
    position: absolute;
    width: 38%;
    top: 0;
    right: 0;
    background-color: #00a5d7 !important;
}

.recent_post {
    margin-top: 65px;
}

.blog_area,
.blog_area p {

    color: #575656;
    text-align: justify;
    font-size: 17px;
    font-weight: normal;
}

.blog-section-img {
    height: 280px;
}

.recent_post_img {
    height: 50px;
    width: 80px;
}

.post-img {
    padding: 10px;
}

/* .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl{
    background: #EEF9FF !important;
} */
.service-item .overflow-hidden {
    background-color: #fff !important;
}

.new_bg {
    background: #fff !important;
}

.new_menu a {
    font-size: 15px !important;
}

.blog_content h4 {
    font-size: 15px !important;
    text-align: start !important;
    color: #fff;
}

.blog_content p {
    font-size: 15px !important;
    text-align: start !important;
    color: #fff;
}

.blog_content a {
    font-size: 12px !important;
    color: #fff;
}

.blog_content .team-text {
    background-color: #0b255d !important;
}

.recent_post .post-img .text-start h5 {
    font-size: 14px !important;
}

.recent_post .post-img {
    background-color: #fff !important;
}

.recent_post .post-img .text-start span {
    font-size: 14px !important;
}

.new_contact_bg {
    background-color: #63c8e7 !important;
}

.main_logo {
    width: 140px;
}

.bg-primary {
    background-color: #0b255d !important;
    /* background-image: url(/img/STP-WTP.jpg); */
}

.btn-primary {
    background-color: #0b255d !important;
    border-color: #0b255d !important;
}

.back-to-top,
.back_to {
    border-color: #ffffff !important;
}

.bg-dark {
    border-radius: 0px;
    margin-top: 0px;
    background-color: #0b255d !important;
}

.btn-dark,
.btn-secondary {
    border-radius: 5px !important;
    background-color: #337ab7 !important;
    border-color: #337ab7 !important;
    color: #fff !important;
}

.bg-light {
    background-color: #0076c2 !important;
}

.second_bg .bg-dark {
    background-color: #091E3E !important;
}

.text-primary {
    color: #0b255d !important;
}

.top_i {
    color: white !important;
}

.top_bar {
    background: #0b255d !important;
}

.price_item_card h4 {
    color: #0b255d !important;
}

.border-primary {
    border-color: #0076c2 !important;
}

.make_appointment {
    background-color: #337ab7 !important;
    border-color: #337ab7 !important;
}

.bg-light {
    background-color: #FFFFFF !important;
    /* border-radius: black; */
}

.gallary_image {
    position: relative;
}

.image_float {
    position: absolute;
    bottom: 0;
    /* background: ; */
    width: 100%;
    text-align: center;
    padding: 5px;
    margin: 0;
}

.image_float h5 {
    color: #0b255d !important;
    font-size: 16px;
    margin: 0;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #337ab7 !important;
}

@media (max-width:991px) {
    .navbar {
        padding: 10px !important;
    }
}


.new_bg .low-head {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #0b255d !important;
}

.testimonial-item p {
    font-size: 16px !important;
}

/* .owl-carousel .owl-item img {
height: 200px;
} */
.services_main_new div {
    margin-left: -5px;
    background: transparent !important;
    background-color: transparent !important;
    color: #6B6A75 !important;
}

.services_main_new div p span {
    margin-left: -5px;
    color: #6B6A75 !important;
    font-family: "Open Sans", sans-serif !important;
    background-color: transparent !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

.services_main_new div p i {
    font-style: normal !important;
    background-color: transparent !important;
}

.services_main_new h1 {
    color: #6B6A75 !important;
}

.services_main_new h2 {
    color: #6B6A75 !important;
}

.services_main_new h3 {
    color: #6B6A75 !important;
    margin-left: -7px;
}

.services_main_new .imd {
    text-align: center !important;
}

.services_main_new img {
    width: 60% !important;
}

.footer_links a {
    color: #ffffff !important;
}

.footer_links a:hover {
    color: #ffffff !important;
}

.footer_linksc a {
    color: #6b6a75 !important;
}

.footer_linksc a:hover {
    color: #6b6a75 !important;
}

.blog_slide {
    min-height: 260px;
}

.thank_you {
    height: 100vh;
    display: flex;
    text-align: center;
    justify-content: center;
}

.thank_you_main {
    height: 100vh;
    display: flex;
    width: 45%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}




@media (max-width:767px) {
    .contact_new {
        padding: 20px !important;
    }

    .display-6 {
        font-size: 24px !important;
    }

    .contact_new h5 {
        font-size: 18px !important;
    }

    .new_bg .low-head {
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #e97195 !important;
        text-align: left;
    }

    .display-5 {
        font-size: 24px !important;
        font-weight: 800 !important;
        text-align: left;
    }

    .display-3 {
        font-size: 28px !important;
        font-weight: 800 !important;
    }

    .blog_area,
    .blog_area p {
        text-align: left;
    }

    .services_main_new img {
        width: 100% !important;
    }

    .new_banner_mobile,
    .inner_new_banner_mobile {
        padding: 0px !important;
    }

    .opening_hours {
        padding: 25px !important;
    }

    .opening_hours div {
        margin-bottom: 15px !important;
    }

    .opening_hours {
        height: 100% !important;
        min-height: 200px !important;
    }

    .home_slide {
        display: block !important;
        position: relative !important;
        background: #0b255d !important;
        height: 300px;
    }

    .home-slide-text2 {
        font-size: 24px !important;
        text-shadow: none;
    }

    .appointment_home {
        padding: 0px !important;
    }

    .appointment-form {
        padding: 20px !important;
    }

    .appointment-new {
        width: 90%;
        margin: 0px auto;
        margin-bottom: 145px !important;
    }

    .thank_you_main {
        width: 80%;
    }
}