/* variables */
:root {
    --main-color: #c2121c;
    --second-color: #A8DADB;
    --third-color: #193252;
    --title-first-col: #4A5D78;
    --title-second-col: #457B9D;
	--title-tertiary-color: #1C3455;
    --bg-color: #1D3557;
    --dark-text: #070717;
    --section-padding: 100px 0 ;
  }
/* global */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Somar Sans';
  }
main {
	overflow: hidden;
}
  body {
    background-color: #fff;
    direction: rtl;
  }
  html {
    scroll-behavior: smooth;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  p {
	margin-top: 0;
	margin-bottom: 0;
  }
  a:hover {
	color: inherit;
}
  .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
  }
	button {
    border: none;
    padding: initial;
    color: initial;
    background: none;
}
  .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 22.8px;
  }
  .upper-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 26.4px;
    color: var(--title-first-col);
    margin-bottom: 7.6px;
  }
  .lower-title-box {
    display: flex;
    align-items: center;
  }
  .lower-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    color: var(--title-first-col);
  }
  .lower-title-col {
    color: var(--title-second-col);
  }
  .show-more-button {
    margin-right: auto;
    background: var(--title-second-col);
    min-width: 150px;
	width: fit-content;
    height: 48.24px;
    border-radius: 8px;
    transition: 0.3s;
	padding: 0 15px;
  }
  .show-more-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    height: 100%;
    border-radius: 8px;
    transition: 0.3s;
	font-weight: 500;
  }
  .description {
    width: 70%;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: var(--title-first-col);
    margin-bottom: 64px;
  }
  section {
    padding: var(--section-padding);
    position: relative;
  }
  .card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 40%;
    z-index: -1;
  }
  .card-bg-one {
    width: 80%;
    height: 100%;
    border-radius: 50%;
    margin-right: auto;
    background: #2f447ac9;
    filter: blur(70px);
  }
  .card-bg-two {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-right: auto;
    background: #e43c4aba;
    filter: blur(90px);
    position: absolute;
    top: 0;
  }
.swiper {
	max-width: 100%;
}
.colored-button {
  background: linear-gradient(to right, #4A5D78, #C24F83, #E53945);
  position: relative;
  overflow: hidden; 
  transition: background .3s ease;
  z-index: 1;
  color:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.colored-button-content {
  color: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
	white-space: nowrap;
}
.colred-button:hover {
  color: #fff;
}
.colored-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(273.35deg, #4A5D78 -13.21%, #C24F83 55.3%, #E53945 117.1%);
  opacity: 0; 
  transition: opacity .3s ease; 
  z-index: 2;
  padding: 15px 18px;
}
.colored-button:hover::before {
  opacity: 1;
}
/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffe8;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-top: 8px solid var(--bg-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* whatsapp widget */
#whatsapp-widget {
    position: fixed;
    bottom: -100%;
    right: 20px;
    z-index: 1000;
	transition: 0.5s;
}
#whatsapp-widget.active {
	bottom: 20px;
}
#whatsapp-widget img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
  /* layout */
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (min-width: 576px) {
    .container {
      width: 540px;
    }
  }
  @media (min-width: 768px) {
    .container {
      width: 720px;
    }
  }
  @media (min-width: 992px) {
    .container {
      width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container {
      width: 1140px;
    }
  }
  @media (min-width: 1400px) {
    .container {
      width: 1320px;
    }
  }
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
}
.custom-header {
	background-color: var(--bg-color);
}
.upper-header {
    height: 49px;
    background-color: #FDFCFD;
    transition: 0.3s;
	color: #1A3254;
}
.upper-header-container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.social-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}
.location-item {
	margin-right: 8px;
}
.social-item:not(:first-child) .social-link {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1C34551A;
    border-radius: 50%;
}
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.follow-us {
    font-weight: 500;
    font-size: 14px;
	color: #1A3254;
}
.location-icon {
	margin-right: 24px;	
	display: flex;
    justify-content: center;
    align-items: center;
}
.contact-nums {
	flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    position: relative;
}
.contact-item {
  direction: ltr;
}
.phone-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whatsapp-icon {
	margin-bottom: 3px;
}
.contact-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 22.4px;
    transition: 0.3s;
}
.contact-link:hover {
  color: var(--title-second-col);
}
.lower-header {
  height: 84px;
  width: 100%;
}
.lower-header-container {
  display: flex;
  align-items: center;
}
.lower-header .logo {
  width: 84px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FDFCFD;
  margin-left: 24px;
  position: relative;
  transition: 0.3s;
  margin-bottom: auto;
}
.lower-header .logo .logo-img,
.lower-header .logo .second-logo-img {
  width: 55px;
  margin-left: 6px;
  transition: 0.3s;
}
.lower-header .logo .second-logo-img {
  display: none;
}
.lower-header .header-menu {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.lower-header .header-menu .header-menu-item .menu-item-link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 12.8px 20px 12px;
  opacity: 80%;
  display: flex;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}
.lower-header .header-menu .header-menu-item .menu-item-link svg {
    margin-right: 8px;
	transition: 0.3s;
}
.lower-header .header-menu .header-menu-item .menu-item-link.menu-item-active,
.lower-header .header-menu .header-menu-item .menu-item-link:hover {
  color: var(--second-color);
  opacity: 100%;
}
.lower-header .header-menu .header-menu-item .menu-item-link.menu-item-active svg path ,
.lower-header .header-menu .header-menu-item .menu-item-link:hover svg path {
	 fill: var(--second-color); 
}
.lower-header .header-menu .header-menu-item .menu-item-link.menu-item-active {
  font-weight: 500;
}
.header-menu-item {
	position: relative;
}
.sub-menu {
	position: absolute;
    width: 200px;
    right: 0;
	top: 100%;
    background: linear-gradient(360deg, #f0f2f7, #fff);
    border-radius: 8px;
    flex-direction: column;
	padding: 10px 0;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.header-menu-item:hover .sub-menu {
	visibility: visible;
	opacity: 100%;
}
.sub-menu-link {
	padding: 7px 20px;
    font-size: 16px;
    font-weight: 500;
    display: block;
    color: var(--third-color);
	transition: 0.3s;
}
.sub-menu-link:hover {
	color: var(--second-color);
}
.lower-header .consult-box {
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #fff;
  gap: 16px;
}
.eng-button {
  	font-size: 14px;
	line-height: 16.8px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: 0.3s;
	opacity: 90%;
	text-transform: uppercase;
}
.eng-button:hover {
	opacity: 100%;
}
.lang-icon {
	width: 18px;
    height: 18px;
}
.lang-icon-dark {
	width: 18px;
    height: 18px;
	display: none;
}
.eng-button span {
	margin-top: 3px;
}
.search-icon {
	cursor: pointer;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-icon-img-black {
	display: none;
}
.consult-button {
  width: fit-content;
  height: 42px;
  border-radius: 8px;
  padding: 8px 16px 8px 16px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  background: linear-gradient(84.98deg, #4A5D78 -12.88%, #C24F83 50.78%, #E53945 108.22%);
  overflow: hidden; 
  transition: background .3s ease; 
}
.consult-button:hover {
  color: #fff;
}
.consult-button:hover::before {
  opacity: 1;
  color: #fff;
}
.scroll-header {
  background: #FFFFFFB2;
  backdrop-filter: blur(24px);
}
.scroll-header .lower-header .logo {
  background-color: transparent;
}
.scroll-header .lower-header .header-menu .header-menu-item .menu-item-link {
  color: var(--bg-color);
}
.scroll-header .lower-header .header-menu .header-menu-item .menu-item-link svg path {
	fill: var(--bg-color);
}
.scroll-header .lower-header .header-menu .header-menu-item .menu-item-link.menu-item-active,
.scroll-header .lower-header .header-menu .header-menu-item .menu-item-link:hover {
  color: var(--bg-color);
  opacity: 100%;
}
.scroll-header .eng-button {
  color: #000;
  opacity: 80%;
}
.scroll-header .eng-button:hover {
  opacity: 100%;
}
.scroll-header .eng-button .lang-icon {
	display: none;
}
.scroll-header .eng-button .lang-icon-dark {
	display: block;
}
/* serach */
.search-container {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
	visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
    overflow-y: auto;
}
.search-container.active {
	visibility: visible;
    opacity: 1;
}
.search-container-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1D1D1E;
    filter: blur(4px);
    opacity: 50%;
    z-index: -1;
}
.close-search {
	position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-search svg {
	cursor: pointer;
}
.search-content {
	display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 50%;
    max-width: 100%;
    margin: auto 20px;
}
.serach-bar {
	display: flex;
    align-items: center;
	gap: 8px;
    background: #fff;
    border-radius: 48px;
    padding: 16px 24px;
}
.dropdown {
    background: linear-gradient(273.35deg, #4a5d7840 -13.21%, #c24f8340 55.3%, #e5394540 117.1%);
    border-radius: 8px;
}
.dropdown-text {
   background-color: transparent;
    padding: 6px 12px 6px 29px;
    opacity: 80%;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 700;
    color: #000;
    background-position: left 11px top 50%;
}
.dropdown-text:hover,
.dropdown-text:focus {
	opacity: 100%;
    color: #000;
}
.dropdown-title {
	font-size: 16px;
    line-height: 25.6px;
    font-weight: 300;
    color: #8E9AAB;
	cursor: default;
} 
.search-box {
	flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-box button {
	display: flex;
	align-items: center;
}
.search-box img {
	min-width: 24px;
    height: 24px;
	opacity: 50%;
	width: initial;
} 
#search-input {
	flex-grow: 1;
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 300;
    color: #000;
    border: none;
    outline: none;
}
.Search-results {
	background: #fff;
    border-radius: 16px;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in;
}
.Search-results.active {
	max-height: 500px;
}
.Search-results-title {
	margin: 16px 0;
    display: block;
    padding: 8px 24px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: #5A7184;
}
.Search-results-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.Search-results-item {
	font-size: 14px;
	line-height: 22.4px;
	font-weight: 500;
	color: #000;
	opacity: 60%;
	transition: 0.3s;
	width: 100%;
    display: block;
	padding: 0 24px;
	cursor: pointer;
}
.Search-results-item:last-child {
    margin-bottom: 20px;
}
.Search-results-item:hover {
	opacity: 100%;
}
/* home */
/* landing */
.landing {
    height: 666px;
    background-color: var(--bg-color);
	overflow: hidden;
	padding-bottom: 0;
}
.landing-container {
  height: 100%;
	display: flex;
}
.landing-overlay {
  position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}
.landing-slide {
	display: flex;
	overflow: hidden;
	gap: 15px;
}
.landing-bg-container {
	width: 40%;
    z-index: 1;
	padding-top: 30px;
	text-align: center;
}
.landing-bg {
	height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: visible;
}
.landing-content {
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.landing-title {
  font-size: 54px;
  color: var(--second-color);
  font-weight: 700;
  line-height: 64.8px;
  text-shadow: -49px 0px 70px #a8dadb;
  margin-bottom: 40px;
}
.landing-description {
  font-size: 24px;
  color: #fff;
  line-height: 38.4px;
  font-weight: 300;
}
.search-button {
  min-width: 192px;
  width: fit-content;
  height: 62px;
  background: linear-gradient(to right, #4A5D78, #C24F83, #E53945);
  border-radius: 8px;
  margin-top: 40px;
  position: relative;
  overflow: hidden; 
  transition: background .3s ease;
  z-index: 1;
}
.search-button-content {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.search-button:hover {
  color: #fff;
}
.search-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(273.35deg, #4A5D78 -13.21%, #C24F83 55.3%, #E53945 117.1%);
  opacity: 0; 
  transition: opacity .3s ease; 
  z-index: 2;
  padding: 15px 18px;
}
.search-button:hover::before {
  opacity: 1;
}
.landing-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  bottom: 30px !important;
}
.landing-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 1;
	margin: 0 8px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
	overflow: hidden;
	position: relative; 
}
/* .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(1) !important;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{
    transform: scale(.66);
} */
.landing-swiper .swiper-pagination-bullet-active {
    transform: initial;
    width: 50px !important;
    height: 50px !important;
    background: none !important;
    border: 2px solid #ffffff50;
    bottom: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
	overflow: visible;
}
.swiper-pagination-bullet span {
  font-size: 14px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.progress {
	 transform: rotate(-90deg);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: none;
	overflow: visible !important;
}
.circle-origin {
  fill: transparent;
  stroke: rgb(255, 255, 255);
  stroke-width: 2;
  stroke-linecap: square;
      stroke-dasharray: 154.664px;
    stroke-dashoffset: 154.664px;
}

.swiper-pagination-bullet-active .circle-origin {
  animation: progress 6s;
}
@keyframes progress {
  0% {
    stroke-dasharray: 154.664px;
  }

  98% {
    stroke-dasharray: 308.664px;
  }
  100% {
    stroke-dasharray: 308.664px;
  }
}
/* services */
.services {
  margin-top: 50px;
  position: relative;
  padding-bottom: 0;
  z-index: 2;
}
.services-container {
  position: relative;
}
.services-bg {
  display: flex;
  flex-wrap: wrap;
  height: 95%;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.services-bg-box {
  width: 50%;
  filter: blur(90px);
}
.bg-box-one {
  background-color: #2f447a30;
}
.bg-box-two {
  background-color: #E43C4A30;
}
.services-title {
  margin-bottom: 41.8px;
}
/* tab */
.tab {
  overflow: hidden;
  display: flex;
  height: 74px;
}
.tab button {
  cursor: pointer;
  transition: 0.3s;
  width: calc(100% / 3);
  background: none;
  border: 0;
  color: var(--title-first-col);
  font-weight: 700;
  font-size: 16px;
}
.tablinks:nth-child(1) {
  border-radius: 100px 0 0 0;
}
.tablinks:nth-child(2) {
  border-radius: 100px 100px 0 0;
}
.tablinks:nth-child(3) {
  border-radius: 0 100px 0 0;
}
.tab button:hover {
  background: #ffffff38;
  color: var(--bg-color);
}
.tab button.active {
  background: #FFFFFFB2;
  color: var(--bg-color);
}
.tabcontent {
  display: none;
  background: linear-gradient(179.96deg, rgba(255, 255, 255, 0.7) 0.04%, rgba(255, 255, 255, 0.49) 41.53%, rgba(255, 255, 255, 0) 72.08%);
  padding: 40px 12px;
}
.tabcontent:first-child {
  border-radius: 50px 0 0;
}
.tabcontent:nth-child(2) {
  border-radius: 50px 50px 0 0;
}
.tabcontent:nth-child(3) {
  border-radius: 0 50px 0 0;
}
.tab-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  grid-auto-flow: row dense;
}
.tabcontent:first-child {
  display: block;
}
.tabcontent {
  animation: fadeEffect 1s;
}
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
.tab-box {
  padding: 21.79px;
}
.tab-box-title {
  margin-bottom: 21.79px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14.5px;
}
.box-title-img {
    min-width: 58.11px;
    width: 58.11px;
    min-height: 58.11px;
    height: 58.11px;
    transform: scale(1.4);
}
.tab-box-title .box-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  color: var(--dark-text);
}
.tab-box-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  color: var(--title-first-col);
  margin-bottom: 35px;
}
.book-now {
  width: 40px;
  height: 162px;
  background-color: var(--second-color);
  border-radius: 0 15px 15px 0;
  position: absolute;
  left: 0;
  top: 100px;
}
.book-now-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--bg-color);
  transition: 0.3s;
}
.book-now-content .calender-icon {
  width: 140px;
  transform: rotate(90deg);
  display: flex;
  justify-content: flex-start;
}
.book-now-content .calender-icon svg{
	transform: rotate(270deg);
}
.book-now-content span {
  width: 112px;
  transform: rotate(90deg);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: flex-end;
}
.sticky-cta {
  position: fixed;
  top: 125px;
  left: 0px;
  z-index: 1000;
}
.sticky-cta-midsize {
  position: fixed;
  top: 125px;
  left: 0px;
  z-index: 1000;
}
/* our doctors */
.our-doctor {
  z-index: 1;
  background-color: #fff;
}
.our-doctor-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 30px;
}
.doctor-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
  transition: 0.3s;
  cursor: pointer;
  width: 360px;
}
.doctor-box-bg {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
}
.doctor-img-box {
	width: 354px;
	height: 354px;
	display: flex;
	justify-content: center;
}
.doctor-img {
  max-height: 100%;
  border-radius: 50%;
	object-fit: cover;
	object-position: center;
}
.doctor-box-overlay {
  width: 100%;
    height: 65%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(179.96deg, rgba(255, 255, 255, 0.9) 0.04%, rgba(255, 255, 255, 0.63) 41.53%, rgba(255, 255, 255, 0) 72.08%);
    z-index: -1;
    border-radius: 52px;
}
.doctor-content {
  text-align: center;
}
.doctor-title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-color);
  line-height: 38.4px;
  padding: 0 15px;
}
.doctor-position {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #DE3E52;
  padding: 0 25px;
}
.doctor-show-more {
	display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-second-col);
    font-size: 24px;
    line-height: 28.8px;
    font-weight: 700;
    gap: 7.6px;
    margin-top: 25px;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
