:root {
    --main-color-ocean-blue: rgb(14, 135, 152);
    --main-color-dark-ocean-blue: rgb(0, 68, 77);
    --main-color-light-ocean-blue: rgb(203, 246, 252);
    --main-color-white-ocean-blue: rgb(235, 245, 247);
    --main-color-gold: #d8ae5c;
    --main-color-light-gold: #edc870;
}

/* div {
    border: 1px solid red;
} */

body {
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: "Titillium Web", sans-serif;
    background-image: url("../images/body-bg.jpg");
}

.layout_padding {
    padding: 30px 0px;
}

/* SVG Style CSS  */

svg {
    width: 70px;
    height: 60px;
    padding: 0px;
}
path {
    stroke: #098396;
    fill: none;
    stroke-width: 2;
}
.path1 {
    stroke-dasharray: 170, 180;
    animation: pulse 2s infinite linear;
}

@keyframes pulse {
    0% {
        stroke-dashoffset: 350;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.path2 {
    stroke-dasharray: 170, 180;
    animation: pulse2 2s infinite linear;
}

@keyframes pulse2 {
    0% {
        stroke-dashoffset: 525;
    }
    100% {
        stroke-dashoffset: 175;
    }
}

/* End SVG Style CSS  */

h1 {
    padding: 0;
    font-size: 3rem;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#edc770, #ac6b2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
}

.sub-heading {
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(155, 155, 155);
}

.main-heading {
    padding: 0;
    font-size: 2rem;
    background: -webkit-linear-gradient(#edc770, #ac6b2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.center-heading {
    text-align: center;
    margin-bottom: 35px;
}

/* Top Bar Section Style CSS  */

.top-bar {
    background: var(--main-color-dark-ocean-blue);
    color: #fff;
    padding: 10px 0;
}

.top-bar .top-content-container {
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-bar .top-content-container span {
    margin-left: 10px;
}

/* End Top Bar Section Style CSS  */

/* Navigation Bar Section Style CSS */
/* Navigation Bar Section Style CSS */
.navbar {
    display: flex;
    align-items: center;
    width: 100%;
    /* background-color: #fff; */
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    /* position: sticky;
    top: 0; */
    /* background-color: #fff; */
    z-index: 100;
    top: -2px;
    transition: all ease 0.3s;
}
.navbar-logo img {
    width: 150px;
    text-decoration: none;
}

.navbar-links {
    list-style-type: none;
    display: flex;
}
.navbar-links li a {
    display: block;
    text-decoration: none;
    color: #444 !important;
    padding: 20px 20px;
    font-weight: 700;
    transition: 0.4s all;
}

.navbar-links li.navbar-dropdown {
    position: relative;
}

.navbar-links li.navbar-dropdown:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.navbar-links li.navbar-dropdown .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 20px 0;
    top: 100%;
    transform: translateY(50px);
    left: 0;
    width: 250px;
    background-color: #fff;
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s all;
}
.navbar-links li.navbar-dropdown .dropdown a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
}
.navbar-dropdown .dropdown a:hover {
    padding-left: 30px;
}
.navbar-links li a:hover {
    background: -webkit-linear-gradient(#edc770, #ac6b2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-links .nav-appointment-btn {
    background-image: linear-gradient(#edc770, #ac6b2f);
    transition: all 0.3s ease 0s;
}

.navbar-links .nav-appointment-btn:hover {
    background-image: linear-gradient(var(--main-color), var(--shadow-color));
}

nav .menu-icon {
    display: none;
}

@media screen and (max-width: 1410px) {
    .navbar-links {
        display: none;
    }
    nav .menu-icon {
        display: block;
    }

    .navbar-logo img {
        width: 100px;
        text-decoration: none;
    }
}

/* End Navigation Bar Section Style CSS  */

/* Mobile navigation bar Section Stle Css */
.mini-nav-container {
    width: 80%;
    min-height: 100%;
    z-index: 100;
    position: fixed;
    top: 0;
    background: white;
    padding: 20px;
    font-size: 15px;
    display: none;
    transition: all 0.3s ease 0s;
}

.mob-menu {
    margin-top: 10px;
}

.mob-menu .mob-main-menu {
    line-height: 50px;
}

.mob-menu ul li {
    list-style: none;
    position: relative;
}

.mini-logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.mob-dropdown {
    position: absolute;
    width: 200px;
    background-color: white;
    left: 0;
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 5px;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    line-height: 30px;
    top: 70px;
    transition: all ease 0.3s;
}
.mob-main-menu li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
}
.mob-main-menu li a:hover {
    color: var(--main-color-gold);
}

.mob-dropdown-btn:hover .mob-dropdown {
    opacity: 1;
    visibility: visible;
    top: 40px;
}

.mob-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob-dropdown-btn li a {
    font-size: 12px;
}

.mob-dropdown-btn i {
    font-size: 20px;
    font-weight: 400;
}
.nav-toggle i {
    font-size: 30px;
}

.mob-contact-info {
    line-height: 2px;
    font-size: 12px;
    font-weight: bold;
}
.mob-contact-info h6 {
    color: var(--main-color-gold);
    font-size: x-large;
    font-weight: 500;
}
.mini-nav-container .social-media-links {
    margin-top: 25px;
}

.mini-nav-container .social-media-links i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color-ocean-blue);
    font-weight: 500;
}

/* End Mobile Navigation bar */

/* End Navigation Bar Section Style CSS  */

/* Main Div Style CSS  */

.main {
    min-height: 70vh;
}

/* End Main Div Style CSS  */

/* ------------------------ Home Page Style CSS -----------------------------  */

/* Main Section Style CSS  */
.fullscreen-video-container {
    position: relative;
    min-height: 80vh;
    min-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-video-container video {
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.fullscreen-video-content {
    /* background-color: rgba(255, 255, 255, 0.8); */
    padding: 30px;
    border-radius: 5px;
}

.fullscreen-video-content img {
    width: 100%;
    opacity: 0.5;
}

.clinic_name{
    border: 5px solid white;
    padding: 20px 10px;
    text-align: center;
}

.clinic_name a {
    opacity: 1;
    font-size: 50px;
    color: white;
    font-weight: bolder;
}

/* End Main Section Style CSS  */

/* New Treatments Section Style CSS  */

.new-treaments-container .card {
    height: 400px;
    width: auto;
    padding: 20px;
    color: white;
    display: flex;
    position: relative;
    cursor: pointer;
    border: none;
}

.new-treaments-container .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color-dark-ocean-blue);
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 5px;
}

.new-treaments-container .content * {
    transform: translateY(-70%);
    transition: all 0.3s ease;
    opacity: 0;
}

.new-treaments-container .content h2 {
    font-size: 35px;
    margin: 15px;
    font-weight: 700;
    text-align: center;
}

.new-treaments-container .content p {
    font-size: 15px;
    text-align: center;
}

.new-treaments-container .card:hover .content {
    opacity: 1;
}

.new-treaments-container .card:hover .content * {
    opacity: 1;
    transform: translateY(0);
}

/* End New Treatments Section Style CSS  */

/* About Section Style CSS  */
.about-us-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-container .about-content {
    padding-left: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media screen and (max-width: 1400px) {
    .about-us-container .about-content {
        padding-left: 0;
    }
}

.about-content .about-content-btn {
    display: flex;
    align-items: center;
}

.about-content .about-content-btn a {
    background: var(--main-color-dark-ocean-blue);
    padding: 10px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* End About Section Style CSS  */

/* Our Specialities Section */

.specialities-container .card {
    border: 1px solid var(--main-color-dark-ocean-blue);
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color-ocean-blue);
    transition: all 1s ease;
    font-weight: bold;
}
.specialities-container .card:hover {
    background-color: var(--main-color-light-gold);
}

.specialities-container .card .icon-container {
    padding: 10px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--main-color-gold);
    border-radius: 50%;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    transition: all 1s ease;
}

.specialities-container .card:hover .icon-container {
    border: 2px solid var(--main-color-ocean-blue);
}

.specialities-container .card .icon-container img {
    position: absolute;
    width: 70px;
    height: 70px;
}
.specialities-container .card div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.specialities-container .card h4 {
    font-weight: 700;
    color: #fff;
}

.specialities-container .card:hover h4 {
    color: #000;
}

.icon-container img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(60deg)
        brightness(98%) contrast(105%);
}
.specialities-container .card:hover .icon-container img {
    filter: invert(0%) sepia(86%) saturate(7499%) hue-rotate(141deg)
        brightness(85%) contrast(94%);
}

