
/* ------------ Reset CSS starts ------------ */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
    --fs-h1: 5rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.2rem;

    --fs-extraLight: 200;
    --fs-light: 300;
    --fs-regular: 400;
    --fs-medium: 500;
    --fs-semiBold: 600;
    --fs-bold: 700;
    --fs-extraBold: 800;
    --fs-black: 900;

    --primary-color: #F5893E;
    --secondary-color: #00B6F2;
    --secondary-color-dark: #00aaa9;
    --green-color: #96c93e;
    --dark-color: #6a5f5d;

    --bg-color: #F5F5F5;
    --text-black: #000;
    --text-white: #fff;
    --white-color: #fff;
}
* {
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
}
html {
letter-spacing: 1px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
scroll-behavior: smooth;
overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
margin: 0;
padding: 0;
}
ul,
li {
list-style: none;
}
a,
a:hover,
a:focus {
outline: 0;
text-decoration: none;
-webkit-transition: 0.5s linear;
-moz-transition: 0.5s linear;
-ms-transition: 0.5s linear;
-o-transition: 0.5s linear;
transition: 0.5s linear;
}
body {
    font-family: var(--primary-font);
    overflow-x: hidden;
    font-family: "Segoe UI", sans-serif;
}
/* --------------- Reset CSS ends -------------- */

/* ---------- comman CSS start ------------ */
h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fs-bold);
    line-height: 110px;
}
h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fs-bold);
}
h3 {
    font-size: var(--fs-h3);
}
h5 {
    font-size: var(--fs-h5);
}
.semibold {
    font-weight: var(--fs-semiBold);
}
.semilight {
    font-weight: var(--fs-extraLight);
}
.bold {
    font-weight: var(--fs-bold);
}
h4 {
    font-size: var(--fs-h4);
}