.doctor-box:hover .doctor-show-more {
	visibility: visible;
	opacity: 1;
}
/* numbers */
.numbers-title {
  text-align: center;
  margin-bottom: 58.4px;
}
.numbers-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 79px;
}
.numbers-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 28.75px;
}
.numbers-bg {
  position: absolute;
  width: 100%;
  height: 155%;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  top: 0;
  z-index: -2;
  border-radius: 67px 67px 0 0;
  overflow: hidden;
  background: #E5F1F980;
}
.numbers-bg-box {
  width: 50%;
  filter: blur(200px);
}
.numbers-bg-one {
  background-color: #2f447a45;
}
.numbers-bg-two {
  background-color: #e43c4a45;
}
.numbers-bg-box:nth-child(1),
.numbers-bg-box:nth-child(2) {
  height: 10%;
}
.numbers-bg-box:nth-child(3),
.numbers-bg-box:nth-child(4) {
  height: 50%;
}
.counter-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 79px;
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
}
.numbers-icon-box {
  width: 89px;
  height: 89px;
  border: 1.17px solid #FFFFFF;
  border-radius: 50%;
  padding: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 28.75px;
}
.numbers-icon-box .numbers-bg {
	background: none;
}
.numbers-icon-box .numbers-bg-box {
  width: 50%;
  filter: blur(30px);
}
.counter-num-box {
  font-size: 36px;
  font-weight: 700;
  color: var(--bg-color);
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  line-height: 43.2px;
}
.counter-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: var(--title-first-col);
  text-align: center;
}
/* articles, events */
.articles-title,
.events-title {
  margin-bottom: 48px;
}
.articles-wrap,
.events-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  grid-auto-flow: row dense;
  gap: 32px;
}
.articles-box,
.events-box {
  border-radius: 24px;
  position: relative;
  padding: 16px 16px 32px;
  transition: 0.3s;
}
.articles-box-bg,
.events-box-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 24px;
  background: linear-gradient(179.96deg, rgba(255, 255, 255, 0.9) 0.04%, rgba(255, 255, 255, 0.63) 41.53%, rgba(255, 255, 255, 0) 72.08%);
  z-index: -1;
}
.articles-box .card-bg,
.events-box .card-bg {
  top: 135px;
  width: 30%;
  height: 30%;
  transition: 0.3s;
  z-index: -2; 
}
.articles-img-container,
.events-img-container {
    border-radius: 16px;
    overflow: hidden;
    height: 202px;
    margin-bottom: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.articles-img-container img,
.events-img-container img {
	object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
.article-img-type,
.event-img-type {
	position: absolute;
	left: 16px;
	top: 16px;
	width: fit-content;
	height: 22.78px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.89px 15.12px 1.89px 15.12px;
	border-radius: 4.73px;
	box-shadow: 0px 4px 4px 0px #00000040;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
}
.blue-type {
  background-color: var(--title-second-col);
}
.red-type {
  background-color: #DD3E54;
}
.articles-box-content,
.events-box-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-date,
.event-date {
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
  color: #000;
}
.article-title,
.event-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: var(--bg-color);
}
.article-description,
.event-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  color: var(--title-first-col);
}
.articles-mark,
.events-mark {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  width: 100%;
  background: linear-gradient(90deg, #2f447a30, #e43c4a30);
  border-radius: 0 0 24px 24px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.articles-mark-visible,
.events-mark-visible,
.articles-box:hover .articles-mark,
.events-box:hover .events-mark{
  visibility: visible;
  opacity: 1;
}
/* cooperation */
.cooperation {
  padding: 0;
  display: flex;
  margin: 150px 0;
  content-visibility: visible !important;
}
.cooperation-content {
  padding: 46.5px;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 57px;
  position: relative;
  overflow: hidden;
  background-color: var(--second-color);
}
.cooperation-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 57.6px;
  color: var(--bg-color);
}
.cooperation-intitle {
  color: #DE3E52;
}
.cooperation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cooperation-item {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: var(--bg-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cooperation-item svg {
  margin-top: 5px;
  min-width: 20px;
}
.cooperation .show-more-button {
  margin-right: 0;
  opacity: 70%;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  transition: 0.3s;
  z-index: 1;
  min-width: 192px;
  width: fit-content;
  height: 58px;
}
.cooperation .show-more-button:hover {
  opacity: 100%;
}
.cooperation .show-more-button .show-more-content {
  color: var(--bg-color);
}
.cooperation-bg {
  mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
	width: 100%;
    opacity: 30% !important;
    object-fit: cover;
    object-position: center;
}
.cooperation-img-container {
  width: 40%;
  background-color: var(--title-second-col);
  border-radius: 0px 0px 0px 88px;
  position: relative;
}
.cooperation-img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 110%;
  max-height: 120%;
  margin-left: 5px;
  width: initial;
}
.faqs-title {
  text-align: center;
}
.faqs-title .lower-title-box {
  justify-content: center;
}
/* faqs */
.faqs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.faqs .title {
  margin-bottom: 40px;
}
.faqs-accordion {
  width: 82%;
}
.accordion-item {
  background: #FFFFFFD1;
}
.accordion-button {
  background: transparent;
  min-height: 138px;
  height: fit-content;
  padding: 40px 145px 40px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  cursor: pointer;
  transition: 0.4s;
}
.faqs-number {
  font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    color: #D3DBE0;
    position: absolute;
    right: 45px;
}
.faqs-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  color: var(--bg-color);
}
.accordion-button::after {
  content: "\2b";
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: 0;
  background-image: none;
  background-color: #D3DBE0;
  border-radius: 50%;
  font-size: 34px;
  color: var(--bg-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(45deg);
  background-color: var(--title-second-col);
  color: #fff;
}
.accordion-button:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.accordion-item {
  border: none;
}
.accordion-body {
  padding: 0 145px 40px; 
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  color: var(--title-first-col);
  border-bottom: 1px solid #DBE2E6;
}
.faqs .card-bg {
  width: 67%;
  height: 75%;
  top: 56%;
  opacity: 80%;
}
.faqs .card-bg .card-bg-one {
  background: #2f447a7d;
}
.faqs .card-bg .card-bg-two {
  background: #e43c4a61;
}
.faqs-bg {
  position: absolute;
  top: -150px;
  width: 100%;
  opacity: 60% !important;
  z-index: -1;
}
/* testimonials */
.testimonials {
  margin-bottom: 250px;
}
.testimonials-title {
  margin-bottom: 60px;
}
.testimonials-content {
  padding: 8px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-auto-flow: row dense;
    gap: 24px;
}
.testimonials-item {
  background: #E5F1F999;
  backdrop-filter: blur(4px);
  opacity: 80%;
  border-radius: 12px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.testimonials-description {
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
  flex-grow: 1;
}
.testimonials-author {
  display: flex;
  gap: 16px;
}
.author-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.author-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.author-title {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 500;
}
.author-subtitle {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 500;
  color: var(--bg-color);
}
/* footer */
footer {
  position: relative;
}
.footer-minimal {
	overflow: hidden;
}
.footer-book {
  display: flex;
  padding: 35px 0;
  background-color: #FFFFFF80;
  margin: 0 auto;
}
.footer-book-content {
  display: flex;
  align-items: center;
}
.footer-book-title {
  position: relative;
  margin-bottom: 0;
}
.footer-book-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateX(calc(-100% - 40px));
  width: 57.52px;
  height: 1px;
  background-color: var(--bg-color);
}
.footer-book-button {
  min-width: calc(115.58px + 5px);
  width: calc(115.58px + 5px);
  height: calc(115.58px + 5px);
  background: linear-gradient(180deg, #FF4366 0%, #D34566 50%, #A8DADB 75%, #1D3557 100%);
  border-radius: 50%;
  position: relative;
  margin-right: 130px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #EFE2E7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
  transition: .3s ease;
}
.footer-book-button:hover {
  color: #fff;
}
.footer-book-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(273.35deg, #4A5D78 -13.21%, #C24F83 55.3%, #E53945 117.1%);
  opacity: 0; 
  transition: opacity .3s ease; 
  z-index: 1;
}
.footer-book-button:hover::before {
  opacity: 1;
}
.book-button-content {
  width: 115.58px;
  height: 115.58px;
  border-radius: 50%;
  z-index: 1;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(82.97deg, #4A5D78 -11.79%, #C24F83 52.32%, #E53945 110.17%);
}
.footer-book-imgs {
  position: relative;
  bottom: -35px;
  width: 40%;
  margin-right: auto;

}
.footer-book-img {
  position: absolute;
  bottom: 0;
}
.footer-book-img:nth-child(1) {
  width: 282px;
  left: 0;
}
.footer-bok-img-sec {
  left: 150px;
  width: 311px;
}
.footer-bg {
  display: flex;
  flex-wrap: wrap;
  height: 950px;
  width: 100%;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.footer-bg .services-bg-box {
  filter: blur(110px);
}
.footer-bg .services-bg-box:nth-child(1),
.footer-bg .services-bg-box:nth-child(2) {
  height: 35%;
}
.footer-bg .services-bg-box:nth-child(3),
.footer-bg .services-bg-box:nth-child(4) {
  height: 65%;
}
.partners {
      background-color: var(--second-color);
    display: flex;
    align-items: center;
    height: 157px;
}
.partners-container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.partners-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 38.4px;
  color: var(--title-first-col);
  min-width: 300px;
}
.partners-list .swiper-wrapper {
  display: flex;
  align-items: center;
}
.partners-item {
	text-align: center;
}
.partner-img {
	max-height: 80px;
	object-fit: contain;
	object-position: center;
}
.main-footer {
  padding: 80px 0;
  background-color: var(--bg-color);
}
.main-footer-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.main-footer-content {
  display: flex;
}
.footer-logo {
	margin-left: 50px;
	height: fit-content;
}
.footer-logo-img {
  width: 200px;
}
.footer-lists {
  margin-right: auto;
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 210px;
}
.footer-links {
	width: 175px;
}
.footer-list-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  color: #fff;
}
.footer-follow-us .social-menu {
  justify-content: flex-start;
  width: fit-content;
}
.footer-follow-list .social-item .social-link {
  background: #385378;
}
.footer-follow-list .social-item:first-child .social-link {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #385378;
}
.footer-follow-list .social-item .social-link:hover {
	background: #55749e;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 20px 48px;
  flex-wrap: wrap;
  height: 180px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-link,
.footer-contact {
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: #fff;
  opacity: 40%;
  display: flex;
  transition: 0.3s;
}
.footer-link:hover,
.footer-contact:hover {
  color: #fff;
  opacity: 100%;
}
.footer-contact svg {
  margin: 3px 0 0 8px;
  min-width: 16px;
}
.copy-rights {
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  color: #fff;
  text-align: center;
  opacity: 40%;
  border-top: 1px solid #ffffff50;
  padding-top: 24px;
}
.moved-header {
  top: -49px;
}
.menu-icon {
  margin-right: 25px;
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.close-icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--bg-color);
  opacity: 80%;
  cursor: pointer;
}

/* articles page */
.page-top {
  min-height: 464px;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
  padding-top: 133px;
}
.page-top-container {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  flex-direction: column;
  margin-top: 75px;
}
.page-top-bg {
    position: absolute;
    bottom: 0;
    min-height: 100%;
    left: 0;
    width: 66%;
    object-fit: cover;
    object-position: right;
}
.page-top-blur {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 508px;
  height: 508px;
  background: #1C3456;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(100px);
}
.page-top-title {
  font-size: 70px;
  line-height: 84px;
  font-weight: 700;
  color: var(--second-color);
  margin-bottom: 24px;
}
.page-top-description {
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 300;
  color: #fff;
  width: 60%;
}
.page-inner {
  padding-top: 15px;
  padding-bottom: 200px;
}
.jobs-inner {
	padding-bottom: 0px;
}
.page-inner .book-now {
	top: 130px;
}
.page-inner .sticky-cta{
	top: 125px;
}
.main-page-pagination {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.main-pagination-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-pagination-link {
  display: block;
  border: 1px solid var(--title-second-col);
  border-radius: 100px;
  padding: 18px 35px;
  color: var(--title-first-col);
  transition: 0.3s;
}
.main-pagination-link.active,
.main-pagination-link:hover {
  background-color: var(--title-second-col);
  color: #fff;
}
.articles-subtype .swiper-slide {
  width: fit-content;
  background: #F0F3F8;
  padding: 12px 20px;
  border-radius: 8px;
  color: var(--title-first-col);
  transition: 0.3s;
  cursor: pointer;
}
.articles-subtype .swiper-slide.active,
.articles-subtype .swiper-slide:hover {
  background-color: var(--title-second-col);
  color: #fff;
}
.articles-subtype::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #ffffff 50%, transparent);
  z-index: 2;
}
.articles-subtype::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #ffffff 50%, transparent);
  z-index: 2;
}
.articles-subtype .swiper-button-next,
.articles-subtype .swiper-button-prev {
  border: 1.38px solid #1C3455;
  border-radius: 50% !important;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #1C3455;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: absolute;
  transform: translateY(6px);
}
.articles-subtype .swiper-button-next::after,
.articles-subtype .swiper-button-prev::after {
  display: none;
}
.articles-subtype .swiper-slide:first-child {
  margin-right: 85px;
}
.articles-subtype .swiper-slide:last-child {
  margin-left: 85px;
}
.page-pagination-numbers {
	margin: 32px auto 0;
    display: flex;
    padding: 8px;
    background: #f3f3f3;
    border-radius: 56px;
    backdrop-filter: blur(28px);
    width: fit-content;
    gap: 5px;
}
.page-pagination-numbers a,
.page-pagination-numbers span {
	width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
	border-radius: 50%;
	transition: 0.3s;
}
.page-numbers.current,
.page-pagination-numbers a:hover {
	background: #1D3557;
	color: #fff;
}
.page-numbers.next,
.page-numbers.prev {
	font-size: 17px;
    font-weight: 600;
}
/* events page */
.events-page-top .page-top-bg {
    left: -2px;
    width: 45%;
}
.events-page-top .page-top-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: #1B3356;
    opacity: 60%;
}
.events-page-top .page-top-blur {
    width: 962px;
    height: 962px;
}
/* partnerships page & doctors page*/
.partnerships-page-top .page-top-bg {
	width: 100%;
    height: initial;
    min-height: 100%;
    mix-blend-mode: multiply;
}
.partnerships-img-cont,
.doctors-img-cont {
	width: 40%;
    border-radius: 16px;
    overflow: hidden;
	max-height: 500px;
}
.partnerships-img,
.doctors-img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
.partnerships-items-container .accreditation-content-title,
.doctors-items-container .accreditation-content-title {
	font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #001733;
}
/* jobs page */
.jobs-container {
	padding-bottom: 100px;
}
.jobs-container .jobs-pagination {
	padding-bottom: 10px;
}
.jobs-wrap {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    grid-auto-flow: row dense;
    gap: 32px;
}
.jobs-item {
	display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #E1EDFF;
    background: #fff;
}
.jobs-content {
	display: flex;
    flex-direction: column;
	justify-content: space-between;
    gap: 16px;
	flex-grow: 1;
    padding: 32px 24px;
    border-radius: 16px;
}
.jobs-item.blue-bg-job .jobs-content {
	background: #ECF3F7;
}
.jobs-item.red-bg-job .jobs-content {
	background: #FFECEE;
}
.jobs-date {
	font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
    color: var(--title-tertiary-color);
	margin-bottom: 16px;
}
.jobs-title {
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 700;
    color: var(--title-tertiary-color);
}
.jobs-tags {
	display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.jobs-tag {
	padding: 8px 16px;
    border: 1px solid var(--title-tertiary-color);
    border-radius: 29px;
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
    color: var(--title-tertiary-color);
}
.jobs-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 16px;
    font-size: 18px;
    line-height: 28.8px;
    font-weight: 500;
    color: var(--title-tertiary-color);
    width: fit-content;
    margin: 0 auto;
}
.jobs-accreditation {
	background: #EEF1EE;
}
.jobs-accreditation .accreditation-img-cont {
	outline: 16px solid #FFFFFF4D;
    border-radius: 16px;
    background: #fff;
}
.job-apply.form-section {
	padding-top: 64px;
    margin-top: 0;
}
.file-input-container {
    display: flex;
    border: 2px dashed #C0C4D1;
    border-radius: 16px;
    padding: 24px;
    gap: 15px;
}
.file-input-content {
	    display: flex;
    align-items: center;
    width: 230px;
}
.file-icon {
	margin-left: 9px;
    width: 32px;
}
.file-input-content span {
	font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
    color: #2D2D3A;
}
.file-input-box {
	flex-grow: 1;
    position: relative;
    display: flex;
    direction: ltr;
}
.inputfile {
	height: fit-content !important;
    padding: 3px 0 !important;
    display: none;
}
.inputfile + label {
    padding: 4px 12px;
    border: 0.8px solid #1C3455;
    border-radius: 8px;
    background: #fff;
    min-width: 106px;
	width: fit-content;
	height: fit-content;
    text-align: center;
    font-size: 16px !important;
    line-height: 25.6px !important;
    font-weight: 500 !important;
    color: var(--title-tertiary-color) !important;
}
.inputfile + label {
	cursor: pointer;
}
.inputfile + label * {
	pointer-events: none;
}
#file-name {
	flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    color: #1C3455;
    display: flex;
    align-items: center;
    padding-left: 13px;
}
/* single page */
.single-page-top .page-top-bg {
    width: 100%;
    height: calc(100% - 133px);
    top: initial;
    bottom: 0;
	object-fit: cover;
    object-position: center;
  }
  .single-page-section {
    padding-top: 0;
	padding-bottom: 200px;
  }
  .single-page-title {
    padding: 48px 0;
    background: #F5F9FF;
  }
