@font-face {
  font-family: 'montserrat-arabic';
  src: url('/assets/fonts/Montserrat-Arabic-Regular.ttf'),
}
@font-face {
  font-family: 'rubik';
  src: url('/assets/fonts/Rubik-Bold.ttf'),
}
* {
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  font-display: swap;
  font-family: "Poppins", "montserrat-arabic";
  box-sizing: border-box;

}

*:focus {
  outline: none !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --brown-color: #f1ab32;
  --golden-color: #daa520;
  --purple-color: #412839;
  --dark-purple-color: #561960;
  --black-purple-color: #3e1e34;
  --light-pink-color: #f8a3b6;
  --dark-pink-color: #ec4d70;

}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;

}

body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
}

.row {
  display: flex !important;
  flex-direction: row !important;
}

.column {
  display: flex !important;
  flex-direction: column !important;
}

h1,h2,h3,h4,h6,p{
  margin: 0;
}

.icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-margin {
  margin: 0 !important;
}

a {
  text-decoration: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

button {
  cursor: pointer;
  border: none;
  color: #ffffff;
  background-color: #e94f84;
  padding: 7.5px 40px;
  border-radius: 25px;
  font-size: 17px;
  box-shadow: rgb(233 79 132 / 50%) 0px 7px 29px 0px;
  transition: box-shadow 0.5s;
}

/* button:hover {
  box-shadow: rgb(233 79 132 / 80%) 0px 7px 29px 0px;
} */

button.reserve-btn {
  cursor: pointer;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(248, 243, 255, 0.7);
}

.loader img {
  display: flex;
  width: 200px;
  height: auto;
}

.main {
  -webkit-overflow-scrolling: touch;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  overflow: hidden;
  overflow-y: auto;
}

.scroll {
  scrollbar-width: auto;
  scrollbar-color: var(--purple-color) transparent;
  scroll-behavior: smooth;
}

.scroll::-webkit-scrollbar {
  width: 5px;
}

.scroll::-webkit-scrollbar-track {
  background: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background: #41296b;
}

.scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(65, 41, 107, 0.9);
}

.iti {
  display: flex;
}

.iti__flag-container {
  position: static;
}

.iti__arrow {
  margin: 0;
  margin-right: 6px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}

.iti.iti--allow-dropdown {
  margin-top: 10px;
  margin-bottom: 30px;
}

.iti__country-list {
  direction: ltr;
}

.select2-dropdown {
  z-index: 1000002;
}

header {
  z-index: 1000000;
  padding: 25px;
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  color: #41296b;
  /* background-color: #f8f3ff45; */
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.5s;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

header.sticky {
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

header .row {
  align-items: center;
  justify-content: space-between;
}

header .row:last-child {
  width: 100%;
}

header .row .menu {
  cursor: pointer;
  font-size: 25px;
  transition: color 0.5s;
}

header .row .menu:hover {
  color: #e94f84;
}

header .header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: opacity 0.5s;
  gap: 10px;
}

header .header-logo:hover {
  opacity: 0.6;
}

header .header-logo .logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-image: url("/assets/img/header-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  background-color: transparent;
}

header .header-logo img {
  /* display: none; */
  width: auto;
  height: 35px;
}

header .header-links {
  max-height: calc(100vh - 100%);
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  transform: translateX(100%);
  flex-direction: column;
  background-color: #f8f3ff;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: rgb(17 17 26 / 5%) 0px 10px 16px, rgb(17 17 26 / 5%) 0px 30px 32px;
  transition: transform 0.3s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-bottom-left-radius: 9px;
}

header .header-links.show {
  transform: translateX(0);
}

header .header-links a:first-child,
header .header-links .l-m-c:first-child {
  margin: 0;
}

header .header-links .l-m-c:hover .link-menu {
  display: flex;
}

header .header-links .l-m-c:hover span {
  color: #e94f84;
}

header .header-links a,
header .header-links .l-m-c {
  padding: 7.5px 20px;
  padding-left: 50px;
  color: var(--dark-purple-color);
  transition: color 0.5s, background 0.5s;
  margin: 0 20px;
}

header .header-links a.contact-header{
  background-color: var(--dark-pink-color);
  color: #fff;
  padding: 7px 25px;
  border-radius: 23px;
  margin-inline-end: 10%;
}

@media screen and (max-width: 768px) {
  header .header-links a {
    margin-bottom: 8px;
  }
  header .header-links a.contact-header{
    order: 1;
    border-radius: unset;
    width: 100%;
    padding: 7px 40px;
  }
}

header .header-links .l-m-c span {
  transition: color 0.5s, background 0.5s;
}

header .header-links a:hover,
header .header-links .l-m-c span:hover {
  cursor: pointer;
  background-color: #41296b;
  color: #ffffff;
}

header .header-links .l-m-c {
  position: relative;
}

header .header-links .l-m-c .link-menu {
  padding-top: 10px;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-animation: animatezoom 0.2s;
  animation: animatezoom 0.2s;
}

header .header-links .l-m-c .link-menu .l-m {
  padding: 15px;
  display: flex;
  flex-direction: column;
  background-color: rgba(248, 243, 255, 0.9);
  box-shadow: rgb(100 100 111 / 15%) 0px 7px 29px 0px;
  border-radius: 15px;
}

header .header-links .l-m-c .link-menu a {
  margin: 0;
  white-space: nowrap;
}

header .header-lang {
  color: #41296b;
  transition: color 0.5s;
  order: 3;
}

header .header-lang:hover {
  cursor: pointer;
  color: #e94f84;
}

.hero {
  position: relative;
  /* background-color: #f8f3ff; */
  background-color: #fff;
  width: 100%;
  display: flex;
  height: calc(100vh - 100px);
}

.hero .first-float{
  left: 55%;
  top: 2%;
  transform: rotate(4deg) translateX(-25px);
}

.hero .second-float{
  right: 4%;
  top: 28%;
  transform: rotate(6deg) translateX(20px);
}

.hero .third-float{
  left: 55%;
  bottom: 28%;
  transform: rotate(-13deg) translateX(-25px);
}

.hero .float-hero{
  position: absolute;
  z-index: 1;
  border-radius: 23px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  overflow: hidden;
  border: 2px solid #ec4d7069;
  height: 75px;
  width: 8%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.hero .ballon-float.float-hero{
  width: 12%;
  position: absolute;
  left: -2%;
  z-index: 1;
  top: -30px;
  border: none;
  transform: rotate(51deg);
  height: auto;
  box-shadow: unset;
  opacity: 1;
}

.hero .ballon-float.float-hero img{
  width: 100%;
}


.hero .float-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .hero .first-float img{
  width: 75%;
} */

.hero .hero-cover {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: end;
}

.hero .hero-cover h1,
.hero .hero-cover h2{
  display: none;
}


.hero .hero-cover .doctor-container {
  width: 60%;
  height: 95%;
  border-radius: 0 0 190px 190px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border: 3px solid #f8a3b657;
  border-top: unset;
  margin-inline-end: 20%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: translateY(-165px);
  opacity: 0.5;
}

.testo{
  position: absolute;
  height: 25px;
  width: 100%;
  top: 0px;
  background: linear-gradient(to bottom, #f4beb0, transparent 40%);
  z-index: 9;
}

.hero .hero-cover .doctor-container video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Sends it behind everything */
}

.hero .hero-cover .doctor-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(245 126 152 / 39%); /* Transparent green layer */
  z-index: -1; /* Sits between the video and the image */
}

.hero .hero-cover .doctor-container img {
  width: 75%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}


.hero .hero-cover .doctor-container img {
  width: 75%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}



  /* .squares-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
    z-index: 0;
  }

  .squares-container .square {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--brown-color), #b4599e);
    border-radius: 5px;
    transition: transform 0.5s ease-in-out;
  } */




.hero .hero-text {
  width: 50%;
  padding-top: 3%;
}

.hero .hero-text h1{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 11px;
  color: var(--dark-pink-color);
}

.hero .hero-text h2{
  width: 70%;
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--dark-purple-color);
}

.hero .hero-text a.reserve-btn{
  background: var(--dark-pink-color);
  padding: 8px 35px;
  color: #fff;
  border-radius: 23px;
  margin-inline-start: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  gap: 5px;
  transition: all 0.35s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.hero .hero-text a.reserve-btn img{
  width: 27px;
  transition: all 0.35s ease;
}

.hero .hero-text a.reserve-btn:hover{
  transform: scale(0.95);
}

.hero .hero-text a.reserve-btn:hover img{
  transform: rotate(-45deg) scale(0.9);
}

.hero .hero-text .row {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  width: 70%;
  margin-top: 25px;
  margin-bottom: 30px;
}

.row.social-web a {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 15px;
  border-radius: 50%;
  color: #ffffff;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}

.row.social-web a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.1)
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.row.social-web a:hover:before {
  transform: translateX(100%);
}

.row.social-web a {
  border: 1px solid var(--brown-color);
  transition: all 0.55s ease;
}

.row.social-web a i {
  font-size: 20px;
  color: var(--brown-color);
}
.row.social-web a:hover {
  background-color: var(--brown-color);
  border: none;

}
.row.social-web a:hover i{
  color: white;
}


.hero .hero-text .bottom-hero-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  width: 90%;
  width: 95%;
  padding: 20px 0;
  border-radius: 23px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 2px solid #9c27b063;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 30px;
}

.hero .hero-text .bottom-hero-box img.baby-crawling{
  width: 60px;
  position: absolute;
  bottom: -10px;
  left: 50%;
}