.container-fluid-half {
    padding: 50px;
}
.container-fluid-half-top {
    padding: 0px 50px 50px 50px;
}
.mobile-only, .mobile-only-block, .mobile-only-flex {
    display: none;
}
.desktop-only-block {
    display: block;
}
.desktop-only-flex {
    display: block;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.text-justify {
    text-align: justify;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}

.text-gray-400 {
    color: var(--bs-gray-400);
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-secondary {
    background-color: var(--secondary-color) !important;
}
.bg-background {
    background-color: var(--bg-color) !important;
}
.bg-secondary-dark {
    background-color: var(--secondary-color-dark) !important;
}
.bg-dark {
    background-color: var(--dark-color) !important;
}
.bg-green {
    background-color: var(--green-color) !important;
}

.c-line-height {
    line-height: 90%;
}
/* ---------- comman CSS ends ------------ */

/* footer1 css */
.footer1 {

    background: linear-gradient(90deg,
              rgba(0, 182, 242, 0.6),
              rgba(245, 137, 62, 0.7)), 
              url('../images/footer-img.png') no-repeat;
            width: 100%;
    /* background: url('../images/footer-img.png') no-repeat; */
    background-position: 50% 50%;
	background-size: cover;
    padding: 100px;
    color: #fff;
    text-align: center;
}
.footer1-title {
    font-size: 6rem;
    font-weight: bold;
}
/* footer1 css */
/* footer css */
footer i {
    color: black;
}
.footer-menu {
    display: flex;
    justify-content: center;
}
.footer-contant {
    border-bottom: 2px solid black;
    padding-bottom: 50px;
    background: #f4f4f4;
}
.footer-condition {
    padding: 20px 50px;
}
.footer-contact-title {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.footer-contact-title::before {
    content: "";
    background: url('../images/footer-contact-before-img.png') no-repeat;
    background-size: contain;
    display: inline-block;
    width: 65px; 
    height: 65px;
    position: absolute;
    left: -35px;
}
.footer-icon-blue i {
    color: #00B6F2;
}
.x-img img {
    width: 100%;
}
.img-cover {
    object-fit: cover;
}
.img-contain {
    object-fit: contain;
}
/* footer css */

/* header css */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    transition: all 0.3s ease;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    height: 80px;
    padding: 0 50px;
    margin: 0 auto;
    z-index: 999;
}
.nav-menu ul {
    display: flex;
}
.nav-menu-li {
    margin-left: 20px;
}
.nav-menu-title {
    color: var(--text-black);
    font-weight: var(--fs-semiBold);
}
.nav-menu-title.active {
    color: var(--primary-color);
}
.nav-menu-title:hover {
    color: var(--primary-color);
}

.toggle-menu,
.close-menu {
    display: none;
}
.back-menu {
    display: none;
}
.sub-back-menu {
    display: none;
}

.nav-list {
    display: flex;
}
.c-nav-item {
    /* margin: 0 1rem; */
    /* padding: 1.4rem 0; */
}
.megamenu {
    position: absolute;
    /* width: 100%; */
    top: 30px;
    left: 0%;
    /* display: flex;
    justify-content: center; */
    background-color: #fff;
    /* border-radius: 0 0 20px 20px; */
    box-shadow: 0 23px 23px -21px rgb(0 0 0 / 25%);
    /* padding: 0 50px; */
    z-index:1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
}
.c-dropdown:hover .megamenu1 {
    width: auto!important;
}
.nav-link {
    color: var(--black-color);
}
.nav-link.active {
    color: var(--primary-color);
}
.nav-link:hover {
    color: var(--primary-color);
}
.dropdown-link {
    display: flex;
    align-items: center;
}
.dropdown-icon {
    font-size: 1rem;
}
/* .megamenu {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 23px 23px -21px rgba(0, 0, 0, 0.25);
    padding: 0 50px;
    z-index: -99;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
} */
.nav-link:focus {
    color: var(--primary-color);
}
.nav-link {
    
}
.megamenu .content {
    display: flex;
    flex-direction: column;
    /* margin: 1rem 0.2rem 0.2rem 0.2rem; */
    /* border-bottom: 0.5px solid var(--white-color); */
}
.megamenu {
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
}

.megamenu-item {
    display: flex;
    align-items: center;
    /* margin-bottom: 0.2rem; */
    background-color: var(--primary-color);
    border-bottom: 1px solid #fff;
}
.megamenu-item button {
    background: none;
    outline: none;
    border: none;
}
.header-megamenu {
    font-weight: 600;
    color: var(--primary-color);
    /* padding-bottom: 1rem; */
}
.c-sub-dropdown-1 {
    /* margin-top: 1rem; */
}
.menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    background-color: #efeef1;
    margin-right: 0.5rem;
}
.menu-icon i {
    line-height: 32px;
    font-size: 22px;
    color: #a92ec8;
}
.megamenu-link  {
    font-weight: 500;
    color: white;
}
.megamenu-item:hover {
    transform: scale(1.1);
    background-color: var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.3s ease-out;
}
.megamenu-link:hover {
    color: #000;
}
.megamenu-link a {
    color: #000;
}
.megamenu-link:hover {
    color: var(--primary-color);
}
.megamenu-link a:hover {
    color: var(--primary-color);
}
.megamenu-link span {
    font-size: 1.2rem;
    color: var(--primary-color);
}
.c-dropdown:hover .megamenu {
    color: #000;
    visibility: visible;
    transition: all 0.5s ease;
    opacity: 1;
    max-width: 350px;
    width: 350px;
    padding-top: 0.8rem;
}
.c-dropdown {
    position: relative;
}
#c-dropdown {
    cursor: pointer;
}
.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
    .megamenu {
        justify-content: start;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1023px) {
    .megamenu {
        flex-direction: column;
        position: static;
        box-shadow: none;
        border-radius: 0;
        height: 0;
        max-width: 350px;
        overflow: hidden;
        padding: 0 25px;
        transition: all 0.5s ease;
    }
    .c-dropdown {
        position: static;
    }
    .nav-list {
        position: absolute;
        height: 100vh;
        width: 100%;
        right: -100%;
        max-width: 100%;
        top: 0;
        background-color: #fff;
        flex-direction: column;
        overflow-x: hidden;
        display: flex;
        transition: 0.3s;
        padding-top: 10px;
        align-items: center;
    }


    .sub-nav-list, .sub-nav-list-1,.sub-nav-list-2,.sub-nav-list-3,.sub-nav-list-4,.sub-nav-list-5,.sub-nav-list-6 , .sub-sub-nav-list-1, .sub-sub-nav-list-2, .sub-sub-nav-list-3, .sub-sub-nav-list-4, .sub-sub-nav-list-5, .sub-sub-nav-list-6, .sub-sub-nav-list-7, .sub-sub-nav-list-8, .sub-sub-nav-list-9, .sub-sub-nav-list-10, .sub-sub-nav-list-11 {
        position: absolute;
        height: 100vh;
        width: 350px;
        right: -100%;
        max-width: 100%;
        top: 0;
        background-color: #fff;
        flex-direction: column;
        overflow-x: hidden;
        display: block;
        transition: 0.3s;
        padding-top: 10px;
    }

    .megamenu .content {
        padding: 1rem 1rem 1rem 1rem;
        margin: 0;
    }
    .content-padding {
        padding: 0rem 1rem 1rem 1rem !important;
    }
    .dropdown-active {
        height: 100%;
        color: #000;
        visibility: visible;
        transition: all 0.5s ease;
        opacity: 1;
    }
    nav {
        padding: 0 15px;
    }
    .c-nav-item {
        padding: 0.5rem 0;
    }
    .toggle-menu, .close-menu {
        display: block;
    }
    .back-menu {
        display: block;
    }
    .toggle-menu i:hover {
        color: var(--primary-color);
    }
    .close-menu {
        margin: 1rem 1rem 1rem auto;
        background-color: var(--primary-color);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        text-align: center;
    }
    .back-menu {
        margin: 1rem 1rem 1rem auto;
        background-color: var(--primary-color);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        text-align: center;
    }
    .sub-back-menu {
        display: block;
        margin: 1rem 1rem 1rem auto;
        background-color: var(--primary-color);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        text-align: center;
    }
    .close-menu:hover {
        color: var(--primary-color);
    }
    .back-menu:hover {
        color: var(--primary-color);
    }
    .close-menu i {
        line-height: 32px;
        color: #fff;
        font-size: 22px;
    }
    .back-menu i {
        line-height: 32px;
        color: #fff;
        font-size: 22px;
    }
    .sub-back-menu i {
        line-height: 32px;
        color: #fff;
        font-size: 22px;
    }
    .show-menu {
        right: 0%;
    }
    .sub-show-menu {
        right: 0%;
    }
}

/* header css */

/* home page css */
.hero-home-img-container {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    position: relative;
    z-index: 5;
}
.hero-home-img {
    width: 80%;
}
.mammo-img {
    width: 60% !important;
}
.sonography-img {
    width: 40% !important;
}
.hero-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding-left: 35px; */
}
.logo {
    padding: 10px 0;
    z-index: 100;
}
.hero-swiper-prev {
    left: 0%;
}
.hero-swiper .swiper-wrapper {
    padding: 20px;
}
.x-title-span {
    color: var(--primary-color);
    font-size: 4.5rem;
    position: relative;
}
.hero-title1 {
    display: inline-block;
}

.hero-pera {
    max-width: 450px;
}
.home-about-text {
    padding-top: 105px;
}
.read-more-black {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-black);
    cursor: pointer;
}
.read-more-black::before {
    content: "";
    border-bottom: 2px solid var(--text-black);
    width: 35px;
    margin-right: 5px;
    transition: all 0.5s ease-in;
}
.read-more-black:hover {
    color: var(--primary-color);
}
.read-more-black:hover::before {
    border-bottom: 2px solid var(--primary-color);
}