.single-page-title-container {
	position: relative;
}
  .single-page-title .page-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #001733;
  }
.single-event-title .event-title {
	margin-left: 350px;
}
.single-article-title .article-title {
    margin-bottom: 16px;
}
  .single-article-title .article-img-type,
	.single-event-title .event-img-type {
    display: inline-block;
    position: initial;
    box-shadow: none;
    margin-right: 16px;
  }
  .single-article-title .article-date,
	.single-event-title .event-date {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
    color: #1C1E29;
  }
  .single-page-content {
    width: 50%;
    margin: 0 auto;
    text-align: right;
    padding: 64px 0;
}
  .single-page-content p{
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
    color: var(--title-first-col);
	margin-bottom: 16px;
  }
  .single-page-content h2,
.single-page-content h3,
.single-page-content h4{
    margin: 30px 0;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #0E101A;
  }
  .single-page-content h2 b,
.single-page-content h3 b,
.single-page-content h4 b,
.single-page-content h2 strong,
.single-page-content h3 strong,
.single-page-content h4 strong
.related {
    font-weight: 700;
  }
  .single-page-content ul,
.single-page-content ol {
	display: flex;
    flex-direction: column;
    gap: 15.8px;
    padding: 0 25px 16px 0;
	list-style: none;
}
  .single-page-content ul li,
