

@font-face {
  font-family: 'Tajawal-arabic';
  src: url('/assets/fonts/Tajawal-Medium.ttf'),
}

* {
  font-family: "Tajawal-arabic", "Poppins", sans-serif;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  font-display: swap;
}

*: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 {
  --prim-color: #4CAF50;
  --sec-color: #005339;

}

p,h1,h2,h3,h4{
  margin: 0;
  width: fit-content;
}

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;
}

.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: #f8f3ff;
  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: #4b5439 transparent;
  scroll-behavior: smooth;

}

.scroll::-webkit-scrollbar {
  width: 5px;
}

.scroll::-webkit-scrollbar-track {
  background: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  background: var(--sec-color);
}

.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: absolute;
  top: 0;
  width: 100%;
  color: var(--sec-color);
  background-color: #ffffffbf;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.5s;
  transition: all 0.35s ease;
}

header:hover{
  background-color: #fff;
}


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 a.contact-header-web{
    background-color: var(--sec-color);
    color: #fff;
    padding: 7px 15px;
    border-radius: 23px;
}

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;
}

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/logo7.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;
}

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(--sec-color);
  transition: color 0.5s, background 0.5s;
  font-size: 17px;
  transition: all 0.35s ease;
}

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: var(--sec-color);
  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: var(--sec-color);
  transition: color 0.5s;
  order: 3;
}

header .header-lang:hover {
  cursor: pointer;
  color: #e94f84;
}

.hero {
  position: relative;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100vh;
  justify-content: center;
  margin-bottom: 60px;
  background-color: #fff;
  z-index: 2;
}

.hero .hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .hero-bg .hero-swiper{
  width: 100%;
  height: 100%;
}

.hero .hero-bg .hero-swiper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg .hero-swiper img.third-hero{
  object-position: top;
}


.hero .hero-layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .hero-desc{
  z-index: 1;
  width: 85%;
  margin-right: 60px;
  margin-top: 8%;
}

.hero .hero-desc h2{
  font-size: 18px;
  margin-bottom: 15px;
}

.hero .hero-desc h1{
    margin-bottom: 35px;
    width: 70%;
    line-height: 1.45;
    font-size: 55px;
}

.hero .hero-desc .row {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 30px;
  margin-right: 10px;
}


.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 #fff; */
  background-color: var(--prim-color);
  transition: all 0.55s ease;
}

.row.social-web a i {
  font-size: 20px;
  color: #fff;
}
.row.social-web a:hover {
  background-color: var(--sec-color);
  border: none;

}
.row.social-web a:hover i{
  color: white;
}