.read-more-white {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    cursor: pointer;
}
.read-more-white::before {
    content: "";
    border-bottom: 2px solid var(--text-white);
    width: 35px;
    margin-right: 5px;
    transition: all 0.5s ease-in;
}
.read-more-white:hover {
    color: var(--text-black);
}
.read-more-white:hover::before {
    border-bottom: 2px solid var(--text-black);
}
.building-img {
    width: 450px;
}
.building-img img {
    width: 100%;
}
.home-cardiact-article {
    padding: 50px 50px 0 50px;
}
.home-cardiact-bg {
    background: url('../images/cardiac-ct.jpg');
    background-size: cover;
}
.home-cardiact-card {
    max-width: 550px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.home-cardiact-card1 {
    transform: translateY(0px);
}
.home-cardiact-card2 {
    transform: translateY(0px);
}
.cardiact-card-primary {
    background: rgba(245, 137, 62, 0.90);
}
.cardiact-card-secondary {
    background: rgba(0, 182, 242, 0.90);
}
.home-cardiact-text h1 {
    opacity: 1 !important;
}
.home-xray-bg {
    background: url('../images/x-ray-wheel.jpg') no-repeat;
    background-size: cover;
    position: relative;
}
.margin-left-0 {
    margin: auto 0 auto auto;
}
.animal-xray-container {
    position: relative;
}
.animal-xray {
    /* display: flex;
    align-items: center; */
    width: 100%;
}
.dog-cat-img {
    width: 100%;
}
.dog-cat-img img {
    width: 100%;
}
.animal-xray-text {
    max-width: 100%;
    margin: auto;
}
.animal-xray-title {
    margin-left: -50px;
    color: #ED5B00;
}
.testimonial-bg {
    position: relative;
}
.testimonials-text {
    display: flex;
    justify-content: space-between;
} 
.textimonials-swiper-text {
    max-width: 550px;
    /* padding-left: 50px; */
    position: relative;
}
.textimonials-swiper-text::before {
    content: "";
    background: url('../images/quot.png') no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
    position: absolute;
    left: -20%;
}
.textimonials-swiper-text-container {
    position: relative;
    max-width: 60%;
    margin: auto auto auto auto;
    transform: translateX(50px);
    border: 5px solid var(--primary-color);
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    padding: 25px 0;
    /* added  */
    justify-content: center; 
}
.testimonial-swiper-img {
    min-width: 350px;
    transform: translateX(-50%);
}
.testimonial-swiper-img img {
    width: 100%;
}
.building-title {
    color: var(--secondary-color);
    opacity: 0.3;
    text-align: center;
}
.dr-info-part {
    padding: 50px 50px 0 50px;
}
.dr-ritesh-img {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}
.dr-ritesh-img img {
    width: 60%;
}
/* .dr-ritesh-img::before {
    content: "Dr.Ritesh \A Prajapati";
    white-space: pre-wrap;
    font-size: var(--fs-h2);
    line-height: 40px;
    font-weight: var(--fs-bold);
    color: var(--text-white);
    position: absolute;
    left: 25%;
    top: 20%;
    z-index: -1;
} */

.dr-prajapti-img {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    z-index: 1;
}
.dr-prajapti-img img {
    width: 60%;
}
.dr-text-content {
    max-width: 600px;
}
/* .dr-prajapti-img::after {
    content: "Dr. Hetal \A Prajapati";
    white-space: pre-wrap;
    font-size: var(--fs-h2);
    line-height: 40px;
    font-weight: var(--fs-bold);
    color: var(--text-white);
    position: absolute;
    right: 20%;
    top: 20%;
    z-index: -1;
} */
.management-text {
    border-bottom: 2px solid #fff;
    opacity: 0.8;
    color: #fff;
    text-align: right;
    padding-bottom: 5px;
}




/* #container {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: colors 1s infinite;
  }
  #halfclip {
    width: 50%;
    height: 100%;
    right: 0px;
    position: absolute;
    overflow: hidden;
    transform-origin: left center;
    animation: cliprotate 4s steps(2) infinite;
    -webkit-animation: cliprotate 4s steps(2) infinite;
  }
  .halfcircle {
    box-sizing: border-box;
    height: 100%;
    right: 0px;
    position: absolute;
    border: solid 20px transparent;
    border-top-color: #000;
    border-left-color: #000;
    border-radius: 50%;
  }
  #clipped {
    width: 200%;
    animation: rotate 2s linear infinite;
    -webkit-animation: rotate 2s linear infinite;
  }
  #fixed {
    width: 100%;
    transform: rotate(100deg);
    animation: showfixed 4s steps(2) infinite;
    -webkit-animation: showfixed 4s linear infinite;
  }
  @-webkit-keyframes cliprotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(180deg);
    }
  } */

  /* @keyframes cliprotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(180deg);
    }
  } */
  /* @-webkit-keyframes rotate {
    0% {
      transform: rotate(-45deg);
    }
    100% {
      transform: rotate(135deg);
    }
  } */

  /* @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(180deg);
    }
  }
  @-webkit-keyframes showfixed {
    0% {
      opacity: 0;
    }
    49.9% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  } */

 
  #radius {
    height: 100px;
    overflow: hidden;
    position: relative;
    width: 200px;
}