.single-page-content ol li {
	font-weight: 500;
    font-size: 16px;
    line-height: 25.6px;
    color: var(--title-first-col);
	position: relative;
}
  .single-page-content ul li::before,
.single-page-content ol li::before {
	content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: #12AB87;
    right: -18px;
    top: 14px;
}
.related {
	margin-top: 100px;
}
  .related-title {
    font-size: 40px;
    margin-bottom: 32px;
    line-height: 48px;
    font-weight: 700;
    color: var(--bg-color);
  }
.event-register-box {
	position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 309px;
    background: #FFFFFF;
    border: 1px solid #EEF1EE;
    border-radius: 24px;
    padding: 24px;
}
.event-register-date-cont {
	display: flex;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #D3DBE0;
}
.event-register-month-cont {
	    border: 1px dashed#1C3455;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
	justify-content: center;
}
.event-register-day-num {
	font-size: 22px;
    line-height: 26.4px;
    font-weight: 500;
    text-align: center;
    color: #1C3455;
	border-bottom: 1px solid #D3DBE0;
}
.event-register-month {
	font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
    color: #1C3455;
    text-align: center;
}
.event-register-day-cont {
	display: flex;
    flex-direction: column;
    gap: 8px;
	justify-content: center;
}
.event-register-day {
	font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: var(--bg-color);
}
.event-register-time {
	font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
    color: var(--bg-color);
}
.event-register-decription {
	font-size: 16px;
    line-height: 25.6px;
    font-weight: 300;
    color: var(--title-first-col);
    padding: 24px 0;
}
.register-button {
	height: 45px;
    border-radius: 4px;
    font-size: 18px;
    line-height: 28.8px;
    font-weight: 500;
	min-width: 200px;
}
/* single team page */
.single-page-top {
    min-height: 505px;
    padding-bottom: 0;
    display: flex;
    align-items: flex-end;
}
.team-page-top-bg {
	mix-blend-mode: multiply;
}
.team-top-title-container {
	display: flex;
    align-items: flex-end;
}
.team-top-doctor-img-box {
	min-width: 365px;
	width: 365px;
    position: relative;
    margin-left: 75px;
}
.team-top-doctor-overlay {
	position: absolute;
    top: 19%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 526px;
    max-width: initial;
}
.team-top-doctor-img {
	padding: 0 20px;
    position: relative;
    z-index: 2;
}
.team-page-top .team-top-doctor-title-box {
	margin-bottom: 50px;
    position: relative;
}
.team-page-top .team-top-doctor-title-box .doctor-position {
	font-size: 24px;
    line-height: 38.4px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 16px;
}
.team-page-top .team-top-doctor-title-box .doctor-title {
	font-size: 54px;
    line-height: 64.8px;
    font-weight: 700;
    color: var(--second-color);
}
.single-page-section.single-team {
	padding-top: 100px;
}
.single-team-container {
	display: flex;
	align-items: flex-start;
	gap: 39px;
	margin-bottom: 100px;
}
.team-contact-box {
	width: 65%;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #E1E1E1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.team-contact-group-title {
	display: flex;
    align-items: center;
    gap: 16px;
	margin-bottom: 24px;
}
.team-contact-title-icon {
	width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}