.hero .hero-text .bottom-hero-box .hero-location,
.hero .hero-text .bottom-hero-box .hero-services,
.hero .hero-text .bottom-hero-box .hero-profile {
  /* width: 30%; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero .hero-text .bottom-hero-box .hero-location .hero-location-img,
.hero .hero-text .bottom-hero-box .hero-services .hero-services-img,
.hero .hero-text .bottom-hero-box .hero-profile .hero-profile-img {
  width: 35px;
  height: 35px;
  background: goldenrod;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  color: #fff;
}


.hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero p.location-name-hero{
  margin-inline-start: 0;
  margin-bottom: 6px;
  display: flex;
  gap: 4px;
  transition: all 0.3s ease;
}

.hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero p.location-name-hero:hover{
  color: var(--dark-pink-color);
}


.hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero p.location-name-hero i{
  color: var(--brown-color);
  font-size: 20px;

}

.hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero p i{
  color: var(--brown-color);
  font-size: 15px;
  margin-inline-end: 5px;
}




.hero .hero-text .bottom-hero-box .hero-location p,
.hero .hero-text .bottom-hero-box .hero-services p,
.hero .hero-text .bottom-hero-box .hero-profile p {
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  width: 100%;
  text-align: right;
  margin-inline-start: 3px;
  color: var(--purple-color);
}



.hero .hero-text .bottom-hero-box .hero-location i,
.hero .hero-text .bottom-hero-box .hero-services i,
.hero .hero-text .bottom-hero-box .hero-profile i {
  font-size: 20px;
}

/* Divider */
.divider {
  width: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  height: 40px;
  align-self: center;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
  color: #41296b;
  background-color: #f4edfd;
  font-size: 17px;
}

.breadcrumbs div {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #41296b;
}

.breadcrumbs i {
  color: #41296b;
  font-size: 13px;
  font-weight: bold;
  margin: 0 7.5px;
}

.breadcrumbs a {
  font-weight: bold;
  color: #41296b;
  transition: color 0.5s;
}

.breadcrumbs a:hover {
  color: #e94f84;
}

.breadcrumbs a.active {
  color: #444;
}

.s-m-float {
  cursor: pointer;
  z-index: 1;
  display: none;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.s-m-float a {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #41296b;
  color: #41296b;
  font-size: 16px;
  transition: background 0.5s, color 0.5s;
}

.s-m-float a:first-child {
  margin: 0;
}

.s-m-float a:hover {
  background-color: #41296b;
  color: #ffffff;
}

.f-c-l-r {
  cursor: pointer;
  z-index: 3;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80%;
  /* right: 25px; */
  left: 25px;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: var(--dark-pink-color);
  border-radius: 25px;
  gap: 12px;
}
/* @media screen and (max-width: 768px) {
  .f-c-l-r {
    top: 80% !important;
  }
} */

.f-c-l-r img{
  width: 25px;
  filter: invert(1);
}


.home .f-c-l-r {
  display: none;
}

.home .hero .f-c-l-r {
  display: flex;
  position: absolute;
  top: unset;
  bottom: 0;
  transform: unset;
  -ms-transform: unset;
}

.home .hero .f-c-l-r.center {
  position: fixed;
  top: 50%;
  bottom: unset;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.f-c-l-r > i {
  margin-top: 20px;
  width: 25px;
  height: 25px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%)
    contrast(103%);
  transition: filter 0.5s;
}

.f-c-l-r > i:first-child {
  margin: 0;
}

.f-c-l-r > i:hover {
  cursor: pointer;
  filter: invert(18%) sepia(32%) saturate(2731%) hue-rotate(237deg)
    brightness(84%) contrast(93%);
}

.f-c-l-r > i.call {
  background-image: url("/assets/icons/phone-call.png");
}

.f-c-l-r > i.location {
  background-image: url("/assets/icons/location.png");
}

.f-c-l-r > i.reserve {
  background-image: url("/assets/icons/reserve.png");
}

.f-c-l-r-box {
  cursor: pointer;
  display: none;
  z-index: 1000001;
  position: fixed;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.f-c-l-r-box.show {
  display: flex;
}

.f-c-l-r-box .info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px;
  width: calc(100% - 40px);
  background-color: #f8f3ff;
  border-radius: 50px;
  overflow: hidden;
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

.f-c-l-r-box .info-box.reserve {
  max-width: 1000px;
  overflow: unset;
}

.f-c-l-r-box .info-box img {
  order: 0;
  width: 100%;
  height: auto;
}

.f-c-l-r-box .info-box.reserve img {
  width: 100%;
  border-radius: 50px 50px 0 0;
  object-fit: cover;
}

.f-c-l-r-box .info-box iframe {
  width: 100%;
  height: 250px;
}

.f-c-l-r-box .info-box .i-b-t {
  order: 1;
  box-sizing: border-box;
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  flex-grow: 1;
}

.f-c-l-r-box .info-box.reserve .i-b-t {
  width: 100%;
  padding: 25px;
  justify-content: center;
}

.f-c-l-r-box .info-box .i-b-t.call .flex.column {
  margin-top: 50px;
}

.f-c-l-r-box .info-box .i-b-t .contact-btns {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.f-c-l-r-box .info-box .i-b-t .contact-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: break-spaces;
  margin-top: 10px;
  box-sizing: border-box;
  width: 100%;
  color: #ffffff;
  padding: 5px 25px;
  background-color: #41296b;
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
  border-radius: 25px;
  transition: box-shadow 0.5s;
}

.f-c-l-r-box .info-box .i-b-t .contact-btns a:first-child {
  margin: 0;
}

.f-c-l-r-box .info-box .i-b-t .contact-btns a:hover {
  color: #ffffff;
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.f-c-l-r-box .info-box .i-b-t .contact-btns a.whatsapp {
  background-color: #25d366;
  box-shadow: rgb(37 211 102 / 50%) 0px 7px 29px 0px;
}

.f-c-l-r-box .info-box .i-b-t .contact-btns a.whatsapp:hover {
  box-shadow: rgb(37 211 102 / 80%) 0px 7px 29px 0px;
}

.f-c-l-r-box .info-box .i-b-t div[dir="ltr"] {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.f-c-l-r-box .info-box .i-b-t h2 {
  margin: 0;
  color: #41296b;
}

.f-c-l-r-box .info-box.reserve .i-b-t h2 {
  font-size: 19px;
}

.f-c-l-r-box .info-box .i-b-t p {
  margin: 0;
  color: #4a484e;
  font-size: 14px;
  font-weight: bold;
}

.f-c-l-r-box .info-box .i-b-t span.s-t {
  margin: 0;
  color: #827698;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.f-c-l-r-box .info-box .i-b-t a {
  color: #41296b;
  transition: color 0.5s;
}

.f-c-l-r-box .info-box .i-b-t a:hover {
  color: #e94f84;
}

.f-c-l-r-box .info-box .i-b-t form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.f-c-l-r-box .info-box .i-b-t .select-container {
  position: relative;
  width: 100%;
}

.f-c-l-r-box .info-box .i-b-t form label {
  color: #41296b;
  font-weight: bold;
  font-size: 14px;
}

.f-c-l-r-box .info-box .i-b-t form input {
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 10px 15px;
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  border: none;
  background-color: #ffffff;
  border-radius: 15px;
  color: #9284b1;
  transition: background 0.5s;
}

.f-c-l-r-box .info-box .i-b-t button {
  background-color: #41296b;
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
}

.f-c-l-r-box .info-box .i-b-t button:hover {
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.video-popup {
  cursor: pointer;
  display: none;
  z-index: 1000001;
  position: fixed;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.video-popup iframe {
  border-radius: 25px;
  margin: 25px 0;
  width: 700px;
  height: 394px;
  max-width: 95%;
  background-color: #000000;
}

.select2 {
  margin-bottom: 30px;
}

.select2-container {
  margin-top: 10px;
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border: none;
  font-size: 13px;
  color: #9284b1;
}

.select2-container .select2-selection--single {
  height: unset;
  border-radius: 15px;
}

.select2-container[dir="rtl"]
  .select2-selection--single
  .select2-selection__rendered {
  padding: 10px 15px;
  border-radius: 15px;
}

.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.select2-hidden-accessible {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.f-c-l-r-box .info-box .i-b-t form input:focus {
  background-color: #e9e7f0;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}


/* services */
section.doctor-services{
  padding: 50px 0;
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 35px;
}

section.doctor-services h2.service-intro {
  text-align: center;
  color: var(--black-purple-color);
  font-size: 26px;
  width: fit-content;
  margin: auto;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 10px; /* Space between text and lines */
}

section.doctor-services h2.service-intro::before,
section.doctor-services h2.service-intro::after {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--black-purple-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

section.doctor-services h2.service-intro::before {
  width: 50%; /* Top line width */
  bottom: -2px;  /* Adjust spacing above the text */
}

section.doctor-services h2.service-intro::after {
  width: 50px; /* Bottom line width */
  bottom: -10px; /* Adjust spacing below the text */
}


section.doctor-services .doctor-services-box {
  /* margin: 0 auto; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  position: relative;
  margin-bottom: 25px;
  width: 96%;
}


section.doctor-services .doctor-services-box .left-services-box {
  width: 28%;
  
}

section.doctor-services .doctor-services-box .left-services-box img{
  width: 100%;
}

section.doctor-services .doctor-services-box .left-services-box img.checkup{
  width: 125%;
  height: 21rem;
  object-fit: contain;
  margin-right: -45px;
}



/* section.doctor-services .doctor-services-box .left-services-box .mobile-service-cover{
  display: none;
} */


section.doctor-services .doctor-services-box .right-services-box {
  width: 28%;
  position: relative;
}

section.doctor-services .doctor-services-box .right-services-box img{
  width: 100%;
}

section.doctor-services .doctor-services-box .right-services-box img.service-bottom-logo{
  width: 132px;
  position: absolute;
  right: 10px;
  bottom: 40px;
  z-index: 0;
}

section.doctor-services .doctor-services-box .middle-services-box{
  padding-top: 25px;
  width: 44%;

}

section.doctor-services .doctor-services-box .middle-services-box h2{
  margin-bottom: 15px;
  font-size: 21px;
  background: linear-gradient(to left, rgba(196, 154, 108, 1) 60%, rgba(196, 154, 108, 0) 100%);
  padding: 5px 10px;
  border-radius: 12px;
  color: white;
  width: fit-content;
  padding-left: 85px;
  padding-right: 12px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

section.doctor-services .doctor-services-box .middle-services-box h2 img{
  width: 50px;
  position: absolute;
  left: 0;
  bottom: -2px;
  filter: drop-shadow(2px 4px 6px black);
}


section.doctor-services .doctor-services-box .middle-services-box h3{
  margin-bottom: 27px;
  font-size: 23px;
  color: var(--dark-pink-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

section.doctor-services .doctor-services-box .middle-services-box img.mobile-logo,
section.doctor-services .doctor-services-box .middle-services-box img.mobile-storyset{
  display: none;
}


section.doctor-services .doctor-services-box .middle-services-box h3 img{
  width: 40px;
}


section.doctor-services .doctor-services-box .middle-services-box p{
  margin-bottom: 15px;
  color: var(--black-purple-color);
  display: flex;
  align-items: flex-start;
  text-align: justify;
  width: 90%;
  margin-right: 15px;
}

section.doctor-services .doctor-services-box .middle-services-box p span{
      /* background-color: red; */
      font-weight: 600;
      font-size: 16px;
      margin-left: 7px;
}


section.doctor-services .doctor-services-box .middle-services-box p img{
  width: 23px;
  margin-left: 7px;
  margin-top: -3px;
}



section.doctor-services .doctor-services-box .middle-services-box a.reserve-btn{
  background: var(--dark-pink-color);
  padding: 7px 55px;
  color: #fff;
  border-radius: 23px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  gap: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: auto;
  margin-top: 45px;
}

section.doctor-services .doctor-services-box .middle-services-box a.reserve-btn img{
  width: 27px;
  transition: all 0.35sease;
}


.break-service {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}


.break-service img{
  width: 20%;
}


/* reels */

section.doctor-reels{
  width: 100%;
  position: relative;
} 

section.doctor-reels h2{
  width: fit-content;
  margin: auto;
  margin-bottom: 60px;
  color: var(--dark-pink-color);
  font-size: 26px;
  position: relative;

}

section.doctor-reels h2 img.video-icon{
  width: 40px;
  height: auto;
  position: absolute;
  left: -3rem;
  bottom: 0px;
  /* display: none; */
}


section.doctor-reels h2 img.reels-right-icon{
  width: 40px;
  height: auto;
  position: absolute;
  right: -55px;
  bottom: -6px;
  display: none;
}



section.doctor-reels h2::before,
section.doctor-reels h2::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #973c7a;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

section.doctor-reels h2::before {
  width: 70%;
  bottom: -6px;
}

section.doctor-reels h2::after {
  width: 100px;
  bottom: -11px; 
  /* display: none; */
}


section.doctor-reels .swiper-reels1 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.swiper-slide-active .reel1 {
  transform: scale(1.2);
}
.reel1  {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.box-video {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 430px;
  position: relative;
  cursor: pointer;
}

.iphone-cover1 {
  width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 20;
}


.iphone-cover1.active {
  pointer-events: none !important;
}

.box-video img.play-reel{
  position: absolute;
  width: 20%;
  left: 40%;
  top: 45%;
}

.box-video video {
  width: 95%;
height: 95%;
border-radius: 20px;
object-fit: cover;
}

.reel-title{
  background: linear-gradient(to left, rgba(196, 154, 108, 1) 60%, rgba(196, 154, 108, 0) 100%);
  padding: 5px 10px;
  border-radius: 12px;
  color: white;
  width: fit-content;
  padding-left: 35px;
  padding-right: 12px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  margin-bottom: 17px;
  font-size: 15px;
}

.reel-title img{
  width: 33px;
  position: absolute;
  left: -6px;
  bottom: -2px;
  opacity: 0.9;
  /* filter: drop-shadow(2px 4px 6px black); */
}

/* banner */
/* .benefits-description {
  background-image: url("../img/clinic5.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 55px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
} */

.doctor-banner{
  position: relative;
  margin-bottom: 15px;
}

/* card */
.doctor-banner img.hand-card{
  width: 54%;
  position: absolute;
  left: -6%;
  bottom: -15%;
  z-index: 1;
}


.benefits-description {
  position: relative;
  overflow: hidden; 
  height: 80vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 55px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.benefits-description::before {
  content: "";
  position: absolute;
  inset: 0; 
  background: url("../img/clinic5.jpg") center/cover fixed;
  filter: blur(10px); 
  /* z-index: -1;  */
}




.benefits-description-text {
  /* background-color: #000000ab; */
  color: white;
  padding: 2rem 0rem;
  border-radius: 8px;
  width: 39%;
  text-align: center;
  margin: 1rem 4rem;
  z-index: 1;
  direction: rtl;
  /* display: none; */
}

.benefits-description-text h2 {
  font-size: 28px;
  /* margin-bottom: 20px; */
  /* color: var(--primary-color); */
  color: var(--dark-purple-color);
}

.benefits-description-text h4 {
  font-size: 18px;
  width: 75%;
  margin: auto;
  margin-bottom: 1rem;
  color: goldenrod;
}

.benefits-description-text .hand-card-mobile{
  display: none;
}


.benefits-description-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-purple-color);
  text-align: start;
  margin-bottom: 20px;
}
.benefits-description .opacity-layer {
  /* z-index: -1; */
  background-image: linear-gradient(270deg, #f7f9fcbf 50%, #f7f9fc00);
  width: 70%;
  position: absolute;
  inset: 0% 0% 0% auto;
}
.benefits-description .benefits-description-text .oasis-slogan {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  text-align: center;
  width: 80%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  /* color: var(--logo-color); */
}

.benefits-description .benefits-description-text ul {
  width: 75%;
  margin: auto;
  text-align: center;
}
.benefits-description .benefits-description-text ul li {
  margin-bottom: 8px;
  list-style: none;
}

.benefits-description .benefits-description-text a.reserve-btn{
  background: var(--dark-pink-color);
  padding: 8px 35px;
  color: #fff;
  border-radius: 23px;
  margin-inline-start: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.35sease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 60%;
  margin: auto;
}
.benefits-description .benefits-description-text a.reserve-btn img{
  width: 27px;
  transition: all 0.35sease;
}


/* loactions */

section.loactions-branchs{
  width: 100%;
  margin-bottom: 50px;
}

section.loactions-branchs h2{
  width: fit-content;
  margin: auto;
  margin-bottom: 25px;
  color: var(--dark-pink-color);
  font-size: 26px;
  position: relative;
}



section.loactions-branchs .loactions-branchs-box{
  width: 90%;
  margin: auto;
  border-radius: 23px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;

}

section.loactions-branchs .loactions-branchs-box .loactions-branchs-header{
  display: flex;
  justify-content: center;
  align-items: center;
}

section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab{
  width: 33.33%;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 10px 0;
  border: 1px solid #0000001f;
  border-top: unset;
  border-left: unset;
  color: var(--dark-purple-color);
}

section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab h3{
  color: var(--dark-purple-color);
}

section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab h3 span{
  color: var(--dark-pink-color);
  font-size: 15px;
}


.branchs-tab.active {
  background: #f6f6f6 !important;
  color: var(--dark-pink-color) !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /* transform: translateY(10px); */
  transform: scale(1.1);
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box{
  display: flex;
  justify-content: space-between;
  padding: 45px 0px;
  padding-bottom: 0;
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data{
  width: 55%;
  padding: 35px 25px;
  padding-bottom: 10px;
}


section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data h4{
  width: fit-content;
  font-size: 25px;
  margin-bottom: 15px;
  color: var(--dark-purple-color);
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data h4 i{
  margin-left: 10px;
  font-size: 25px;
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data p{
  font-size: 16px;
  margin-bottom: 19px;
  width: 80%;
  color: var(--dark-pink-color);
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data .contact-box{
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data .contact-box a{
  font-size: 15px;
  width: 75%;
  color: var(--dark-purple-color);

}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data .contact-box a i{
  margin-left: 5px;
  font-size: 19px;
  color: var(--golden-color);
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data img.logo-location{
  width: 30%;
}



section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-map{
  width: 40%;
  position: relative;
}

section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-map img.calling{
  width: 43%;
  position: absolute;
  right: -41%;
  bottom: 11%;
  z-index: 1;
}


section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-map iframe{
  width: 90%;
  height: 370px;
  border-radius: 23px;
  position: relative;

}


/* about doctor */




section.about-doctor{
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}




section.about-doctor h2{
  width: fit-content;
  margin: auto;
  margin-bottom: 25px;
  color: var(--black-purple-color);
  font-size: 26px;

}


section.about-doctor .about-doctor-box{
  width: 80%;
  margin: auto;
  background-image: url("/assets/img/about-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 23px;

}

section.about-doctor .about-doctor-box .doctor-box-content{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 40px;
  position: relative;
}

section.about-doctor .about-doctor-box.reverse-row .doctor-box-content{
  flex-direction: row-reverse;
}

section.about-doctor .about-doctor-box .doctor-box-content img.about-logo-img{
  position: absolute;
  left: 2%;
  top: 13px;
  width: 6%;
}


section.about-doctor .about-doctor-box .doctor-box-content img.about-logo-text{
  position: absolute;
  right: 2%;
  bottom: 13px;
  width: 8%;
}


/* section.about-doctor .about-doctor-box .doctor-box-content.career-slide{
  align-items: flex-end;
} */


section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-img{
  width: 25%;
  display: flex;
}

section.about-doctor .about-doctor-box .doctor-box-content.career-slide .doctor-about-img{
  width: 35%;
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-img img{
  width: 100%;
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text{
  width: 60%;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-inline-start: 30px;
}

section.about-doctor .about-doctor-box.reverse-row .doctor-box-content .doctor-about-text{
  padding-inline-start: 80px;
}


section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3{
  margin-bottom: 15px;
  font-size: 25px;
  color: var(--dark-purple-color);
  display: flex;
  gap: 5px;
  align-items: center;
  position: relative;
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3 img{
  width: 40px;
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3::before,
section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3::after {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--black-purple-color);
  position: absolute;
  /* left: 50%; */
  transform: translateX(-50%);
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3::before {
  width: 25%;
  bottom: -1px;
  right: -12px;
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3::after {
  width: 50px;
  bottom: -5px;
  right: 83px;
}


section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h6{
  margin-bottom: 15px;
  color: var(--black-purple-color);
  font-size: 13px;
  padding-inline-start: 7%;
}


section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .about-points {
  margin-bottom: 25px;
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .about-points p{
  display: flex;
  align-items: center;
  color: var(--golden-color);
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .about-points p img{
  width: 15px;
  margin-inline-end: 5px;
}


section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .about-points span{
  margin-inline-start: 20px;
  color: var(--black-purple-color);
  font-size: 15px;
}

section.about-doctor .about-doctor-box.reverse-row .doctor-box-content .doctor-about-text .about-points span{
  display: flex;
}


section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .reserve-btn{
  background: var(--dark-pink-color);
  padding: 8px 0px;
  color: #fff;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35sease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 35%;
  margin-top: 35px;
  gap: 7px;
}

section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .reserve-btn img{
  width: 27px;

}

.swiper-button-prev,
.swiper-rtl .swiper-button-next{
  background-color: red;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after{
  font-size: 20px;
}

.swiper-pagination-bullet-active{
  background: var(--dark-pink-color);
  width: 25px;
  height: 8px;
  border-radius: 23px;
}


/* footer */

footer .f-m{
  box-sizing: border-box;
  padding: 20px 30px;
  padding-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 15%;
  background: var(--dark-purple-color);
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

footer .f-m img.float-img-footer{
  position: absolute;
  left: -75px;
  bottom: 0;
  width: 21%;
}

footer .f-i {
  /* margin-bottom: 50px; */
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .f-i h2{
  color: var(--dark-pink-color);
  margin-bottom: 10px;

}

footer .f-i a{
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

footer .f-i a:hover{
  transform: translateX(-5px);
}


footer .f-i a i{
  color: var(--brown-color);
  margin-left: 6px;
}

footer .f-i.l img{
  width: 180px;
}

footer .f-i.l p{
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}

footer .f-i.l a.reserve-btn{
  background: var(--dark-pink-color);
  padding: 8px 35px;
  color: #fff;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 60%;
  margin-bottom: 10px;
}

footer .f-i.l a.reserve-btn img{
  width: 27px;

}
  
footer .f-i.l .f-c{
  color: var(--dark-pink-color);
}

footer .f-i.l .f-c a{
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

footer .row.footer-social{
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 30px;
  margin-top: 10px;
}

footer .row.footer-social a{
  width: 40px;
  height: 40px;
  border: 2px solid #ec4d70;
}

footer .row.footer-social a i{
  margin: unset;
  font-size: 16px;
  color: #fff;
}


/* blogs */

:root {
  --surface-color: #561960;
  --curve: 40;
}


section.blogs{
  width: 100%;
  margin-bottom: 60px;
  padding-top: 30px;
}


section.blogs h2{
  width: fit-content;
  margin: auto;
  color: var(--dark-pink-color);
  font-size: 26px;
  margin-bottom: 25px;
}

section.blogs .blog-container{
  position: relative;
}

/* section.blogs .blog-container .swiper-slide{
  width: fit-content !important;
  margin: 0 19px;
} */


.blog-pagination{
  bottom: -40px !important;
}


.swiper-button-prev.prev-blog,
.swiper-rtl .swiper-button-next.next-blog{
  background-color: yellow;
  top: -40px;
}


section.blogs .blogs-box{
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
}


.cards {
  display: flex; 
  flex-wrap: wrap; 
  gap: 2rem;
  margin: 0rem 5vw;
  padding: 0;
  list-style-type: none;
  justify-content: center;
  width: 100%;
  padding: 35px 0;
  border-radius: 23px;

}

.card {
  position: relative;
  display: block;
  height: 275px;
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
  flex: 1 1 calc(25% - 2rem); 
  box-sizing: border-box;
  width: 300px;
  flex: 0 0 auto; 
  margin: auto;
}

.card  .card__image {
  position: absolute; /* Take the image out of normal flow */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensures full height */
  object-fit: cover; /* Maintain aspect ratio */
  z-index: 0; /
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: calc(var(--curve) * 1px);
  background-color: var(--surface-color);
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: all 0.2s ease-in-out;
  /* transition: .2s ease-in-out; */
  opacity: 0.5;
}

.card:hover .card__header {
  opacity: 1;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  flex-shrink: 0;
  width: 45px;
  height: auto;
  object-fit: contain;
}

.card__title {
  margin: 0 0 .3em;
  color: #fff;
  font-size: 14px;
  width: 90%;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";
  font-size: .8em;
  color: #D7BDCA;
}

.card__status {
  font-size: .8em;
  color: #56196069;
  color: #fff;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  color: #D7BDCA;
  font-family: "MockFlowFont";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* blog Layer */
.card .blog-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: all 0.2s ease;
}

.card:hover .blog-layer  {
  background: rgba(0, 0, 0, 0.4);
}

/* Responsive Behavior for Smaller Screens */
@media (max-width: 1024px) {
  .card {
    flex: 1 1 calc(50% - 2rem); /* 2 cards per row */
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 calc(100% - 2rem); /* 1 card per row */
  }
}



section.about-page-hero {
  position: relative; /* For absolute positioning of the overlay */
  background-image: url("/assets/img/about-bg-intro.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}

/* Background blur and overlay */
section.about-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* backdrop-filter: blur(2px);  */
  z-index: 1;
}

/* Ensure content is above the overlay */
section.about-page-hero .about-hero-text,
section.about-page-hero .about-hero-img {
  position: relative;
  z-index: 2;
}

section.about-page-hero .about-hero-img {
  width: 23%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  /* background-color: red; */
  opacity: 0;

}

section.about-page-hero .about-hero-img img {
  width: 100%;
  filter: drop-shadow(2px 4px 6px black);
}


section.about-page-hero .about-hero-text{
  width: 50%;
  /* padding-inline-start: 70px;
  margin-top: 5%; */
  /* background-color: green; */

}

section.about-page-hero .about-hero-text h1{
  width: fit-content;
  margin-bottom: 12px;
  color: #fff;
  font-size: 20px;
}

section.about-page-hero .about-hero-text h1 span{
  font-size: 23px;
  color: var(--dark-pink-color);
  background: #fff;
  padding: 8px 20px;
  border-radius: 23px;
}

section.about-page-hero .about-hero-text h2{
  width: fit-content;
  margin-bottom: 25px;
  font-size: 19px;
  color: var(--brown-color);
}

section.about-page-hero .about-hero-text p{
  width: fit-content;
  font-size: 15px;
  width: 95%;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #fff;
}

section.about-page-hero .about-hero-text p img{
  width: 25px;
  margin-top: 7px;
}

section.about-page-hero .about-hero-text .social-web{
  margin-bottom: 25px;
}


section.about-page-hero .about-hero-text a.reserve-btn{
  background: var(--dark-pink-color);
  padding: 8px 0px;
  color: #fff;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.35sease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 40%;
}
section.about-page-hero .about-hero-text a.reserve-btn img{
  width: 27px;
  transition: all 0.35sease;
}

section.about-doctor-page .about-doctor-box{
  margin-bottom: 25px;
  /* width: 85%; */
  position: relative;
}

section.about-doctor-page {
  position: relative;
  margin-bottom: 0;
}


section.about-doctor-page img.hats-img{
  position: absolute;
  left: 0%;
  top: 2%;
  width: 18%;
  z-index: 0;
}


section.about-doctor-page img.doctor-success{
  position: absolute;
  right: -4%;
  top: 47%;
  width: 23%;
  z-index: 0;
}

section.about-doctor-page img.visit-img{
  position: absolute;
  left: -4%;
  top: 82%;
  width: 18%;
  z-index: 0;
}


section.services-about-page{
  width: 100%;
  /* margin-bottom: 60px; */
  margin: 60px 0;
}

section.services-about-page h2{
  width: fit-content;
  margin: auto;
  margin-bottom: 30px;
  color: var(--dark-purple-color);
  font-size: 18px;
  text-align: center;
}

section.services-about-page .about-services-box{
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 80px;
}

section.services-about-page .about-services-box .services-box-content{
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
  justify-content: center;
}

section.services-about-page .about-services-box .services-box-content .services-about-img{
  width: 50%;
  display: flex;
  margin-bottom: 15px;
  background: linear-gradient(to right, #ec4d70, #c263db);
  padding: 10px 10px;
  border-radius: 50%;
  filter: drop-shadow(2px 4px 6px grey);
}

section.services-about-page .about-services-box .services-box-content .services-about-img img{
  width: 100%;
  transform: translateX(-16px);

}

section.services-about-page .about-services-box .services-box-content .services-about-text{
  color: var(--dark-purple-color);
}


.container {
  text-align: center;
  /* max-width: 1200px; */
  width: 100%;
}


.journey-steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  width: 15%;
}

.icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon img.service-icon{
  width: 50px;
}


.icon-1 { background-color: #fff3cd; }
.icon-2 { background-color: #d1e7dd; }
.icon-3 { background-color: #f8d7da; }
.icon-4 { background-color: #d1e7dd; }
.icon-5 { background-color: #f8d7da; }

.step p {
  color: var(--dark-purple-color);
  font-size: 1em;
  margin: 0;
}

/* Dotted line with main dots */
.dotted-line {
  position: absolute;
  top: 40px; /* Adjust based on icon size */
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
      to right,
      #ccc,
      #ccc 5px,
      transparent 5px,
      transparent 10px
  );
  z-index: 0;
}

.main-dots {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 1;
}

.main-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  position: relative;
  top: -4px; /* Adjust to center on the line */
  transform: translateX(-130px);
}

.main-dot-1 { background-color: #ffeb3b; }
.main-dot-2 { background-color: #4caf50; }
.main-dot-3 { background-color: #f44336; }
.main-dot-4 { background-color: #2196f3; }
.main-dot-5 { background-color: #ff9800;opacity: 0; }


.main-dot.doat-moving{
  position: absolute;
  left: 8%;
  background-color:var(--dark-purple-color);
  animation: moveLeftToRight 12s linear infinite;
}

@keyframes moveLeftToRight {
  0% {
    left: 8%;
  }
  70% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}






/* gallery page */

.services-page-intro {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.services-page-intro .services-intro-img {
  width: 100%;
}

.services-page-intro .services-intro-img img {
  width: 100%;
  height: 27rem;
  object-fit: cover;
  object-position: bottom;
}

.service-intro-desc {
  position: absolute;
  bottom: 5%;
  text-align: center;
  width: 100%;
  /* background-color: blue; */
}

.service-intro-desc h2 {
  /* margin-bottom: 30px; */
  color: var(--yellow-color);
  position: relative;
  display: inline-block;
  font-size: 35px;
  font-weight: 600;
}

.service-intro-desc h2::before,
.service-intro-desc h2::after {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  background-color: var(--yellow-color);
  margin: 4px auto;
}

.service-intro-desc h2::before {
  width: 90%;
  margin-bottom: 6px;
  bottom: -45%;
  left: 5%;
}

.service-intro-desc h2::after {
  width: 70%;
  bottom: -55%;
  left: 14%;
}

.service-intro-desc p {
  text-align: center;
  width: 90%;
  margin: auto;
  color: var(--dark-pink-color);
  font-size: 23px;
  position: relative;
}

.service-intro-desc p::before,
.service-intro-desc p::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #973c7a;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.service-intro-desc p::before {
  width: 50%;
  bottom: -6px;
}

.service-intro-desc p::after {
  width: 100px;
  bottom: -11px;
}

.multi-button {
    place-items: center;
    width: fit-content;
    margin: auto;
    /* width: 25%; */
    width: fit-content;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 0px;
    position: relative;
    margin-bottom: 20px;
}

.multi-button img.logo-gallery{
  width: 16%;
  position: absolute;
  left: 41%;
  top: -27px;
}


.button { 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.09), 0 6px 15px 0 rgba(0, 0, 0, 0.09);
  padding: 10px 17px 10px 17px;
    font: 15px Ubuntu;
  color: white;
  border-radius: unset;
  padding: 0;
  width: 115px;
  background-color: #4a2c41;
}

.button a{
  display: block;
  width: fit-content;
  margin: auto;
  width: 100%;
  padding: 10px 0;
  color: #fff;
} 

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  position: absolute;
  opacity: 0;
  top: 6px;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
  top: 6px;
}

#cut {
  /* background-color: var(--dark-pink-color); */
  /* border: 1px solid rgb(85,131,241); */
  border-top-right-radius: 23px;
  border-bottom-right-radius: 23px;  
}

#copy {
  /* background-color: #4a2c41; */
  border-top-left-radius: 23px;
  border-bottom-left-radius: 23px;
}

#cut span:after {
  font-family: FontAwesome;
  content: "\f302";
}

#copy span:after {
  font-family: FontAwesome;
  content: "\f03d";
}


/* gallery */


.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  width: 23%;
  height: 355px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  box-sizing: border-box;
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-layer {
  background: rgba(0, 0, 0, 0.8);
  height: 30%;

}


.gallery-layer .layer-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.layer-text {
  font-size: 14px;
}

.layer-text-bottom {
  font-size: 14px;
  color: #fff;
  margin-right: 6px;
  display: flex;
  align-items: center;
}

.layer-text-bottom i{
  color: var(--dark-pink-color);
  margin-left: 4px;
}

.gallery-layer .gallery-layer-top{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
}

/* Overlay Style */
.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  justify-content: center;
  margin-top: 75px;
}

.overlay-content img {
  width: 95%;
  height: auto;
  border-radius: 10px;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}

.prev-btn {
  right: -60px;
}

.next-btn {
  left: -60px;

}

.image-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: -45px;
  background: var(--dark-pink-color);
  font-size: 30px;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(2px 4px 6px black);
}


.video-gallery {
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  padding-inline-start: 30px;
}

.video-container {
  position: relative;
  display: inline-block;
}

.video-container img.play-icon-video{
  position: absolute;
  width: 45px;
  top: 40%;
  left: 45%;
  transition: all 0.3s ease;
}

.video-container:hover img.play-icon-video{
  transform: scale(1.1);

}


.gallery-video {
  width: fit-content;
  cursor: pointer;
  height: 360px;
  border-radius: 12px;
}

.video-container .inner-video-layer {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 25%;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-sizing: border-box;
  pointer-events: none;
  transition: all 0.3s ease;
}

.inner-video-layer .reel-logo{
  display: flex;
  align-items: center;
}

.video-container:hover .inner-video-layer {
  height: 30%;

}



.inner-video-layer .layer-image {
  width: 35px;
  height: 35px;
  margin-left: 10px;
  object-fit: contain;
}

.inner-video-layer .layer-text {
  color: white;
  font-size: 16px;
  margin: 0;
}

@media only screen and (max-width: 900px) {
  .video-gallery {
    padding-inline-start: 0;
    width: 98%;
  }
  .gallery-video {
    width: 100%;
  }

}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay-content {
  position: relative;
  max-width: 80%;
}

#overlayVideo {
  width: 100%;
  border-radius: 12px;
}

.video-overlay .close-btn {
  z-index: 13;
  position: absolute;
  top: 20px;
  right: -60px;
  background: var(--dark-pink-color);
  font-size: 30px;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(2px 4px 6px black);
}

.reels-page-swiper{
  padding-bottom: 30px;
}



@media only screen and (max-width: 500px) { 
  .reels-page-swiper .swiper-slide{
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  .gallery-video {
    width: fit-content;
  }
}


.swiper-button-prev.prev-reel,
.swiper-rtl .swiper-button-next.next-reel{
  background-color: blue;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.swiper-pagination.reels-pagination{
  bottom: -6px;
}

/* faq */
.faq-section {
  padding: 20px 0;
  font-family: Arial, sans-serif;
  direction: rtl;
  width: 97%;
  margin: auto;
  /* position: relative; */
}

.faq-section h2{
  margin-bottom: 25px;
  text-align: center;
  color: var(--golden-color);
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.faq-item .title {
  cursor: pointer;
  padding: 10px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .title h4 {
  margin: 0;
  font-size: 18px;
  color: var(--dark-purple-color);
  font-weight: 500;
}
.toggle-icon {
  font-size: 18px;
  transition: transform 0.3s;
}

.desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 10px;
  background-color: #fff;
  font-size: 16px;
}
.desc p{
  font-size: 17px;
  color: var(--dark-pink-color);
}
.desc.active-question {
  max-height: 200px; /* Set a max-height to allow the transition */
  padding: 10px;
}
.desc.active-question p{
  font-size: 15px;
  color: var(--dark-pink-color);
  font-weight: 500;
}


.title i.active-question {
  transform: rotate(180deg); /* Rotate arrow down to up */
}

/* blogs */

.blogs-main-page {
  padding: 30px 0;
  padding-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f8f8;
}

.blogs-main-page .b-t {
  max-width: calc(100% - 30px);
  width: 800px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.blogs-main-page .b-t h2 {
  margin: 0;
  color: var(--dark-pink-color);
  font-size: 35px;
  width: fit-content;
  position: relative;
}

.blogs-main-page .b-t h2::before,
.blogs-main-page .b-t h2::after {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--black-purple-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.blogs-main-page .b-t h2::before {
  width: 130%; /* Top line width */
  bottom: -2px;  /* Adjust spacing above the text */
}

.blogs-main-page .b-t h2::after {
  width: 50px; /* Bottom line width */
  bottom: -10px; /* Adjust spacing below the text */
}

@media only screen and (min-width: 1250px) {
  .blogs-main-page .b-t {
      width: 1200px;
  }
}

.blogs-main-page .b-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  max-width: calc(100% - 30px);
}

@media only screen and (min-width: 1250px) {
  .blogs-main-page .b-c {
      flex-direction: row;
      align-items: flex-start;
  }
}

.blogs-main-page .blogs-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  width: 800px;
  max-width: 100%;
}

.blogs-main-page .blogs-container .blog-item {
  margin-top: 30px;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .blogs-main-page .blogs-container .blog-item {
      width: calc((100% / 2) -(5px* 2));
  }
}

@media only screen and (min-width: 900px) {
  .blogs-main-page .blogs-container .blog-item {
      width: 45%;
  }
}

.blogs-main-page .blogs-container .blog-item a {
  align-self: flex-start;
  display: flex;
  width: 100%;
}

.blogs-main-page .blogs-container .blog-item a img {
  align-self: flex-start;
  display: flex;
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 25px;
}

.blogs-main-page .blogs-container .blog-item a {
  align-self: flex-start;
  display: flex;
  width: 100%;
}

.blogs-main-page .blogs-container .blog-item .blog-info {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 30px 25px;
  box-sizing: border-box;
  margin-top: 25px;
  width: 100%;
  border-radius: 25px;
  background-color: #ffffff;
  color: #41296b;
  transition: box-shadow 0.5s;
}

.blogs-main-page .blogs-container .blog-item .blog-info h3 {
  margin: 0;
  line-height: 1.25;
  font-size: 20px;
  font-weight: bold;
}

.blogs-main-page .blogs-container .blog-item .blog-info p {
  margin: 30px 0;
  line-height: 1.8;
  font-size: 15px;
  color: #9e9e9e;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-main-page .blogs-container .blog-item .blog-info .b-i,
.blogs-main-page .b-c .popular-blogs .popular-blog .p-b .b-i,
.blog-details .b-s-e .popular-blogs .popular-blog .p-b .b-i {
  margin-top: 10px;
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.blogs-main-page .blogs-container .blog-item .blog-info .b-i span,
.blogs-main-page .b-c .popular-blogs .popular-blog .p-b .b-i span,
.blog-details .b-s-e .popular-blogs .popular-blog .p-b .b-i span {
  line-height: 1;
  color: #c0c7c5;
  font-weight: bold;
  font-size: 14px;
}

.blogs-main-page .blogs-container .blog-item .blog-info .b-i span.author,
.blogs-main-page .b-c .popular-blogs .popular-blog .p-b .b-i span.author,
.blog-details .b-s-e .popular-blogs .popular-blog .p-b .b-i span.author {
  color: #e94f84;
}

.blogs-main-page .blogs-container .blog-item .blog-info .b-i span,
.blogs-main-page .b-c .popular-blogs .popular-blog .p-b .b-i span,
.blog-details .b-s-e .popular-blogs .popular-blog .p-b .b-i span {
  line-height: 1;
  color: #c0c7c5;
  font-weight: bold;
  font-size: 14px;
}


.blogs-main-page .b-c .popular-blogs, .blog-details .b-s-e .popular-blogs {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 767px) {
  .blogs-main-page .b-c .popular-blogs {
      width: 600px;
  }
}

@media only screen and (min-width: 1250px) {
  .blogs-main-page .b-c .popular-blogs {
      width: 350px;
  }
}

.blogs-main-page .b-c .popular-blogs h3, .blog-details .b-s-e .popular-blogs h3 {
  align-self: flex-start;
  position: relative;
  margin: 0;
  margin-bottom: 15px;
  color: #41296b;
  font-size: 22px;
}

.blogs-main-page .b-c .popular-blogs .popular-blog, .blog-details .b-s-e .popular-blogs .popular-blog {
  border-radius: 25px;
  padding: 15px;
  box-sizing: border-box;
  margin-top: 10px;
  display: flex
;
  flex-direction: row;
  width: 100%;
  align-items: center;
  transition: box-shadow 0.5s;
}

.blogs-main-page .b-c .popular-blogs .popular-blog img, .blog-details .b-s-e .popular-blogs .popular-blog img {
  margin-left: 15px;
  width: 80px;
  height: auto;
  border-radius: 15px;
}

.blogs-main-page .b-c .popular-blogs .popular-blog .p-b, .blog-details .b-s-e .popular-blogs .popular-blog .p-b {
  display: flex
;
  flex-direction: column;
  flex-shrink: 1;
  flex-grow: 1;
}

.blogs-main-page .b-c .popular-blogs .popular-blog .p-b h4, .blog-details .b-s-e .popular-blogs .popular-blog .p-b h4 {
  margin: 0;
  color: #41296b;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs-main-page .blogs-container .blog-item .blog-info .b-i, .blogs-main-page .b-c .popular-blogs .popular-blog .p-b .b-i, .blog-details .b-s-e .popular-blogs .popular-blog .p-b .b-i {
  margin-top: 10px;
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.blogs-main-page .b-t .blog-search,
.blog-details .b-s-e .blog-search {
  display: flex;
  flex-direction: row;
  border-radius: 25px;
  overflow: hidden;
}

.blogs-main-page .b-t .blog-search{
  width: 30%;
}

.blog-details .b-s-e .blog-search {
  width: 100%;
}


.blogs-main-page .b-t .blog-search input, .blog-details .b-s-e .blog-search input {
  color: #444;
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 0;
  border: none;
  padding: 7.5px 20px;
  font-size: 17px;
  background-color: #ffffff;
  transition: background 0.5s;
}

.blogs-main-page .b-t .blog-search button, .blog-details .b-s-e .blog-search button {
  border-radius: 0;
  padding: 7.5px 25px;
  box-shadow: none;
  background-color: #41296b;
  transition: background 0.5s;
}


.blog-intro {
  position: relative;
  background-image: url(/assets/img/blog-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
  overflow: hidden;
}

.blog-intro .blog-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent layer */
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 23px;
  border-bottom-right-radius: 23px;
}

.blog-layer h1 {
  color: white;
  font-size: 2rem;
  text-align: center;
  margin: 0;
}



/* single blog */
.blog-details {
  padding: 40px;
  /* width: 1200px; */
  /* max-width: calc(100% - 30px); */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
  padding-top: 0;
  background: #f8f8f8;
  gap: 7%;
}

.blog-details .b-d-c, .blog-details .b-s-e {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (min-width: 500px) {
  .blog-details .b-d-c, .blog-details .b-s-e {
      width: 400px;
  }
}

@media only screen and (min-width: 900px) {
  .blog-details .b-d-c {
      width: 450px;
  }
}

@media only screen and (min-width: 1250px) {
  .blog-details .b-d-c {
      width: 750px;
  }
}

.blog-details .b-d-c img {
  display: flex
;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.blog-details .b-d-c .b-d-i {
  margin-top: 20px;
  display: flex
;
  flex-direction: column;
  align-items: flex-start;
}

.blog-details .b-d-c .b-d-i div {
  margin-left: 15px;
  margin-bottom: 10px;
  display: flex
;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  color: #41296b;
}

.blog-details .b-d-c .b-d-i .icon {
  margin-left: 10px;
  display: flex
;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #41296b;
  color: #ffffff;
  font-size: 16px;
  border-radius: 50%;
}

@media only screen and (min-width: 500px) {
  .blog-details .b-d-c, .blog-details .b-s-e {
      width: 400px;
  }
}

@media only screen and (min-width: 900px) {
  .blog-details .b-s-e {
      margin: 0;
      width: 350px;
  }
}

@media only screen and (min-width: 1250px) {
  .blog-details .b-s-e {
      width: 350px;
  }
}

h1.blog-main-title{
  color: var(--dark-purple-color);
  font-size: 35px;
  /* margin: 28px 0; */
  background: red;
  width: 100%;
  background: #f8f8f8;
  text-align: center;
  padding: 25px 0;

}

/* end */
@media only screen and (max-width: 442px) {
  .our-services .o-s-c .o-s-c-t h3 {
    font-size: 24px;
  }
  .videos .h-v-s .h-v-c {
    width: 77%;
  }
  .videos .h-v-s .h-v-c .swiper-slide .h-v-t p,
  .videos .h-v-s .h-v-c .swiper-slide .h-v-t a,
  .videos .h-v-s .h-v-c .swiper-slide .h-v-t ul {
    display: none;
  }
  .videos .h-v-s .h-v-c .swiper-slide .h-v-i {
    margin-bottom: 25px;
    width: 100%;
    border-radius: 30px;
  }
  .videos .h-v-s .h-v-c .swiper-slide .h-v-t h3 {
    line-height: 30px;
    font-size: 19px;
  }
  .videos h2 {
    margin-bottom: 16px;
  }
  .videos .h-v-s .swiper .swiper-button-prev,
  .videos .h-v-s .swiper .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .videos .h-v-s .swiper .swiper-button-next {
    right: -38.5px;
  }
  .videos .h-v-s .swiper .swiper-button-prev {
    left: -38.5px;
  }
  .videos .h-v-s .h-v-c .swiper-slide .mobile-button {
    display: block;
    margin-bottom: 15px;
  }
  .h-v-s.review-box .swiper-slide .h-v-i {
    width: 80% !important;
  }
  .h-v-s.review-box .swiper-slide .review-text.review-mobile p{
    padding-inline-start: 10%;
  }

}

@media only screen and (min-width: 442px) {
  header .header-logo img {
    display: block;
    height: 22px;
  }

  header .header-logo .logo-img {
    margin-right: 5px;
    width: 42px;
    height: 42px;
  }

  .f-c-l-r-box .info-box {
    width: 300px;
  }

  .f-c-l-r-box .info-box.reserve {
    width: calc(100% - 40px);
  }

  .last-articles .swiper .swiper-slide .article-info {
    padding: 30px 50px;
  }

  .hero .hero-video .card h2 {
    font-size: 14px;
  }

  .hero .hero-video .card h3 {
    font-size: 12px;
  }
  .last-articles .swiper .swiper-button-next,
  .last-articles .swiper .swiper-button-prev {
    display: flex;
    width: 30px;
    height: 30px;
  }
  .last-articles .swiper .swiper-button-prev {
    right: -40.5px;
  }
  .last-articles .swiper .swiper-button-next {
    left: -40.5px;
  }
}

@media only screen and (min-width: 500px) {
  header .header-logo img {
    height: 65px;
  }
  header .header-logo img.header-logo-text {
    height: 32px;
  }

  header .header-logo .logo-img {
    margin-right: 10px;
    width: 60px;
    height: 60px;
  }

  .f-c-l-r-box .info-box .i-b-t .contact-btns a {
    margin: 0;
    width: unset;
  }

  .f-c-l-r-box .info-box.reserve {
    width: 400px;
  }

  .our-services .o-s-c .o-s-c-t {
    padding: 0 10%;
  }

  .h-v-s .swiper-slide .h-v-i,
  .h-v-s .swiper-slide .h-v-t {
    width: 80%;
  }

  .hero .a-h-c span {
    font-size: 35px;
  }

  .reserve-form .r-f-c .r-f-i {
    width: 45%;
  }

  .message-form .m-f-c .m-f-i {
    width: 47%;
  }

  .message-form .m-f-c.c-i {
    width: 80%;
  }

  .videos .videos-container .video {
    margin: 25px 12.5px 0;
    width: calc((100% / 2) - 25px);
  }

  .gallery .gallery-options button {
    width: unset;
    margin: 0;
    margin-left: 15px;
  }

  .gallery .gallery-container {
    grid-template-columns: auto auto;
  }

  .gallery-slideshow .g-s-i .type {
    top: 20px;
    right: 20px;
  }

  .gallery-slideshow .g-s-i .caption {
    display: flex;
  }

  .gallery-slideshow .g-s-i .caption .caption-container {
    margin: 30px;
    width: calc(100% - 60px);
  }

  .blog-details .b-d-c,
  .blog-details .b-s-e {
    width: 400px;
  }
}

@media only screen and (min-width: 767px) {
  header {
    padding: 10px 50px;
  }

  header .header-logo {
    position: static;
    top: unset;
    left: unset;
    transform: unset;
  }



  .about-dr .a-d-c .a-d-i-c .video-play .play {
    font-size: 35px;
    width: 75px;
    height: 75px;
  }

  .hero .social-media {
    display: none;
  }

  .hero .hero-video .card {
    padding: 15px;
    flex-direction: row;
    align-items: flex-start;
  }

  .s-m-float {
    display: flex;
  }

  .hero .hero-video .card.right {
    top: 10%;
    transform: translateX(calc(50% + 15px));
  }

  .hero .hero-video .card.left {
    bottom: 10%;
    transform: translateX(calc(-50% - 15px));
  }

  .hero .hero-video .card .icon {
    margin: 0;
    margin-left: 15px;
  }

  .hero .hero-video .card h2 {
    font-size: 16px;
  }

  .hero .hero-video .card h3 {
    font-size: 12px;
  }

  .services .services-container,
  .about-analytics .a-a-c {
    flex-direction: row;
    width: 530px;
  }

  .services .services-container .service,
  .about-analytics .a-a-c .item {
    margin-left: 30px;
  }

  .services .services-container .service:nth-child(even),
  .about-analytics .a-a-c .item:nth-child(even) {
    margin-left: 0;
  }

  .about-dr .a-d-c .a-d-i-c {
    margin-top: 100px;
    width: 80%;
  }

  .about-dr .a-d-c .a-d-c-t {
    padding: 0 150px;
  }

  .our-services .o-s-c .o-s-c-i,
  .our-services .o-s-c .o-s-c-t {
    width: 80%;
  }

  .h-v-s .swiper-slide .h-v-i,
  .h-v-s .swiper-slide .h-v-t {
    width: 70%;
  }

  .last-articles .l-a-s-c {
    width: 85%;
  }

  footer .f-i {
    width: unset;
    /* padding: 0 30px; */
  }

  footer .f-i.l {
    width: 400px;
    /* padding: 0 30px; */
  }

  footer .f-i.n {
    width: 400px;
  }

  .hero .a-h-c span {
    font-size: 40px;
    padding: 50px 25px;
  }

  .main.service .our-services .o-s-c {
    width: 80%;
  }

  .medical-contracts .m-c-c {
    width: calc(100% - 60px);
    max-width: 1000px;
    justify-content: space-between;
  }

  .medical-contracts .m-c-c .m-c {
    width: calc((100% / 2) - (10px * 2));
  }

  .blogs .blogs-container .blog-item {
    width: calc((100% / 2) - (5px * 2));
  }

  .blogs .b-t .blog-search {
    width: 40%;
  }

  .blogs .b-c .popular-blogs {
    width: 600px;
  }

  .videos .videos-container .video {
    margin: 50px 25px 0;
    width: calc((100% / 2) - 50px);
  }

  .videos .videos-container .video .v-t {
    margin-top: 30px;
    padding: 25px;
  }

  .gallery .gallery-container {
    grid-template-columns: auto auto auto;
  }

  .gallery-slideshow .g-s-i .caption .caption-container h4 {
    font-size: 24px;
  }

  .gallery-slideshow .g-s-i .caption .caption-container .caption-author {
    margin-top: 15px;
  }

  .gallery-slideshow .g-s-i .caption .caption-container .caption-author span {
    font-size: 16px;
  }

  .gallery-slideshow .g-s-i .caption .caption-container .caption-author img {
    width: 30px;
    height: 30px;
  }

  .home .f-c-l-r {
    display: flex;
  }

  .home .hero .f-c-l-r {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .services .services-container .service .reserve-btn {
    opacity: 1;
  }
  .our-services .h-v-s {
    display: none;
  }
  .our-services .o-s-c {
    display: flex;
  }
  .certificates .a-d-c-t-n-a {
    flex-direction: column;
  }
  .certificates .a-d-c-t-n-a .certificates-box.achiv {
    margin-inline-start: 0;
  }
  .our-services .h-v-s.service-web {
    display: none;
  }
  .our-services .h-v-s.service-mobile {
    display: contents;
  }
  .h-v-s.review-box .swiper-slide .h-v-i {
    width: 60%;
    /* margin-left: 15px; */
  }

  .h-v-s.review-box .swiper-slide .review-text {
    display: none;
  }
  .h-v-s.review-box .swiper-slide .review-text.review-mobile {
    display: block;
  }
  .h-v-s.review-box .swiper-slide .review-text.review-mobile p {
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    padding-inline-start: 10%;
  }
  .h-v-s.review-box {
    padding-top:0 ;
    padding-bottom: 0 ;
  }
  .h-v-s.review-box .h-v-c {
    margin: 0;
  }
  .h-v-s.review-box .swiper .swiper-button-next{
    right: 43.5px;
  }
  .h-v-s.review-box .swiper .swiper-button-prev{
    left: 57.5px;
  }

}

@media only screen and (min-width: 900px) {
  .f-c-l-r-box .info-box {
    width: 800px;
  }

  .f-c-l-r-box .info-box .i-b-t {
    width: 40%;
  }

  .f-c-l-r-box .info-box.reserve {
    width: 70%;
  }

  .f-c-l-r-box .info-box.reserve .i-b-t {
    width: 50%;
    padding: 50px;
  }

  .f-c-l-r-box .info-box.reserve .i-b-t h2 {
    font-size: 23px;
  }

  .f-c-l-r-box .info-box.reserve img {
    width: 50%;
    border-radius: 50px;
  }

  .f-c-l-r-box .info-box {
    flex-direction: row;
  }

  .f-c-l-r-box .info-box img,
  .f-c-l-r-box .info-box iframe {
    order: 2;
    width: 60%;
    height: auto;
  }

  .h-v-s .swiper-slide {
    flex-direction: row;
  }

  .h-v-s .swiper-slide .h-v-i,
  .h-v-s .swiper-slide .h-v-t {
    margin: 0;
    width: 50%;
  }

  .h-v-s .swiper-slide .h-v-t {
    align-items: flex-start;
    padding: 0 50px;
    text-align: right;
  }

  html[lang="en"] .h-v-s .swiper-slide .h-v-t {
    direction: ltr;
    text-align: left;
  }

  .last-articles .l-a-s-c {
    width: calc(85% - 115px);
  }

  .last-articles .swiper .swiper-button-next,
  .last-articles .swiper .swiper-button-prev {
    display: flex;
  }

  .main.service .our-services .o-s-c .o-s-c-t h3 {
    font-size: 40px;
  }

  .main.service .our-services .o-s-c .o-s-c-t p {
    font-size: 18px;
  }

  .reserve-form .r-f-c {
    flex-direction: row;
    align-items: stretch;
  }

  .reserve-form .r-f-c .r-f-c-i-c {
    width: 65%;
  }

  .reserve-form .r-f-c .r-f-i {
    width: 48%;
  }

  .reserve-form .r-f-c .r-f-c-i-c.img {
    margin: 0;
    width: 30%;
  }

  .blogs .blogs-container .blog-item {
    width: calc((100% / 2) - (10px * 2));
  }

  .message-form {
    flex-direction: row;
  }

  .message-form .m-f-c {
    width: 48%;
  }

  .message-form .m-f-c.c-i {
    margin: 0;
    width: 48%;
    padding: 40px 30px;
  }

  .message-form .m-f-c.c-i p {
    width: 400px;
  }

  .videos .videos-container .video {
    margin: 30px 15px 0;
    width: calc((100% / 3) - 30px);
  }

  .blog-details {
    width: 850px;
    flex-direction: row;
    align-items: flex-start;
  }

  .blog-details .b-d-c {
    width: 450px;
  }

  .blog-details .b-s-e {
    margin: 0;
    width: 350px;
  }
}

@media only screen and (min-width: 1100px) {
  .last-articles .swiper .swiper-button-next,
  .last-articles .swiper .swiper-button-prev {
    display: none;
  }
}

@media only screen and (min-width: 1250px) {
  /* header .header-logo img {
    display: none;
  } */

  header .row .header-links {
    display: flex;
    align-items: center;
  }

  header .header-links {
    max-height: unset;
    position: static;
    top: unset;
    right: unset;
    display: unset;
    transform: unset;
    flex-direction: unset;
    background-color: unset;
    overflow: unset;
    box-shadow: unset;
    transition: unset;
  }

  header .header-links a,
  header .header-links .l-m-c {
    margin-right: 20px;
    padding: 0;
  }

  header .header-links a:hover,
  header .header-links .l-m-c span:hover {
    background-color: unset;
    color: #e94f84;
  }

  header .row:last-child {
    width: unset;
  }

  header .row .menu {
    display: none;
  }

  header .header-logo {
    margin-right: 25px;
  }

  header .header-lang {
    order: 0;
  }

  .hero .hero-video .video .video-play .play,
  .h-v-s .swiper-slide .h-v-i .video-play .play {
    font-size: 35px;
    width: 75px;
    height: 75px;
  }

  .hero .hero-video .card {
    padding: 20px;
  }

  .hero .hero-video .card.right {
    top: 25%;
    transform: translateX(calc(50% + 15px));
  }

  .hero .hero-video .card.left {
    bottom: 25%;
    transform: translateX(calc(-50% - 15px));
  }

  .hero .hero-video .card .icon {
    width: 40px;
    height: 40px;
  }

  .hero .hero-video .card h2 {
    font-size: 20px;
  }

  .hero .hero-video .card h3 {
    font-size: 16px;
  }

  .services .services-container,
  .about-analytics .a-a-c {
    width: unset;
  }

  .services .services-container .service,
  .about-analytics .a-a-c .item {
    margin: 0;
    margin-left: 30px;
  }
  .services .services-container .service {
    max-height: 300px;
  }

  .services .services-container .service:nth-child(even),
  .about-analytics .a-a-c .item:nth-child(even) {
    margin-left: 30px;
  }

  .services .services-container .service:last-child,
  .about-analytics .a-a-c .item:last-child {
    margin: 0;
  }

  .about-dr .a-d-c {
    flex-direction: row;
  }

  .about-dr .a-d-c .a-d-i-c {
    order: 0;
    margin: 0;
    /* width: 60%; */
    width: 55%;
    border-radius: 50px 0 0 50px;
  }

  .about-dr .a-d-c .a-d-c-t {
    order: 1;
    padding: 0 100px;
    width: 40%;
    padding-inline-start: 4%;
    padding-top: 2rem;
  }

  .our-services .o-s-c {
    flex-direction: row;
  }

  .our-services .o-s-c .o-s-c-t {
    margin: 0;
  }

  .our-services .o-s-c .o-s-c-i,
  .our-services .o-s-c .o-s-c-t {
    width: 50%;
  }

  .our-services .o-s-c .o-s-c-t {
    align-items: flex-start;
    text-align: right;
  }

  html[lang="en"] .our-services .o-s-c .o-s-c-t {
    text-align: left;
  }

  .our-services .o-s-c .o-s-c-i {
    order: 1;
  }

  .our-services .o-s-c .o-s-c-t {
    order: 0;
  }

  .our-services .o-s-c:nth-child(even) .o-s-c-i {
    order: 0;
  }

  .our-services .o-s-c:nth-child(even) .o-s-c-t {
    order: 1;
  }

  .h-v-s .h-v-c,
  .customer-reviews {
    width: calc(80% - 140px);
  }

  .our-services .h-v-s .swiper .swiper-button-next {
    right: 10px;
  }

  .our-services .h-v-s .swiper .swiper-button-prev {
    left: 10px;
  }
  .our-services .h-v-c {
    width: 90%;
  }
  .medical-contracts .swiper {
    width: 70%;
  }

  .last-articles .l-a-s-c {
    width: calc(85% - 140px);
  }

  .last-articles .swiper .swiper-button-prev {
    right: -70px;
  }

  .last-articles .swiper .swiper-button-next {
    left: -70px;
  }

  footer .f-m {
    padding: 30px 45px;
  }

  footer .f-i.n {
    width: 500px;
  }

  .main.service .our-services .o-s-c {
    width: 70%;
  }

  .main.service .our-services .o-s-c .o-s-c-t {
    width: 80%;
  }

  .medical-contracts .m-c-c {
    width: 1200px;
    max-width: unset;
  }

  .medical-contracts .m-c-c .m-c {
    width: calc((100% / 3) - (10px * 2));
  }

  .blogs .b-t {
    width: 1200px;
  }

  .blogs .b-t .blog-search {
    width: 30%;
  }

  .blogs .b-c {
    flex-direction: row;
    align-items: flex-start;
  }

  .blogs .b-c .popular-blogs {
    width: 350px;
  }

  .reserve-form .r-f-c {
    width: 80%;
  }

  .reserve-form .r-f-c .r-f-c-i-c {
    width: 70%;
  }

  .reserve-form .r-f-c .r-f-c-i-c.img {
    width: 27%;
  }

  .gallery .gallery-container {
    grid-template-columns: auto auto auto auto;
  }

  .blog-details {
    width: 100%;
  }

  .blog-details .b-d-c {
    width: 750px;
  }

  .blog-details .b-d-c .b-d-i {
    flex-direction: row;
  }

  .blog-details .b-d-c .b-d-i div {
    margin-bottom: 0;
  }

  .blog-details .b-s-e {
    width: 350px;
  }
}

@media only screen and (max-width: 1250px) {
  .about-dr .a-d-c .a-d-i-c {
    margin: auto;
    margin-top: 25px;
  }
  .h-v-s.review-box .swiper .swiper-button-prev {
    display: none;
  }
  .h-v-s.review-box .swiper .swiper-button-next {
    display: none;
  }
}

@media only screen and (max-width: 1053px) {
  .certificates .a-d-c-t-n-a .certificates-box.achiv {
    margin-inline-start: 10%;
  }
}

@media only screen and (max-width: 996px) {
  .certificates .a-d-c-t-n-a {
    flex-direction: column;
  }
  .certificates .a-d-c-t-n-a .certificates-box.achiv {
    margin-inline-start: 0;
  }
}

@media only screen and (min-width: 1400px) {
  header .header-logo img {
    display: block;
  }

  header .header-logo {
    margin-right: 50px;
  }

  .last-articles .l-a-s-c {
    width: calc(90% - 140px);
  }

  .videos .videos-container .video {
    margin: 50px 25px 0;
    width: calc((100% / 4) - 50px);
  }

  .gallery .gallery-container {
    width: 80%;
  }
}


@media only screen and (max-width: 1115px) {
  .hero .hero-text .bottom-hero-box{
    gap: 15px;
  }
  section.doctor-services .doctor-services-box .middle-services-box p{
    display: block;
  }

  section.about-doctor .about-doctor-box{
    width: 90%;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text{
    /* margin-top: 20px; */
    margin: 45px 0;
  }

  section.about-doctor .about-doctor-box .doctor-box-content{
    padding: unset;
    align-items: end;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .about-points span{
    display: block;
    width: 75%;
  }

  footer .f-m img.float-img-footer{
    display: none;
  }

  footer .f-m{
    padding: 25px 30px;
    padding-top: 35px;
    gap: 12%;
    flex-direction: column-reverse;
  }

  /* .gallery img{
    width: 30%;
  } */
}

@media only screen and (max-width: 992px) {
  
  .hero{
    flex-direction: column;
    align-items: center;
    margin-bottom: 26rem;
  }

  .hero .hero-cover{
    width: 80%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;

  }

  .hero .hero-cover .doctor-container{
    margin: 0;
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
  }

  .hero .hero-text .bottom-hero-box{
    gap: 40px;
    width: 80%;
    margin-bottom: 25px;
  }

  .hero .hero-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero .hero-text .row{
    width: fit-content;
  }

  .hero .float-hero{
    height: 80px;
    width: 16%;
  }

  .hero .first-float{
    left: 12%;
    top: 45%;
  }

  .hero .second-float {
    right: 12%;
    top: 35%;
  }

  .hero .third-float {
    left: 70%;
    bottom: 0%;
  }
  
  .hero .hero-text h1,
  .hero .hero-text h2{
    display: none;
  }

  .hero .hero-cover h1,
  .hero .hero-cover h2{
    display: block;
  }
  
  .hero .hero-cover h1{
    color: var(--dark-pink-color);
    font-size: 25px;
  }

  .hero .hero-cover h1 span{
    color: var(--brown-color);
  }

  .hero .hero-cover h2{
    color: var(--dark-purple-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 19px;
  }

  .hero .hero-text a.reserve-btn{
    margin: 0;
  }

  .doctor-banner img.hand-card {
    bottom: 4%
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-img{
    width: 30%;
  }
  
  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .reserve-btn{
    width: 50%;
  }

  footer .f-m{
    flex-wrap: wrap;
    padding: 25px 50px;
    gap: 25%;
    row-gap: 40px;
  }

  .hero .hero-cover .doctor-container img{
    width: 55%;
  }

  .gallery .gallery-item {
    width: 45%;
  }
  .gallery .gallery-item > img {
    width: 100%;
  }

section.about-page-hero .about-hero-img{
  display: none;
}

section.about-page-hero .about-hero-text h1{
  display: flex;
  flex-direction: column;
  margin: auto;
}

section.about-page-hero .about-hero-text h1 span{
  margin-bottom: 7px;
}

section.about-page-hero .about-hero-text a.reserve-btn{
  width: 60%;
  margin: auto;
}

section.about-page-hero .about-hero-text p{
  width: 100%;
}

section.about-page-hero .about-hero-text h2 {
  margin: auto;
  margin-bottom: 25px;
}

section.about-page-hero .about-hero-text{
  width: 80%;
}

.benefits-description .benefits-description-text a.reserve-btn{
  padding: 8px 0;
  width: 70%;
}
}

@media only screen and (max-width: 850px) {
  section.doctor-services .doctor-services-box{
    flex-direction: column;
  }
  section.doctor-services .doctor-services-box .right-services-box{
    display: none;
  }

  section.doctor-services .doctor-services-box .middle-services-box{
    width: 95%;
    margin: auto;
    order: 0;
  }

  section.doctor-services .doctor-services-box .left-services-box {
    width: 60%;
    margin: auto;
    display: none;
  }

  section.doctor-services .doctor-services-box .middle-services-box img.mobile-storyset{
    display: block;
    width: 55%;
    margin: auto;
    margin-bottom: 25px;
  }

  section.doctor-services .doctor-services-box .middle-services-box img.mobile-logo{
    position: absolute;
    width: 25%;
    left: -40px;
    top: 95%;
    display: block;
  }


}


@media only screen and (max-width: 800px) {

  .doctor-banner img.hand-card {
    display: none;
  }

  .benefits-description{
    height: auto;
  }


  .benefits-description-text{
    margin: auto;
    width: 85%;
  }

  .benefits-description-text .hand-card-mobile{
    display: block;
    width: 70%;
    margin-right: auto;
    position: relative;
    left: -9%;
  }

  .benefits-description-text .hand-card-mobile img{
    width: 100%;
  }

  .benefits-description .benefits-description-text a.reserve-btn{
    width: 35%;
  }

  section.loactions-branchs .loactions-branchs-box .loaction-details-box{
    flex-direction: column;
    padding: 0;
    padding-bottom: 30px;
  }

  section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data{
    width: 100%;
  }

  section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-map{
    width: 100%;
    display: flex;
  }
  
  section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-map iframe{
    margin: auto;
    width: 80%;
  }

  section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-map img.calling{
    width: 15%;
    right: -1%;
    bottom: 0%;
  }

  section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab h3{
    font-size: 14px;
  }

  section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data h4 {
    font-size: 20px;
  }

  section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data p{
    font-size: 15px;
  }

  section.loactions-branchs .loactions-branchs-box .loaction-details-box .loaction-data .contact-box a{
    font-size: 15px;
    width: 80%;
  }

  section.about-doctor .about-doctor-box{
    width: 95%;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text{
    width: 55%;
  }
  
  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-img{
    width: 35%;
  }

  footer .f-m{
    gap: 40%;
  }

  footer .f-i.l{
    width: 100%;
  }

  .hero .hero-cover .doctor-container img {
    width: 65%;
}

.doctor-banner{
  margin-bottom: 0;
}

section.blogs{
  padding-top: 0;
}

}

@media only screen and (max-width: 768px) {
  
  .hero .social-media {
    display: none;
  }

  .hero .hero-text .bottom-hero-box {
    width: 90%;
  }

  .hero .ballon-float.float-hero{
    width: 18%;
    left: -3%;
    background: none;
  }

  section.about-doctor .about-doctor-box .doctor-box-content{
    flex-direction: column;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text{
    width: 100%;
    padding: 0 25px;
  }

  section.about-doctor .about-doctor-box .doctor-box-content{
    position: relative;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-img{
    position: absolute;
    width: 25%;
    bottom: 0;
    display: none;
  }

  footer .f-i{
    width: fit-content;

  }

  footer .f-i.l {
    margin-bottom: 45px;
  }

}


@media only screen and (max-width: 700px) {

  .hero .hero-cover .doctor-container{
    width: 70%;
  }

  .hero .hero-text .bottom-hero-box{
    gap: 25px;
  }

  .hero .hero-text{
    margin-top: 25px;
  }

  footer .f-m {
    gap: 30%;
  }
  
  .blog-layer h1 {
    font-size: 22px;
  }


}


@media only screen and (max-width: 600px) {

  .hero .hero-text .bottom-hero-box .hero-location p,
  .hero .hero-text .bottom-hero-box .hero-services p,
  .hero .hero-text .bottom-hero-box .hero-profile p{
    width: fit-content;
    font-size: 11px;
  }

  .hero .hero-text .bottom-hero-box {
    gap: 17px;
  }

  section.about-doctor .about-doctor-box .doctor-box-content img.about-logo-img{
    width: 8%;
  }

  footer .f-m {
    gap: 20%;
}

section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab h3{
  font-size: 12px;
}

section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab h3 span{
  font-size: 11px;
}

section.about-doctor-page img.hats-img,
section.about-doctor-page img.doctor-success,
section.about-doctor-page img.visit-img{
  display: none;
}


.dotted-line,
.main-dots{
  display: none;
}

.journey-steps{
  flex-wrap: wrap-reverse;
  row-gap: 30px;
}

.step{
  width: 30%;
}

.service-intro-desc {
  bottom: -3%;
}

.service-intro-desc p{
  font-size: 19px;
  width: 85%;
}

.gallery img {
  width: 85%;
}

.swiper-pagination.reels-pagination {
  bottom: -5px;
}

.faq-item .title h4{
  font-size: 14px;
}

.benefits-description .benefits-description-text a.reserve-btn {
  width: 55%;
}

}

@media only screen and (max-width: 550px) {

  .hero .hero-cover h1{
    font-size: 22px;
    text-align: center;
  }

  .hero .hero-cover h2{
    font-size: 15px;
    width: 75%;
  }

  .hero .hero-cover .doctor-container {
    width: 90%;
  }

  .hero .hero-cover .doctor-container img {
    width: 72%;
  }

  .hero .float-hero{
    width: 125px;
  }

  .hero .ballon-float.float-hero{
    top: -12%;
    z-index: 1000000;
    left: -4%;
    width: 25%;
  }

  .hero .first-float{
    left: 7%;
    top: 60%;
  }

  .hero .second-float {
    right: 7%;
  }

  .hero .third-float {
    bottom: -11%;
}

  footer .f-m {
    gap: unset;
  }

  footer .f-i.last-column{
    margin-right: 30px;
  }

  footer .f-i h2 {
    font-size: 18px;
  }

}


@media only screen and (max-width: 500px) {
  
  .hero .hero-text .bottom-hero-box{
    gap: 6px;
  }

  .hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero p.location-name-hero{
    gap: 0;
  }

  .hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero p.location-name-hero i{
    font-size: 15px;
  }

  section.doctor-services .doctor-services-box .middle-services-box{
    width: 90%;
  }

  section.doctor-services h2.service-intro{
    font-size: 23px;
  }

  section.doctor-services .doctor-services-box .middle-services-box h2{
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  section.doctor-services .doctor-services-box .middle-services-box h2 img{
    width: 45px;
  }

  section.doctor-services .doctor-services-box .middle-services-box h3{
    font-size: 21px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  section.doctor-services .doctor-services-box .middle-services-box img.mobile-storyset {
    width: 70%;
  }

  section.doctor-services .doctor-services-box .middle-services-box img.mobile-logo{
    width: 35%;
    left: -30px;
    display: none;
  }

  .benefits-description-text{
    width: 100%;
  }

  .benefits-description-text h2{
    font-size: 23px;
  }

  .benefits-description-text h4{
    font-size: 16px;
  }

  .benefits-description .benefits-description-text ul{
    padding: 0;
  }

  section.doctor-reels h2{
    font-size: 21px;
  }

  section.doctor-reels h2 img.video-icon{
    display: none;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-img{
    display: none;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3{
    width: fit-content;
    margin: auto;
    margin-bottom: 25px;
    flex-direction: row-reverse;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3::before{
    width: 50%;
    right: -8%;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text h3::after{
    width: 50px;
    right: 20%;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .reserve-btn{
    margin: auto;
  }

  section.about-doctor .about-doctor-box .doctor-box-content img.about-logo-img{
    width: 9%;
  }

  section.about-doctor .about-doctor-box .doctor-box-content img.about-logo-text{
    right: 3%;
    width: 16%;
  }

  footer .f-i.last-column {
    margin-right: 20px;

  }

  footer .row.footer-social a{
    width: 30px;
    height: 30px;
  }

  footer .row.footer-social a i{
    font-size: 13px;
  }

  footer .f-i.l a.reserve-btn {
    padding: 8px 0;
    width: 70%;
  }

  section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab h3 {
    font-size: 13px;
    display: flex;
    flex-direction: column;
  }

  .service-intro-desc{
    bottom: 30%;
    display: flex;
    flex-direction: column-reverse;
  }

  .service-intro-desc p{
    margin-bottom: 60px;
    color: #fff;
  }

  .services-page-intro{
    margin-bottom: 0;
  }

  .gallery{
    padding-top: 0;
  }

  .faq-item .title h4{
    width: 80%;;
  }

  .desc.active-question p{
    font-size: 14px;
    width: 90%;
  }

  section.about-page-hero .about-hero-text h1 span{
    font-size: 18px;
    text-align: center;
  }

  section.about-page-hero .about-hero-text h1{
    font-size: 17px;
    text-align: center;
  }

  section.about-page-hero .about-hero-text h2{
    font-size: 15px;
    text-align: center;
  }

  section.about-page-hero .about-hero-text {
    width: 90%;
  }

  section.about-page-hero{
    background-position-x: -17rem;
  }

  .blog-layer h1 {
    width: 90%;
    font-size: 20px;
  }

  .break-service img {
    width: 50%;
}


section.about-doctor .about-doctor-box.reverse-row .doctor-box-content .doctor-about-text{
  padding: 0 25px;
}
.layer-text-bottom{
  display: none;
}
.gallery-layer{
  padding: 0;
  height: 25%;
}
.gallery .gallery-item{
  height: auto;
}
.gallery-layer .layer-icon{
  height: 35px;
  width: 35px;
  margin: 5px 5px 5px 0;
}
.overlay-content{
  width: 65%;
}

.blog-details{
  width: 100%;
}

  .blog-details .b-s-e{
    margin-top: 15%;
    width: 100%;
  }

  h1.blog-main-title {
    font-size: 18px;
  }

  .blog-details .b-d-c{
    width: 100%;
  }

}


@media only screen and (max-width: 450px) {
  
  
  
  .hero .hero-cover h1 {
    font-size: 19px;
  }

  .hero .hero-cover h2 {
    font-size: 14px;
    width: 95%;
  }
  
  .hero .float-hero {
    width: 100px;
    height: 80px;
  }
  
  .hero .hero-text .bottom-hero-box{
    width: 99%;
    gap: 0;
    justify-content: space-around;
    padding-bottom: 15px;
  }

   .hero .hero-text .bottom-hero-box .hero-location p,
   .hero .hero-text .bottom-hero-box .hero-services p,
   .hero .hero-text .bottom-hero-box .hero-profile p{
      width: 100px;
      display: flex;
      align-items: baseline;
    }

    .hero .hero-text .bottom-hero-box .hero-location p span{
    display: inline-block;
    text-indent: -3px;
    padding-right: 3px;
    width: 80%;
    line-height: 14px;
   }
   
   
   .hero .hero-text .bottom-hero-box .hero-location,
   .hero .hero-text .bottom-hero-box .hero-services,
   .hero .hero-text .bottom-hero-box .hero-profile{
     width: 110px;
    }

    .hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero {
    width: 100%;
   }
   
   .hero .hero-text .bottom-hero-box img.baby-crawling{
    width: 50px;
   }
   
   .hero .hero-text .bottom-hero-box .hero-box .clinic-data-hero p.location-name-hero{
      /* background-color: green; */
      width: fit-content;
      margin-right: 4px;
      margin-bottom: 5px;
    }
    
    section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .reserve-btn{
      width: 60%;
    }

    .hero .hero-cover .doctor-container img {
      width: 80%;
  }

  section.loactions-branchs .loactions-branchs-box{
    width: 97%;
  }

  section.loactions-branchs .loactions-branchs-box .loactions-branchs-header .branchs-tab h3{
    width: fit-content;
    margin: auto;
  }

  .step {
    width: 40%;
}
    
  }
  

  @media only screen and (max-width: 400px) {
    .hero .hero-cover{
      width: 97%;
    }
    .hero .float-hero {
      width: 100px;
      height: 70px;
   }

   .hero .first-float {
    left: 1%;
  }

  .hero .second-float {
    right: 3%;
  }

  section.doctor-services .doctor-services-box .single-service-box{
    width: 90%;
  }

  section.doctor-services .doctor-services-box .middle-services-box img.mobile-logo{
    width: 30%;
  }

  .benefits-description-text .hand-card-mobile{
    width: 85%;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .about-points span{
    width: 95%;
  }

  section.about-doctor .about-doctor-box .doctor-box-content .doctor-about-text .reserve-btn {
    width: 75%;
  }

  footer .f-i.last-column{
    margin: 0;
  }

  footer .f-i.middle-column{
    margin-left: 20px;
    margin-bottom: 20px;
  }

  section.about-page-hero .about-hero-text p{
    font-size: 13px;
  }

  section.about-page-hero{
    align-items: flex-start;
    height: 67vh;
  }
  section.about-page-hero .about-hero-text{
    margin-top: 55px;
  }

  section.about-page-hero .about-hero-text h1 span {
    margin-bottom: 20px;
  }


  }
/* ========================= */

/* Pagination container */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 50%;
  height: auto;
  margin-top: 20px;
  gap: 10px;
}

/* Style each page number as a circle */
.page-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: #e2e2e2;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 14px;
  padding: 5px;
}

/* Active page number (current page) */
.page-number.active {
  background-color: #007bff;
  color: white;
}

/* Add hover effect for all page numbers */
.page-number:hover {
  background-color: #007bff;
  color: white;
}