.radius-outline {
    -moz-animation: anim 3s infinite linear alternate;
    -webkit-animation: anim 3s infinite linear alternate;
    animation: anim 3s infinite linear alternate;
    border-bottom-left-radius: 100%;
    border-left: 10px solid gray;
    border-right: 10px solid transparent;
    position: relative;
    top: 100px;
    -moz-transform-origin: right top;
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

.radius-outline,
.radius-outline::after {
    border-bottom: 10px solid gray;
    border-top: 10px solid transparent;
    box-sizing: border-box;
    height: 100px;
    width: 100px;
}

.radius-outline::after {
    border-right: 10px solid gray;
    border-left: 10px solid transparent;
    border-bottom-right-radius: 100%;
    content: "";
    display: block;
    position: absolute;
    right: -110px;
    top: -10px;
}

.radius-info {
    color: gray;
    font-family: Arial;
    font-size: 16px;
    position: absolute;
    left: 50%;
    top: 70%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@-moz-keyframes anim {
    to { transform: rotate(180deg); }
}

@-webkit-keyframes anim {
    to { transform: rotate(180deg); }
}

@keyframes anim {
    to { transform: rotate(180deg); }
}
/* home page css */

/* home service css */
.home-service-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 50px 0 50px;
}
.home-service-semititle {
    padding-left: 50px;
}
.service-btn {
    background-color: transparent;
    border: 2px solid var(--text-black);
    color: var(--text-black);
    border-radius: 2rem;
    padding: 15px 30px;
    transition: all 0.3s ease;
}
.service-btn:hover {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--text-white);
    border-radius: 2rem;
    padding: 15px 30px;
}
.service-btn.active {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--text-white);
    border-radius: 2rem;
    padding: 15px 30px;
}
.service-btn {
    color: var(--text-black);
}
.service-btn.active {
    color: var(--text-white);
}
.home-service-border {
    width: 100%;
}
.home-service-title {
    margin-right: 20px;
}
.home-service-img {
    min-width: 70vw !important;
    /* max-width: 1050px; */
}
.home-service-img img {
    width: 100%;
}
.home-service-swiper-container {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 150px;
    position: relative;
}
.home-service-swiper-box {
    position: absolute;
    max-width: 350px;
    border-radius: 1.5rem;
    padding: 30px;
    background: rgba(0, 182, 242, 1);;
    top: 50%;
    left: 25%;
    transform: translate(-50%,-50%);
    z-index: 5;
    color: var(--text-white);
}
.home-service-swiper-svg svg {
    width: 15px;
    margin-right: 15px;
}
.home-service-swiper-pera {
    max-width: 350px;
}
.home-service-next {
    right: initial;
    left: 70px;
    color: #000;
}
.home-service-prev {
    left: 20px;
}
.home-service-next, .home-service-prev {
    top: initial;
    bottom: 7%;
}
.service-bone-padding-bottom {
    padding-bottom: 150px!important;
}
/* home service css */

/* csr css */
.csr-section {
    padding: 50px 25px 50px 50px;
    position: relative;
}
.csr {
    padding-top: 25px;
    /* padding-bottom: 50px;
    margin-left: 80px; */
    padding-right: 25px;
    position: initial;
}
.csr-img-settings {
    background-position: center;
    background-size: cover;
    width: 500px;
    height: 250px;
    border-radius: 2rem;
    position: relative;
}
.csr-img {
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(0, 182, 242, 0.50)),url('../images/csr1.jpg');
}
.csr-img-text {
    position: absolute;
    bottom: 0%;
    padding: 10px 25px;
    color: var(--text-white);
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    border-radius: 2rem;

}
.csr img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}
.csr-slider {
    position: absolute;
}
.csr-next {
    left: 8%;
    top: 60%;
}
.csr-prev {
    left: 3.5%;
    top: 60%;
}

.csr-border-b {
    border-bottom: 2px solid rgb(198, 198, 198);
    padding-bottom: 30px;
}
/* csr css */

/* information-section */

 

.information-section{  
    position: relative;
}
 
 
.information{
    height: 185px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap :50px;
    align-items: center;
    background-color: #11AFEC;
    flex-wrap: nowrap;
}
.information > div{
    min-width: fit-content;
    height: 90px;
    background-color: rgba(245,137,62,0.1) !important;
    border-radius: 10px;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    flex-wrap: nowrap; 
    transition: 0 !important;
}
.information > div > a{
    min-width: fit-content;
    height: 90px;  
    color: white !important;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    flex-wrap: nowrap; 
    transition: 0 !important;
    cursor: pointer;
}
.svgDiv>svg{
    fill : white; 
}

.information > div:hover{ 
    background-color: #F5893E !important; 
    transition: 0 !important;

}

.cardiac-service-next:hover, .cardiac-service-prev:hover{
    color: black !important;
    background-color: transparent;
    border: 2px solid black;
    padding: 20px; 
    border-radius: 50%;
}
.cardiac-service-next {
    right: initial;
    left: 140px;
}
.cardiac-service-prev {
    left: 80px;
    font-size: 12px; 
}
.cardiac-service-next, .cardiac-service-prev {
    top: initial;
    bottom: 5% !important;
}
.cardiac-service .swiper-button-next:after {
    font-size: 16px !important; 
    font-weight: 600 !important;
}
.cardiac-service .swiper-button-prev:after {
    font-size: 16px !important; 
    font-weight: 600 !important;
}

 

.title {
    position: relative;
    overflow: hidden;
}
.split-parent {
    overflow: hidden;
}
.split-child {
    display: inline-block;
}

.hero-home-img-article,.hero-home-img-article-container {
    display: relative;
}
.hero-ring {
    position: absolute;
    top: 23%;
    right: -2%;
    transform: translateY(-50%);
    z-index: 1;
    width: 260px;
}

.hero-wifi-1 {
    position: absolute;
    top: 23%;
    right: -2%;
    transform: translateY(-50%);
    z-index: 1;
    width: 260px;
}
.hero-wifi-2 {
    position: absolute;
    top: 13%;
    left: -20%;
    transform: translateY(-50%);
    z-index: 1;
    width: 260px;
}
.hero-icon-size-2 {
    width: auto;
    transform: rotate(110deg);
}
.hero-wifi-3 {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    z-index: 1;
    width: 260px;
}
.hero-icon-size-3 {
    width: 100%;
    transform: rotate(-90deg) !important;
}
.hero-wifi-4 {
    position: absolute;
    bottom: -5%;
    left: -8%;
    /* transform: translateY(-50%); */
    z-index: 1;
    width: 260px;
}
.hero-icon-size-4 {
    width: 100%;
    transform: rotate(60deg) !important;
}
.hero-wifi-5 {
    position: absolute;
    bottom: 3%;
    right: 5%;
    /* transform: translateY(-50%); */
    z-index: 1;
    width: 260px;
}
.hero-icon-size-5 {
    width: 100%;
    transform: rotate(-60deg);
}
.hero-wifi-6 {
    position: absolute;
    bottom: 23%;
    right: 3%;
    /* transform: translateY(-50%); */
    z-index: 1;
    width: 260px;
}
.hero-icon-size-6 {
    width: 100%;
    transform: rotate(-90deg);
}
.hero-wifi-7 {
    position: absolute;
    top: 23%;
    right: -2%;
    transform: translateY(-50%);
    z-index: 1;
    width: 260px;
}