.team-contact-group-title h5 {
	font-size: 24px;
    line-height: 38.4px;
    font-weight: 700;
    color: var(--title-second-col);
}
.team-contact-group-content {
	display: flex;
    flex-direction: column;
    gap: 12px;
}
.team-contact-group-item {
	display: flex;
    align-items: flex-start;
    gap: 34px;
}
.team-contact-item-title {
	min-width: 148px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #8C949F;
}
.team-contact-item-title span {
	color: #313131;
}
.team-contact-item-content {
	font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #313131;
}
.no-title-contact-group .team-contact-group-item {
	padding-right: 15px;
	position: relative;
}
.no-title-contact-group .team-contact-group-item::before {
	content: "";
	position: absolute;
	right: 0;
	top: 14px;
	min-width: 3px;
	min-height: 3px;
	border-radius: 50%;
	background-color: #313131;
}
.team-info-box {
	width: 35%;
    border: 1px solid #E1E1E1;
    border-radius: 24px;
    padding: 30px 24px 24px;
}
.team-info-box-title {
	font-size: 24px;
    line-height: 38.4px;
    font-weight: 700;
    color: var(--title-second-col);
    margin-bottom: 24px;
}
.appointment-button {
	height: 62px;
    border-radius: 8px;
    padding: 16px 24px;
	margin-bottom: 16px;
}
.appointment-button .colored-button-content {
	font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    justify-content: space-between;
    width: 100%;
}
.appointment-button .colored-button-content svg {
	transform: rotate(270deg);
}
.consultation-button {
	height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 16px 24px;
    background: #457B9D;
    opacity: 70%;
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
	transition: 0.3s;
}
.consultation-button:hover {
	opacity: 100%;
	color: #fff;
}
.doctor-articles {
	padding: 0;
}
.doctor-articles .lower-title{
	font-size: 40px;
    line-height: 48px;
    color: var(--bg-color);
}
/* single job page */
.single-job {
	padding-bottom: 0;
}
.single-job-title,
.single-search-title {
	padding-top: 165px;
	padding-bottom: 32px;
}
.page-title.job-title {
	margin-bottom: 24px;
}
.single-job-title-content {
	display: flex;
    justify-content: space-between;
}
.single-job-title-content .job-apply-button {
	border-radius: 7.5px;
    min-width: 122px;
	width: fit-content;
	height: 42px;
}
.single-job-content {
    width: 70%;
}
.single-job-content h2,
.single-job-content h3,
.single-job-content h4 {
    margin: 24px 0;
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 700;
    color: #001733;
}
.single-job-content p {
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 300;
    color: var(--title-first-col);
    margin-bottom: 16px;
}
.single-job-content ul li, .single-job-content ol li {
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 300;
    color: var(--title-first-col);
    position: relative;
}
.single-job-content ul, .single-job-content ol {
    gap: 0;
}
/* booking */
.form-section{
  padding-top: 120px;
  margin-top: 133px;
  padding-bottom: 200px;
}
.form-page-container{
  display: flex;
  gap: 64px;
}
.form-title-container {
  width: 25%;
}
.form-title {
  font-size: 48px;
  line-height: 57.6px;
  font-weight: 700;
  color: #1C3455;
  margin-bottom: 24px;
}
.event-registration-title,
.appointment-title,
.consultation-title {
	color: var(--title-second-col);
}
.form-description {
  font-size: 24px;
  line-height: 38.4px;
  font-weight: 500;
  color: #1C3455;
}
.event-registration-description {
	color: #66666E;
}
.form {
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 75%;
  overflow: hidden;
}
.input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(50% - 12px);
  position: relative;
}
.input-container.full-width {
  width: 100%;
}
.form input,
.form select,
.form textarea {
  border: 1px solid #C0C4D1;
  border-radius: 12px;
  height: 50px;
  padding: 12px 16px;
  box-shadow: 1px 1px 1px 0px #00000001;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  width: 100%;
  color: #1C3455;
}
.form input::placeholder,
.form textarea::placeholder{
  color: #999999;
}
.form input:focus,
.form select{
  outline: none;
}
.form label {
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 700;
  color: #1A1B1E;
  box-shadow: 1px 1px 1px 0px #00000001;
  position: relative;
}
/* required character */
.required-label::after {
  content: "*";
  position: absolute;
  box-shadow: 1px 1px 1px 0px #00000001;
  color: #E53945;
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 700;
  margin-right: 4px;
}
.form .phone-input-box {
    position: absolute;
    top: 31px;
    right: 16px;
    display: flex;
    align-items: center;
}
.form .phone-input {
    direction: ltr;
    text-align: right;
	padding-right: 100px;
}
.phone-input-img {
  width: 32px;
}
.phone-input-box p {
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  color: #001733;
  direction: ltr;
}
select {
  appearance: none;
  background-image: url(../imgs/angle-down-solid\ \(1\).svg);
  background-repeat: no-repeat;
  background-position: left 16px top 50%;
  background-size: 16px auto;
  cursor: pointer;
}
select.gray {
  color: #12121261;
}
option {
  color: black;
}
.grayout option:first-child {
  color: #12121261;
}
.date-input {
  appearance: none;
  background-image: url(../imgs/date.png);
  background-repeat: no-repeat;
  background-position: left 16px top 50%;
  background-size: 29px auto;
  background-color: #FAFAFA;
}
.flatpickr-calendar {
  width: fit-content;
  padding: 10px;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  top: 10px;
}
.flatpickr-innerContainer {
  margin-top: 10px;
  direction: rtl;
}
.flatpickr-months {
  direction: rtl;
}
.flatpickr-current-month .numInputWrapper {
  margin-right: 5px;
}
.numInputWrapper span {
  right: initial;
  left: 0;
}
.flatpickr-day.selected,
 .flatpickr-day.startRange,
  .flatpickr-day.endRange,
   .flatpickr-day.selected.inRange,
    .flatpickr-day.startRange.inRange,
     .flatpickr-day.endRange.inRange,
      .flatpickr-day.selected:focus,
       .flatpickr-day.startRange:focus,
        .flatpickr-day.endRange:focus,
         .flatpickr-day.selected:hover,
          .flatpickr-day.startRange:hover, 
            .flatpickr-day.endRange:hover,
            .flatpickr-day.selected.prevMonthDay,
              .flatpickr-day.startRange.prevMonthDay,
              .flatpickr-day.endRange.prevMonthDay,
                .flatpickr-day.selected.nextMonthDay,
                .flatpickr-day.startRange.nextMonthDay,
                  .flatpickr-day.endRange.nextMonthDay {
  background: var(--bg-color);
  border-color: var(--bg-color);
}
/* Apply RTL styles to the Flatpickr time picker */
.rtl-calendar {
  direction: rtl;
}
/* Ensure proper alignment for RTL elements */
.rtl-calendar .flatpickr-time {
  display: flex;
  flex-direction: row-reverse;
}
.rtl-calendar .flatpickr-hour,
.rtl-calendar .flatpickr-minute {
  text-align: right; /* Align text in the input to the right */
}
.flatpickr-calendar.hasTime {
  width: 307.875px;
}
.flatpickr-time .numInputWrapper {
    padding-right: 10px;
}
.time-input {
  appearance: none;
  background-image: url(../imgs/angle-down-solid\ \(1\).svg);
  background-repeat: no-repeat;
  background-position: left 16px top 50%;
  background-size: 16px auto;
  background-color: #FAFAFA;
}
.doctors-input {
  background-color: #FAFAFA;
}
textarea {
  max-width: 100%;
}
textarea:focus {
  outline: none;
}
.form .message-input {
  height: 116px;
  max-height: 170px;
}
.form .submit-cont {
  min-width: 213px;
  width: fit-content;
  height: 64px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  border-radius: 7.38px;
  background: linear-gradient(84.98deg, #4A5D78 -12.88%, #C24F83 50.78%, #E53945 108.22%);
  opacity: 90%;
}
.form .submit-input {
  width: 100%;
  height: 100%;
  padding: 16px 40px;
  text-align: center;
  overflow: hidden;
  transition: .3s;
  cursor: pointer;
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  line-height: 38.4px;
  font-weight: 700;
  background: none;
}
.form .submit-cont:hover {
  opacity: 100%;
}
input.error,
select.error,
textarea.error {
  border-color: #df2222;
}
label.error  {
	font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    color: #df2222;
    margin-top: 0px;
}
.submit-cont {
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  transition: all 300ms ease-in;
  white-space: nowrap;
}
.submit-cont.loading {
  padding-left: 3em;
}
.submit-cont.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  width: 24px;
  height: 24px;
  margin-top: -12px; /* Centers the spinner vertically */
  margin-left: -12px; /* Centers the spinner horizontally */
  border: 3px solid transparent;
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
	z-index: 5;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* booking confirmation & failed */
.confirm-section ,
.booking-failed {
	margin-top: 150px;
	margin-bottom: 100px;
}
.confirm-section-container,
.booking-failed-container {
	display: flex;
    flex-direction: column;
    align-items: center;
}
.confirmation-icon,
.failed-icon {
	margin-bottom: 30px;
}
.failed-icon {
	width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 80px;
    background: #d93131;
}
.confirmation-message,
.failed-message {
	color: #001733;
    font-size: 36px;
    font-weight: 600;
    line-height: 57.6px;
    text-align: center;
    width: 70%;
}
.confirm-section .search-button,
.booking-failed .search-button {
	margin-top: 100px;
}
/* about */
.about-page-top .page-top-bg {
    left: -2px;
    width: 45%;
}
.about-page-top .page-top-blur {
    width: 962px;
    height: 962px;
}
.about-page-top .page-top-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: #1B3356;
    opacity: 60%;
}
section.about-main-title {
	position: relative;
    padding: 210px 0;
}
.about-main-title-icon {
	position: absolute;
    height: 110%;
    right: -13%;
    top: -5%;
    z-index: -1;
	width: initial;
}
.about-main-title-bg {
	position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
	width: initial;
}
.about-main-title-box {
	width: 70%;
}
.about-core-title {
	font-size: 86px;
    line-height: 103.2px;
    font-weight: 700;
    color: #1c3455;
    margin-bottom: 24px;
}
.about-upper-title {
	color: var(--title-second-col);
    display: block;
}
.about-title-description {
	font-size: 24px;
    line-height: 38.4px;
    color: #1C3455;
}
section.about-main-items {
	background: #F5F8EC;
}
.about-flex-container {
	display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
}
.about-item {
	background: #FDFFF7;
    padding: 40px;
    border-radius: 16px;
    width: 456px;
	text-align: center;
}
.about-item-title {
	font-size: 24px;
    line-height: 28.8px;
    color: var(--title-tertiary-color);
    font-weight: 700;
    margin-bottom: 24px;
}
.about-item-description {
	font-size: 16px;
    line-height: 25.6px;
    font-weight: 300;
    color: var(--title-tertiary-color);
}
.about-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	grid-auto-flow: row dense;
    gap: 24px;
}
.about-value-items-title {
	font-size: 46px;
	line-height: 55.2px;
	font-weight: 700;
	color: var(--bg-color);
	margin-bottom: 64px;
}
.about-value-items .about-item {
	background: #F5F8EC;
	width: initial;
}
.about-vision-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
	grid-auto-flow: row dense;
    gap: 24px;
	margin-top: 200px;
}
.about-bg-right {
	right: 0;
    left: initial;
}
.about-icon-left {
	left: -13%;
    right: initial;
	object-fit: contain;
}
.upper-main-title-box {
	margin-left: auto;
}
.lower-main-title-box {
	margin-right: auto;
}
.accreditation-title {
	font-size: 40px;
	line-height: 48px;
	font-weight: 700;
	color: var(--title-tertiary-color);
	margin-bottom: 24px;
}
.accreditation-description {
	font-size: 32px;
	line-height: 48px;
	font-weight: 400;
	color: var(--bg-color);
}
.accreditation-item {
	padding: 70px 0;
    display: flex;
    gap: 80px;
}
.accreditation-content {
	display: flex;
    flex-direction: column;
    gap: 24px;
	width: 55%;
}
.accreditation-item:nth-child(even) .accreditation-content {
	order: 2;
}
.accreditation-content-title {
    font-size: 32px;
    line-height: 38.4px;
    font-weight: 700;
    color: var(--title-tertiary-color);
}
.accreditation-content-description,
.accreditation-content p {
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    color: var(--title-first-col);
}
.accreditation-button{
	min-width: 186px;
    width: fit-content;
    height: 68px;
    border-radius: 7px;
    font-size: 20px;
    font-weight: 600;
}
.accreditation-img-cont {
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
	width: 45%;
}
.doctor-numbers .counter-num-box {
	font-size: 72px;
    line-height: 86.4px;
}
.doctor-numbers .counter-title {
	font-size: 18px;
    line-height: 28.8px;
	text-align: center;
}
/* services */
.services-page-container {
	padding-top: 64px;
}
.services-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-flow: row dense;
    gap: 48px 24px;
}
.services-item {
	border: 1px solid #D3DBE0;
    border-radius: 24px;
    overflow: hidden;
}
.sevices-item-img {
	height: 150px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.services-item-content {
	padding: 24px;
    text-align: center;
}
.services-item-title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 700;
    color: var(--title-tertiary-color);
}
.services-item-description {
    font-size: 16px;
    line-height: 25.6px;
    color: var(--title-tertiary-color);
}
/* contact page */
.contact-section {
	padding-top: 253px;
	padding-bottom: 200px;
}
.contact-title-container {
	width: 100%;
    text-align: center;
	margin-bottom: 50px;
}
.contact-title {
	color: var(--title-second-col);		
}
.contact-description {
	color: #66666E;	
}
.contact-content {
	display: flex;
    gap: 96px;	
}
.contact-items {
	padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 32px;
	width: 35%;
}
.contact-links-title {
	font-size: 24px;
    line-height: 38.4px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
}
.contact-links-menu {
	display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-links-item {
	display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 500;
    color: #66666E;	
}
.contact-links-item svg {
	min-width: 18px;
	height: 18px;
}
.contact-items .contact-link:hover {
	color: #000;
}
.contact-form-container {
	width: 65%;
}
.contact-form-title {
	font-size: 32px;
    line-height: 51.2px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
	padding-right: 24px;
}
.contact-form {
	width: 100%;
}
/* testimonials page */
.testimonials-page {
	padding-top: 180px;
	padding-bottom: 150px;
}
.testimonials-page-title-cont {
	margin-bottom: 30px;
}
.testimonials-page-title {
	font-size: 48px;
    line-height: 57.6px;
    font-weight: 700;
    color: var(--title-second-col);
	margin-bottom: 24px;
}
.testimonials-page-description {
    font-size: 24px;
    line-height: 38.4px;
    font-weight: 500;
    color: var(--title-tertiary-color);
}
.testimonials-more {
    margin: auto auto auto 0;
    width: fit-content;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--title-second-col);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    gap: 15px;
    height: 48px;
	font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
	transition: 0.3s;
}
.testimonials-more:hover {
	color: #fff;
}
.testimonials-page .testimonials-item:first-child {
	grid-column: 1/-1;
}
.testimonial-page-top {
	height: 663px;
}
.single-testimonial-title-container {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.testimonial-upper-title {
	margin-bottom: 10px;
    font-size: 24px;
    line-height: 38.4px;
    color: var(--title-second-col);
	font-weight: 700;
}
.testimonial-lower-title {
	font-size: 14px;
    line-height: 22.4px;
    color: var(--bg-color);
	font-weight: 500;
}
.single-testimonial {
	padding-bottom: 150px;
}
/* search page */
.single-search-title .search-title {
    color: var(--title-tertiary-color);
}
.search-number-text {
	font-size: 80%;
    font-weight: 500;
    color: #7d7d7d;
}
.single-search .lower-title {
	font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    color: #000;
}
.section-search-number-text {
	font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: #000;
    opacity: 50%;
}
.single-search .our-doctor {
	background-color: transparent;
}
/* 404 */
.notfound-page-title {
	font-size: 120px;
    line-height: 130px;
    font-weight: 700;
    background: linear-gradient(to right, #4A5D78, #C24F83);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.notfound-page-message {
	color: #535353;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
	text-align: center;
}
.confirm-section .notfound-page-button {
	margin-top: 70px;
}
/* responsive */
@media (max-width: 1399px) {
	.lower-header .header-menu {
    margin-right: 0;
}
	.lower-header .header-menu .header-menu-item .menu-item-link {
    font-size: 15px;
    padding: 20px 9px 20px 9px;
}
.testimonials {
	margin-bottom: 180px;	
}
/* booking */
.form-page-container {
    gap: 35px;
}
/* about */
section.about-main-title {
    padding: 180px 0;
}
.about-core-title {
    font-size: 75px;
    line-height: 95px;
}
.accreditation-title {
    margin-bottom: 10px;
}
.accreditation-description {
    font-size: 26px;
    line-height: 40px;
}
.accreditation-content-title {
    font-size: 28px;
    line-height: 38.4px;
}
.accreditation-content-description,
.accreditation-content p {
    font-size: 25px;
    line-height: 40px;
}
/* jobs page */
.jobs-wrap {
    grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}
}
@media (max-width: 1199px) {
	.lower-title {
    font-size: 42px;
	}
  .scroll-header {
    backdrop-filter: none;
    background: #fffffffa;
  }
  .scroll-header .menu-icon svg path {
    stroke: var(--bg-color);
  }
  .upper-header {
    display: none;
  }
	.lower-header {
    height: 75px;
}
	.lower-header-container {
    padding: 0;
	}
	.lower-header .logo {
    width: 75px;
    height: 76px;
}
  .lower-header .header-menu {
    position: fixed;
    left: -100%;
    transition: 0.5s;
	align-items: flex-start;
  }
	.lower-header .header-menu .header-menu-item .menu-item-link {
    font-size: 16px;
    padding: 20px 12.8px 20px 12px;
}
  .lower-header .consult-button {
    display: none;
  }
  .header-menu {
    height: 100%;
    width: 300px;
    flex-direction: column;
    background: #FFFFFFB2;
    backdrop-filter: blur(24px);
    padding: 50px 10px;
    gap: 5px;
    top: 0;
  }
  .header-menu.active {
    left: 0;
	  z-index: 100;
  }
  .lower-header .header-menu .header-menu-item .menu-item-link {
    color: var(--bg-color);
	padding: 10px 12.8px 10px 12px;
  }
  .lower-header .header-menu .header-menu-item .menu-item-link.menu-item-active,
  .lower-header .header-menu .header-menu-item .menu-item-link:hover {
    color: var(--bg-color);
    opacity: 100%;
  }
  .lower-header .header-menu.active .header-menu-item .menu-item-link svg path {
	fill: var(--bg-color);
}
.sub-menu {
	position: relative;
	top: initial;
    width: 100%;
    padding: 0 15px 0 0;
    background: transparent;
	max-height: 0;
	overflow: hidden;
	display: flex;
	transition: 0.5s ease-in;
	opacity: 1;
	visibility: visible;
}
.sub-menu.active {
	max-height: 300px;
}
.sub-menu-link {
    color: var(--bg-color);
	opacity: 80%;
	font-weight: 400;
}
.sub-menu-link:hover  {
	opacity: 100%;
	color: color: var(--bg-color);
}
.header-menu-item:hover .sub-menu {
    visibility: initial;
    opacity: initial;
}
  .close-icon {
    display: flex;
  }
  .menu-icon {
    display: flex;
	margin-left: 25px;
  }
	.landing {
		padding-top: 50px;
	}
	.landing-bg-container {
    padding-top: 100px;
    padding-left: 35px;
}
	.landing-title {
    text-shadow: -40px 0px 70px #a8dadb;
}
.book-now {
    width: 30px;
    height: 135px;
}
.book-now-content span {
    font-size: 16px;
	width: 95px;
}
.book-now-content .calender-icon {
    width: 115px;
}
.book-now-content .calender-icon svg {
	width: 16px;
	height: 16px;
}
	.counter-grid {
	flex-wrap: wrap;
    gap: 30px;
}
	.cooperation-title {
    font-size: 42px;
	line-height: 50px;
}
	.faqs-accordion {
	width: 100%;
}
.testimonials-description {
    font-size: 20px;
    line-height: 32px;
}
	.footer-book-button {
	margin-right: 38px;
	}
	.footer-book-title::after {
	display: none;
	}
	.partners {
    height: fit-content;
    padding: 40px 0 50px;
}
	.partners-container {
    flex-direction: column;
}
	.partners-title {
    width: 100%;
    text-align: center;
}
	.partners-list {
    width: 100%;
}
	.main-footer-content {
    flex-direction: column;
    gap: 60px;
}
	.footer-logo {
    margin-left: 0;
    text-align: center;
}
	.footer-lists {
    margin-right: 0;
    gap: 70px;
	justify-content: space-around;
}
/* articles page */
	.page-top-title {
    font-size: 60px;
    line-height: 72px;
}
	.page-top-description {
    font-size: 20px;
    line-height: 28px;
}
	.page-inner {
    padding-bottom: 150px;
}
	.main-pagination-list{
    gap: 17px;
}
	.main-pagination-link {
    padding: 15px 30px;
}
	.page-inner .sticky-cta-midsize {
    top: 125px;
}
/* partnerships page & doctors page */
	.partnerships-items-container .accreditation-content-title,
	.doctors-items-container .accreditation-content-title {
    font-size: 32px;
    line-height: 40px;
}
/* single page */
	.page-top {
    min-height: calc(464px - 49px);
    padding-top: 75px;
}
    .page-top .page-top-bg {
    height: calc(100% - 84px);
}
	.single-page-section {
    padding-bottom: 150px;
}
	.single-page-content{
    width: 60%;
}
	.single-page-title .page-title {
    font-size: 35px;
}
	.single-page-content h2, .single-page-content h3, .single-page-content h4{
    margin: 25px 0;
    font-size: 35px;
}
/* single team page */
.team-page-top .team-top-doctor-title-box .doctor-title {
    font-size: 43px;
    line-height: 65px;
}
.team-page-top .team-top-doctor-title-box .doctor-position {
    font-size: 23px;
    line-height: 35px;
    margin-bottom: 0px;
}
.team-top-doctor-img-box {
    min-width: 330px;
	width: 330px;
}
.team-top-doctor-overlay {
    top: 22%;
    width: 480px;
}
.team-contact-group-title h5 {
    font-size: 22px;
    line-height: 31px;
}
.team-contact-title-icon {
    width: 28px;
    height: 28px;
}
.team-contact-item-title {
    font-size: 18px;
}
.team-contact-item-content {
    font-size: 18px;
}
.team-info-box-title {
    font-size: 22px;
    margin-bottom: 20px;
}
.appointment-button .colored-button-content {
    font-size: 18px;
}
.consultation-button {
    font-size: 18px;
}
.doctor-articles .lower-title {
    font-size: 35px;
}
/* single job page */
.single-job-content {
    width: 70%;
}
.single-job {
	padding-bottom: 0;
}
.single-job-title,
	.single-search-title {
	padding-top: 107px;
}
.single-job-content h2, .single-job-content h3, .single-job-content h4 {
    margin: 24px 0;
    font-size: 24px;
}
.single-job-content p {
    font-size: 20px;
    line-height: 32px;
}
.single-job-content ul li, .single-job-content ol li {
    font-size: 20px;
    line-height: 32px;
}
.job-apply .form-title {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 15px;
}
.form-description {
    font-size: 22px;
    line-height: 29px;
}
/* booking */
.form-section {
    padding-top: 50px;
    padding-bottom: 150px;
}
.form-page-container {
    flex-direction: column;
}
.form-title-container {
    width: 100%;
    text-align: center;
}
.form {
    width: 100%;
}
/* about */
section.about-main-title {
    padding: 150px 0;
}
.about-core-title {
    font-size: 65px;
    line-height: 85px;
    margin-bottom: 15px;
}
.about-title-description {
    font-size: 22px;
    line-height: 32px;
}
.about-value-items-title {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 45px;
}
.accreditation-title {
    font-size: 32px;
    line-height: 38px;
}
.accreditation-description {
    font-size: 22px;
    line-height: 30px;
}
.accreditation-content-title {
    font-size: 25px;
    line-height: 35px;
}
.accreditation-content-description,
.accreditation-content p {
    font-size: 20px;
    line-height: 33px;
}
.accreditation-button {
    height: 58px;
}
.doctor-numbers .counter-num-box {
    font-size: 57px;
    line-height: 60px;
}
.doctor-numbers .counter-title {
    font-size: 17px;
    line-height: 27px;
}
/* contact page */
.contact-content {
    gap: 40px;
}
.contact-section {
    padding-top: 180px;
}
/* testimonials page */
.testimonials-page {
    padding-top: 125px;
}
.testimonial-page-top {
    height: 500px;
}
/* 	search page */
	.single-search .lower-title {
    font-size: 32px;
    line-height: 38px;
}
	.section-search-number-text {
    font-size: 18px;
    line-height: 24px;
}
/* footer */
	.footer-book-title {
     width: 30%;
}
}
@media (max-width: 991px) {
	section {
    padding: 70px 0;
}
	.description {
    width: 100%;
	font-size: 18px;
    line-height: 29px;
}
    .landing-bg-container {
    display: none;
}
	.landing-overlay {
	max-width: initial;
	width: initial;
}
	.landing-title {
    text-align: center;
	font-size: 50px;
	margin-bottom: 23px;
	text-shadow: none;
}
	.landing-description {
    text-align: center;
	font-size: 20px;
    line-height: 32.4px;
}
	.landing-content {
    align-items: center;
	width: 100%;
}
	.search-button-content {
    font-size: 17px;
	 padding: 14px 18px;
}
.partners {
    padding: 35px 0 40px;
}
	.partners-title {
    font-size: 22px;
}
	.services {
    margin-top: 60px;
}
.tab {
    height: 60px;
}
.tabcontent {
	padding: 30px 12px;
}
.tab-box-description {
    margin-bottom: 20px;
}
.tablinks:nth-child(1) {
    border-radius: 50px 0 0 0;
}
.tablinks:nth-child(2) {
    border-radius: 50px 50px 0 0;
}
.tablinks:nth-child(3) {
    border-radius: 0 50px 0 0;
}
	.upper-title {
    font-size: 20px;
	margin-bottom: 5px;
}
	.lower-title {
    font-size: 38px;
    line-height: 47.6px;
	margin-left: 20px;
}
.doctor-box {
    width: 330px;
}
	.doctor-img-box {
    height: 300px;
}
.numbers-icon-box {
    margin-bottom: 18px;
}
.counter-grid {
    gap: 30px 20px;
}
.counter-num-box {
    font-size: 30px;
}
.counter-title {
    font-size: 18px;
}
.counter-num-box {
    margin-bottom: 0px;
}
.articles-wrap, .events-wrap {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 15px;
}
	.cooperation {
    margin: 50px 0;
}
	.cooperation-img-container {
    display: none;
}
	.cooperation-content {
    width: 100%;
	gap: 40px;
}
	.cooperation-title {
    font-size: 38px;
	line-height: 51px;
}
	.accordion-button {
    padding: 25px 125px 25px 40px;
	min-height: 120px;
}
	.faqs-number {
    font-size: 32px;
}
	.faqs-title {
    font-size: 21px;
}
	.accordion-button::after {
    width: 35px;
    height: 35px;
    font-size: 26px;
}
	.accordion-body {
    padding: 0 125px 20px;
}
.testimonials {
    margin-bottom: 100px;
}
.testimonials-item {
	gap: 40px;
}
.testimonials-description {
    font-size: 18px;
    line-height: 30px;
}
	.footer-book-title {
    width: initial !important;
}
	.footer-book-imgs {
    position: relative;
    bottom: -35px;
    width: 40%;
    margin-right: auto;
    display: none;
}
	.footer-book-content {
    justify-content: center;
}
	.partners-list {
    gap: 30px;
}
/* articles page */
	.page-top-bg {
    width: initial;
}
	.page-top-container {
    align-items: center;
	text-align: center;
}
	.page-top-title {
    font-size: 55px;
    line-height: 62px;
    margin-bottom: 13px;
}
	.page-top-description {
    font-size: 17px;
    line-height: 25px;
    text-align: center;
}
	.page-inner {
    padding-bottom: 100px;
}
	.main-pagination-link {
    border-radius: 25px;
    padding: 12px 26px;
}
	.main-pagination-list {
    gap: 15px;
}
/* partnerships page & doctors page */
.partnerships-inner .partnerships-items-container .accreditation-item:nth-child(even) .accreditation-content,
	.doctors-inner .doctors-items-container .accreditation-item:nth-child(even) .accreditation-content {
	order: 0;
}
	.partnerships-items-container .accreditation-content-title,
	.doctors-items-container .doctors-content-title {
    font-size: 28px;
    line-height: 35px;
}
.partnerships-img-cont,
	.doctors-img-cont {
    width: 50%;
    margin: 0 auto;
}
/* jobs page */
.jobs-accreditation .accreditation-img-cont {
	outline: none;
    background: transparent;
}
.job-apply {
    margin-top: 50px;
}
/* single page */ 
	.single-page-section {
    padding-bottom: 100px;
}
	.single-page-content {
    width: 70%;
}
	.related-page-title {
    font-size: 30px;
}
	.event-register-box {
	position: relative;
    left: initial;
    top: initial;
    transform: translateY(0);
    width: 100%;
}
	.single-event-title .event-title {
    margin-left: 0;
    margin-bottom: 20px;
}
	.register-button {
	width: fit-content;
}
/* single team page  */
.single-page-section.single-team {
    padding-top: 70px;
}
.team-top-title-container {
	flex-direction: column;
    align-items: center;
}
.team-top-doctor-img-box {
    min-width: 250px;
	width: 250px;
    margin-left: 0;
}
.team-page-top .team-top-doctor-title-box {
	order: -1;
    margin-bottom: 20px;
    text-align: center;
	margin-top: 30px;
}
.team-page-top .team-top-doctor-title-box .doctor-title {
    font-size: 38px;
    line-height: 42px;
}
.team-page-top .team-top-doctor-title-box .doctor-position {
    font-size: 20px;
    line-height: 31px;
    margin-bottom: 5px;
}
.single-team-container {
	flex-direction: column;
}
.team-contact-box {
    width: 100%;
}
.team-info-box {
    width: 100%;
}
.appointment-button {
    height: 57px;
    min-width: 300px;
	width: fit-content;
}
.appointment-button .colored-button-content {	
	font-size: 16px;
}
.consultation-button {
    font-size: 16px;
    height: 57px;
    min-width: 300px;
	width: fit-content;
	font-size: 16px;
}
.team-contact-group-title h5 {
    font-size: 20px;
    line-height: 28px;
}
.team-contact-title-icon {
    width: 25px;
    height: 25px;
}
.team-info-box-title {
    font-size: 20px;
}
.doctor-articles .lower-title {
    font-size: 30px;
}
.team-top-doctor-overlay {
    width: 420px;
}
/* single job page */
.single-job-content h2, .single-job-content h3, .single-job-content h4 {
    margin: 20px 0;
    font-size: 22px;
}
.single-job-content p {
    font-size: 18px;
    line-height: 29px;
}
.single-job-title-content {
	flex-direction: column;
}
.single-job-title-content .job-apply-button {
	margin: 20px auto 0;
}
.single-job-content h2, .single-job-content h3, .single-job-content h4 {
    margin: 16px 0;
    font-size: 20px;
    line-height: 27px;
}
.single-job-content p {
    font-size: 16px;
    line-height: 25px;
}
.single-job-content ul li, .single-job-content ol li {
    font-size: 16px;
    line-height: 25px;
}
.single-page-content ul li::before,
.single-page-content ol li::before {
	top: 10px;	
}
/* booking */
.form-page-container{
    gap: 30px;
}
.form-title {
    font-size: 42px;
    line-height: 50.6px;
    margin-bottom: 10px;
}
.form-description {
    font-size: 21px;
    line-height: 35px;
    font-weight: 500;
    color: #1C3455;
}
.date-input {
    background-image: none;
}
.time-input {
    background-image: none;
}
/* booking confirmation */
.confirmation-message,
	.failed-message {
    font-size: 29px;
    line-height: 43px;
}
/* about */
section.about-main-title {
    padding: 100px 0;
}
.about-core-title {
    font-size: 50px;
    line-height: 63px;
    margin-bottom: 12px;
}
.about-title-description {
    font-size: 18px;
    line-height: 30px;
}
.about-item {
    padding: 35px;
}
.about-item-title {
    margin-bottom: 18px;
}
.about-value-items-title {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 26px;
}
.about-vision-container {
    margin-top: 100px;
}
.about-item-title {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 15px;
}
.about-item-description {
    font-size: 15px;
    line-height: 24px;
}
.accreditation-description {
    font-size: 20px;
    line-height: 29px;
}
.accreditation-item {
    flex-direction: column;
	gap: 50px;
}
.accreditation-item:nth-child(2) .accreditation-content{
		order: 0;
	}
.accreditation-item:nth-child(2) .accreditation-img-cont {
		order: 1;
	}
.accreditation-content,
.accreditation-img-cont {
    width: 100%;
}
.accreditation-img-cont {
	padding: 0 150px;
}
.doctor-numbers .counter-num-box {
    font-size: 45px;
    line-height: 50px;
}
.doctor-numbers .counter-title {
    font-size: 16px;
    line-height: 23px;
}
.accreditation-button {
    min-width: 173px;
    height: 53px;
    font-size: 18px;
}
.about-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
}
/* services */
.services-grid {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}
.services-item-content {
    padding: 20px 20px 24px;
}
.services-item-title {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 30px;
}
.services-item-description {
    font-size: 16px;
    line-height: 24px;
}
/* contact page */
.contact-links-title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
}
.contact-content {
    flex-direction: column;
    gap: 50px;
}
.contact-items {
    width: 65%;
    margin: 0 auto;
	gap: 15px
}
.contact-form-container {
    width: 100%;
}
.contact-form-title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 5px;
}
/* testimonials page */
.testimonials-page-title {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 15px;
}
.testimonials-page-description {
    font-size: 20px;
    line-height: 32px;
}
.testimonial-page-top {
    height: 450px;
}
.testimonial-upper-title {
    font-size: 22px;
    line-height: 29.4px;
}
}
@media (max-width: 767px) {
	.description {
    font-size: 18px;
    line-height: 28px;
}
  	.landing-title {
    font-size: 45px;
	margin-bottom: 15px;
}
	.landing-description {
    font-size: 20px;
    line-height: 32.4px;
}
	.search-button {
	margin-top: 23px;
    height: 55px;
}
.search-button-content {
    padding: 11px 18px;
}
	.search-button::before {
    padding: 12px 18px;
}
	.title {
    align-items: center;
}
.upper-title {
    text-align: center;
}
	.lower-title-box {
    flex-direction: column;
}
	.lower-title {
    margin-left: 0;
	text-align: center;
}
	.show-more-button {
    margin-right: initial;
    margin-top: 20px;
}
/* 	.book-now {
    width: 32px;
    height: 136px;
    top: -34px;
} */
	.tab button {
    font-size: 14px;
}
	.tab-box-title .box-title {
    font-size: 20px;
	line-height: 28px;
}
	.tab-box-description {
    margin-bottom: 19px;
}
	.tablinks:nth-child(1) {
    border-radius: 50px 0 0 0;
}
	.tablinks:nth-child(2) {
    border-radius: 50px 50px 0 0;
}
	.tablinks:nth-child(3) {
    border-radius: 0 50px 0 0;
}
	.tabcontent {
    padding: 20px 12px;
}
	.show-more-content svg {
		width: 16px;
		height: 17px;
}
	.numbers-bg {
    border-radius: 0;
	}
	.cooperation-content {
    gap: 20px;
}
	.cooperation-title {
    font-size: 40px;
    line-height: 53.6px;
}
	.cooperation-list {
    gap: 5px;
}
	.numbers-icon-box {
    margin-bottom: 16.75px;
}
	.counter-num-box {
    font-size: 29px;
    margin-bottom: 2px;
}
	.counter-title {
    font-size: 17px;
    line-height: 25px;
}
	.faqs-title {
    font-size: 18px;
}
	.faqs-number {
    font-size: 25px;
	right: 25px;
}
	.accordion-button {
    padding: 25px 75px 25px 25px;
    min-height: 100px;
	gap: 25px;
}
	.accordion-body {
    padding: 0 75px 20px;
	font-size: 14px;
    line-height: 20px;
}
.testimonials-title {
    margin-bottom: 35px;
}
.testimonials-description {
    font-size: 14px;
    line-height: 23px;
}
.testimonials-item {
    gap: 25px;
	padding: 25px;
}
.author-img {
    width: 55px;
    height: 55px;
	}
.author-details {
    gap: 4px;
}
.author-title {
    font-size: 14px;
    line-height: 20px;
}
.author-subtitle {
    font-size: 14px;
    line-height: 20px;
	}
.partners {
    padding: 30px 0 35px;
}
	.partners-list {
        padding: 0 20px;
}
	.partners-item {
    width: 130px;
}
	.partners-container {
    gap: 20px;
}
.footer-lists {
    gap: 45px;
    flex-direction: column;
}
.footer-list {
    max-width: initial;
}
.footer-links-list {
    height: 125px;
	gap: 16px 48px;
}
/* articles page */
	.page-top {
    min-height: calc(370px - 49px);
}
.page-top-container {
    margin-top: 35px;
}
	.main-pagination-link {
    padding: 8px 18px;
		border-radius: 20px;
}
	.page-top-description {
    font-size: 16px;
    line-height: 25px;
    width: 100%;
}
	.page-top-title {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 10px;
}
/* partnerships page & doctors page*/
	.partnerships-items-container .accreditation-content-title,
	.doctors-items-container .accreditation-content-title {
    font-size: 24px;
    line-height: 28px;
}
.partnerships-img-cont,
	.doctors-img-cont {
    width: 60%;
}
/* jobs page */
	.jobs-title {
    font-size: 20px;
    line-height: 31px;
}
.jobs-content {
    padding: 22px;
}
.jobs-tag {
    padding: 5px 12px;
    font-size: 12px;
}
.jobs-item {
    gap: 18px;
}
.jobs-more {
    padding: 0px 16px;
}
.file-input-container {
    flex-direction: column;
}
/* single page */
	.single-page-content
	{
    width: 80%;
}
	.single-page-title .page-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px;
}
	.single-page-content h2, .single-page-content h3, .single-page-content h4{
    margin: 20px 0;
    font-size: 30px;
    line-height: 48px;
}
/* single team page */
.team-page-top {
	min-height: calc(464px - 49px);
}
.team-page-top .team-top-doctor-title-box .doctor-title {
    font-size: 30px;
    line-height: 35px;
}
.team-page-top .team-top-doctor-title-box .doctor-position {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
}
.team-contact-group-content {
    gap: 5px;
}
.appointment-button {
    height: 55px;
    min-width: 260px;
	width: fit-content;
}
.consultation-button {
    height: 55px;
    min-width: 260px;
	width: fit-content;
}
.team-contact-item-title {
	min-width: 125px;
    font-size: 16px;
}
.team-contact-item-content {
    font-size: 16px;
}
/* single job page */
.single-job-content h2, .single-job-content h3, .single-job-content h4 {
    margin: 16px 0;
    font-size: 20px;
    line-height: 27px;
}
.job-apply .form-title {
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 10px;
}
.form-description {
    font-size: 18px;
    line-height: 23px;
}
/* booking */
	.input-container {
    width: 100%;
}
/* about */
	.about-main-title-bg {
    display: none;
}
.about-main-title-box {
    width: 100%;
}
.about-core-title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 10px;
}
.about-title-description {
    font-size: 16px;
    line-height: 25px;
}
.accreditation-title {
    font-size: 25px;
    line-height: 30px;
}
.accreditation-description {
    font-size: 16px;
    line-height: 25px;
}
.accreditation-content {
    gap: 15px;
}
.accreditation-content-title {
    font-size: 22px;
    line-height: 30px;
}
.accreditation-content-description,
	.accreditation-content p {
    font-size: 16px;
    line-height: 25px;
}
.accreditation-button {
    min-width: 157px;
    height: 47px;
    font-size: 16px;
}
.accreditation-img-cont {
    padding: 0 100px;
}
.accreditation-item {
    padding: 40px 0;
}
	.doctor-numbers .counter-grid {
    gap: 35px;
}
/* services */
.sevices-item-img {
    height: 120px;
}
.services-item-title {
    font-size: 20px;
}
.services-item-description {
    font-size: 15px;
    line-height: 22px;
}
.services-item-content {
    padding: 16px 16px 20px;
}
/* contact page */
.contact-section {
    padding-top: 150px;
	padding-bottom: 150px;
}
.contact-items {
    width: 100%;
}
.contact-links-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
}
.contact-links-menu {
    gap: 8px;
}
.contact-form-title {
    font-size: 24px;
    line-height: 26px;
}
/* testimonials page */
.testimonials-page-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 10px;
}
.testimonials-page-description {
    font-size: 16px;
    line-height: 27px;
}
.testimonials-more {
    min-width: 160px;
	height: 40px;
    font-size: 14px;
}
.testimonial-page-top {
    height: 400px;
}
.single-testimonial-title-container {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-flow: row dense;
}
/* 	search page */
	.single-search-title .search-title {
		margin-bottom: 0;
	}