.hero .hero-desc a.know-doctor,
.hero .hero-desc a.contact-btn{
    background-color: var(--prim-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    margin-right: 10px;
    transition: all 0.35s ease;
}


.hero .hero-desc a.know-doctor i,
.hero .hero-desc a.contact-btn i{
  margin-right: 8px;
}


.hero .hero-desc a.know-doctor{
      background-color: #b5b5b5;
}


.hero .hero-desc a.know-doctor:hover,
.hero .hero-desc a.contact-btn:hover{
  padding: 10px 35px;
}


.hero .hero-desc p{

}


.about .hero,
.service .hero,
.contracts .hero,
.blog .hero,
.feedback .hero,
.contact .hero,
.media .hero {
  background-image: url("/assets/img/a-h-i.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.h-v-s.review-box .h-v-c {
  width: 85%;
}
.h-v-s.review-box .swiper-slide {
  justify-content: center;
  direction: rtl;
}
/* .h-v-s.review-box .swiper-slide .review-text {
  direction: rtl;
} */
.h-v-s.review-box .swiper-slide .review-text h3,
.h-v-s.review-box .swiper-slide .review-text p {
  margin: 0;
  padding-inline-start: 6%;
}
.h-v-s.review-box .swiper-slide .review-text p {
  width: 80%;
}

.h-v-s.review-box .swiper-slide .h-v-i {
  width: 40%;
  margin-inline-start: 3%;
}
.h-v-s.review-box .swiper .swiper-button-next {
  right: 20.5px;
}
.h-v-s.review-box .swiper .swiper-button-prev {
  left: 20.5px;
}



.hero .a-h-c {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(242, 233, 255, 0.9);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

.hero .a-h-c span,
.hero .a-h-c h1 {
  box-sizing: border-box;
  padding: 25px 12.5px;
  width: 850px;
  max-width: 100%;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: var(--sec-color);
  line-height: 1.3;
}

/* start about doctor */

section.about-doctor{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  /* margin-bottom: 45px; */
  align-items: flex-start;
}

/* section.about-doctor .letter{
  position: absolute;
  top: 1%;
  right: 15%;
  width: 25%;
}

section.about-doctor .letter img{
  width: 100%;
} */

section.about-doctor .doc-about-img{
  width: 35%;
  height: 30rem;
}

section.about-doctor .doc-about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* section.about-doctor .about-doc-desc{
  width: 50%;
}

section.about-doctor .about-doc-desc h3{
     margin-bottom: 10px;
     border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    color: var(--sec-color);
}

section.about-doctor .about-doc-desc h2{
    color: var(--sec-color);
    font-size: 37px;
    width: 80%;
    margin-bottom: 10px;
}

section.about-doctor .about-doc-desc .about-points{
 margin-left: 5px;
}


section.about-doctor .about-doc-desc .about-points p{
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #3b4d3c;
} */
 
section.about-doctor .about-doc-desc {
  width: 50%;
  padding: 30px;
  padding-bottom: 0;
  border-radius: 15px;
}

section.about-doctor .about-doc-desc h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: 600; 
    border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    color: var(--sec-color);
}

section.about-doctor .about-doc-desc h2 {
  color: var(--sec-color);
  font-size: 28px;
  width: 90%;
  margin-bottom: 25px;
  line-height: 1.3;
  font-weight: 700;
}

section.about-doctor .about-doc-desc .doctor-mobile-img{
  display: none;
}


.about-tabs {
  margin-top: 20px;
  margin-bottom: 25px;
}

.tab-headers {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-header {
  /* flex: 1; */
  padding: 12px 20px;
  background: var(--light-bg);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
  width: 25%;
}

.tab-header:hover {
  background: #e8f4e8;
  border-color: var(--primary-color);
}

.tab-header.active {
  background: var(--sec-color);
  color: white;
  border-color: var(--sec-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-points {
  margin-left: 5px;
}

.about-points p {
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  color: #3b4d3c;
  line-height: 1.5;
  padding: 10px;
  border-radius: 8px;
  border-right: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.about-points p:hover {
  background: #f0f8f0;
  transform: translateX(-5px);
}

.about-points p img {
  width: 20px;
  margin-left: 10px;
  margin-top: 2px;
  filter: hue-rotate(120deg);
}

section.about-doctor .about-doc-desc .about-points p img{
  width: 25px;
}

section.about-doctor .about-doc-desc .card-img{
  width: 75%;
  margin-right: auto;
}

section.about-doctor .about-doc-desc .card-img img{
  width: 100%;
}

/* end about doctor */

/* start main services */

section.main-services{
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  margin-bottom: 120px;
  padding-top: 85px;
}


section.main-services .main-services-title{
  width: 35%;
  position: sticky;
  top: 20px;          /* المسافة من أعلى الصفحة عند التثبيت */
  align-self: flex-start;
  height: fit-content;
}

section.main-services .main-services-title h3{
  border: 2px solid #0000002e;
  padding: 5px 10px;
  border-radius: 25px;
  margin-bottom: 20px;
  color: var(--sec-color);
}

section.main-services .main-services-title h2{
  font-size: 45px;
  margin-bottom: 40px;
  color: #001d14;
}

section.main-services .main-services-title h2 span{
    /* background: #e2ff5e; */
    color: #005339;
    padding: 5px 9px;
}

section.main-services .main-services-title p{
  font-size: 23px;
  color: #001d14;
  margin-bottom: 30px;
}

section.main-services .main-services-title a{
    background-color: var(--prim-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    transition: all 0.35s ease;
}

section.main-services .main-services-title a i{
  margin-right: 8px;
}



section.main-services .main-services-container{
  width: 50%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}


section.main-services .main-services-container .service-box{
  margin-bottom: 30px;
  padding: 15px 20px;
  width: 40%;
  border-radius: 12px;
  /* border: 1px solid black; */
  position: relative;
   /* overflow: hidden; */
}

section.main-services .main-services-container .service-box .logo-services{
    position: absolute;
    left: 4%;
    top: 0%;
    width: 15%;
}
section.main-services .main-services-container .service-box .logo-services img{
  width: 100%;
}


section.main-services .main-services-container .service-box .service-box-img{
  position: absolute;
  inset: 0;                    /* top:0; right:0; bottom:0; left:0 */
  z-index: 0; 
}

section.main-services .main-services-container .service-box .service-box-img svg{
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.st0 {
  fill: transparent;
  stroke: #231f20;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  transition: all 0.35s ease;
}




section.main-services .main-services-container .service-box .service-icon{
    /* width: 25%; */
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(90deg, #005339, #00B97F);
    display: flex;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

section.main-services .main-services-container .service-box .service-icon img{
  width: 80%;
  height: fit-content;
}

section.main-services .main-services-container .service-box h3.service-name{
  margin-bottom: 7px;
  color: var(--sec-color);
  position: relative;
}



section.main-services .main-services-container .service-box p{
  position: relative;
  color: grey;
  width: 85%;
  margin-bottom: 15px;
}

section.main-services .main-services-container .service-box:hover .st0{
  fill: var(--sec-color);
  color: #fff;
}

section.main-services .main-services-container .service-box:hover h3.service-name,
section.main-services .main-services-container .service-box:hover p{
  color: #fff;
}

section.main-services .main-services-container .service-box:hover .service-icon{
  background: transparent;
}



  /* end main services */

/* start ent-section */

section.ent-section{
  width: 100%;
}

section.ent-section h3{
      border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    color: var(--sec-color);
    margin: auto;
    margin-bottom: 15px;
}

section.ent-section h2{
    font-size: 45px;
    color: #001d14;
    margin: auto;
    margin-bottom: 45px;
  }

section.ent-section h2 span{
  /* background: #e2ff5e; */
  color: #005339;
  padding: 5px 9px;
}

section.ent-section .ent-container{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 15px 15px;
    border-radius: 18px;
    margin-bottom: 30px;
}

section.ent-section .ent-container.ent-last{
  margin-bottom: 25px;
}


section.ent-section .ent-container .ent-img{
  width: 40%;
}

section.ent-section .ent-container .ent-img.throat-img{
  width: 45%;
}

section.ent-section .ent-container .ent-img img{
  width: 100%;
}

section.ent-section .ent-container .ent-desc{
  width: 50%;
}

section.ent-section .ent-container .ent-desc h3{
  border: unset;
  margin-bottom: 5px;
}
section.ent-section .ent-container .ent-desc h2{
  margin-bottom: 15px;
  color: var(--sec-color);
}

section.ent-section .ent-container .ent-desc .ent-img-mobile{
  display: none;
}


section.ent-section .ent-container .ent-desc .ent-points{}
section.ent-section .ent-container .ent-desc .ent-points p{
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

section.ent-section .ent-container .ent-desc .ent-points p img{
  width: 20px;
}



/* end ent-section */

/* start reels */

section.reels-section{
  width: 100%;
  margin-bottom: 100px;
}

section.reels-section h3{
    border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    color: var(--sec-color);
    margin: auto;
    margin-bottom: 15px;
}


section.reels-section h2{
    font-size: 45px;
    color: #001d14;
    margin: auto;
    margin-bottom: 45px;
}

section.reels-section h2 span{
  /* background: #e2ff5e; */
  color: #005339;
  padding: 5px 9px;
}

section.reels-section .reels-container{
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
  position: relative;
}

section.reels-section .reels-container .reels-swiper{
  width: 100%;
}


section.reels-section .reels-container .reel-box{
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  height: 28rem;
  position: relative;
}

.reels-swiper .swiper-slide {
  /* width: 25% !important; */
}


section.reels-section .reels-container .reel-box .reel-layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);

}

section.reels-section .reels-container .reel-box .btm-layer{
  position: absolute;
  bottom : 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
  padding: 15px 0px;
}


section.reels-section .reels-container .reel-box .btm-layer h4{
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
}


section.reels-section .reels-container .reel-box .btm-layer .reel-btm{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0 15px;
}

section.reels-section .reels-container .reel-box .btm-layer .reel-btm p{
  color: #fff;
  font-size: 18px;
}

section.reels-section .reels-container .reel-box .btm-layer .reel-btm img{
  width: 20%;
}


section.reels-section .reels-container .reel-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

section.reels-section .reels-container .reel-box .play-icon{
  position: absolute;
  left: 43%;
  top: 40%;
  width: 20%;
  cursor: pointer;
}

section.reels-section .reels-container .reel-box .play-icon img{
  width: 100%;
}

.swiper-pagination.reels-pagination{
  /* background-color: red; */
  bottom: -10%;
}


.swiper-pagination.reels-pagination .swiper-pagination-bullet{
  background-color: var(--prim-color);
  width: 20px;
  height: 12px;
  border-radius: 12px;
}

.swiper-button-next.reels-next,
.swiper-button-prev.reels-prev{
  background-color: red;
  padding: 15px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}


.swiper-button-prev.reels-prev{
  left: -5%;
}
.swiper-button-next.reels-next{
  right: -5%;
}

.swiper-button-next.reels-next::after,
.swiper-button-prev.reels-prev::after{
  font-size: 15px;
}


/* end reels */

/* start location */

section.location-section{
  width: 95%;
  border-radius: 16px;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-image: url("/assets/img/clinic-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 50px;
  flex-direction: column;
  padding: 60px 0;
}

section.location-section .location-layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
  backdrop-filter: blur(2px);
}


section.location-section .location-desc{
  width: 80%;
  z-index: 1;
  color: #fff;
  margin-bottom: 45px;
}

section.location-section .location-desc h2{
    text-align: center;
    font-size: 16px;
    border: 2px solid #ffffffa6;
    padding: 5px 25px;
    border-radius: 25px;
    color: #fff;
    margin: auto;
    margin-bottom: 30px;
}


section.location-section .location-desc p.location-slogan{
  margin: auto;
  font-size: 26px;
  text-align: center;
  width: 80%;
  line-height: 1.85;
  margin-bottom: 25px;
}

section.location-section .location-desc p.location-slogan span{
  background: #e2ff5e;
  color: #005339;
    padding: 5px 9px;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    padding-left: 17px;
    margin-left: 10px;
  }
  
section.location-section .location-desc p.location-slogan span img{
    position: absolute;
    width: 18%;
    top: 6%;
    left: -6%;
  }

section.location-section .location-desc .contact-links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

section.location-section .location-desc .contact-links .call-box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  
}

section.location-section .location-desc .contact-links .call-box p{
  display: flex;
  align-items: center;
  gap: 5px;
}

section.location-section .location-desc .contact-links .call-box p img{
  width: 20px;
}

section.location-section .location-desc .contact-links a.loca-text{
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 35px;
  font-size: 18px;

}

section.location-section .location-desc .contact-links a.loca-text img{
  width: 20px;
}


section.location-section .location-desc .contact-links p.dates{
  display: flex;
  align-items: center;
  font-size: 19px;
  gap: 5px;

}

section.location-section .location-desc .contact-links p.dates img{
  width: 20px;
}

section.location-section .location-desc .contact-links .call-box a{
  color: #fff;
  margin: 0 15px;
}

section.location-section .location-desc .contact-links .reserve-box{
  margin: auto;
}

section.location-section .location-desc .contact-links .reserve-box .contact-btn{
    background-color: var(--prim-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    transition: all 0.35s ease;
}



section.location-section .location-frame {
  width: 80%;
  position: relative;
  z-index: 1;
}

section.location-section .location-frame p{
    color: #fff;
    font-size: 23px;
    margin: auto;
    margin-bottom: 15px;
    width: fit-content;
}


section.location-section .location-frame form {
  /* padding: 20px; */
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

section.location-section .location-frame form .top-form{
    /* background: red; */
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 8%;
}


section.location-section .location-frame .form-group {
  margin-bottom: 15px;
}

section.location-section .location-frame .form-group.textarea-box{
  width: 75%;
}

section.location-section .location-frame input,
section.location-section .location-frame textarea {
  width: fit-content;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}




section.location-section .location-frame textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

section.location-section .location-frame .submit-btn {
  background-color: #007f5f;
  color: #fff;
  padding: 10px 55px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color .3s ease;
  box-shadow: unset;
}

section.location-section .location-frame .submit-btn:hover {
  background-color: #005f45;
}

section.location-section .location-frame iframe {
  width: 100%;
  border-radius: 12px;
}


/* end location */

/* reserve-btn-container */

.reserve-btn-container{
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-bottom: 70px;
  position: relative;
}


.reserve-btn-container img.calender{
  position: absolute;
  right: -5%;
  top: 0%;
  transform: rotate(20deg);
  width: 25%;
  transition: all 0.35s ease;
}


.reserve-btn-container.show-reels img.calender{
    right: 1%;
    top: 0%;
    width: 17%;
}


.reserve-btn-container a{
    /* background-color: var(--prim-color); */
    background: linear-gradient(45deg, #0b9167, #025f42);
    color: #fff;
    padding: 10px 80px;
    border-radius: 12px;
    font-size: 20px;
    transition: all 0.35s ease;
}

.reserve-btn-container a i{
    position: absolute;
    left: 16%;
    top: 30%;
}

.reserve-btn-container:hover a{
  padding: 10px 85px;
  
}

.reserve-btn-container:hover img.calender{
  transform: rotate(0deg);
}

/* start why doctor */

section.why-doctor{
  width: 100%;
  margin-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

section.why-doctor .why-doctor-desc{
  width: 45%;
}

section.why-doctor .why-doctor-desc h3{
      border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    color: var(--sec-color);
    margin: auto;
    margin-bottom: 15px;
}

section.why-doctor .why-doctor-desc .why-doctor-img-mob{
  display: none;
}



section.why-doctor .why-doctor-desc h2{
  font-size: 45px;
  color: #001d14;
  margin: auto;
  margin-bottom: 10px;
}


section.why-doctor .why-doctor-desc h2 span{
    color: #005339;
    padding: 5px 9px;
}

section.why-doctor .why-doctor-desc .row{
  justify-content: center;
  margin-bottom: 25px;
}

section.why-doctor .why-doctor-desc .features-container{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

section.why-doctor .why-doctor-desc .features-container .feature-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 12px;
    border-radius: 7px;
    width: 25%;
    margin-bottom: 15px;
}

section.why-doctor .why-doctor-desc .features-container .feature-box img{
    width: 35px;
    margin-bottom: 10px;
}

section.why-doctor .why-doctor-desc .features-container .feature-box h6{
  margin: 0;
  font-size: 16px;
}



section.why-doctor .why-doctor-desc p{
    text-align: center;
    font-size: 17px;
    color: grey;
    margin-bottom: 15px;
}

section.why-doctor .why-doctor-img{
  width: 45%;
  overflow: hidden;
  border-radius: 16px;
}

section.why-doctor .why-doctor-img img{
  width: 100%;
}

/* end why doctor */

/* start blogs */

section.blogs-hero{
  width: 100%;
  height: 85vh;
  position: relative;
  background-image: url("/assets/img/blog-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.blogs-hero.reels-hero{
  background-image: url("/assets/img/reels-bg.webp");
  background-position: top;
}


section.blogs-hero .blogs-hero-layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

section.blogs-hero .blogs-hero-desc{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 0;
  position: relative;
  color: #fff;
  margin-top: 115px;
}

section.blogs-hero .blogs-hero-desc h3{
    border: 2px solid #fff;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    color: #fff;
}

section.blogs-hero .blogs-hero-desc h1{
  font-size: 30px;
  margin-bottom: 40px;
    color: #001d14;
    color: #fff;
    width: 65%;
}

section.blogs-hero h1 span{
    color: #005339;
    padding: 5px 9px;
}

section.blogs-hero .blogs-hero-desc a{
    background-color: var(--prim-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    transition: all 0.35s ease;
}


/* end blogs */


/* start about hero */

section.about-doctor-hero{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  height: 30rem;
  padding-top: 2%;
  margin-top: 6%;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}

section.about-doctor-hero .about-hero-desc{
  width: 50%;
  margin-right: 5%;
  z-index: 1;
  position: relative;
}

section.about-doctor-hero .about-hero-desc h1{
  display: inline-block;
  font-size: 16px;
    font-weight: 600;
    border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    color: var(--sec-color);
}


section.about-doctor-hero .about-hero-desc h2{
  font-size: 50px;
  margin-bottom: 45px;
  color: #005339;
}

section.about-doctor-hero .about-hero-desc h2 span{
  color: black;
}

section.about-doctor-hero .about-hero-desc .contact-hero{
  /* background-color: yellow; */
  display: flex;
}



section.about-doctor-hero .about-hero-desc .contact-hero a.know-doctor,
section.about-doctor-hero .about-hero-desc .contact-hero a.contact-btn{
    background-color: var(--prim-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    margin-right: 10px;
    transition: all 0.35s ease;
}

section.about-doctor-hero .about-hero-desc .contact-hero a.know-doctor{
  background-color: #d6d6d6;
  color: #004509;
  font-weight: 800;

}


section.about-doctor-hero .about-hero-desc .contact-hero a.know-doctor i,
section.about-doctor-hero .about-hero-desc .contact-hero a.contact-btn i{
  margin-right: 8px;
}



section.about-doctor-hero .about-hero-img{
  /* width: 45%;
  height: 32rem;
  overflow: hidden;
  margin-left: -5%; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.about-doctor-hero .about-hero-img img{
  width: 100%;
  /* position: relative;
  bottom: -65px; */
}
/* end about hero */



/* start about doctor page */

section.about-doctor-section{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 85px;
}

section.about-doctor-section .about-doctor-img{
  width: 45%;
  margin-right: 4%;
}

section.about-doctor-section .about-doctor-img img{
  width: 100%;
}

section.about-doctor-section .about-doctor-desc{
  width: 45%;
}

section.about-doctor-section .about-doctor-desc h3{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 3px;
    color: var(--sec-color);

}


section.about-doctor-section .about-doctor-desc h2{
  font-size: 37px;
  margin-bottom: 25px;
  color: var(--sec-color);
}

section.about-doctor-section .about-doctor-desc .doctor-desc-points{}


section.about-doctor-section .about-doctor-desc .doctor-desc-points h4{
  position: relative;
  display: flex;
  align-items: end;
  gap: 6px;
  font-size: 18px;
  color: grey; 
  margin-bottom: 20px; 
}

section.about-doctor-section .about-doctor-desc .doctor-desc-points h4 img{
  width: 17px;
}


section.about-doctor-section .about-doctor-desc .doctor-desc-points h4::before{
    content: "";
    position: absolute;
    bottom: -5px;
    right: 25px;
    width: 70%;
    height: 1px;
    background: linear-gradient(45deg, #205e87, #466754);
}

section.about-doctor-section .about-doctor-desc .doctor-desc-points p{
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
    width: 90%;
    font-weight: 500;

}

section.about-doctor-section .about-doctor-desc .doctor-desc-points p img{
  width: 20px;
}



/* end about doctor page */

/* start about field */

.about-field-title{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}

.about-field-title h3{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 3px;
    color: var(--sec-color);

}

.about-field-title h2{
  font-size: 37px;
  color: var(--sec-color);

}


section.about-field{
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

section.about-field .about-field-box{
  width: 28%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0;
  position: relative;
  padding-top: 85px;
  height: 16rem;
}

section.about-field .about-field-box .about-field-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;

}


section.about-field .about-field-box .about-ear-bg{
  background-image: url("/assets/img/blog-bg.jpg");
}

section.about-field .about-field-box .about-nose-bg{
  background-image: url("/assets/img/reels-bg.webp");
}

section.about-field .about-field-box .about-throat-bg{
  background-image: url("/assets/img/doctor.webp");
}


section.about-field .about-field-box .about-bg-layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(2px);
}



section.about-field .about-field-box .about-field-img{
  width: 35%;
  margin: 0;
  position: absolute;
  top: -60px;
}


section.about-field .about-field-box .about-field-img img{
  width: 100%;
}

section.about-field .about-field-box h3{
  margin-bottom: 15px;
  position: relative;
  color: #c5ff3b;
  font-size: 20px;
}

section.about-field .about-field-box .about-field-points{
  position: relative;
  padding: 0 25px;
}

section.about-field .about-field-box .about-field-points p{
  margin-bottom: 13px;
  font-size: 16px;
  color: #fff;
  width: 95%;
  min-height: 40px;
}

section.about-field .about-field-box .about-field-points p i{
  margin-left: 5px;
  color: var(--sec-color);
  font-size: 10px;
    color: #fff;

}

/* end about field */

/* start certificate */

section.certificate-section{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}


section.certificate-section .certificate-desc {
  width: 50%;
  margin-right: 6%;
}


section.certificate-section .certificate-desc h3{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0000002e;
    padding: 5px 10px;
    border-radius: 25px;
    margin-bottom: 3px;
    color: var(--sec-color);
}

section.certificate-section .certificate-desc h2{
    font-size: 37px;
    margin-bottom: 25px;
    color: var(--sec-color);

}

section.certificate-section .certificate-desc .certificate-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-top: 20px;
  margin-bottom: 40px;
}

section.certificate-section .certificate-desc .certificate-points .certificate-item {
  background: #f7f7f7;
  /* padding: 12px 16px; */
  border-radius: 8px;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

section.certificate-section .certificate-desc .certificate-points .certificate-item img{
  width: 18px;
  position: relative;
  top: 5px;
}


section.certificate-section .certificate-desc .certificate-points .certificate-item:hover {
  transform: translateX(-5px);
}

section.certificate-section .certificate-desc a.contact-btn{
    background-color: var(--prim-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 12px;
    margin-right: 10px;
    transition: all 0.35s ease;
}

section.certificate-section .certificate-desc a.contact-btn:hover{
    padding: 10px 40px;
}




section.certificate-section .certificate-img{
  width: 40%;
  margin-left: 2%;
}


section.certificate-section .certificate-img img{
  width: 100%;
}



/* end certificate */


.breadcrumbs {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
  color: var(--sec-color);
  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: var(--sec-color);
}

.breadcrumbs i {
  color: var(--sec-color);
  font-size: 13px;
  font-weight: bold;
  margin: 0 7.5px;
}

.breadcrumbs a,
.breadcrumbs h1 {
  font-weight: bold;
  color: var(--sec-color);
  transition: color 0.5s;
}



.breadcrumbs a.active,
.breadcrumbs h1.active {
  color: #444;
}
.breadcrumbs h1.active {
  font-size: 1rem;
}
.s-m-float {
  cursor: pointer;
  z-index: 2;
  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 var(--sec-color);
  color: var(--sec-color);
  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: var(--sec-color);
  color: #ffffff;
}

.f-c-l-r {
  cursor: pointer;
  z-index: 1;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: rgba(233, 79, 132, 0.9);
  border-radius: 25px;
}
/* @media screen and (max-width: 768px) {
  .f-c-l-r {
    top: 80% !important;
  }
} */

.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: var(--sec-color);
  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: var(--sec-color);
}

.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: var(--sec-color);
  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: var(--sec-color);
  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: var(--sec-color);
  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;
}


.last-articles {
  padding-top: 0;
}
.our-services {
  padding-bottom: 0;
}
.our-services .h-v-s {
  padding-top: 0;
  padding-bottom: 0;
}

.about-analytics {
  padding: 0;
  padding-bottom: 60px;
}

.services h2,
.about-dr h2,
.our-services h2,
.h-v-s h2,
.medical-contracts h2,
.last-articles h2,
.our-location h2,
.blogs h2,
.reserve-form h2,
.message-form h2,
.videos h2 {
  margin: 0;
  position: relative;
  font-size: 35px;
  color: var(--sec-color);
}

.services h2::before,
.about-dr h2::before,
.our-services h2::before,
.h-v-s h2::before,
.medical-contracts h2::before,
.last-articles h2::before,
.our-location h2::before,
.blogs h2::before,
.reserve-form h2::before,
.message-form h2::before,
.videos h2::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: #e94f84;
}

.about .about-dr,
.contracts .medical-contracts,
.blog .blogs {
  padding: 60px 0;
}

.services .services-container,
.about-analytics .a-a-c {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.services .services-container:first-child {
  margin-top: 50px;
}

.about-analytics .a-a-c {
  margin: 0;
}

.services .services-container .service,
.about-analytics .a-a-c .item {
  margin-bottom: 30px;
  text-align: center;
  /* padding: 50px 30px; */
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  background-color: #ffffff;
  border-radius: 20px;
  transition: box-shadow 0.5s;
}

.about-analytics .a-a-c .item {
  background-color: transparent;
}

.services .services-container .service:last-child,
.about-analytics .a-a-c .item:last-child {
  margin: 0;
}

.services .services-container .service .service-icon,
.about-analytics .a-a-c .item .item-icon {
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
.about-analytics .a-a-c .item .item-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--sec-color);
}

.about-analytics .a-a-c .item .item-icon.microscope {
  background-image: url("/assets/icons/microscope.png");
}

.about-analytics .a-a-c .item .item-icon.improve-spine {
  background-image: url("/assets/icons/improve-spine.png");
}

.about-analytics .a-a-c .item .item-icon.success-rate {
  background-image: url("/assets/icons/success-rate.png");
}

.about-analytics .a-a-c .item .item-icon.borken-spine {
  background-image: url("/assets/icons/borken-spine.png?v=2");
}

.services .services-container .service .service-icon {
  width: 5.5rem;
}

.services .services-container .service .service-icon img {
  transition: 0.5s;
  width: 0;
}

.services .services-container .service .small-service-container {
  width: 100%;
  display: flex;
  transition: 0.5s;
  min-height: 100px;
  /* min-height: 20px; */
}

.services
  .services-container
  .service
  .small-service-container
  .small-service-icon {
  width: 5rem;
}
.services
  .services-container
  .service
  .small-service-container
  .small-service-icon
  img {
  transition: 0.5s;
  width: 100%;
}

/* .services .services-container .service:hover .small-service-container .small-service-icon img{
  width: 0;
} */

.services .services-container .service h4,
.about-analytics .a-a-c .item h4 {
  margin: 0;
  margin-top: 25px;
  color: var(--sec-color);
  font-size: 15px;
}
.services .services-container .service h4 {
  margin-top: 0px;
  transition: 0.5s;
  font-size: 16px;
}

.services .services-container .service .reserve-btn {
  opacity: 0;
  transition: opacity 0.5s;
}
.splide__track--fade > .splide__list > .splide__slide {
  display: flex;
  justify-content: center;
}

.services .services-container .service .reserve-btn button {
  padding: 5px 40px;
  transition: all 0.3s;
}
.services .services-container .service .reserve-btn:hover button {
  background-color: #cb356a;
}
.about-analytics .a-a-c .item h4 {
  margin-top: 2.5px;
  color: #b72c5d;
}

.about-analytics .a-a-c .item h2 {
  color: var(--sec-color);
  margin: 0;
  margin-top: 20px;
  font-size: 35px;
  line-height: 1;
}

.services .services-container .service:hover,
.about-analytics .a-a-c .item:hover {
  cursor: pointer;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.certificates {
  width: 85%;
}
.certificates .a-d-c-t-n-a {
  display: flex;
  flex-wrap: wrap;
}
.certificates .a-d-c-t-n-a .certificates-box {
  margin-bottom: 15px;
}
.certificates .a-d-c-t-n-a .certificates-box.achiv {
  margin-inline-start: 15%;
}
.certificates .a-d-c-t-n-a .accordion {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  cursor: pointer;
  padding: 12.5px 25px;
  width: min-content;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.6s;
  border-radius: 25px;
  background-color: #f2e9ff;
  color: var(--sec-color);
  padding-inline-end: 10rem;
}
/* .certificates .a-d-c-t-n-a .accordion-info{
  font-weight: 600;
} */
.certificates .certificates-reserve-btn {
  text-align: center;
  margin: 25px 0;
  
}
.certificates .certificates-reserve-btn button {
  padding: 7.5px 65px;
}

.our-services .o-s-c {
  margin-top: 50px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  display: none;
}

.main.service .our-services .o-s-c {
  flex-direction: column;
  width: 90%;
}

.our-services .o-s-c .o-s-c-i,
.our-services .o-s-c .o-s-c-t {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.our-services .o-s-c .o-s-c-i {
  flex-direction: column;
}

.our-services .o-s-c .o-s-c-i {
  /* position: relative; */
}

.text {
  color: white;
  font-size: 24px;
}
.our-services .our-services-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  /* margin-bottom: 5rem; */
}
.our-services .our-services-container .left-services {
  width: 50%;
  display: flex;
  /* justify-content: center; */
  padding-inline-start: 5%;
  flex-direction: column;
}
.our-services .our-services-container .left-services h3 {
  margin-top: 5rem;
  margin-bottom: 0;
  font-size: 43px;
  color: #ea5f90;
  margin-inline-start: 23%;
}
.our-services .our-services-container .left-services h4 {
  margin: 0;
  font-size: 21px;
  color: var(--sec-color);
  margin-inline-start: 25%;
}

.our-services .our-services-container .left-services .service-image {
  width: 70%;
  position: relative;
}
.our-services .our-services-container .left-services .service-image img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 2px;
}
.our-services .our-services-container .left-services .service-image .overlay {
  position: absolute;
  border-radius: 50px;
  bottom: 2.5%;
  width: 100%;
  height: 20%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 80px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.our-services
  .our-services-container
  .left-services
  .service-image
  .overlay
  button {
  padding: 3.5px 30px;
  transition: all 0.3s;
}
.our-services
  .our-services-container
  .left-services
  .service-image
  .overlay
  button:hover {
  padding: 3.5px 40px;
}

.our-services
  .our-services-container
  .left-services
  .service-image
  .overlay-box {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  height: 77.5%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.3);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.our-services
  .our-services-container
  .left-services
  .service-image
  .overlay-box
  span {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.our-services
  .our-services-container
  .left-services
  .service-image:hover
  .overlay-box {
  top: 0;
  opacity: 1;
  height: 77.5%;
  border-top-left-radius: 12px;
}
.our-services
  .our-services-container
  .left-services
  .service-image:hover
  .overlay-box
  span {
  display: flex;
}
.our-services
  .our-services-container
  .left-services
  .service-image
  .overlay-box
  span
  .overlay-logo {
  width: 25%;
}
.our-services
  .our-services-container
  .left-services
  .service-image
  .overlay-box
  span
  .overlay-logo
  img {
  width: 100%;
  border-bottom-right-radius: 0;
}
.our-services
  .our-services-container
  .left-services
  .service-image
  .overlay-box
  span
  h5 {
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 5px;
  font-size: 25px;
  margin-top: 62px;
}

.our-services .our-services-container .right-services {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-inline-end: 5%;
}

.our-services .our-services-container .right-services h3 {
  margin-inline-start: 23%;
  margin-bottom: 0;
  font-size: 43px;
  color: #ea5f90;
}
.our-services .our-services-container .right-services .right-services-title {
  width: 70%;
  margin-bottom: 10rem;
}
.our-services .our-services-container .right-services .right-services-title h4 {
  margin: 0;
  margin-inline-start: 24%;
  font-size: 21px;
  color: var(--sec-color);
}
.our-services .our-services-container .right-services .service-image {
  width: 70%;
  position: relative;
}
.our-services .our-services-container .right-services .service-image .overlay {
  position: absolute;
  border-radius: 50px;
  bottom: 2.5%;
  width: 100%;
  height: 20%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 4px;
}
.our-services
  .our-services-container
  .right-services
  .service-image
  .overlay-box {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  height: 77.5%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.our-services
  .our-services-container
  .right-services
  .service-image
  .overlay-box
  span {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.our-services
  .our-services-container
  .right-services
  .service-image:hover
  .overlay-box {
  top: 0;
  opacity: 1;
  height: 77.5%;
  border-top-left-radius: 12px;
}
.our-services
  .our-services-container
  .right-services
  .service-image:hover
  .overlay-box
  span {
  display: flex;
}
.our-services
  .our-services-container
  .right-services
  .service-image
  .overlay-box
  span
  .overlay-logo {
  width: 25%;
}
.our-services
  .our-services-container
  .right-services
  .service-image
  .overlay-box
  span
  .overlay-logo
  img {
  width: 100%;
  border-bottom-right-radius: 0;
}
.our-services
  .our-services-container
  .right-services
  .service-image
  .overlay-box
  span
  h5 {
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 5px;
  font-size: 25px;
  margin-top: 62px;
}

.our-services
  .our-services-container
  .right-services
  .service-image
  .overlay
  button {
  padding: 3.5px 30px;
  transition: all 0.3s;
}
.our-services
  .our-services-container
  .right-services
  .service-image
  .overlay
  button:hover {
  padding: 3.5px 40px;
}

.our-services .our-services-container .right-services .service-image img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 2px;
}
.our-services .o-s-c .o-s-c-i img {
  width: 70%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 20px;
}

.main.service .our-services .o-s-c .o-s-c-i {
  width: 100%;
  order: 0;
}

.main.service .our-services .o-s-c .o-s-c-i img {
  width: 100%;
}

.main.service .our-services .o-s-c .o-s-c-t {
  text-align: center;
  align-items: center;
  margin-top: 30px;
  width: 95%;
  order: 1;
}

.our-services .o-s-c .o-s-c-t {
  margin-top: 50px;
  padding: 0 5%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.our-services .o-s-c .o-s-c-t h3 {
  line-height: 1.25;
  margin: 0;
  font-size: 30px;
  color: var(--sec-color);
  margin-bottom: 40px;
}

.main.service .our-services .o-s-c .o-s-c-t h3 {
  font-size: 25px;
}

.our-services .o-s-c .o-s-c-t h4,
.our-services .o-s-c .o-s-c-t ul {
  line-height: 1.25;
  margin: 0;
  font-size: 16px;
  color: #4a484e;
}

.main.service .our-services .o-s-c .o-s-c-t ul {
  text-align: right;
}

html[lang="en"] .main.service .our-services .o-s-c .o-s-c-t ul {
  text-align: left;
}

.our-services .o-s-c .o-s-c-t h4 {
  margin: 40px 0 15px;
  font-size: 18px;
}

.our-services .o-s-c .o-s-c-t ul {
  margin-bottom: 40px;
  line-height: 1.75;
}

.our-services .o-s-c .o-s-c-t p {
  margin: 40px 0;
  font-size: 16px;
  color: #4a484e;
}

.main.service .our-services .o-s-c .o-s-c-t p {
  margin: 0;
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
}

.our-services .o-s-c .o-s-c-t button {
  padding: 7.5px 25px;
  font-size: 15px;
  background-color: var(--sec-color);
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
}

.our-services .o-s-c .o-s-c-t button.reserve-btn {
  margin-top: 50px;
}

.our-services .o-s-c .o-s-c-t button:hover {
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.our-services .o-s-c .o-s-c-t button i {
  margin-right: 5px;
}

.h-v-s .swiper {
  z-index: 0;
  width: 100%;
  position: static;
}

.h-v-s .swiper-wrapper {
  z-index: 0;
  align-items: center;
}
.videos .h-v-s .swiper-wrapper {
  align-items: baseline;
  align-items: center;
}

.h-v-s .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h-v-s .swiper-slide .h-v-i {
  margin-top: 30px;
  cursor: pointer;
  position: relative;
  width: 95%;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
}

.h-v-s .swiper-slide .h-v-i img {
  display: flex;
  width: 100%;
  height: auto;
}

.h-v-s .swiper-slide .h-v-i .video-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background 0.5s;
}

.h-v-s .swiper-slide .h-v-i .video-play .play {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  font-size: 16px;
  border-radius: 50%;
  background-color: #e94f84;
  transition: transform 0.5s;
}

.h-v-s .swiper-slide .h-v-i:hover .video-play {
  background-color: rgba(0, 0, 0, 0.5);
}

.h-v-s .swiper-slide .h-v-i:hover .play {
  transform: translate(-50%, -50%) scale(1.15);
  -ms-transform: translate(-50%, -50%) scale(1.15);
}

.h-v-s .swiper-slide .h-v-t {
  direction: rtl;
  box-sizing: border-box;
  width: 95%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.h-v-s .swiper-slide .h-v-t h3 {
  margin: 0;
  font-size: 21px;
  color: #b72c5d;
}

.h-v-s .swiper-slide .h-v-t p {
  margin: 0;
  margin-top: 20px;
  font-size: 16px;
  color: #4a484e;
}

.h-v-s .h-v .swiper-slide .h-v-t p {
  margin: 20px 0;
}

.h-v-s .swiper-slide .h-v-t button {
  padding: 7.5px 40px;
  font-size: 15px;
  background-color: var(--sec-color);
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
}

.h-v-s .swiper-slide .h-v-t button:hover {
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.h-v-s .swiper .swiper-button-next,
.h-v-s .swiper .swiper-button-prev {
  z-index: 1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--sec-color);
  background-color: #ffffff;
  box-shadow: 0 0 5px 3px rgb(0 0 0 / 16%);
  font-weight: bold;
  transition: background 0.5s, color 0.5s;
}

.h-v-s .swiper .swiper-button-next:hover,
.h-v-s .swiper .swiper-button-prev:hover {
  color: #ffffff;
  background-color: var(--sec-color);
}

.h-v-s .swiper .swiper-button-next {
  right: -57.5px;
}

.h-v-s .swiper .swiper-button-prev {
  left: -57.5px;
}

.h-v-s .swiper .swiper-button-next::after,
.h-v-s .swiper .swiper-button-prev::after {
  font-size: 18px;
}

.h-v-s .h-v-c {
  position: relative;
  margin: 40px 0;
  width: calc(95% - 115px);
}
.videos .h-v-s {
  padding-bottom: 0;
}
.videos .h-v-s .h-v-c {
  margin-top: 0;
}
.videos .h-v-s .h-v-c .swiper-slide .mobile-button {
  display: none;
}

.customer-reviews {
  margin-top: 20px;
  position: relative;
  width: calc(95% - 115px);
}

.customer-reviews .loader {
  z-index: 999999;
  position: absolute;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  background-color: #f4edfd;
}

.elfsight-app-d2ec0e0c-2c93-4265-944c-4039094ee7e0 {
  width: 100%;
}

.medical-contracts .swiper {
  margin-top: 50px;
  width: 85%;
}

.medical-contracts .swiper .swiper-slide {
  display: flex;
  align-items: center;
}

.medical-contracts .swiper .swiper-slide img {
  display: flex;
  width: 100%;
  height: auto;
}

.medical-contracts button {
  margin-top: 25px;
  padding: 7.5px 40px;
  font-size: 15px;
  background-color: var(--sec-color);
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
}

.medical-contracts button:hover {
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.medical-contracts .m-c-c {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}

.medical-contracts .m-c-c .m-c {
  margin-top: 30px;
  box-sizing: border-box;
  padding: 50px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 60px);
  border-radius: 50px;
  transition: box-shadow 0.5s;
  background-color: #fbf9ff;
  transition: background 0.5s;
}

.medical-contracts .m-c-c .m-c:hover {
  background-color: #ebe3ff;
}

.medical-contracts .m-c-c .m-c .m-c-l {
  display: flex;
  width: 100px;
  height: auto;
}

.medical-contracts .m-c-c .m-c h3 {
  text-align: center;
  margin: 0;
  margin-top: 25px;
  font-size: 25px;
  color: var(--sec-color);
}

.medical-contracts .m-c-c .m-c span {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #444;
  text-align: center;
}

.last-articles .l-a-s-c {
  position: relative;
  margin-top: 50px;
  width: 75%;
}

.last-articles .swiper {
  z-index: 0;
  position: static;
  width: 100%;
}

.last-articles .swiper-wrapper {
  z-index: 0;
}

.last-articles .swiper .swiper-slide {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  overflow: hidden;
  transition: opacity 0.5s;
}

.last-articles .swiper .swiper-slide:hover {
  opacity: 0.8;
}

.last-articles .swiper .swiper-slide img {
  display: flex;
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.last-articles .swiper .swiper-slide:hover img {
  transform: scale(1.1);
}

.last-articles .swiper .swiper-slide .article-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px 25px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.last-articles .swiper .swiper-slide .article-info span {
  color: #ffffff;
  font-weight: bold;
}

.last-articles .swiper .swiper-slide .article-info p {
  color: #ffffff;
  margin: 0;
}

.last-articles .swiper .swiper-button-next,
.last-articles .swiper .swiper-button-prev {
  display: none;
  z-index: 1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--sec-color);
  background-color: #ffffff;
  box-shadow: 0 0 5px 3px rgb(0 0 0 / 16%);
  font-weight: bold;
  transition: background 0.5s, color 0.5s;
}

.last-articles .swiper .swiper-button-next:hover,
.last-articles .swiper .swiper-button-prev:hover {
  color: #ffffff;
  background-color: var(--sec-color);
}

.last-articles .swiper .swiper-button-next {
  left: -57.5px;
}

.last-articles .swiper .swiper-button-prev {
  right: -57.5px;
}

.last-articles .swiper .swiper-button-next::after,
.last-articles .swiper .swiper-button-prev::after {
  font-size: 18px;
}

.our-location {
  padding-bottom: 0;
}

.our-location iframe {
  margin-top: 30px;
  width: 100%;
  height: 400px;
}

.blogs h2::before {
  right: 0;
  transform: none;
}

.blogs .b-t {
  max-width: calc(100% - 30px);
  width: 800px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.blog-details{
  text-align: start;
}
.blog-details h1,
.blog-details h2,
.blog-details h3,
.blog-details h4,
.blog-details h5,
.blog-details h6{
  width: 100%;
  text-align: start;
}
.blogs .b-t .blog-search,
.blog-details .b-s-e .blog-search {
  width: 55%;
  display: flex;
  flex-direction: row;
  border-radius: 25px;
  overflow: hidden;
}

.blogs .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 .b-t .blog-search input:focus,
.blog-details .b-s-e .blog-search input:focus {
  background-color: #efecf4;
}

.blogs .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: var(--sec-color);
  transition: background 0.5s;
}

.blogs .b-t .blog-search button:hover,
.blog-details .b-s-e .blog-search button:hover {
  background-color: var(--prim-color);
}

.blogs .b-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  max-width: calc(100% - 30px);
}

.blogs .b-c .popular-blogs,
.blog-details .b-s-e .popular-blogs {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
}

.blogs .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: var(--sec-color);
  font-size: 22px;
}

.blogs .b-c .popular-blogs h3::before,
.blog-details .b-s-e .popular-blogs h3::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 40%;
  height: 3px;
  background-color: #e94f84;
}

.blogs .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 .b-c .popular-blogs .popular-blog:hover,
.blog-details .b-s-e .popular-blogs .popular-blog:hover {
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.blogs .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 .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 .b-c .popular-blogs .popular-blog .p-b h4,
.blog-details .b-s-e .popular-blogs .popular-blog .p-b h4 {
  margin: 0;
  color: var(--sec-color);
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogs .blogs-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  width: 800px;
  max-width: 100%;
}

.blogs .blogs-container .blog-item {
  margin-top: 30px;
  width: 100%;
  background-color: #fff;
    border-radius: 25px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.blogs .blogs-container .blog-item:hover{
  transform: scale(1.05);
}

.blogs .blogs-container .blog-item a {
  align-self: flex-start;
  display: flex;
  width: 100%;
}

.blogs .blogs-container .blog-item a img {
  align-self: flex-start;
  display: flex;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 25px;
}

.blogs .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%;
  background-color: #ffffff;
  color: var(--sec-color);
  transition: box-shadow 0.5s;
}

.blogs .blogs-container .blog-item .blog-info:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blogs .blogs-container .blog-item .blog-info h3 {
  margin: 0;
  line-height: 1.25;
  font-size: 20px;
  font-weight: bold;
}

.blogs .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 .blogs-container .blog-item .blog-info .b-i,
.blogs .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 .blogs-container .blog-item .blog-info .b-i span,
.blogs .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 .blogs-container .blog-item .blog-info .b-i span.author,
.blogs .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: var(--prim-color);
}

.reserve-form,
.message-form,
.videos {
  padding: 60px 0;
}
.videos {
  padding: 0;
}

.reserve-form .r-f-c {
  margin-top: 50px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.reserve-form .r-f-c .r-f-c-i-c {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reserve-form .r-f-c .r-f-c-i-c.img {
  margin-top: 30px;
  width: 80%;
  align-items: center;
  justify-content: center;
}

.reserve-form .r-f-c .r-f-c-i-c.img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.reserve-form .r-f-c .r-f-i,
.reserve-form .r-f-c .r-f-b {
  width: 49%;
  display: flex;
  flex-direction: column;
}

.reserve-form .r-f-c .r-f-b {
  width: 100%;
  align-items: center;
}

.reserve-form .r-f-c .r-f-b button {
  background-color: var(--sec-color);
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
}

.reserve-form .r-f-c .r-f-b button:hover {
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.reserve-form .r-f-c .r-f-i {
  width: 100%;
}

.reserve-form .r-f-c .r-f-i .select-container {
  position: relative;
  width: 100%;
}

.reserve-form .r-f-c .r-f-i label {
  color: var(--sec-color);
  font-weight: bold;
  font-size: 14px;
}

.reserve-form .r-f-c .r-f-i 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;
}

.reserve-form .r-f-c .r-f-i input:focus {
  background-color: #e9e7f0;
}

.reserve-form .r-f-c .r-f-i button {
  background-color: var(--sec-color);
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
}

.reserve-form .r-f-c .r-f-i button:hover {
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.message-form {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.message-form .m-f-c {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.message-form .m-f-c h2::before {
  right: 0;
  left: unset;
  transform: unset;
}

.message-form .m-f-c .m-f {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.message-form .m-f-c .m-f-i {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.message-form .m-f-c .m-f-i .select-container {
  position: relative;
  width: 100%;
}

.message-form .m-f-c .m-f-i label {
  color: var(--sec-color);
  font-weight: bold;
  font-size: 14px;
}

.message-form .m-f-c .m-f-i input,
.message-form .m-f-c .m-f-i textarea {
  resize: vertical;
  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;
}

.message-form .m-f-c .m-f-i input:focus,
.message-form .m-f-c .m-f-i textarea:focus {
  background-color: #e9e7f0;
}

.message-form .m-f-c .m-f-b button {
  background-color: var(--sec-color);
  box-shadow: rgb(65 41 107 / 50%) 0px 7px 29px 0px;
}

.message-form .m-f-c .m-f-b button:hover {
  box-shadow: rgb(65 41 107 / 80%) 0px 7px 29px 0px;
}

.message-form .m-f-b {
  display: flex;
  justify-content: center;
  width: 100%;
}

.message-form .m-f-c.c-i {
  margin-top: 30px;
  padding: 20px 15px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: rgb(100 100 111 / 10%) 0px 7px 29px 0px;
  border-radius: 25px;
  overflow: hidden;
}

.message-form .m-f-c.c-i h3 {
  line-height: 1;
  margin: 0;
  color: var(--sec-color);
  font-size: 27.5px;
}

.message-form .m-f-c.c-i p {
  margin: 0;
  margin-top: 20px;
  line-height: 1.6;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #110724;
}

.message-form .m-f-c.c-i .c-e-i {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.message-form .m-f-c.c-i .c-e-i a {
  color: var(--sec-color);
  font-weight: bold;
  transition: color 0.5s;
}

.message-form .m-f-c.c-i .c-e-i a:hover {
  color: #e94f84;
}

.message-form .m-f-c.c-i .c-i-s-m {
  display: flex;
  flex-direction: row;
}

.message-form .m-f-c.c-i .c-i-s-m a {
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 18px;
  color: var(--sec-color);
  border-radius: 50%;
  transition: background 0.5s, color 0.5s;
}

.message-form .m-f-c.c-i .c-i-s-m a:hover {
  color: #ffffff;
  background-color: var(--sec-color);
}


section.videos{
  margin-bottom: 50px;
  width: 100%;

}

.videos .videos-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
  row-gap: 25px;
}

.videos .videos-container .video{
  width: 20%;
  height: 23rem;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: end;
  cursor: pointer;
  
}


.videos .videos-container .video .video-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,              
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
  transition: all 0.35s ease;
  opacity: 1;
}

.videos .videos-container .video:hover .video-layer {
    opacity: 0.6;
}



.videos .videos-container .video .video-thumbnail{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.35s ease;
}

.videos .videos-container .video:hover .video-thumbnail{
  transform: scale(1.05);
}


.videos .videos-container .video .video-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.videos .videos-container .video .video-desc{
  /* background: blue; */
  z-index: 3;
  position: relative;
  width: 100%;
  padding: 15px 0;
}

.videos .videos-container .video .video-desc h6{
    margin: 0;
    /* background: orange; */
    width: fit-content;
    font-size: 17px;
    margin-right: 15px;
    color: #fff;
}

.videos .videos-container .video .video-desc .reel-btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.videos .videos-container .video .video-desc .reel-btm p{
  color: #fff;
}

.videos .videos-container .video .video-desc .reel-btm img{
  width: 40px;
  height: fit-content;
}


.videos .videos-container .video .play-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.videos .videos-container .video:hover .play-icon{
  width: 55px;
  height: 55px;
}


.videos .videos-container .video .play-icon img{
  width: 100%;
}

.video-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.overlay-content {
  position: relative;
  width: 20%;
  height: auto;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#overlayVideo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  outline: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .videos .videos-container .video {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .videos .videos-container .video {
    width: 45%;
  }

  .overlay-content {
    width: 65%;
  }
}

@media (max-width: 480px) {
  .videos .videos-container .video {
    width: 90%;
  }

  .videos .videos-container .video .video-desc h6 {
    font-size: 14px;
  }
}



/* .videos .videos-container .video {
  cursor: pointer;
  margin: 0;
  margin-top: 50px;
  width: 100%;
}

.videos .videos-container .video .v-i {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.videos .videos-container .video .v-i img {
  display: flex;
  width: 100%;
  height: auto;
}

.videos .videos-container .video .v-i .v-i-c {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background 0.5s;
}

.videos .videos-container .video .v-i .v-i-c .play {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e94f84;
  transition: transform 0.5s;
}

.videos .videos-container .video .v-i .v-i-c:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
}

.videos .videos-container .video .v-i .v-i-c:hover .play {
  transform: translate(-50%, -50%) scale(1.15);
  -ms-transform: translate(-50%, -50%) scale(1.15);
}

.videos .videos-container .video .v-t {
  margin-top: 20px;
  box-sizing: border-box;
  padding: 15px;
  width: 100%;
  background-color: transparent;
  box-shadow: rgb(100 100 111 / 10%) 0px 7px 29px 0px;
  border-radius: 25px;
  transition: box-shadow 0.5s;
}

.videos .videos-container .video .v-t:hover {
  cursor: pointer;
  box-shadow: rgb(100 100 111 / 25%) 0px 7px 29px 0px;
}

.videos .videos-container .video .v-t h3 {
  margin: 0;
  line-height: 1.4;
  color: #372061;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.videos .videos-container .video .v-t .v-e-i {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.videos .videos-container .video .v-t .v-e-i i {
  margin-right: 20px;
  font-size: 25px;
  color: #0e8df1;
}

.videos .videos-container .video .v-t .v-e-i .v-e-i-i {
  display: flex;
  flex-shrink: 1;
  flex-direction: row;
  align-items: center;
}

.videos .videos-container .video .v-t .v-e-i .v-e-i-i span {
  color: #444;
  font-weight: bold;
  font-size: 14px;
  margin-right: 7.5px;
  flex-shrink: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.videos .videos-container .video .v-t .v-e-i .v-e-i-i img {
  width: 35px;
  height: auto;
  border-radius: 50%;
} */

.gallery {
  padding: 30px 0;
}

.gallery .gallery-options {
  max-width: calc(100% - 40px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.gallery .gallery-options button {
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  margin-bottom: 15px;
  padding: 10px 15px;
  box-shadow: unset;
  background-color: transparent;
  color: var(--sec-color);
  font-weight: bold;
  border: 1px solid #e6e0f0;
  transition: background 0.5s;
}

.gallery .gallery-options button:hover {
  background-color: #e6e0f0;
}

.gallery .gallery-options button.active {
  background-color: #ded6ed;
}

.gallery .gallery-options button:last-child {
  margin: 0;
}

.gallery .gallery-options i {
  margin-left: 7.5px;
  width: 22.5px;
  height: 22.5px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery .gallery-options i.clinic {
  background-image: url("/assets/icons/clinic.png");
}

.gallery .gallery-options i.surgery {
  background-image: url("/assets/icons/surgery.png");
}

.gallery .gallery-options i.conferences {
  background-image: url("/assets/icons/conferences.png");
}

.gallery .gallery-container {
  display: none;
  margin-top: 30px;
  width: calc(100% - 40px);
  grid-template-columns: auto;
  grid-gap: 20px;
}

.gallery .gallery-container.show {
  display: grid;
}

.gallery .gallery-container .photo {
  cursor: pointer;
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 5px;
}

.gallery .gallery-container .photo img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery .gallery-container .photo:hover img {
  transform: scale(1.1);
}

.gallery .gallery-container .photo .type {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  background-color: rgba(233, 79, 132, 0.7);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  border-radius: 7.5px;
}

.gallery .gallery-container .photo .type span {
  color: #f8f3ff;
}

.gallery .gallery-container .photo .caption {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.gallery .gallery-container .photo .caption .caption-container {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 20px;
  width: calc(100% - 40px);
  border-right: 4px solid #e94f84;
}

.gallery .gallery-container .photo .caption .caption-container h4 {
  line-height: 1.35;
  margin: 0;
  color: #f8f3ff;
  font-size: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery .gallery-container .photo .caption .caption-container .caption-author {
  margin-top: 12.5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.gallery
  .gallery-container
  .photo
  .caption
  .caption-container
  .caption-author
  img {
  margin-left: 7.5px;
  display: flex;
  width: 22.5px;
  height: 22.5px;
  border-radius: 50%;
}

.gallery
  .gallery-container
  .photo
  .caption
  .caption-container
  .caption-author
  span {
  font-size: 12px;
  color: #c9c9c9;
}

.gallery-slideshow {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000001;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.gallery-slideshow .g-s-i {
  position: relative;
  display: flex;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-slideshow .g-s-i img {
  display: flex;
  width: auto;
  height: auto;
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
}

.gallery-slideshow .g-s-i .type {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: rgba(233, 79, 132, 0.7);
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  border-radius: 7.5px;
  transition: opacity 0.3s;
}

.gallery-slideshow .g-s-i .caption {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: opacity 0.3s;
}

.gallery-slideshow .g-s-i .caption .caption-container {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 20px;
  width: calc(100% - 40px);
  border-right: 4px solid #e94f84;
}

.gallery-slideshow .g-s-i .caption .caption-container h4 {
  line-height: 1;
  margin: 0;
  color: #f8f3ff;
  font-size: 18px;
}

.gallery-slideshow .g-s-i .caption .caption-container .caption-author {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.gallery-slideshow .g-s-i .caption .caption-container .caption-author img {
  margin-left: 7.5px;
  display: flex;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.gallery-slideshow .g-s-i .caption .caption-container .caption-author span {
  font-size: 14px;
  color: #c9c9c9;
}

.gallery-slideshow .g-s-i:hover .type,
.gallery-slideshow .g-s-i:hover .caption {
  opacity: 0;
}

.gallery-slideshow .prev-btn,
.gallery-slideshow .next-btn {
  position: absolute;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 0;
  width: 50px;
  height: 50px;
  background-color: #e94f84;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: none;
  transition: opacity 0.5s;
}

.gallery-slideshow .prev-btn {
  right: 20px;
}

.gallery-slideshow .next-btn {
  left: 20px;
}

.gallery-slideshow .prev-btn:hover,
.gallery-slideshow .next-btn:hover {
  opacity: 0.7;
}

.gallery-slideshow .prev-btn::before,
.gallery-slideshow .next-btn::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.gallery-slideshow .prev-btn::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f101";
}

.gallery-slideshow .next-btn::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f100";
}

.blog-details {
  padding: 40px 0;
  width: 1200px;
  max-width: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.b-d-c a{
  color: #1db3b3 !important;
}
.blog-details .b-d-c,
.blog-details .b-s-e {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-details .b-d-c {
  width: 100%;
}

.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: var(--sec-color);
}

.blog-details .b-d-c .b-d-i div a {
  color: #e94f84;
  transition: color 0.5s;
}

.blog-details .b-d-c .b-d-i div a:hover {
  cursor: pointer;
  color: #a8003b;
}

.blog-details .b-d-c .b-d-i div:last-child {
  margin: 0;
}

.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: var(--sec-color);
  color: #ffffff;
  font-size: 16px;
  border-radius: 50%;
}

.blog-details .b-d-c p {
  margin: 0;
  margin-top: 35px;
  color: var(--sec-color);
}
.blog-details .b-d-c h1,
.blog-details .b-d-c h2{
  margin-top: 1rem !important;
}

.blog-details .b-d-c h1,
.blog-details .b-d-c h2,
.blog-details .b-d-c h3,
.blog-details .b-d-c ul {
  margin: 0;
  color: var(--prim-color);
}

.blog-details .b-d-c h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

html[lang="en"] .blog-details .b-d-c h1,
html[lang="en"] .blog-details .b-d-c h2,
html[lang="en"] .blog-details .b-d-c ul,
html[lang="en"] .blog-details .b-d-c p {
  direction: ltr;
  align-self: flex-end;
}

.blog-details .b-s-e {
  margin-top: 40px;
  width: 100%;
}

.blog-details .b-s-e .blog-search {
  width: 100%;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  overflow: hidden;
}

footer .footer-img{
    position: absolute;
    bottom: -23%;
    left: -2%;
    width: 31%;
    border-radius: 16px;
    overflow: hidden;
}


footer .footer-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about footer,
.service footer,
.contracts footer,
.blog footer,
.feedback footer,
.contact footer,
.media footer {
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

footer .f-m {
  box-sizing: border-box;
  padding: 20px 30px;
  padding-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 15%;
}

footer .f-c {
  position: relative;
  padding: 20px 0;
  font-size: 14px;
  font-weight: bold;
  color: black;
}

footer .f-c::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 3px;
  background-color: var(--sec-color);
}

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.right-footer-column{
  /* background-color: red; */
  width: 40% !important;
}

footer .f-i.center-footer-column{
  /* background-color: blue; */
}

footer .f-i.left-footer-column{
  /* background-color: green; */
}


footer .f-i.l {
  padding: 0;
  width: 100%;
}

footer .f-i.n {
  width: 100%;
}

footer .f-i .f-i-l {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}

footer .f-i.right-footer-column .f-i-l{
  justify-content: flex-start;
  gap: 10px;
} 


footer .f-i .f-i-l img {
  width: 100%;
  height: auto;
}

footer .f-i.right-footer-column img{
  width: 50%;
}

footer .f-i.right-footer-column p{
  width: 50%;
  font-size: 19px;
}




footer .f-i .f-l-c {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .f-i .f-l-c a{
  font-size: 19px;
}


footer .f-i.l .f-i-s-m {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
}

footer .f-i.l .f-i-s-m .social-web{
  margin-top: 10px;
}

footer .f-i.l .f-i-s-m .social-web a{
  background-color: transparent;
  border: 1px solid var(--sec-color);
  width: 35px;
  height: 35px;
}

footer .f-i.l .f-i-s-m .social-web a i{
  color: var(--sec-color);
  font-size: 16px;
}

footer .f-i.l .f-i-s-m .social-web a:hover{
  background-color: var(--sec-color);
  border: 1px solid transparent;
}

footer .f-i.l .f-i-s-m .social-web a:hover i{
  color: #fff;
}




footer .f-i .f-l {
  margin-top: 10px;
}

footer .f-i .f-l:first-child {
  margin: 0;
}

footer .f-i h2 {
  position: relative;
  margin: 0;
  margin-bottom: 45px;
  line-height: 1;
  color: var(--prim-color);
  align-self: flex-start;
}

footer .f-i span {
  font-size: 15px;
  color: #4a484e;
}

footer .f-i h2::before {
  content: "";
  position: absolute;
  margin-top: 10px;
  top: 100%;
  right: 0;
  width: 40%;
  height: 3px;
  background-color: #4caf50;
}

footer .f-i .f-i-c {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
}

footer .f-i .f-i-c input {
  flex-shrink: 1;
  min-width: 0;
  border: none;
  border-radius: 0 25px 25px 0;
  font-size: 16px;
  padding: 7.5px;
  padding-right: 25px;
  color: var(--sec-color);
  background-color: #ffffff;
  transition: background 0.5s;
}

footer .f-i .f-i-c input:focus {
  background-color: #efecf4;
}

footer .f-i .f-i-c button {
  font-size: 16px;
  padding: 7.5px 40px;
  border-radius: 25px 0 0 25px;
}

footer .f-r {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
}

footer a {
  color: var(--sec-color);
  transition: color 0.5s;
}



footer .f-r a {
  color: var(--sec-color);
}

footer .f-r a:hover {
  color: #b72c5d;
}
.our-services .h-v-s.service-mobile {
  display: none;
}
.our-services .h-v-s.service-mobile .h-v-c {
  margin-bottom: 20px;
  margin-top: 5px;
}

.our-services .h-v-s.service-mobile .our-services-container {
  flex-direction: column;
  align-items: center;
}
.our-services .h-v-s.service-mobile .our-services-container h3 {
  margin-top: 0;
  font-size: 20px;
  color: var(--sec-color);
  margin-bottom: 30px;
  text-align: center;
  line-height: 25px;
}
.our-services .h-v-s.service-mobile .service-mobile-image {
  width: 80%;
  position: relative;
}
.our-services .h-v-s.service-mobile .service-mobile-image img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 2px;
}
.h-v-s.review-box .swiper-slide .review-text.review-mobile {
  display: none;
}
.video-popup iframe.face-frame{
  /* height: fit-content !important;
  aspect-ratio: 1 !important; */
  min-height: 500px;
  min-width: 300px;
  max-width: 400px;
  width: auto;
  height: auto !important;
}
@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@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: 35px;
  }

  header .header-logo .logo-img {
    margin-right: 10px;
    width: 200px;
    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,
  .hero .a-h-c h1 {
    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;
  }

  .hero h3 {
    font-size: 16px;
  }



  .hero .hero-video {
    width: 60%;
  }

  .hero .hero-video .video .video-play .play,
  .h-v-s .swiper-slide .h-v-i .video-play .play {
    font-size: 25px;
    width: 50px;
    height: 50px;
  }

  .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,
  .hero .a-h-c h1 {
    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;
  }



  .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;
  }

  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: #003a28;
    transform: scale(1.05);
  }

  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: 40px 0px;
    padding-bottom: 0;
  }

  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: 1200px;
  }

  .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%;
  }
}



/* ========================= */

/* 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: var(--sec-color);
  color: white;
}

/* Add hover effect for all page numbers */
.page-number:hover {
  background-color: var(--sec-color);
  color: white;
}


@media only screen and (max-width: 1115px) {
  section.main-services .main-services-container .service-box{
    padding-bottom: 25px;
    height: 12rem;
  }

  header .row a.contact-header-web{
    display: none;
  }
}

@media only screen and (max-width: 992px) {

  .hero .hero-desc {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 10%;
  }


  .hero .hero-desc h1{
    font-size: 45px;
    width: 90%;
  }

  .hero .hero-desc a.contact-btn{
    margin-bottom: 15px;
  }

  section.main-services{
    flex-direction: column;
  }

  section.main-services .main-services-title{
    position: unset;
    width: 80%;
    margin: auto;
    margin-bottom: 50px;
  }

  section.main-services .main-services-container{
    width: 85%;
    margin: auto;
  }

  section.ent-section .ent-container{
    flex-direction: column-reverse;
  }


  section.ent-section .ent-container.ent-reverse{
    flex-direction: column;
  }

  section.ent-section .ent-container .ent-desc{
    width: 90%;
    margin-bottom: 30px;
  }

  section.ent-section .ent-container .ent-img{
    width: 65%;
  }

  section.ent-section .ent-container .ent-img.throat-img{
    width: 70%;
  }

  section.location-section{
    flex-direction: column;
    padding: 50px 0;
  }

  section.location-section .location-desc{
    width: 85%;
    margin-bottom: 45px;
  }

  section.location-section .location-frame{
    width: 85%;
    padding: 0;
  }

   section.why-doctor{
    flex-direction: column;
  }

  section.why-doctor .why-doctor-desc{
    width: 85%;
  }

  section.why-doctor .why-doctor-img{
    display: none;
  }

  header {
    background-color: #fff;
  }

  .videos .videos-container .video{
    width: 28%;
  }

  section.about-doctor{
    margin-bottom: 90px;
  }

  section.why-doctor .why-doctor-desc .why-doctor-img-mob{
    display: block;
    margin: 45px auto;
    overflow: hidden;
    border-radius: 16px;
    width: 50%;
  }

  section.why-doctor .why-doctor-desc .why-doctor-img-mob img{
    width: 100%;
  }

  section.about-doctor-hero{
    padding-top: unset;
    margin-bottom: 45px;
  }

  section.about-doctor-hero .about-hero-desc{
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.about-doctor-hero .about-hero-desc h1{
    color: #fff;
  }

  section.about-doctor-hero .about-hero-desc h2{
    text-align: center;
    color: #fff;
  }
  
  section.about-doctor-hero .about-layer-mobile{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  section.about-doctor-hero .about-hero-img img{
    height: 100%;
    object-fit: cover;
  }
  
  section.about-doctor-hero .about-hero-desc h2 span{
    color: #fff;
  }

  section.about-doctor-section{
    flex-direction: column-reverse;
  }

  section.about-doctor-section .about-doctor-desc{
    width: 85%;
    margin-bottom: 45px;
  }

  section.about-doctor-section .about-doctor-img{
    margin: 0;
    width: 65%;
  }

  section.about-field{
    flex-direction: column;
    gap: 85px;
  }


  section.about-field .about-field-box{
    width: 39%;
  }

  section.certificate-section{
    flex-direction: column;
  }

  section.certificate-section .certificate-desc{
    margin: 0;
    width: 90%;
  }

  footer .footer-img {
    display: none;
  }

}

@media screen and (max-width: 800px) {
  section.about-doctor{
    flex-direction: column;
  }

  section.about-doctor .doc-about-img{
    display: none;
  }

section.about-doctor .about-doc-desc {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tab-headers{
  display: flex;
  justify-content: center;
}



  .hero{
    margin-bottom: 30px;
  }

  section.blogs-hero .blogs-hero-desc {
    width: 100%;
  }


  section.blogs-hero .blogs-hero-desc h1{
    font-size: 23px;
  }

  .about-field-title h2{
    font-size: 29px;
  }

  section.about-field .about-field-box .about-field-img{
    width: 28%;
    top: -38px;
  }

  section.about-field .about-field-box{
    width: 45%;
    padding-bottom: 45px;
  }
}


@media screen and (max-width: 768px) {

  footer .f-i.right-footer-column{
    width: 100% !important;
  }


}


@media only screen and (max-width: 700px) {
  section.reels-section h2{
    font-size: 28px;
    text-align: center;
  }

  .videos .videos-container .video{
    width: 35%;
  }

}


@media only screen and (max-width: 600px) {
  .hero .hero-desc h1{
    font-size: 35px;
  }

  section.about-doctor-hero .about-hero-desc h2{
    font-size: 27px;
    width: 80%;
  }

  section.about-doctor-hero{
    height: 35rem;
  }

  section.about-doctor-hero .about-hero-img img{
    object-position: left;
  }

  section.about-doctor-hero .about-hero-desc h2 span{
    color: #fff;
  }

  section.about-field .about-field-box{
    width: 70%;
  }

  section.certificate-section .certificate-desc{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  section.certificate-section .certificate-desc h2{
    font-size: 29px;
  }

  section.certificate-section .certificate-desc .certificate-points{
    grid-template-columns: repeat(1, 1fr)
  }

  section.certificate-section .certificate-desc .certificate-points .certificate-item{
    width: 80%;
    margin: auto;
  }

}

@media only screen and (max-width: 500px) {

  .hero{
    height: 80vh;
  }

  .hero .hero-desc h1{
    font-size: 25px;
  }

  .hero .hero-desc h2{
    font-size: 16px;
  }

  .hero .hero-bg .hero-swiper img.first-hero{
    object-position: 25%;
  }

  .hero .hero-bg .hero-swiper img.sec-hero{
    object-position: 35%;
  }

  .hero .hero-bg .hero-swiper img.third-hero{
    object-position: 40%;
  }


  section.main-services .main-services-title h2{
    font-size: 28px;
    margin-bottom: 25px;
  }

  section.main-services .main-services-title p{
    font-size: 17px;
  }

  section.main-services .main-services-container .service-box{
    width: 80%;
    /* height: 245px; */
    padding: 15px 10px;
  }

  section.main-services .main-services-container{
    width: 100%;
  }

 


  section.main-services .main-services-container .service-box p{
    font-size: 14px;
  }


  section.main-services{
    margin-bottom: 75px;
  }

  section.ent-section{
    text-align: center;
  }

  section.ent-section h2{
    font-size: 25px;
    margin-bottom: 40px !important;
  }
  
  section.ent-section h2.ent-title{
    display: none;
  }

  section.ent-section .ent-container .ent-img{
    display: none;
  }

  section.ent-section .ent-container .ent-desc .ent-img-mobile{
    display: block;
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
    position: relative;
    left: 15px;
  }

  section.ent-section .ent-container .ent-desc .ent-img-mobile img{
    width: 100%;
  }

  section.ent-section .ent-container{
    margin-bottom: 0;
  }

  section.ent-section .ent-container .ent-desc .ent-points p {
    font-size: 15px;
  }

  section.reels-section h2{
    font-size: 22px;
  }

   section.reels-section h2 span{
    padding: 0;
  }

  .hero .hero-desc{
    margin-top: 20%;
  }

  .row.social-web a{
    width: 35px;
    height: 35px;
  }

  .row.social-web a i{
    font-size: 17px;
  }

  .hero .hero-desc .contact-hero{
    width: fit-content;
  }

  .hero .hero-desc a.know-doctor,
  .hero .hero-desc a.contact-btn{
    margin-right: 0;
    padding: 8px 20px;
    font-size: 13px;
  }

  .hero .hero-desc .row{
    margin-right: 0;
  }

  section.location-section .location-desc h2{
    font-size: 14px;
  }

  section.location-section .location-desc p.location-slogan{
    font-size: 18px;
  }

  section.location-section .location-desc .contact-links .call-box{
    font-size: 16px;
  }

  section.location-section .location-desc .contact-links .reserve-box .contact-btn{
    padding: 7px 20px;
    font-size: 15px;
  }

  section.location-section .location-desc .contact-links .call-box a{
    margin: 0 5px;
  }

  section.location-section .location-frame p{
    font-size: 18px;
    width: 100%;
  }

  section.location-section .location-frame form .top-form{
    flex-direction: column;
  }

  section.location-section .location-frame iframe{
    width: 100%;
  }


  section.why-doctor .why-doctor-desc h2{
    font-size: 26px;
  }

  section.why-doctor .why-doctor-desc h3{
    font-size: 16px;
  }

  section.why-doctor .why-doctor-desc .features-container .feature-box h6{
    font-size: 14px;
    min-height: 40px;
    text-align: center;
  }

  section.why-doctor .why-doctor-desc p{
    font-size: 15px;
  }
 
  /* section.why-doctor .why-doctor-desc{
    width: 100%;
  } */

  section.why-doctor .why-doctor-desc .features-container .feature-box{
    width: 30%;
  }

  header .header-logo .logo-img {
    margin-right: 10px;
    width: 200px;
    height: 60px;
  }

  footer .f-i.right-footer-column .f-i-l{
    flex-direction: column;
  }

  footer .f-i.right-footer-column img{
    width: 80%;
  }

  footer .f-i.right-footer-column p{
    width: 100%;
  }

  .videos .videos-container .video{
    width: 65%;
  }


  section.why-doctor .why-doctor-desc .why-doctor-img-mob{
    width: 80%;
    margin: 20px auto;
  }

  section.about-doctor{
    margin-bottom: 50px;
  }

  section.about-doctor-hero .about-hero-desc .contact-hero{
    flex-direction: column;
  }

  section.about-doctor-hero .about-hero-desc .contact-hero a.know-doctor,
  section.about-doctor-hero .about-hero-desc .contact-hero a.contact-btn{
    margin: 0;
    text-align: center;
    margin-bottom: 10px;
    padding: 8px 25px;
  }

  section.about-doctor-hero .about-hero-desc h2{
    width: 85%;
  }

  section.about-doctor-hero{
    height: 40rem;
  }

  section.about-field .about-field-box{
    width: 80%;
  }

  section.certificate-section .certificate-desc .certificate-points .certificate-item{
    width: 100%;
  }

  section.certificate-section .certificate-desc{
    margin-bottom: 40px;
  }

  section.certificate-section .certificate-img{
    width: 85%;
  }

  .about-field-title h2{
        font-size: 25px;
        text-align: center;
        width: 80%;
  }

  section.certificate-section .certificate-desc h2{
    font-size: 25px;
  }

  section.location-section .location-desc p.location-slogan span img{
    width: 20%;
  }
 
}


/* end site */

/* 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: var(--sec-color);
  color: white;
}

/* Add hover effect for all page numbers */
.page-number:hover {
  background-color: var(--sec-color);
  color: white;
}

/* home blogs */
.home-blogs-container {
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 2rem; */
  overflow: hidden;
  width: 100%;
}

.home-blogs-header {
  width: fit-content;
  margin: auto;
  text-align: center;
  margin-bottom: 0rem;
  color: #34769a;
  position: relative;
}

.home-blogs-header h3 {
  border: 2px solid #0000002e;
  padding: 5px 10px;
  border-radius: 25px;
  margin-bottom: 20px;
  color: var(--sec-color);
  margin: auto;
  margin-bottom: 15px;
}
.home-blogs-header h2 {
  font-size: 45px;
  color: #001d14;
  margin: auto;
  margin-bottom: 45px;
}

.home-blogs-header h2 span {
  color: #005339;
}

@media only screen and (max-width: 700px) {

  .home-blogs-header h2{
    font-size: 25px;
    width: 80%;
  }
}



.home-blogs-title {
  font-size: 45px;
  margin-bottom: 0rem;
  color: var(--text-color);
}

.home-blogs-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
}

.home-blogs-container .swiper-container {
  width: 100%;
  padding: 0.75rem 0 4rem 0;
  position: relative;
  margin-bottom: 15px;
}

.home-blogs-container .swiper-wrapper {
  align-items: stretch;
}

.home-blogs-container .swiper-slide {
  height: auto;
  display: flex;
}

.home-blog-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-blog-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.home-blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-blog-card:hover::before {
  opacity: 1;
}

.card-image {
  height: 200px;
  background: linear-gradient(45deg, #2d6e98, #3d82ae);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00bcd4, #34769a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-image img{
  width: 100%;
}


.home-blog-card:hover .card-image::after {
  opacity: 0.6;
}

.medical-icon {
  font-size: 3rem;
  color: white;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease;
}

.home-blog-card:hover .medical-icon {
  transform: scale(1.2) rotate(10deg);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #666;
  flex-wrap: wrap;
}

.category-tag {
  background: linear-gradient(135deg, #00d418, #389b31);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.home-blog-card:hover .card-title {
  color: #667eea;
}

.card-excerpt {
  color: #666;
  line-height: 1.5;
  /* margin-bottom: 1.5rem; */
  font-size: 0.9rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  margin-top: auto;
  direction: ltr;
}

.read-more-blog {
  background: linear-gradient(135deg, #00d418, #389b31);
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.read-more-blog:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #666;
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
}

.author-avatar img {
  width: 55px;
}

/* Swiper Navigation */
.home-blogs-container .swiper-button-next,
.home-blogs-container .swiper-button-prev {
  color: white;
  background: linear-gradient(
    45deg,
    rgb(29 64 73 / 60%),
    rgb(50 196 232 / 60%)
  );
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: -3rem;
  position: absolute;
  top: 200px;
}

.home-blogs-container .swiper-button-next:hover,
.home-blogs-container .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.home-blogs-container .swiper-button-next::after,
.home-blogs-container .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

/* Swiper Pagination */
.home-blogs-container .swiper-pagination {
  bottom: 10px;
}

.home-blogs-container .swiper-pagination-bullet {
  background: linear-gradient(135deg, #00d418, #389b31);
  /* border: 1px solid #00bcd4; */
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.home-blogs-container .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #00d418, #389b31) ;
  transform: scale(1.3);
}

.home-blogs-container .view-all-btn {
  text-align: center;
  margin-bottom: 2rem;
}

.home-blogs-container .view-all-btn.view-all-btn-ar {
  margin-bottom: 4rem;
}

.home-blogs-container .view-all-link {
  color: var(--sec-color);
  padding: 10px 25px;
  background-color: transparent;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid var(--sec-color);
  font-size: 17px;
}

.home-blogs-container .view-all-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .home-blogs-title {
    font-size: 2.5rem;
  }

  .card-content {
    padding: 1.2rem;
  }

  .card-image {
    height: 180px;
  }

  .medical-icon {
    font-size: 2.5rem;
  }

  section.about-doctor .about-doc-desc{
    padding: unset;
    margin: auto;
  }

  section.about-doctor .about-doc-desc h2{
    font-size: 21px;
  }

  .tab-header{
    font-size: 14px;
    padding: 10px 15px;
  }

  .about-points p{
    text-align: right;
  }

  section.about-doctor .about-doc-desc .about-points p img{
    width: 20px;
  }

  .tab-header{
    width: 35%;
  }

  
  section.about-doctor .about-doc-desc .doctor-mobile-img{
    display: block;
    width: 80%;
    border-radius: 16px;
    overflow: hidden;
  }


  section.about-doctor .about-doc-desc .doctor-mobile-img img{
    width: 100%;
  }

  section.about-doctor .about-doc-desc .card-img{
    margin: auto;
  }

  section.blogs-hero .blogs-hero-desc h1{
    font-size: 19px;
    width: 80%;
  }
}

@media (max-width: 550px) {
  .home-blogs-container{
    width: 90%;
  }
}


@media (max-width: 480px) {
  /* .home-blogs-container {
    padding: 0 1rem;
  } */

  .card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}