.hero-ring svg {
    width: 200px;
    height: 200px;
    transform: rotate(-80deg);
}
.hero-icon-size {
    width: 100%;
    transform: rotate(-115deg);
}
.building-ring {
    width: 280px;
}
.building-icon-size {
    width: 100%;
    transform: rotate(110deg);
}
.hero-text-icon-size {
    position: absolute;
    width: 12%;
    right: -6%;
    top: 8%;
    transform: rotate(-90deg);
}
.hero-ring-1 {
    position: absolute;
    top: 34%;
    right: 4%;
    transform: translateY(-50%);
    z-index: 1;
}
.hero-ring-1 svg {
    width: 260px;
    height: 260px;
    transform: rotate(-90deg);
}
.hero-ring-2 {
    position: absolute;
    top: 34%;
    right: 2.5%;
    transform: translateY(-50%);
    z-index: 1;
}
.hero-ring-2 svg {
    width: 300px;
    height: 300px;
    transform: rotate(-90deg);
}
.building-img1 {
    position: relative;
    z-index: 5;
}
.building-ring {
    position: absolute;
    top: 50%;
    left: -40%;
    transform: translateY(-50%);
    z-index: 1;
}
.building-ring svg {
    width: 200px;
    height: 200px;
    transform: rotate(-200deg);
}

.building-ring-1 {
    position: absolute;
    top: 53%;
    left: -20%;
    transform: translateY(-50%);
    z-index: 1;
}
.building-ring-1 svg {
    width: 260px;
    height: 260px;
    transform: rotate(-200deg);
}

.building-ring-2 {
    position: absolute;
    top: 50%;
    left: -27.5%;
    transform: translateY(-50%);
    z-index: 1;
}
.building-ring-2 svg {
    width: 300px;
    height: 300px;
    transform: rotate(-200deg);
}
.about-home {
    position: relative;
}
.about-text {
    position: relative;
    z-index: 5;
}
.about-ring {
    position: absolute;
    top: -10%;
    left: -10%;
    /* transform: translateY(-50%); */
    z-index: 1;
    opacity: 0.5;
}
.about-ring svg {
    width: 400px;
    height: 400px;
    transform: rotate(-90deg);
}

.home-service-container {
    position: relative;
    z-index: 5;
}
.service-home {
    position: relative;
}
.service-ring {
    position: absolute;
    top: -4%;
    left: -10%;
    /* transform: translateY(-50%); */
    z-index: 1;
    opacity: 0.5;
}
.service-ring svg {
    width: 400px;
    height: 400px;
    transform: rotate(-90deg);
}

.dr-ritesh {
    position: relative;  
}
 
.ritesh-ring {
    position: absolute;
    top: 20%;
    right: -15%;
    /* transform: translateY(-50%); */
    z-index: 1;
    opacity: 0.2;
}
.ritesh-ring svg {
    width: 400px;
    height: 400px;
    /* transform: rotate(-90deg); */
}

.dr-ritesh-img {
    position: relative;
}
.ritesh-ring-1 {
    position: absolute;
    top: 30%;
    left: 5%;
    /* transform: translateY(-50%); */
    z-index: 1;
    opacity: 0.2;
}
.dr-ritesh-img1 {
    position: relative;
    z-index: 5;
}
.ritesh-ring-1 svg {
    width: 400px;
    height: 400px;
    transform: rotate(90deg);
}

.dr-hetal {
    position: relative;
}
.hetal-ring {
    position: absolute;
    /* top: 30%; */
    bottom: -32%;
    left: -12%;
    /* transform: translateY(-50%); */
    z-index: 1;
    opacity: 0.2;
}
.hetal-ring svg {
    width: 400px;
    height: 400px;
    transform: rotate(180deg);
}

.dr-prajapti-img {
    position: relative;
}
.dr-prajapti-img1 {
    position: relative;
    z-index: 5;
}
.hetal-ring-1 {
    position: absolute;
    top: 30%;
    right: 0%;
    /* transform: translateY(-50%); */
    z-index: 1;
    opacity: 0.2;
}
.hetal-ring-1 svg {
    width: 400px;
    height: 400px;
    transform: rotate(-90deg);
}


.service-read-btn {
    margin-bottom: 100px;
}
.main {
    margin-top: 60px;
}