.specialities-container .card a {
    padding: 10px 18px;
    border: 2px solid var(--main-color-ocean-blue);
    color: var(--main-color-ocean-blue);
    transition: all 1s ease;
    display: none;
}

.specialities-container .card:hover .service-btn {
    display: block;
}

/* End Our Specialities Section Style CSS  */

/* Feature Section Style CSS  */

.feature-content {
    padding: 20px;
}

@media screen and (max-width: 900px) {
    .feature-content {
        padding-left: 0;
        padding-right: 0;
    }
}

.feature-content-container {
    background-color: var(--main-color-dark-ocean-blue);
    color: #fff;
}

.feature-content .feature-span-text {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    font-size: larger;
}

.feature-content .feature-span-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--main-color-gold);
}

@media screen and (max-width: 900px) {
    .feature-content .main-heading {
        font-size: smaller;
    }
}

.feature-content .main-heading {
    text-transform: uppercase;
    font-size: 50px;
    margin-top: 20px;
}

.feature-list {
    display: flex;
    align-items: center;
}

.feature-list .check-icon-container {
    background-color: var(--main-color-gold);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-list .check-icon-container {
    font-size: 25px;
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End Feature Section Style CSS  */

/* # Team Section Style CSS*/
.team {
    margin-bottom: 30px;
}

.team .team-member {
    background-color: white;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    max-height: 440px;
}

.team .team-member .member-img {
    position: relative;
    overflow: hidden;
    height: 350px;
    padding: 20px;
}


@media screen and (max-width: 900px) {
    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
        height: 550px;
        padding: 20px;
    }
}

@media screen and (max-width: 500px) {
    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
        height: 400px;
    }
}