/* 	404 */
	.notfound-page-title {
    font-size: 95px;
    line-height: 115px;
}
	.notfound-page-message {
    font-size: 25px;
    line-height: 30px;
}
	.confirm-section .notfound-page-button {
    margin-top: 50px;
}
}
@media (max-width: 575px) {
	section {
    padding: 50px 0;
    }
  	.landing-title {
    font-size: 33px;
    line-height: 50px;
	}
	.landing-description {
    font-size: 16px;
    line-height: 26.4px;
	}
	.search-button {
		margin-top: 23px;
	}
	.lower-title {
    font-size: 25px;
    line-height: 35px;
}
	.upper-title {
    font-size: 15px;
    line-height: 22px;
}
.search-button {
    min-width: 135px;
    height: 40px;
}
.search-button-content {
    padding: 9px 18px;
}
	.show-more-button {
    margin-top: 10px;
	min-width: 130px;
    height: 35px;
    border-radius: 7px;
	}
	
	.show-more-content {
		font-size: 13px;
		gap: 7px;
	}
	.landing-content .search-button {
		    min-width: 165px;
    height: 47px;
	} 
	.landing-content .search-button-content {
		padding: 7px 18px;
		font-size: 15px;
	}
.description {
    font-size: 15px;
    line-height: 23px;
}
.tab {
    height: 55px;
}
.tab button {
    font-size: 13px;
}
.tablinks:nth-child(1) {
    border-radius: 30px 0 0 0;
}
.tablinks:nth-child(2) {
    border-radius: 30px 30px 0 0;
}
.tablinks:nth-child(3) {
    border-radius: 0 30px 0 0;
}
.box-title-img {
    width: 50px;
    height: 50px;
}
.tab-box-title .box-title {
    font-size: 14px;
	line-height: 20px;
}
.tab-box {
    padding: 15px;
}
	.tab-box-title {
    margin-bottom: 10px;
	}
	.tab-box p {
		font-size: 14px;
		line-height: 21px;
	}
.partners {
    padding: 25px 0 30px;
}
.partners-container {
    gap: 10px;
}
.partners-title {
    font-size: 18px;
}
.doctor-img-box {
    height: 200px;
	width: 230px;
}
.doctor-title {
    font-size: 20px;
    line-height: 30px;
}
.doctor-box {
    gap: 20px;
	}
.doctor-position {
    font-size: 16px;
    line-height: 24px;
	}
.our-doctor-wrap {
    gap: 10px;
}
.doctor-show-more {
    font-size: 17px;
    margin-top: 9px;
	}
.counter-grid {
    gap: 30px 0px;
}
.numbers-title {
    margin-bottom: 35px;
}
.counter-num-box {
    font-size: 22px;
    margin-bottom: 0px;
	line-height: 32px;
}
.counter-title {
    font-size: 14px;
    line-height: 19px;
}
.numbers-icon-box {
    width: 70px;
    height: 70px;
	margin-bottom: 5px;
	}
.articles-img-container, .events-img-container {
    height: 150px;
    margin-bottom: 15px;
	}
.articles-box-content, .events-box-content {
    gap: 3px;
}
.article-title, .event-title {
    font-size: 18px;
    line-height: 25px;
}
	.articles-box-content p,
	.events-box-content p {
		font-size: 14px;
	}
	.cooperation-title {
        font-size: 22px;
    line-height: 30px;
    }
.cooperation-item {
    font-size: 15px;
    line-height: 21px;
}
.cooperation-item svg {
	margin-top: 2px;
	min-width: 17px;
	width: 17px;
	height: 17px;
}
	.cooperation-content {
    padding: 50px 20px;
    gap: 20px;
}
.cooperation .show-more-button {
    min-width: 150px;
    height: 45px;
}
.cooperation .show-more-button{
		margin-top: 5px;
	}
	.faqs-number {
    font-size: 20px;
    right: 15px;
}
	.faqs-title {
        font-size: 14px;
    line-height: 25px;
    text-align: right;
}
.accordion-button {
    padding: 15px 55px 15px 25px;
	min-height: 90px;
}
.accordion-button::after {
    width: 30px;
    height: 30px;
    font-size: 24px;
}
.accordion-body {
    padding: 0 55px 20px;
}
.testimonials {
    margin-bottom: 70px;
}
.footer-book-button {
    min-width: calc(85px + 5px);
	width: calc(85px + 5px);
    height: calc(85px + 5px);
	margin-right: 0;
    margin-top: 15px;
	font-size: 15px;
	}
	.footer-book-content {
    flex-direction: column;
}
	.partners-item {
	width: 100px;
}
	.tab-wrap {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
	.articles-wrap, .events-wrap {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
	.book-now {
		display: none;
	}
	.footer-logo-img {
    width: 180px;
}
	.main-footer {
    padding: 50px 0;
}
.main-footer-content {
    gap: 35px;
}
.footer-lists {
    gap: 25px;
}
	.footer-list-title {
    font-size: 14px;
}
	.footer-list {
    gap: 8px;
}
	.footer-link, .footer-contact {
    font-size: 13px;
}
.footer-links-list {
    gap: 8px 48px;
}
.book-button-content {
    width: 85px;
    height: 85px;
	}
/* articles page */
	.page-top {
    min-height: calc(360px - 49px);
}
	.page-top-container {
    margin-top: 40px;
}
.page-top-title {
    font-size: 40px;
    line-height: 46px;
}
.page-top-description {
    font-size: 14px;
    line-height: 22px;
}
.main-pagination-list {
    gap: 10px;
}
.main-pagination-link {
    font-size: 13px;
    padding: 6px 11px;
}
	.articles-subtype .swiper-slide {
    padding: 8px 11px;
    font-size: 13px;
}
.articles-subtype .swiper-slide:first-child {
    margin-right: 50px;
}
.articles-subtype .swiper-button-next {
    left: 0;
}
.articles-subtype .swiper-button-prev {
    right: 0;
}
	.articles-subtype::before {
    width: 50px;
}
	.articles-subtype::after {
    width: 50px;
}
.page-inner {
    padding-bottom: 70px;
}
.jobs-inner {
	padding-bottom: 0px;
}
.services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
/* partnerships page & doctors page */
.partnerships-items-container .accreditation-item,
	.doctors-items-container .accreditation-item {
    padding: 25px 0 25px;
	gap: 35px;
}
	.partnerships-items-container .accreditation-content-title,
	.doctors-items-container .accreditation-content-title {
    font-size: 20px;
    line-height: 25px;
}
.partnerships-img-cont,
	.doctors-img-cont {
    width: 70%;
}
/* jobs page */
.jobs-container {
    padding-bottom: 50px;
}
.jobs-wrap {
    gap: 20px;
}
.jobs-content {
    padding: 18px;
}
.jobs-tag {
    padding: 4px 10px;
}
.jobs-more {
    font-size: 16px;
    line-height: 20px;
}
.jobs-item {
    padding: 15px 15px 20px;
}
.file-icon {
    width: 25px;
}
.inputfile + label {
	font-size: 14px !important;
}
/* single page */
	.single-page-title {
    padding: 35px 0;
}
	.single-page-title .page-title {
    font-size: 25px;
    line-height: 36px;
}
	.single-page-content h2, .single-page-content h3, .single-page-content h4 {
    margin: 12px 0 6px 0;
    font-size: 22px;
    line-height: 34px;
}
	.single-page-content p {
    font-size: 15px;
    line-height: 24px;
}
	.related-title {
    font-size: 24px;
}
	.event-register-box {
	padding: 18px;
	}
	.event-register-date-cont {
    padding-bottom: 18px;
}
	.event-register-decription {
    padding: 18px 0;
}
	.register-button {
    margin: 0 auto;
}
/* single team page */
.team-page-top {
    min-height: calc(440px - 49px);
}
.team-page-top .team-top-doctor-title-box .doctor-title {
    font-size: 25px;
    line-height: 40px;
}
.team-page-top .team-top-doctor-title-box {
    margin-bottom: 15px;
}
.team-top-doctor-img-box {
    min-width: 225px;
	width: 225px;
}
.team-top-doctor-overlay {
    top: 22%;
    width: 330px;
}
.single-page-section {
	padding-bottom: 70px;	
}
.single-page-section.single-team {
    padding-top: 50px;
}
.team-contact-box {
    padding: 25px;
	gap: 30px;
}
.team-contact-group-title h5 {
    font-size: 18px;
    line-height: 24px;
}
.team-contact-title-icon {
    width: 20px;
    height: 20px;
}
.team-contact-group-title {
    gap: 10px;
	margin-bottom: 15px;
}
.team-contact-group-content {
    gap: 0;
}
.team-contact-item-title {
    font-size: 14px;
	line-height: 25px;
	min-width: 90px;
}
.team-contact-item-content {
    font-size: 14px;
	line-height: 25px;
}
.team-contact-group-item {
    gap: 10px;
}
.single-team-container {
    gap: 20px;
	margin-bottom: 50px;
}
.team-info-box {
    padding: 25px;
}
.team-info-box-title {
    font-size: 18px;
    line-height: 24px;
}
.appointment-button {
    height: 48px;
    min-width: 225px;
	width: fit-content;
    margin-bottom: 12px;
}
.appointment-button .colored-button-content {
    font-size: 14px;
}
.consultation-button {
    height: 48px;
    min-width: 225px;
	width: fit-content;
    font-size: 14px;
}
.doctor-articles .lower-title {
    font-size: 24px;
    line-height: 35px;
}
.no-title-contact-group .team-contact-group-item::before {
		top: 11px;
}
/* single job page */
.single-job-title,
	.single-search-title {
    padding-top: 107px;
}
.single-job-title-content .job-apply-button {
    height: 35px;
    font-size: 14px;
}
.single-job-content {
    padding: 30px 0;
}
.single-job-content h2, .single-job-content h3, .single-job-content h4 {
    margin: 12px 0;
    font-size: 18px;
    line-height: 23px;
}
.single-job-content p {
    font-size: 14px;
    line-height: 22px;
}
.single-job-content ul li, .single-job-content ol li {
    font-size: 14px;
    line-height: 22px;
}
.job-apply.form-section {
    padding-top: 30px;
    margin-top: 0;
}
.job-apply .form-title {
    font-size: 25px;
    line-height: 30px;
}
.job-apply .form-description {
    font-size: 14px;
    line-height: 20px;
}
/* booking */
.form-section {
    padding-top: 20px;
	padding-bottom: 100px;
}
.form-title {
    font-size: 33px;
    line-height: 41.6px;
    margin-bottom: 5px;
}
.form-description {
    font-size: 16px;
}
.form-page-container {
    gap: 15px;
}
.form {
    gap: 15px;
}
.form .submit-cont {
  margin-top: 30px;
}
/* booking confirmation */
	.confirm-section,
	.boking-failed{
    margin-top: 100px;
}
.confirmation-icon,
.failed-icon {
    margin-bottom: 30px;
}
.failed-icon {
    width: 100px;
    height: 100px;
}
.confirmation-message,
.failed-message {
    font-size: 23px;
    line-height: 33px;
}

.confirm-section .search-button,
	.booking-failed .search-button {
    margin-top: 60px;
}
	.confirm-section .search-button-content,
	.booking-failed .search-button-content {
		padding: 4px 18px;
		font-size: 12px;
	}
/* about */
.about-core-title {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
}
.about-item {
    padding: 30px;
}
.about-item-title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 12px;
}
.about-value-items-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
}
.about-vision-container {
	    margin-top: 70px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.accreditation-title {
    font-size: 22px;
    line-height: 27px;
}
.accreditation-description {
    font-size: 15px;
    line-height: 23px;
}
.accreditation-item {
    padding: 25px 0 50px
}
.accreditation-img-cont {
    padding: 0 60px;
	}
.doctor-numbers .counter-num-box {
    font-size: 30px;
    line-height: 45px;
}
.accreditation-button {
    min-width: 144px;
    height: 40px;
    font-size: 14px;
}
.about-main-title-icon {
    right: -20%;
	opacity: 60%;
}
.about-icon-left {
    left: -20%;
	right: initial;
	opacity: 60%;
}
.doctor-numbers .numbers-bg-one {
    background-color: #2f447a25;
}
.doctor-numbers .numbers-bg-two {
    background-color: #e43c4a25;
}
.doctor-numbers .numbers-bg-box {
    filter: blur(50px);
}
/* contact page */
.contact-section {
	padding-bottom: 100px;
}
/* testimonials page */
.testimonials-page {
    padding-top: 125px;
	padding-bottom: 100px;
}
.single-testimonial {
    padding-bottom: 100px;
}
.testimonials-content {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}
.testimonials-page-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 5px;
}
.testimonials-page-description {
    font-size: 14px;
    line-height: 23px;
}
.testimonials-page-title-cont {
    margin-bottom: 20px;
}
.testimonials-more {
    min-width: 140px;
    padding: 10px;
    gap: 10px;
}
.testimonial-page-top {
    height: 350px;
}
.testimonial-upper-title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}
.testimonials-author {
    gap: 12px;
    flex-direction: column;
    align-items: center;
}
.author-details {
    align-items: center;
}
.testimonials-more {
    margin: 0 auto;
}
/* 	search page */
	.single-search .lower-title {
    font-size: 26px;
    line-height: 30px;
}
	.section-search-number-text {
    font-size: 16px;
    line-height: 20px;
}
	.serach-bar {
    padding: 20px;
	flex-wrap: wrap;
	border-radius: 25px;
	gap: 12px 8px;
}
	.search-box {
    width: 100%;
}
	#search-input {
    font-size: 18px;
    line-height: 24px;
	width: 100%;
}
	.dropdown-title {
    font-size: 14px;
    line-height: 22px;
	margin-right: auto;
}
	.dropdown-text {
    font-size: 14px;
    line-height: 22px;
}
	/* 	404 */
	.notfound-page-title {
    font-size: 80px;
    line-height: 90px;
}
	.notfound-page-message {
    font-size: 20px;
    line-height: 26px;
}
	.confirm-section .notfound-page-button {
    margin-top: 45px;
}
.landing-overlay {
	width: 575px;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
}
/* img optimizaion */
picture {
	display: inline-block;
}
picture img {
	border-radius: inherit;
	object-fit: inherit;
    object-position: inherit;
	width: 100%;
	max-width: inherit;
	height: 100%;
	max-height: inherit;
}
.landing-bg img {
	overflow: inherit;
}