/* about page */
.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-hero-img img {
    width: 100%;
    height: 100%;
}
.about-cirti-pera {
    background-color: var(--primary-color);
    padding: 50px;
    width: 100%;
}
.about-cirti-img img {
    width: 100%;
    height: 100%;
}
.about-cirti-text {
    display: flex;
    align-items: center;
}
.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}
.about-us {
    max-width: 600px;
}
.about-mission {
    display: flex;
    justify-content: center;
}
.about-mission-pera {
    padding-left: 15px;
    max-width: 650px;
    margin: auto 0 auto 0;
}
.about-mission-title {
    border-right: 4px solid var(--primary-color);
    color: var(--primary-color);
    padding-right: 15px;
    text-align: right;
}
.about-vision-title {
    border-left: 4px solid var(--secondary-color);
    color: var(--secondary-color);
    padding-left: 15px;
    text-align: left;
}
.about-vision-pera {
    padding-right: 15px;
    max-width: 650px;
    margin: auto 0 auto 0;
    text-align: right;
}
.about-our-hospital-img {
    /* width: 100%; */
    height: 100%;
}
.about-our-hospital-img img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.about-management-dr {
    /* padding-top: 150px; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.about-management-dr-img {
    width: 100%;
    height: 100%;
}
.about-management-dr-img img {
    width: 100%;
    height: 100%;
}
/* about page */

/* career page */
.career-form-input input {
    background: transparent;
    border: 2px solid var(--bs-gray-600);
    outline: none;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0.5rem;
}
.career-form-input textarea {
    background: transparent;
    border: 2px solid var(--bs-gray-600);
    outline: none;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0.5rem;
}

.career-upload-btn-container {
    position: relative;
    overflow: hidden;
    /* display: inline-block; */
}
.career-upload-btn {
    border: none;
    color: gray;
    background-color: transparent;
    padding: 8px 20px;
    font-size: 20px;
    /* font-weight: bold; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.career-upload-btn i {
    color: gray;
    margin-right: 20px;
}

.career-upload-btn-container input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.career-form-input input:focus {
    border: 2px solid var(--primary-color);
}

.career-submit-btn {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 50px;
    border-radius: 0.5rem;
    font-weight: bold;
    color: #fff;
    /* float: right; */
    margin-top: 15px;
}
.career-submit-btn-container {
    display: flex;
    justify-content: flex-end;
}
/* career page */

/* service page */
.service-hero-img-container {
    max-width: 100vw;
    width: 100vw;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-hero-img-container img {
    width: 50%;
}
.service-hero-img-container {
    position: relative;
}
.service-hero-title-before {
    color: var(--primary-color);
    text-align: right;
}
.service-hero-title-before span {
    color: var(--secondary-color);
    display: block;
}
.service-hero-before {
    margin-top: -150px;
    margin-right: -150px;
    font-size: 3rem;
}
.service-hero-title-after {
    color: var(--primary-color);
    text-align: left;
}
.service-hero-title-after span {
    color: var(--secondary-color);
    display: block;
}
.service-hero-after {
    margin-top: -170px;
    margin-left: -70px;
    font-size: 3rem;
}
.service-ctscan-hero-after {
    margin-left: -150px !important;
}
.service-ctscan-hero-before {
    margin-right: -40px !important;
}
.service-sonography-hero-before {
    margin-right: -0px !important;
}
.service-sonography-hero-after {
    margin-left: -50px !important;
}
.service-digital-xray-hero-before {
    margin-right: -10px!important;
}
.service-bone-hero-before {
    margin-right: -10px !important;
}
.service-bone-hero-after {
    margin-left: -10px !important;
}
.service-mammo-hero-after {
    margin-left: -10px !important;
}
.service-mammo-hero-before {
    margin-right: -10px !important;
}
.service-opg-hero-before {
    margin-right: -20px;
}
.service-opg-hero-after {
    margin-left: -50px;
}


.service-sonography-hero-img {
    width: 20% !important;
}
.service-mammo-hero-img {
    width: 30%!important;
}
.service-opg-hero-img {
    width: 35%!important;
}

.service-patient-sec {
    position: relative;
    padding-bottom: 100px;
}
.service-patient-article {
    max-width: 850px;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
}
.service-user-icon i {
    font-size: 4rem;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 20px;
    color: #fff;
}
.serive-title-border-bottom-white {
    border-bottom: 1px solid #fff;
}

.service-techFeature-article {
    position: relative;
    right: 0%;
    background-color: #fff;
    /* top: 150px; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    max-width: 750px;
    width: 750px;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    margin: -450px 0 auto auto;
}
.text-lg {
    font-size: 4rem;
}

.service-techFeature-ul li::before {
    content: "";
    background-color: var(--secondary-color);
    /* font-weight: bold; */
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    border-radius: 50%;
    margin: 0 0.8em 0 0.2rem;
}
.service-detail-info-w {
    max-width: 650px;
}
.service-detail-info-text-w {
    max-width: 550px;
}
.service-detail-info-img {
    width: 100%;
    height: 100%;
}
.service-detail-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.service-detail-info-card-sec {
    padding: 0 50px 50px 50px;
    position: relative;
    z-index: 1;
}
.service-detail-info-card-article {
    position: relative;
}
.service-detail-info-card-wrap {
    width: 100vw;
    height: 100px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 0%;
    z-index: 0;
}
.service-card {
    border-radius: 2rem;
    background-color: #fff;
    color: #000;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all 0.5s ease;
}
.service-card-icon {
    font-size: 2rem;
}
.service-card:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.csrActivity-sec {
    padding: 0 50px 50px 50px;
}


.csr-img-settings-service {
    background-position: center;
    background-size: cover;
    width: auto;
    height: 250px;
    border-radius: 2rem;
    position: relative;
}
.csr-img-service-secondary {
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(0, 182, 242, 0.70)),url('../images/csr1.jpg');
}
.csr-img-service-primary {
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(245, 137, 62, 0.70)),url('../images/csr1.jpg');
}
.csr-img-text-service {
    position: absolute;
    bottom: 2%;
    padding: 10px 25px;
    color: var(--text-white);
}
.csr-service {
    padding-top: 25px;
    padding-right: 25px;
    position: initial;
}
.csr-service img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.image-gallery-container {
    /* scroll-snap-type: x mandatory; */
    /* overflow-x: scroll;
    overflow-y: hidden;
    height: 80vh; */
    /* max-height: 100vh; */
    width: 100%;
    -webkit-overflow-scrolling: touch;
    /* overflow-x: auto; */
}
.grid {
    /* height: 80vh !important; */
}
.grid-item {
    scroll-snap-align: start;
    border-right: 1px solid white;
    padding: 1rem;
    /* position: relative; */
}