.team .team-member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-member .social a {
    transition: color 0.3s;
    color: var(--heading-color);
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team .team-member .social a i {
    line-height: 0;
}

.team .team-member .social a:hover {
    color: var(--accent-color);
}

.team .team-member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .team-member .member-info {
    padding: 25px 15px;
    text-align: center;
}

.team .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
    opacity: 1;
}

/* End Team Section Style CSS  */

/* Tesimonial Section Style CSS  */

.testimonial-bg {
    background-image: url(../images/testimonial-bg.png);
    width: 100%;
    min-height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0;
    row-gap: 30px;
    overflow: hidden;
}
.testimonial .image {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slide p {
    text-align: center;
    padding: 0 160px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.slide .quote-icon {
    font-size: 30px;
    color: var(--main-color-ocean-blue);
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details .name {
    font-size: 18;
    font-weight: 600;
    color: #333;
}

.details .job {
    font-size: 15px;
    font-weight: 300;
    color: #333;
}

/* Swiper Button Css */

.testi-nav-btn::after,
.testi-nav-btn::before {
    color: var(--main-color-ocean-blue);
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color-ocean-blue);
}

@media screen and (max-width: 768px) {
    .slide p {
        padding: 0 20px;
    }
    .testi-nav-btn::after,
    .testi-nav-btn::before {
        display: none;
    }
}

/* End Testimonial Section Style CSS  */

/* Lemooi Beauty Ad Section Style CSS  */

.beauty-ad-container {
    background-image: url(../images/beauty-ad.jpg);
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
}
/* End Lemooi Beauty Ad Section Style CSS  */

/* Contact Section Style CSS */

.address-field {
    padding: 35px;
    line-height: 5px;
}

.address-field-2 {
    padding-left: 35px;
    padding-bottom: 35px;
    line-height: 5px;
}
.map-container {
    padding-left: 35px;
    padding-bottom: 35px;
}

@media screen and (max-width: 900px) {
    .address-field {
        padding: 20px;
        line-height: 5px;
    }
    .address-field-2 {
        padding-left: 20px;
        line-height: 5px;
    }

    .map-container {
        padding-left: 0px;
    }
}

.contact-container .center-heading {
    margin-bottom: 0;
}
.contact_section {
    background-image: url(../images/semicircle.png);
    background-repeat: no-repeat;
    background-size: 14%;
    background-position: left center;
}

.contact-form {
    padding: 25px;
    border-radius: 20px;
}

.contact-form input {
    border: none;
    outline: none;
    background-color: #dedee0;
    color: black;
    width: 100%;
    margin: 10px 0;
    padding: 7px 10px;
}

.contact-form .input_message {
    height: 120px;
}

.contact-form input::placeholder {
    color: #000000;
}

.contact-form button {
    border: none;
    outline: none;
    padding: 7px 50px;
    text-transform: uppercase;
    margin-top: 25px;
    background-color: #fec913;
    color: #084756;
}

/* End Contact Section Style CSS */

/* ------------------------ End Home Page Style CSS -----------------------------  */

/* --------------------------------- Sub Page Style CSS ---------------------------------------- */

.page-heading-container {
    background-color: var(--main-color-dark-ocean-blue);
    color: #fff;
}

.page-heading {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.speciality-image-container {
    display: flex;
    align-items: center;
    justify-content: end;
}
.speciality-image-container img {
    width: 365px;
}

@media screen and (max-width: 766px) {
    .speciality-image-container {
        justify-content: center;
    }
    .speciality-image-container img {
        width: 100%;
    }
    .page-heading h1 {
        font-size: 2rem;
    }
}

hr.s1 {
    border: 1px solid var(--main-color-ocean-blue);
    width: 35%;
    opacity: 1;
}
hr.s2 {
    transform: translateY(-10px);
    border: 2px solid #c8924b;
    width: 30%;
    opacity: 1;
}

/* --------------------------------- End Sub Page Style CSS ---------------------------------------- */

/* --------------------------- Speciality Details Page -----------------------------   */

.speciality-content h2 {
    color: var(--main-color-dark-ocean-blue);
    font-weight: bolder;
}

.speciality-content p {
    color: gray;
}

.speciality-content .card {
    border: none;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
    background-color: var(--main-color-dark-ocean-blue);
    padding-right: 10px;
    padding-bottom: 10px;
}

.speciality-content .card .inner-card {
    background-color: #fff;
    padding: 10px;
    border-bottom-right-radius: 10px;
}

.speciality-content h5 {
    font-weight: bolder;
}

/* ----------------------- End Speciality Details Page --------------------------  */

/* -------------------------------- Gallery Page Style CSS ---------------------------------------- */
.gallery-block.grid-gallery {
    padding-bottom: 60px;
    padding-top: 60px;
}

.gallery-block.grid-gallery .heading {
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block.grid-gallery .heading h2 {
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover {
    opacity: 0.8;
}

.gallery-block.grid-gallery .item img {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.gallery-block.grid-gallery .item {
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .gallery-block.grid-gallery .scale-on-hover:hover {
        transform: scale(1.05);
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
    }
}

/* -------------------------------- End Gallery Page Style CSS ---------------------------------------- */


.main_doctor_card {
    background-color: rgb(245, 245, 245);
}


/* .doctor-info{
    padding: 70px 10px 10px 40px;
}
.doctor-info h6 {
    color: var(--main-color-ocean-blue);
}

.doctor-info .doctor_name{
    font-size: 20px;
    font-weight: 600;
}

.doctor_img_container img {
    height: auto;
    width: 100%;
} */
/* Footer Section Style CSS  */

footer {
    background-color: #033d47;
    min-height: 30vh;
    padding: 50px 0px;
    color: #fff;
}

footer .lemooi-text {
    text-transform: uppercase;
}

.footer-title-container {
    font-size: 20px;
    background: -webkit-linear-gradient(#edc770, #ac6b2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 40px;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer .footer-about {
    text-align: justify;
    text-justify: inter-word;
}

footer .quick-link a {
    color: rgb(187, 187, 187);
}

footer .quick-link:before {
    content: "\00BB";
    font-size: 25px;
    color: rgb(187, 187, 187);
}

.footer-location {
    font-size: 35px;
}

footer .address-container {
    display: flex;
}

.address-container .address {
    line-height: 5px;
    margin-left: 10px;
}
.address-container i {
    font-size: 35px;
}

.social-media-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-media-links .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #446e75;
    height: 40px;
    width: 40px;
    border-radius: 5px;
}

.social-media-links a {
    color: white;
}

.social-media-links .icon-container i {
    font-size: 25px;
}

/* End Footer Section Style CSS  */

/* Copyright Section Style CSS  */

.copyright {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.copyright p {
    font-size: 15px;
    line-height: 5px;
}

/* End Copyright Section Style CSS  */

.card_1 {
    background-color: rgb(245, 245, 245);
}

.card_1 img {
    height: auto;
    width: 100%;
}

.card_1 .card_1_body {
display: flex;
align-items: center;
justify-content: center;
line-height: 5px;
}

.card_1 .card_1_body h4{
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color-dark-ocean-blue);
    text-align: center;
}
.card_1 .card_1_body p {
    text-align: center;
}


.whychooselemooi_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whychooselemooi {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding-bottom: 50px ;
    row-gap: 30px;
    overflow: hidden;
}

.whychooselemooi .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.whychooselemooi .swiper_body {
    background-color: rgb(245, 245, 245);
    width: 100%;
    text-align: left;
    padding: 20px;
    border-radius: 20px;
}

.whychooselemooi .swiper_body img {
    height: auto;
    width: 100%;
    border-radius: 20px;
}
.whychooselemooi .swiper_body h5 {
    font-size: x-large;
    font-weight: bolder;
    color: var(--main-color-ocean-blue);
}
.whychooselemooi .swiper_body p {
    padding: 0;
    font-size: 15px;
    text-align: left;
    margin-top: 30px;
}

.whychooselemooi .swiper_body .whychooselemooi-content{
    display: flex;
    align-items: center;
    justify-content: center;
}





.float_whatsapp_wrap {
position: fixed;
left: 28px;
bottom: 18px;
z-index: 101;
display: flex;
align-items: center;
transition: 0.5s;
}

.float_whatsapp_icon_wrap {
width: 55px;
height: 55px;
background: -webkit-linear-gradient(#49f544, #2dd129);
border-radius: 50%;
cursor: pointer;
text-align: center;
font-size: 40px;
color: #fff;
transition: 0.8s;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px 0 rgb(98 212 115);
}

.float_call_wrap{
    position: fixed;
right: 28px;
bottom: 18px;
z-index: 101;
display: flex;
align-items: center;
transition: 0.5s;
}

.float_call_icon_wrap{
    width: 55px;
height: 55px;
background: -webkit-linear-gradient(#16B2F7, #1799d1);
border-radius: 50%;
cursor: pointer;
text-align: center;
font-size: 40px;
color: #fff;
transition: 0.8s;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px 0 #6cc2e7;
}


.card-img-left {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.card {
    border: none;
}

.card-title {
    font-size: 25px;
    font-weight: bold;
    color: var(--main-color-dark-ocean-blue);
}

.doctors_title {
    text-align: center;
    background: rgb(245, 245, 245);
}
.doctors_title h5 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--main-color-dark-ocean-blue);
}