/* image slider */
.grid-item {
    width: 100%;
    margin-bottom: 0.5em;
  }
  .grid-item img {
    width: 100%;
  }
  .grid {
    display: flex;
    justify-content: center;
  }
  .grid-col {
    /* flex:1; */
    padding: 0 0.1em;
    padding-right: 8px;
  }
  .grid-col--3 {
    display: none;
  }
  
  @media (max-width: 767px) {
    .container {
      width: 100%;
    }
    .grid-col--2 {
      display: block;
    }
    .grid-col {
      padding: 0 0.1em;
    }
    .grid-item img {
      margin-bottom: 0.8em;
    }
    .grid-col--1,
    .grid-col--2,
    .grid-col--3 {
      display: none;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .container {
      width: 100%;
    }
    /* .grid-col--2 {
      display: block;
    } */
    .grid-col {
      padding: 0 0.5em;
    }
    .grid-item img {
      margin-bottom: 0.8em;
    }
  }
  @media (min-width: 1080px) {
    .grid-col--3 {
      display: block;
    }
    .container {
      width: 100%;
    }
    .grid-item {
      width: 250px;
    }
  }
  


  /* .filler {
    grid-row-end: span 4;
    margin-right: -1px;
    width: 1px;
  }
  .scroll {
    overflow: auto;
    padding: 20px 0 60px;
    max-width: 100%;
  }
  .grid {
    display: grid;
    grid-auto-flow: column dense;
    grid-template-rows: repeat(4, 150px);
    grid-template-columns: 1px;
    grid-auto-columns: 150px;
    grid-gap: 20px;
  }
  .simplebar-track {
    margin: 0 auto;
    max-width: 1000px;
    height: 20px !important;
    border: 1px solid #0024BC;
    border-radius: 100vw;
    overflow: visible;
    bottom: 10px;
    pointer-events: auto;
  }
  
  .simplebar-scrollbar {
    height: 100vh !important;
    left: -2px !important;
    top: -2px !important;
    cursor: grab;
  }
    .simplebar-scrollbar::before {
      background: url('data:image/svg+xml,%3Csvg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M6.42 6.3l1.8 1.8a.42.42 0 01-.6.6L5.1 6.18a.42.42 0 010-.6l2.53-2.52a.42.42 0 01.6.6l-1.81 1.8h4.45a.42.42 0 01.15.81.42.42 0 01-.15.03H6.42z" fill="%23fff"/%3E%3C/svg%3E'), url('data:image/svg+xml,%3Csvg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4.89 5.46l-1.8-1.8a.42.42 0 01.59-.6L6.2 5.58c.17.17.17.43 0 .6L3.68 8.7a.42.42 0 01-.6-.6L4.9 6.3H.44a.42.42 0 01-.15-.81c.04-.02.1-.03.14-.03H4.9z" fill="%23fff"/%3E%3C/svg%3E'), linear-gradient(93deg, #2AA5F2, #0047C8);
      background-position: left center, right center, center;
      background-size: auto 100%;
      background-repeat: no-repeat;
      box-shadow: 3px 0 6px 0 #0000004E;
      border-radius: 100vw;
      left: 0 !important;
      right: 0 !important;
      opacity: 1 !important;
    }
    
    .simplebar-scrollbar::after {
      content: 'SLIDE TO VIEW MORE';
      position: absolute;
      color: white;
      font-size: 13px;
      width: 100%;
      text-align: center;
      top: 0;
      left: 0;
      line-height: 20px + (2px * 2);
    }
  
  
  .simplebar-dragging .simplebar-scrollbar {
    cursor: grabbing;
  } */
      

/* image slider */
/* service page */

/* gallery page */
.gallery-grid-item { width: 200px; padding: 10px;}
.grid-item--width2 { width: 400px; padding: 10px; }
.gallery-grid-item a img {
    width: 100%;
}
.grid-item-width2 a img {
    width: 100%;
}
.gallery-grid img {
    max-width: 100%;
}
.grid-image img {
    max-width: 100%;
}
.gallery, .video {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-image-swiper .swiper-wrapper {
    height: 100vh;
}
/* gallery page */

.hero-swiper-slide {
    padding: 50px 0;
    margin: auto;
}
.hero-swiper-container {
    display: flex;
    align-items: center;
    height: 100vh;
}

.service-page-hero-img img {
    width: 100%;
}

.about-us-page-container, .csrActivityDetail-page-container {
    position: relative;
}

.about-page-ring {
    position: absolute;
    bottom: -55%;
    right: -13%;
    /* transform: translateY(-50%); */
    z-index: 0;
    opacity: 0.5;
}
.about-page-ring svg {
    width: 800px;
    height: 800px;
    transform: rotate(60deg);
}

.service-page-ring {
    position: absolute;
    bottom: -3%;
    left: 30%;
    /* transform: translateY(-50%); */
    z-index: -1;
    opacity: 0.5;
}
.service-page-ring svg {
    width: 600px;
    height: 600px;
    transform: rotate(60deg);
}

.career-text-container {
    position: relative;
    height: 100%;
}

.career-page-ring {
    position: absolute;
    bottom: -10%;
    left: -40%;
    /* transform: translateY(-50%); */
    /* z-index: -1; */
    opacity: 0.5;
}
.career-page-ring svg {
    width: 400px;
    height: 400px;
    /* transform: rotate(0deg); */
}


img.mfp-img {
    border: 15px solid white;
    margin: 40px auto;
    padding: 0 !important;
}

/* our branches */
.branches-contact-bg {
    background: url('../images/branches-contact-bg.jpg') no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    display: flex;
    justify-content: end;
}
.branches-contact-container {
    width: 50%;
    border-radius: 1.5rem;
}
.branches-hero-bg {
    /* background: url('../images/cardiac-ct.jpg') no-repeat; */
    background: url('../images/cardiac-bctt.jpg') no-repeat;

    background-position: 50% 50%;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}
.branches-hero-bg1 {
    background: url('../images/csrActivity.jpg') no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}


.branches-overlay{
    position: absolute; top:0px; left:0px; width:100%; height:100%;
        background:transparent;
        background: linear-gradient(right, rgba( 255, 255, 255, 255 ) 0%, rgba(0, 182, 242, 1) 100% );
        background: -moz-linear-gradient(right, rgba( 255, 255, 255, 0) 0%, rgba(0, 182, 242, 1) 100% );
        background: -ms-linear-gradient(right, rgba( 255, 255, 255, 0 ) 0%, rgba(0, 182, 242, 1) 100% );
        background: -o-linear-gradient( right, rgba( 255, 255, 255, 0 ) 0%, rgba(0, 182, 242, 1) 100% );
        background: -webkit-linear-gradient( right, rgba( 255, 255, 255, 0 ) 0%, rgba(0, 182, 242, 1) 100% );
        /* -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#550000FF, endColorstr=#550000FF);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff, endColorstr=#ffffffff); */
}

.branches-hero-text {
    position: relative;
    z-index: 2;
}
.branches-hero-title {
    color: #fff;
}
.branches-hero-title span {
    display: block;
}
.branches-hero-title-span {
    color: var(--primary-color);
}
.branches-hero-pera {
    width: 450px;
    max-width: 650px;
    color: #fff;
}
.branches-hero-swiper .swiper-pagination-bullet-active {
    background-color: #fff;
}
.management-text-pera {
    font-size: 1.2rem;
}
.branches-about-img img {
    width: 100%;
    border-radius: 1.5rem;
}
.branches-about-text-pera {
    max-width: 9050px;
    width: 550px;
}
.branches-meet-article {
    position: relative;
}
.branches-meet-wrapper {
    position: absolute;
    top: 0;
    height: calc(100% - 40%);
    background-color: var(--primary-color);
    width: 100%;
    z-index: -1;
}
.branches-profile-img-container {
    width: auto;
    padding: 50px;
}
.branches-profile-img-container img {
    width: 100%;
}
.branches-meet-pera {
    max-width: 550px;
    margin: auto;
}
.branches-faq-main-pera {
    max-width: 550px;
    margin: auto;
}




/* faq section starts */
.faq-container {
    max-width: 1250px;
    margin: auto;
}
/* .faq-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white-color);
    z-index: 1;
    padding: 100px;
  } */
  .faq {
    /* max-width: 1250px; */
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid black;
    cursor: pointer;
  }
  .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  .color-change {
    color: var(--primary-color)!important;
    transition: all 0.3s ease;
  }
  /* .question h3 {
    font-size: 1.8rem;
  } */
  .medicine-icon-container {
    position: absolute;
    top: 15%;
    left: -2%;
  }
  .faq-icon--size {
    width: 50%;
  }
  .dropper-icon-container {
    position: absolute;
    bottom: 10%;
    left: -2%;
  }
  .heartbeat-icon-container {
    position: absolute;
    bottom: 3%;
    right: 0%;
  }
  .heartbeat-faq-icon {
      margin: auto 0 auto auto;
  }

  .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
    max-width: 1050px;
  }
  .answer p {
    padding-top: 1rem;
    line-height: 1.6;
    /* font-size: 1.4rem; */
  }
  .faq.active .answer {
    max-height: 300px;
    animation: faqfade 1s ease-in-out
  }
  .faq.active i {
    transform: rotate(180deg);
  }
  .faq i {
    transition: transform 0.5s ease-in;
  }

  .faqDropdown.active .answer {
    max-height: 300px;
    animation: faqfade 1s ease-in-out
  }
  .faqDropdown.active i {
    transform: rotate(180deg);
  }
  .faqDropdown i {
    transition: transform 0.5s ease-in;
  }
  
  @keyframes faqfade {
    from {
      opacity: 0;
      transform: translateY(-10px)
    }
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  .faq-question {
    background-color: var(--white-color);
    border: 2px solid var(--black-color);
    color: var(--black-color);
    padding: 0.8rem;
    border-radius: 5px;
  }
  .faqDropdown.active .faq-answer {
      padding: 0 0.8rem 0.8rem 0.8rem;
  }
  .faq-answer {
    padding: 0 0.8rem 0 0.8rem;
  }
  .faqDropdown.active .faq-question {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white-color);
  }
  /* faq section ends */

.branches-about-ring {
    position: absolute;
    /* bottom: -10%; */
    opacity: 0.5;
    top: 50%;
    transform: translateY(-50%);
    right: -45%;
}
.branches-about-ring svg {
    width: 800px;
    height: 800px;
    transform: rotate(60deg);
}
.branches-about-img-container {
    position: relative;
}
.branches-about-img {
    position: relative;
    z-index: 1;
}
.branches-hero-icon-border-radius {
    border-radius: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    background-color: #fff;
}
.branches-hero-icon-padding {
    padding: 0 150px;
}
.branches-hero-icon-text i {
    display: flex;
    justify-content: center;
    font-size: 2rem;
}
.branches-hero-icon-text {
    background-color: #fff;
    padding: 25px 25px;
    margin: 5px 0;
}
.branches-hero-icon-text:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 1.5rem;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.branches-hero-icon-container {
    position: relative;
    transform: translateY(-50%);
    z-index: 10;
}
.branches-service-margin-top {
    margin-top: -60px;
}
/* our branches */



/* options */ 

.showOptions{
    display: grid;
    grid-template-columns: 250px 250px 250px 250px 250px;
    width: 90%; 
    margin: auto !important;;
    overflow-y: hidden;
    overflow-x: auto;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    background-color: #00B6F2 !important;  
}
.optionsDetails{
    /* display: grid; */
    width: 300px !important;
    /* height: 320px !important; */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin-bottom:0px ;
    border-radius: 0px 0px 10px 10px;
}
.optionsDetails:hover{
    background-color: white;
}
.iconDiv>svg{
    fill : #00B6F2;
    transition: 500ms;
}
.optionsDetails:hover .iconDiv>svg{
    fill : #ffffff;
    transition: 500ms;

}
.optionsDetails{
    color: white;
    transition: 500ms; 
}
.optionsDetails:hover {
    color: black;
}
.iconDiv{
    margin: auto;
    background: white;
    width: fit-content;
    border-radius: 10px;
    padding: 5px;
    transition: 500ms;

}
.optionsDetails:hover .iconDiv{
    background-color: #f78137;
    transition: 500ms;

}
.optionSmallText1{
    font-size: 20px;
    font-weight: bold;
}
.optionSmallText2{
    font-size: 16px;
}
.optionSmallText3{
    font-size: 18px;
    font-weight: 700;
}


/* scroll var  */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }