@font-face {
  font-family: "Almarai";
  src: url("../fonts/Almarai/Almarai-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Almarai";
  src: url("../fonts/Almarai/Almarai-Regular.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Almarai";
  src: url("../fonts/Almarai/Almarai-ExtraBold.ttf");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "Almarai", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: var(--light-color);
}
*::selection {
  background-color: var(--primary-color);
  color: var(--light-color);
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: var(--light-color);
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 33px;
  height: 3px;
  background-color: rgba(99, 188, 184, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  transform: translateY(0px);
  width: 50px;
  height: 50px;
  border: 0px;
  border: 1px solid #B5B9B9;
  background-color: transparent;
  bottom: 0;
  border-radius: 50%;
  overflow: hidden;
}
.swiper-button-next::before, .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.3s linear;
}
.swiper-button-next::after, .swiper-button-prev::after {
  position: absolute;
  width: 24px;
  height: 25px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  z-index: 9;
  background: url("../images/icons/right_arrow_slide.svg") center/contain no-repeat;
  color: transparent;
  filter: var(--gray-filter);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  box-shadow: 0px 0px 10px rgba(32, 32, 32, 0.1);
}
.swiper-button-next:hover::before, .swiper-button-prev:hover::before {
  height: 100%;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
  filter: var(--light-filter);
}

.swiper-button-prev {
  right: calc(50% - 55px) !important;
  left: unset !important;
}
.swiper-button-prev::after {
  transform: scaleX(1);
}

.swiper-button-next {
  right: unset !important;
  left: calc(50% - 55px) !important;
}
.swiper-button-next::after {
  transform: scaleX(-1) !important;
}

html[dir=ltr] .swiper-button-prev {
  left: calc(50% - 55px) !important;
  right: unset !important;
}
html[dir=ltr] .swiper-button-prev::after {
  transform: scaleX(-1);
}
html[dir=ltr] .swiper-button-next {
  left: unset !important;
  right: calc(50% - 55px) !important;
}
html[dir=ltr] .swiper-button-next::after {
  transform: scaleX(1) !important;
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(0px, 10px);
  }
  40% {
    transform: translate(0px, -10px);
  }
  60% {
    transform: translate(0px, 10px);
  }
  80% {
    transform: translate(0px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes vibrateX {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(10px, 0px);
  }
  40% {
    transform: translate(-10px, 0px);
  }
  60% {
    transform: translate(10px, 0px);
  }
  80% {
    transform: translate(-10px, 0px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
@keyframes drawDiagonal {
  0% {
    -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
            clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 100%, 50% 50%, 50% 50%, 0 100%);
            clip-path: polygon(0 100%, 50% 50%, 50% 50%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes drawFromLeft {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes drawFromRight {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes drawFromBottom {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes drawStroke {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes slideUsers {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
  8% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  42% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  50% {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }
}
:root {
  --primary-color: #007074;
  --secondary-color: #141414;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --semi-dark: #202020;
  --primary-filter: invert(97%) sepia(23%) saturate(7500%) hue-rotate(154deg)
    brightness(78%) contrast(83%);
  --secondary-filter: invert(0%) sepia(5%) saturate(947%) hue-rotate(346deg)
    brightness(97%) contrast(85%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg)
    brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg)
    brightness(87%) contrast(97%);
  --red-filter: invert(41%) sepia(52%) saturate(6372%) hue-rotate(336deg)
    brightness(100%) contrast(99%);
}

.blog-box {
  width: 100%;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
.blog-box .image-contain {
  width: 100%;
  height: 256px;
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.blog-box .image-contain img,
.blog-box .image-contain iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-box .image-contain .play-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  z-index: 9;
}
.blog-box .image-contain .play-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-box .image-contain .badge-shape {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  background-color: var(--light-color);
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
}
html[dir=ltr] .blog-box .image-contain .badge-shape {
  left: 12px;
  right: unset;
}
.blog-box .contain {
  width: 100%;
  padding: 12px 16px;
}
.blog-box .contain .date {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary-color);
}
.blog-box .contain h2 {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: 900;
  margin: 20px 0px;
}
@media (max-width: 992px) {
  .blog-box .contain h2 {
    font-size: 18px;
    margin: 15px 0px;
  }
}
.blog-box:hover {
  transform: translateY(-10px);
}

.custom-btn {
  width: 130px;
  height: 48px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  z-index: 9;
  border: 1px solid;
  transition: all 0.3s linear;
  overflow: hidden;
  gap: 10px;
}
.custom-btn span {
  font-size: 16px;
  font-weight: 700;
}
.custom-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
html[dir=ltr] .custom-btn img {
  transform: scaleX(-1);
}
.custom-btn.primary-btn {
  background-color: var(--primary-color);
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
  border-color: var(--primary-color) !important;
}
.custom-btn.primary-btn span {
  color: var(--light-color);
}
.custom-btn.primary-btn img {
  filter: var(--light-filter);
}
.custom-btn.primary-btn:hover {
  transform: scale(0.95);
  background-color: var(--light-color);
}
.custom-btn.primary-btn:hover span {
  color: var(--primary-color);
}
.custom-btn.primary-btn:hover img {
  filter: var(--primary-filter);
}
.custom-btn.primary-border {
  background-color: var(--light-color);
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
  border-color: var(--primary-color) !important;
}
.custom-btn.primary-border span {
  color: var(--primary-color);
}
.custom-btn.primary-border img {
  filter: var(--primary-filter);
}
.custom-btn.primary-border:hover {
  transform: scale(0.95);
  background-color: var(--primary-color);
}
.custom-btn.primary-border:hover span {
  color: var(--light-color);
}
.custom-btn.primary-border:hover img {
  filter: var(--light-filter);
}

.social-media {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 12px;
}
.social-media a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .social-media a {
    width: 30px;
    height: 30px;
  }
}
.social-media a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.social-media a:hover {
  transform: scale(0.95);
}

.general-section {
  width: 100%;
  padding: 80px 0px 60px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .general-section {
    padding: 40px 0px;
  }
}
.general-section::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.heading {
  width: 70%;
  text-align: center;
  margin: 0px auto 50px;
}
@media (max-width: 992px) {
  .heading {
    width: 100%;
    margin: 0px auto 30px;
  }
}
.heading .title {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .heading .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.heading .desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .heading .desc {
    font-size: 16px;
  }
}

.download-apps {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 16px;
}
.download-apps .app {
  width: 200px;
  height: 57px;
  background-color: #007074;
  border-radius: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .download-apps .app {
    width: calc(50% - 8px);
  }
}
.download-apps .app img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.doctor-card {
  width: 100%;
  padding: 16px;
  border: 1px solid #cae2e3;
  background-color: #f9fbfb;
  border-radius: 28px;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
.doctor-card .user-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 12px;
  align-items: flex-start;
  align-content: flex-start;
}
.doctor-card .user-data .image-contain {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 9;
}
.doctor-card .user-data .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.doctor-card .user-data .image-contain .available {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
  border: 4px solid var(--light-color);
  background-color: #b2b3b3;
}
.doctor-card .user-data .image-contain .available.yes {
  background-color: #34c759;
}
.doctor-card .user-data .data h3 {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  margin: 0px;
}
@media (max-width: 992px) {
  .doctor-card .user-data .data h3 {
    font-size: 14px;
  }
}
.doctor-card .user-data .data .specialty {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin: 12px 0px;
}
@media (max-width: 992px) {
  .doctor-card .user-data .data .specialty {
    font-size: 12px;
    margin: 10px 0px;
  }
}
.doctor-card .user-data .data .flex-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.doctor-card .user-data .data .flex-data .type {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 50px;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 700;
}
.doctor-card .user-data .data .flex-data .type.Diamond {
  background: radial-gradient(circle at 50% 50%, #83243a 0%, #141414 100%);
}
.doctor-card .user-data .data .flex-data .type.Pro {
  background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
}
@media (max-width: 992px) {
  .doctor-card .user-data .data .flex-data .type.Pro {
    background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
  }
}
.doctor-card .user-data .data .flex-data .type.Premium {
  background-color: #141414;
  color: #ffcc00;
}
.doctor-card .user-data .data .flex-data .rate {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  background-color: #f0f2f2;
  border-radius: 50px;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
}
.doctor-card .user-data .data .flex-data .rate img {
  width: 10px;
  height: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor-card .user-data .data .flex-data .rate span {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}
.doctor-card .user-data .data .flex-data .rate span.number {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-color);
}
.doctor-card .user-data .add-to-fav {
  width: 32px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-inline-start: auto;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #f0f2f2;
  background-color: #fdffff;
}
.doctor-card .user-data .add-to-fav img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--gray-filter);
}
.doctor-card .user-data .add-to-fav.active {
  background-color: #f8eaeb;
  border-color: #f8eaeb;
}
.doctor-card .user-data .add-to-fav.active img {
  filter: var(--red-filter);
}
.doctor-card .categories {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.doctor-card .categories .category {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 50px;
  background-color: #e4f1f2;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
}
.doctor-card .list {
  width: 100%;
  padding: 10px 0px 0px;
  margin: 12px 0px;
  border-top: 1px solid #f0f2f2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.doctor-card .list li {
  text-align: center;
  border-inline-end: 1px solid #f0f2f2;
  padding-inline-end: 10px;
}
.doctor-card .list li:last-child {
  border-inline-end: none;
  padding-inline-end: 0px;
}
.doctor-card .list li .name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-color);
  margin-bottom: 10px;
}
.doctor-card .list li .data {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}
.doctor-card .button-contain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.doctor-card .button-contain .custom-btn {
  width: 100%;
}
.doctor-card:hover {
  transform: translateY(-10px);
}

.navbar {
  width: 100%;
  padding: 20px 0px;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--light-color);
  z-index: 999;
  transition: all 0.3s linear;
}
.navbar.scrolled {
  padding: 14px 0px;
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
}
.navbar.scrolled .navbar-nav {
  top: 72px !important;
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .brand-name img {
  width: 130px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  gap: 44px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 82px;
    z-index: 99;
    background-color: var(--light-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    padding: 20px 15px;
    transition: all 0.3s linear;
  }
  html[dir=ltr] .navbar .contain .navbar-nav {
    left: -100%;
  }
  html[dir=rtl] .navbar .contain .navbar-nav {
    right: -100%;
  }
  html[dir=ltr] .navbar .contain .navbar-nav.active-nav {
    left: 0;
  }
  html[dir=rtl] .navbar .contain .navbar-nav.active-nav {
    right: 0;
  }
}
.navbar .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item {
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0, 112, 116, 0.2);
  }
  .navbar .contain .navbar-nav .nav-item:last-child {
    padding-bottom: 0px;
    border-bottom: none;
  }
  .navbar .contain .navbar-nav .nav-item:first-child {
    padding-top: 0px;
  }
}
@media (min-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.mobile-only {
    display: none;
  }
}
.navbar .contain .navbar-nav .nav-item.mobile-only .sub-title {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  display: block;
}
.navbar .contain .navbar-nav .nav-item.mobile-only .download-apps {
  margin-top: 13px;
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
  padding: 0px;
}
.navbar .contain .navbar-nav .nav-item .nav-link::after, .navbar .contain .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  bottom: -5px;
  transition: all 0.3s linear;
  z-index: -1;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item .nav-link::after, .navbar .contain .navbar-nav .nav-item .nav-link::before {
    display: none;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link::after {
  left: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link::before {
  right: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover, .navbar .contain .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover:after, .navbar .contain .navbar-nav .nav-item .nav-link:hover:before, .navbar .contain .navbar-nav .nav-item .nav-link.active:after, .navbar .contain .navbar-nav .nav-item .nav-link.active:before {
  width: 100%;
}
.navbar .contain .button-contain {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 992px) {
  .navbar .contain .button-contain.mobile-hidden {
    display: none;
  }
}
.navbar .contain .button-contain .lang {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
}
.navbar .contain .button-contain .lang span {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  transition: all 0.3s linear;
  color: var(--gray-color);
  font-size: 12px;
  font-weight: 700;
}
.navbar .contain .button-contain .lang span.active {
  background-color: var(--primary-color);
  color: var(--light-color);
}
@media (max-width: 992px) {
  .navbar .contain .button-contain .custom-btn {
    display: none;
  }
}
.navbar .contain .hamburger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 992px) {
  .navbar .contain .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.navbar .contain .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform-origin: center;
}
.navbar .contain .hamburger span:nth-child(1) {
  width: 100%;
}
.navbar .contain .hamburger span:nth-child(2) {
  width: 70%;
  transition: all 0.3s ease;
}
.navbar .contain .hamburger span:nth-child(3) {
  width: 50%;
}
.navbar .contain .hamburger:hover span {
  width: 100%;
}
.navbar .contain .hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.navbar .contain .hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.navbar .contain .hamburger.active span:nth-child(3) {
  width: 100%;
  transform: translateY(-8.5px) rotate(-45deg);
}

header {
  width: 100%;
  padding: 188px 0px 72px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 992px) {
  header {
    padding: 140px 0px 20px;
  }
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  background: url("../images/intro/intro-graph.svg") bottom left/contain no-repeat;
  bottom: 116px;
  z-index: -1;
  -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
          clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  animation: drawDiagonal 2s ease-out 0.3s forwards;
}
@media (max-width: 992px) {
  header::after {
    height: 30%;
    top: 0;
    bottom: unset;
    opacity: 0.6;
  }
}
@media (min-width: 1730px) {
  header::after {
    height: 85%;
    bottom: 0px;
  }
}
header .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
header .contain .badge-shape {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 20px;
  background-color: #e4f1f2;
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  header .contain .badge-shape {
    width: 100%;
    padding: 10px 15px;
    font-size: 12px;
    margin-bottom: 20px;
  }
}
header .contain h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--semi-dark);
  margin: 0px;
}
@media (max-width: 992px) {
  header .contain h1 {
    font-size: 26px;
  }
}
header .contain h1 span {
  color: var(--primary-color);
}
header .contain .desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px;
  margin: 48px 0px;
}
@media (max-width: 992px) {
  header .contain .desc {
    font-size: 16px;
    margin: 32px 0px;
  }
}
header .contain h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--semi-dark);
  margin-bottom: 16px;
}
header .image-contain {
  width: 100%;
  height: 600px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  header .image-contain {
    height: 450px;
    margin-bottom: 40px;
  }
}
header .image-contain .intro-imgs {
  width: 100%;
  height: 95%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
header .image-contain .intro-imgs .big-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  /*animation: slideUsers 4s ease-in-out infinite;*/
}
header .image-contain .small-image {
  width: 144px;
  height: 190px;
  border-radius: 24px;
  border: 8px solid rgba(0, 112, 116, 0.2);
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 9;
  animation: vibrateX 8s ease-in-out infinite alternate;
}
@media (max-width: 992px) {
  header .image-contain .small-image {
    width: 100px;
    height: 130px;
    border-radius: 16px;
  }
}
header .image-contain::after, header .image-contain::before {
  content: "";
  position: absolute;
  z-index: 9;
}
header .image-contain::after {
  width: 200px;
  height: 200px;
  top: -100px;
  background: url("../images/intro/top-graph.svg") center/contain no-repeat;
  right: 50px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromLeft 1.5s ease-out 0.5s forwards;
}
header .image-contain::before {
  width: 50px;
  height: 100px;
  bottom: 50px;
  background: url("../images/intro/bottom-graph.svg") center/contain no-repeat;
  right: 10px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  animation: drawFromBottom 1.2s ease-out 1s forwards;
}

.sub-header {
  width: 100%;
  padding: 140px 0px 50px;
  background: url("../images/icons/sub-header.webp") center/cover no-repeat;
  position: relative;
  z-index: 9;
}
.sub-header.large-padding {
  padding: 200px 0px 80px;
}
.sub-header .contain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 40px;
}
.sub-header .contain .title {
  font-size: 32px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
}
.sub-header .contain .desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--light-color);
  margin: 0px;
}

.about-us::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  background: url("../images/intro/intro-graph.svg") bottom left/contain no-repeat;
  bottom: 116px;
  z-index: -1;
  -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
          clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  animation: drawDiagonal 2s ease-out 0.3s forwards;
}
@media (max-width: 992px) {
  .about-us::after {
    height: 30%;
    top: 0;
    bottom: unset;
    opacity: 0.6;
  }
}
@media (min-width: 1730px) {
  .about-us::after {
    height: 85%;
    bottom: 0px;
  }
}
.about-us .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about-us .contain .badge-shape {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 20px;
  background-color: #e4f1f2;
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .about-us .contain .badge-shape {
    width: 100%;
    padding: 10px 15px;
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.about-us .contain h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0px;
  line-height: 80px;
}
@media (max-width: 992px) {
  .about-us .contain h2 {
    font-size: 26px;
    line-height: 40px;
  }
}
.about-us .contain .desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px;
  margin: 48px 0px 0px;
}
@media (max-width: 992px) {
  .about-us .contain .desc {
    font-size: 16px;
    margin: 20px 0px 0px;
  }
}
.about-us .image-contain {
  width: 100%;
  height: 600px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .about-us .image-contain {
    height: 450px;
    margin-bottom: 40px;
  }
}
.about-us .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  animation: vibrate 10s ease-in-out infinite alternate;
}
@media (min-width: 992px) {
  .about-us .image-contain img {
    width: 80%;
    display: block;
    margin-inline-start: auto;
  }
}
.about-us .image-contain .number-list {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  padding: 24px;
  background-color: var(--primary-color);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 992px) {
  .about-us .image-contain .number-list {
    width: 100%;
    padding: 15px 10px;
    border-radius: 10px;
  }
}
.about-us .image-contain .number-list li {
  padding-inline-end: 10px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.about-us .image-contain .number-list li:last-child {
  border: 0px;
  padding-inline-end: 0px;
}
.about-us .image-contain .number-list li span {
  color: var(--light-color);
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .about-us .image-contain .number-list li span {
    font-size: 10px;
  }
}
.about-us .image-contain .number-list li span.name, .about-us .image-contain .number-list li span.name .counter {
  font-size: 24px;
  font-weight: 900;
}
@media (max-width: 992px) {
  .about-us .image-contain .number-list li span.name, .about-us .image-contain .number-list li span.name .counter {
    font-size: 18px;
  }
}
.about-us .image-contain::after, .about-us .image-contain::before {
  content: "";
  position: absolute;
  z-index: 9;
}
.about-us .image-contain::after {
  width: 200px;
  height: 200px;
  top: -85px;
  background: url("../images/intro/top-graph.svg") center/contain no-repeat;
  right: 30%;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromLeft 1.5s ease-out 0.5s forwards;
}

.goals {
  background-color: #f9fbfb;
}
.goals::after {
  background: url("../images/icons/doctor-pattern.svg") top right/contain no-repeat;
  width: 100%;
  height: 100px;
  top: 100px;
  left: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  animation: drawFromBottom 4s ease-out infinite forwards;
}
.goals .box {
  width: 100%;
  padding: 28px;
  background-color: var(--light-color);
  border-radius: 28px;
  position: relative;
  z-index: 9;
  text-align: center;
  position: relative;
  z-index: 9;
  overflow: hidden;
  transition: all 0.3s linear;
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
}
.goals .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/download/dowload-pattern.svg") center/cover no-repeat;
  transition: all 0.6s linear;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.goals .box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #e4f1f2;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0px auto;
  gap: 10px;
}
.goals .box .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--primary-filter);
}
.goals .box h2 {
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: 900;
  margin: 20px 0px;
}
@media (max-width: 992px) {
  .goals .box h2 {
    font-size: 18px;
    margin: 15px 0px;
  }
}
.goals .box p {
  color: var(--gray-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .goals .box p {
    font-size: 15px;
  }
}
.goals .box:hover {
  transform: translateY(-10px);
  background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
}
@media (max-width: 992px) {
  .goals .box:hover {
    background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
  }
}
.goals .box:hover::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.goals .box:hover .icon {
  background-color: var(--light-color);
}
.goals .box:hover .icon img {
  filter: var(--primary-filter);
}
.goals .box:hover h2,
.goals .box:hover p {
  color: var(--light-color);
}

.who::after {
  background: url("../images/icons/doctor-pattern.svg") top right/contain no-repeat;
  width: 100%;
  height: 100px;
  top: 100px;
  right: 0;
  transform: scaleX(-1);
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  animation: drawFromBottom 4s ease-out infinite forwards;
}
.who .swiper-doctors,
.who .swiper-testimonials {
  overflow: visible;
}
.who .swiper-wrapper {
  padding: 15px 0px 90px;
}
.who .swiper-slide:nth-child(even) .box {
  flex-direction: column-reverse;
}
.who .box {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  background-color: #f0f2f2;
  border-radius: 24px;
  position: relative;
  text-align: center;
  gap: 20px;
  z-index: 9;
  transition: all 0.3s linear;
}
.who .box .image-contain {
  width: 100%;
  height: 224px;
  border-radius: 20px;
  overflow: hidden;
}
.who .box .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s linear;
}
.who .box h3 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 15px;
}
.who .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.who .box:hover {
  transform: translateY(-10px);
}
.who .box:hover h3 {
  color: var(--primary-color);
}
.who .box:hover .image-contain img {
  transform: scale(1.2);
}

.testimonials::after,
.doctors::after {
  background: url("../images/icons/doctor-pattern.svg") top right/contain no-repeat;
  width: 100%;
  height: 100px;
  top: 100px;
  left: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.testimonials.draw-active::after,
.doctors.draw-active::after {
  animation: drawFromBottom 1.2s ease-out forwards;
}
.testimonials .swiper-doctors,
.testimonials .swiper-testimonials,
.doctors .swiper-doctors,
.doctors .swiper-testimonials {
  overflow: visible;
}
.testimonials .swiper-wrapper,
.doctors .swiper-wrapper {
  padding: 15px 0px 90px;
}
.testimonials .testimonial-item,
.doctors .testimonial-item {
  width: 100%;
  padding: 28px;
  background-color: #f9fbfb;
  border: 1px solid #cae2e3;
  border-radius: 28px;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .testimonials .testimonial-item,
  .doctors .testimonial-item {
    padding: 20px 15px;
  }
}
.testimonials .testimonial-item p,
.doctors .testimonial-item p {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.testimonials .testimonial-item .user-data,
.doctors .testimonial-item .user-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 12px;
}
.testimonials .testimonial-item .user-data img,
.doctors .testimonial-item .user-data img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonial-item .user-data .data h3,
.doctors .testimonial-item .user-data .data h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}
.testimonials .testimonial-item .user-data .data span,
.doctors .testimonial-item .user-data .data span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-color);
}
.testimonials .testimonial-item:hover,
.doctors .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
}

.sessions::after {
  background: url("../images/icons/doctor-pattern.svg") top right/contain no-repeat;
  width: 100%;
  height: 100px;
  top: 100px;
  left: 0;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: scaleX(-1);
}
.sessions.draw-active::after {
  animation: drawFromBottom 1.2s ease-out forwards;
}
.sessions .grid-data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .sessions .grid-data {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.sessions .box {
  width: 100%;
  padding: 20px;
  background-color: #f9fbfb;
  border: 1px solid #cae2e3;
  border-radius: 20px;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
  cursor: pointer;
}
@media (max-width: 992px) {
  .sessions .box {
    padding: 20px 10px;
    border-radius: 16px;
  }
}
.sessions .box.active, .sessions .box:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}
.sessions .box.active h3, .sessions .box:hover h3 {
  color: var(--light-color);
}
.sessions .box.active p, .sessions .box:hover p {
  color: var(--light-color);
  opacity: 0.8;
}
.sessions .box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .sessions .box h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.sessions .box p {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .sessions .box p {
    font-size: 12px;
  }
}
.sessions .box:hover {
  background-color: var(--primary-color);
  transform: translateY(-10px);
}
.sessions .box:hover h3 {
  color: var(--light-color);
}
.sessions .box:hover p {
  color: var(--light-color);
  opacity: 0.7;
}

.screens::after, .screens::before {
  content: "";
  position: absolute;
  z-index: 9;
  background: linear-gradient(90deg, #fdffff 0%, transparent 100%);
  top: 0;
  width: 20%;
  height: 100%;
}
.screens::after {
  left: 0;
}
.screens::before {
  right: 0;
  transform: scaleX(-1);
}
.screens .swiper-screens .swiper-slide {
  transition: all 0.5s ease;
  transform: scale(0.75);
  opacity: 0.5;
}
.screens .swiper-screens .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}
.screens .swiper-screens .swiper-slide.swiper-slide-prev, .screens .swiper-screens .swiper-slide.swiper-slide-next {
  transform: scale(0.85);
  opacity: 0.7;
}
.screens .swiper-screens .swiper-slide img {
  width: 100%;
  height: 550px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease;
}
@media (max-width: 992px) {
  .screens .swiper-screens .swiper-slide img {
    height: 400px;
  }
}
.screens .swiper-screens .swiper-pagination {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.screens .swiper-screens .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e8e8e8;
  color: #9e9e9e;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.screens .swiper-screens .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.download {
  background-color: #f3f9fa;
}
.download::before {
  content: "";
  position: absolute;
  z-index: 9;
  background: url("../images/icons/doctor-pattern.svg") top right/contain no-repeat;
  width: 50%;
  height: 30%;
  top: 35%;
  right: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawDiagonal 2s ease-out 0.3s forwards;
}
@media (max-width: 992px) {
  .download::before {
    top: 5%;
  }
}
.download::after {
  width: 100%;
  height: 50%;
  left: 0;
  background: url("../images/download/patter-download.svg") bottom left/contain no-repeat;
  bottom: 0px;
  z-index: -1;
  -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
          clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  animation: drawDiagonal 2s ease-out 0.3s forwards;
}
@media (max-width: 992px) {
  .download::after {
    height: 30%;
    top: 0;
    bottom: unset;
    opacity: 0.6;
  }
}
.download .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 992px) {
  .download .contain {
    gap: 20px;
    text-align: center;
  }
}
.download .contain h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0px;
}
@media (max-width: 992px) {
  .download .contain h2 {
    font-size: 25px;
    line-height: 40px;
  }
}
.download .contain p {
  color: var(--gray-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .download .contain p {
    font-size: 15px;
  }
}
.download .download-shape {
  width: 100%;
  padding: 24px;
  position: relative;
  z-index: 9;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color) 60%, var(--secondary-color) 100%);
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .download .download-shape {
    height: 300px;
    width: 80%;
    margin: 0px auto 20px;
    border-radius: 20px;
  }
}
.download .download-shape::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/download/dowload-pattern.svg") center/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromBottom 2s ease-out infinite;
}
.download .download-shape .brand-name {
  width: 90px;
  height: 40px;
  display: block;
  margin: 0px auto 20px;
}
.download .download-shape .brand-name img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.download .download-shape .screen-img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  bottom: -250px;
  left: 0;
  z-index: 9;
  transform: scale(1.2);
}
@media (max-width: 992px) {
  .download .download-shape .screen-img {
    height: 435px;
  }
}

.questions.pattern-shape::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  background: url("../images/intro/intro-graph.svg") bottom left/contain no-repeat;
  bottom: 116px;
  z-index: -1;
  transform: scaleX(-1);
  -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
          clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  animation: drawDiagonal 2s ease-out 0.3s forwards;
}
@media (max-width: 992px) {
  .questions.pattern-shape::after {
    height: 30%;
    top: 0;
    bottom: unset;
    opacity: 0.6;
  }
}
@media (min-width: 1730px) {
  .questions.pattern-shape::after {
    height: 85%;
    bottom: 0px;
  }
}
.questions.pattern-shape::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: url("../images/icons/pattern-circle.svg") center/contain no-repeat;
  top: 10%;
  left: 10%;
  z-index: 9;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromBottom 2s ease-out infinite;
}
.questions .card {
  width: 100%;
  border: 1px solid #e7eded;
  border-radius: 16px;
  padding: 12px 12px 16px;
  margin-bottom: 24px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .questions .card {
    padding: 10px 10px 12px;
    border-radius: 10px;
  }
}
.questions .card:has(.btn[aria-expanded=true]) {
  background-color: #f3f9fa;
  border-color: #7fb8ba;
}
.questions .card .card-header {
  width: 100%;
  border: 0px;
  padding: 0px;
  background-color: transparent;
  margin: 0px;
  border-radius: 0px;
}
.questions .card .card-header .btn {
  width: 100%;
  position: relative;
  z-index: 9;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 700;
  margin: 0px;
  text-align: start;
  text-decoration: none;
  padding-inline-end: 30px;
}
@media (max-width: 992px) {
  .questions .card .card-header .btn {
    font-size: 14px;
    padding-inline-end: 20px;
  }
}
.questions .card .card-header .btn::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: url("../images/questions/add.svg") center/contain no-repeat;
  top: calc(50% - 14px);
  left: 0px;
}
@media (max-width: 992px) {
  .questions .card .card-header .btn::after {
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
  }
}
html[dir=ltr] .questions .card .card-header .btn::after {
  right: 0;
  left: unset;
}
.questions .card .card-header .btn[aria-expanded=true] {
  color: var(--primary-color);
}
.questions .card .card-header .btn[aria-expanded=true]::after {
  background-image: url("../images/questions/remove.svg");
}
.questions .card .card-body {
  width: 100%;
  padding: 15px 0px 0px;
  background-color: transparent;
  border: 0px;
  border-radius: 0px;
}
.questions .card .card-body p {
  color: var(--gray-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .questions .card .card-body p {
    font-size: 15px;
  }
}
.questions .image-contain {
  width: 100%;
  height: 500px;
  background-color: #f0f2f2;
  border-radius: 60px;
  overflow: hidden;
  padding: 24px 24px 0px;
}
@media (max-width: 992px) {
  .questions .image-contain {
    height: 400px;
    border-radius: 20px;
  }
}
.questions .image-contain .primary-logo {
  width: 90px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0px auto 20px;
}
.questions .image-contain .question-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 992px) {
  .questions .question-data {
    padding-inline-start: 40px;
  }
}
.questions .item {
  width: 100%;
  padding: 24px;
  border-bottom: 1px solid #dee0e0;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 992px) {
  .questions .item {
    flex-wrap: wrap;
    padding: 15px;
  }
}
.questions .item:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
}
.questions .item .flex-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  .questions .item .flex-data {
    width: 340px;
  }
}
.questions .item .flex-data .number {
  width: 44px;
  height: 44px;
  border: 1px solid #dee0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-color);
}
.questions .item .flex-data p {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 900;
  margin: 0px;
}
.questions .item .answer {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 0px;
}
.questions .item:hover {
  border-color: var(--primary-color);
}
.questions .item:hover .number {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.questions .item:hover .flex-data p {
  color: var(--primary-color);
}
.questions .item:hover .answer {
  color: var(--dark-color);
}

.contact-us::after {
  width: 100%;
  height: 50%;
  right: 0;
  background: url("../images/download/patter-download.svg") bottom left/contain no-repeat;
  transform: scaleX(-1);
  bottom: 20%;
  z-index: -1;
  -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
          clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  animation: drawDiagonal 2s ease-out 0.3s forwards;
}
@media (max-width: 992px) {
  .contact-us::after {
    height: 30%;
    top: 0;
    bottom: unset;
    opacity: 0.6;
  }
}
.contact-us .form-contain {
  width: 100%;
  padding: 40px;
  background-color: var(--light-color);
  border: 1px solid #e7eded;
  border-radius: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .contact-us .form-contain {
    padding: 20px 10px;
    margin-bottom: 80px;
    border-radius: 15px;
  }
}
.contact-us .form-contain .custom-btn {
  width: 170px;
}
.contact-us .contact-shape {
  width: 100%;
  padding: 24px 20px;
  padding-bottom: 100px;
  background: radial-gradient(circle, var(--primary-color) 40%, var(--secondary-color) 100%);
  border-radius: 40px;
  position: relative;
  z-index: 9;
}
.contact-us .contact-shape .white-logo {
  width: 100px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0px auto 40px;
}
.contact-us .contact-shape .call-btn {
  width: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  transition: all 0.3s linear;
}
.contact-us .contact-shape .call-btn img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-us .contact-shape .call-btn .data {
  width: calc(100% - 44px);
  text-align: start;
}
.contact-us .contact-shape .call-btn .data p {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 700;
  margin: 0px;
}
.contact-us .contact-shape .call-btn .data span {
  color: var(--light-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
.contact-us .contact-shape .call-btn:hover {
  transform: translateY(-10px);
}
.contact-us .contact-shape::after {
  content: "";
  position: absolute;
  z-index: 9;
  width: 200px;
  height: 200px;
  top: -100px;
  background: url("../images/intro/top-graph.svg") center/contain no-repeat;
  left: 30px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromLeft 1.5s ease-out 0.5s forwards;
}
.contact-us .contact-shape::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/download/dowload-pattern.svg") center/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromBottom 2s ease-out infinite;
}
.contact-us .contact-shape .social-media {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 99;
  background-color: var(--light-color);
  padding: 15px 15px;
  border-radius: 50px 0 0 0;
}
html[dir=rtl] .contact-us .contact-shape .social-media {
  left: 0px;
  right: unset;
  border-radius: 0 50px 0 0;
}
.contact-us .contact-shape .social-media::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: transparent;
  top: -40px;
  right: 0;
  border-radius: 0 0 30px 0px;
  box-shadow: 10px 10px 0 var(--light-color);
}
html[dir=rtl] .contact-us .contact-shape .social-media::before {
  right: unset;
  left: 0;
  border-radius: 0 0 0px 30px;
  box-shadow: -10px 10px 0 var(--light-color);
}
.contact-us .contact-shape .social-media::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: transparent;
  bottom: 0;
  box-shadow: 10px 10px 0 var(--light-color);
  left: -39px;
  border-radius: 0 0 30px 0;
}
html[dir=rtl] .contact-us .contact-shape .social-media::after {
  left: unset;
  right: -39px;
  box-shadow: -10px 10px 0 var(--light-color);
  border-radius: 0 0 0 30px;
}

.academy-details {
  background-color: #f9fbfb;
}
@media (max-width: 992px) {
  .academy-details {
    padding-top: 60px;
  }
}
.academy-details::after {
  width: 100%;
  height: 50%;
  right: 0;
  background: url("../images/download/patter-download.svg") bottom left/contain no-repeat;
  transform: scaleX(-1);
  bottom: 20%;
  z-index: -1;
  -webkit-clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
          clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  animation: drawDiagonal 2s ease-out 0.3s forwards;
}
@media (max-width: 992px) {
  .academy-details::after {
    height: 30%;
    top: 0;
    bottom: unset;
    opacity: 0.6;
  }
}
.academy-details .image-contain {
  width: 100%;
  height: 500px;
  position: relative;
}
@media (max-width: 992px) {
  .academy-details .image-contain {
    height: 400px;
    margin-bottom: 20px;
  }
}
.academy-details .image-contain .play-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  z-index: 9;
}
.academy-details .image-contain .play-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.academy-details .image-contain::after {
  content: "";
  position: absolute;
  z-index: 9;
  width: 200px;
  height: 200px;
  top: -100px;
  background: url("../images/intro/top-graph.svg") center/contain no-repeat;
  left: 30px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromLeft 1.5s ease-out 0.5s forwards;
}
.academy-details .image-contain img,
.academy-details .image-contain iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.academy-details .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.academy-details .contain .badge-shape {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.academy-details .contain .date {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary-color);
}
.academy-details .contain h2 {
  color: var(--dark-color);
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0px;
}
@media (max-width: 992px) {
  .academy-details .contain h2 {
    font-size: 24px;
    line-height: 50px;
  }
}
.academy-details .contain .share {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  display: block;
}

.more-details .details {
  padding-inline-start: 40px;
  border-inline-start: 1px solid #e7eded;
}
@media (max-width: 992px) {
  .more-details .details {
    padding-inline-start: 20px;
  }
}

footer {
  width: 100%;
  position: relative;
  z-index: 9;
  background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
  padding: 80px 0px 20px;
  border-radius: 40px 40px 0px 0px;
  overflow: hidden;
}
@media (max-width: 992px) {
  footer {
    background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
  }
}
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/download/dowload-pattern.svg") center/contain repeat;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawFromBottom 2s ease-out infinite;
}
footer .contain {
  text-align: center;
}
footer .contain .brand-name img {
  width: 220px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain p {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 700;
  margin: 40px 0px;
}
footer .contain .social-media {
  width: 100%;
  justify-content: center;
}
footer .copyrights {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 992px) {
  footer .copyrights {
    justify-content: center;
  }
}
footer .copyrights p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
footer .copyrights p span {
  color: var(--light-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
footer .copyrights .company-logo {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
footer .copyrights .company-logo img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .copyrights .company-logo span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}

.form-group {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}
.form-group.text-area {
  height: 140px;
}
.form-group.text-area .form-control {
  resize: none;
  padding: 12px;
  border-radius: 15px;
}
.form-group.select-data::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: 12px;
  z-index: 9;
  background: url("../images/form/down_arrow.svg") center/contain no-repeat;
  pointer-events: none;
}
html[dir=ltr] .form-group.select-data::after {
  left: unset;
  right: 12px;
}
.form-group.select-data.price-input::after {
  background: url("../images/form/dollar.svg") center/contain no-repeat;
}
.form-group.select-data .form-control {
  padding-inline-start: 15px;
  color: var(--gray-color);
}
.form-group img {
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
  z-index: 9;
  pointer-events: none;
}
html[dir=ltr] .form-group img {
  left: unset;
  right: 20px;
}
.form-group .form-control {
  width: 100%;
  height: 100%;
  border: 1px solid #e7eded !important;
  background-color: #f8fafa;
  border-radius: 50px;
  padding-inline-start: 42px;
  padding-inline-end: 12px;
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 700;
}
.form-group .form-control::-moz-placeholder {
  font-size: 16px;
  color: var(--gray-color);
  font-weight: 500;
}
.form-group .form-control::placeholder {
  font-size: 16px;
  color: var(--gray-color);
  font-weight: 500;
}

.phone-input {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10 !important;
}

.phone-input .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 12px;
}
html[dir=ltr] .phone-input .icon {
  left: 12px;
  right: unset;
}

.country-select {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
}
html[dir=ltr] .country-select {
  right: 12px;
  left: unset;
}

.country-select button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0px;
  border-inline-start: 1px solid #ddd !important;
  padding-inline-start: 10px !important;
}
.country-select button img.flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative !important;
  z-index: 9 !important;
  top: unset !important;
  right: unset !important;
  left: unset !important;
  -o-object-position: center !important;
     object-position: center !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.country-select button span {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  direction: ltr;
}

#country-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 5px;
}
html[dir=ltr] #country-dropdown {
  right: 0;
  left: unset;
}

#country-dropdown.hidden {
  display: none;
}

#country-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

#country-list li {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
#country-list li span {
  direction: ltr;
}

#country-list li:hover {
  background: #f1f1f1;
}

#country-list img {
  width: 20px;
  height: 14px;
  position: relative !important;
  left: unset !important;
  right: unset !important;
}

.phone-input input[type=text] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-input {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
}
.search-input img {
  width: 24px;
  height: 24px;
  filter: var(--primary-filter);
}
.search-input .form-control {
  width: 100%;
  height: 100%;
  border: 1px solid #e7eded;
  background-color: #f8fafa;
  border-radius: 12px;
  padding-inline-start: 42px;
  padding-inline-end: 12px;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 700;
}

.modal-dialog {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
@media (max-width: 992px) {
  .modal-dialog {
    margin: 0px auto !important;
  }
}
@media (min-width: 992px) {
  .modal-dialog.big-modal {
    min-width: 900px;
  }
}
.modal-dialog .box {
  width: 100%;
  position: relative;
  z-index: 91;
  transition: all 0.3s linear;
}
@media (min-width: 992px) {
  .modal-dialog .box {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.modal-dialog .box .image-contain {
  width: 192px;
  height: 192px;
  overflow: hidden;
  background-color: transparent;
  position: relative;
  z-index: 9;
  background: url("../images/pattern/speaker-pattern.svg") center right/contain no-repeat;
  filter: drop-shadow(0px 12px 32px rgba(112, 144, 176, 0.12)) drop-shadow(0px -12px 32px rgba(112, 144, 176, 0.12));
}
.modal-dialog .box .image-contain.partner-image {
  background: #f8fafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 15px;
  filter: drop-shadow(0px 0px 0px transparent);
}
.modal-dialog .box .image-contain.partner-image::after {
  display: none;
}
.modal-dialog .box .image-contain.partner-image img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0px;
  -o-object-position: center;
     object-position: center;
  background-color: var(--light-color);
}
.modal-dialog .box .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 95%;
  height: 95%;
  background-color: var(--light-color);
  -o-object-position: top center;
     object-position: top center;
  border-radius: 50%;
}
.modal-dialog .box .data {
  width: 100%;
  padding: 20px 0px 0px;
}
@media (min-width: 992px) {
  .modal-dialog .box .data {
    width: calc(100% - 192px);
  }
}
.modal-dialog .box .data h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--black-color);
  margin-bottom: 0px;
  text-align: start;
}
.modal-dialog .box .data h4 {
  font-size: 15px;
  font-weight: 900;
  color: var(--black-color);
  margin: 0px;
  text-align: start;
}
.modal-dialog .box .data .list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  margin: 15px 0px;
}
.modal-dialog .box .data .list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-color);
  padding-inline-start: 15px;
  position: relative;
  text-align: start;
  z-index: 9;
}
.modal-dialog .box .data .list li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--gray-color);
  border-radius: 50%;
  top: 8px;
  right: 0;
  z-index: -1;
}
html[dir=ltr] .modal-dialog .box .data .list li::after {
  right: unset;
  left: 0px;
}
@media (max-width: 992px) {
  .modal-dialog .box .data .list li {
    font-size: 15px;
  }
}
.modal-dialog .box .data .job {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color) !important;
  margin: 16px 0px;
  text-align: start;
}
.modal-dialog .box .data .about-speaker {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-color);
  margin-bottom: 20px;
  text-align: start;
}
.modal-dialog .box .data .social {
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.modal-dialog .modal-content {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body .contain {
  width: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border-radius: 20px !important;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.modal-dialog .modal-content .modal-body .contain .close-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
}
html[dir=ltr] .modal-dialog .modal-content .modal-body .contain .close-btn {
  left: unset;
  right: 10px;
}
.modal-dialog .modal-content .modal-body .contain .close-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-dialog .modal-content .modal-body .contain .icon {
  width: 172px;
  height: 172px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name {
  width: 190px;
  height: 50px;
  margin: 0px auto 30px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name img {
  width: 100% !important;
  height: 100% !important;
  margin-bottom: 0px;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-dialog .modal-content .modal-body .contain span.danger {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-top: 15px;
  color: var(--primary-color);
}
.modal-dialog .modal-content .modal-body .contain h1 {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain h1.primary-color {
  color: var(--primary-color);
}
.modal-dialog .modal-content .modal-body .contain .download-apps {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.modal-dialog .modal-content .modal-body .contain p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}
.modal-dialog .modal-content .modal-body .contain p.danger {
  color: #ff383c;
}

.nav-tabs {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  border: 0px !important;
  padding-bottom: 0px;
  margin-bottom: 60px;
}
.nav-tabs.six-tabs {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.nav-tabs.six-tabs::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}
.nav-tabs.six-tabs::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
}
.nav-tabs.six-tabs .nav-item {
  width: calc(16.6666666667% - 10px);
}
@media (max-width: 992px) {
  .nav-tabs.six-tabs .nav-item {
    width: -moz-fit-content;
    width: fit-content;
  }
  .nav-tabs.six-tabs .nav-item .nav-link {
    padding: 5px 20px;
    height: 40px;
    white-space: nowrap;
  }
}
@media (max-width: 992px) {
  .nav-tabs {
    margin-bottom: 30px;
  }
}
.nav-tabs .nav-item {
  padding: 0px;
  margin: 0px;
  width: calc(33.3333333333% - 10px);
}
.nav-tabs .nav-item .nav-link {
  padding: 0px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50px;
  background-color: #f4f4f4;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 9;
  border: 0px;
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .nav-tabs .nav-item .nav-link {
    padding: 10px 5px;
    font-size: 14px;
  }
}
.nav-tabs .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  background-color: var(--primary-color);
  bottom: 0px;
  left: 0;
  z-index: -1;
}
.nav-tabs .nav-item .nav-link.active, .nav-tabs .nav-item .nav-link:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.nav-tabs .nav-item .nav-link.active::after, .nav-tabs .nav-item .nav-link:hover::after {
  height: 100%;
}

.tab-pane.fade.show.active {
  animation: fadeInUp 0.5s ease-in-out;
}

.pagination-list {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.pagination-list li {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}
.pagination-list li a {
  font-size: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 1px solid #e7eded;
  border-radius: 50%;
  font-weight: 500;
  color: var(--gray-color);
}
.pagination-list li a.active {
  color: var(--primary-color);
  border-color: #e5f0f7;
  background-color: #e5f0f7;
}

.search-box {
  width: 100%;
  position: relative;
  margin-bottom: 0px;
}
.search-box input {
  width: 100%;
  padding: 16px 20px;
  padding-inline-start: 50px;
  border: 1px solid #e7eded;
  border-radius: 50px;
  background-color: var(--light-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
}
.search-box input::-moz-placeholder {
  color: var(--gray-color);
}
.search-box input::placeholder {
  color: var(--gray-color);
}
.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
}
.search-box img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--primary-filter);
}
html[dir=ltr] .search-box img {
  left: 20px;
}
html[dir=rtl] .search-box img {
  right: 20px;
}

.filter-form {
  width: 100%;
  padding: 24px;
  background-color: var(--light-color);
  border-radius: 24px;
  border: 1px solid #e7eded;
  margin-top: 24px;
}
.filter-form .filter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7eded;
}
.filter-form .filter-group {
  margin-bottom: 20px;
}
.filter-form .filter-group .filter-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.filter-form .filter-group .filter-label-row .filter-label {
  margin-bottom: 0;
}
.filter-form .filter-group .filter-label-row .filter-sublabel {
  margin-bottom: 0;
  text-align: start;
}
.filter-form .filter-group .filter-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.filter-form .filter-group .filter-sublabel {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-color);
  margin-bottom: 16px;
  text-align: center;
}
.filter-form .filter-group .filter-sublabel strong {
  color: var(--primary-color);
  font-weight: 700;
}
.filter-form .filter-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.filter-form .filter-buttons.three-cols {
  grid-template-columns: repeat(3, 1fr);
}
.filter-form .filter-buttons .filter-radio {
  display: block;
  cursor: pointer;
}
.filter-form .filter-buttons .filter-radio input[type=radio] {
  display: none;
}
.filter-form .filter-buttons .filter-radio span {
  display: block;
  padding: 12px 10px;
  border: 1px solid #cae2e3;
  border-radius: 50px;
  background-color: transparent;
  color: var(--gray-color);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}
.filter-form .filter-buttons .filter-radio:hover span {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.filter-form .filter-buttons .filter-radio input[type=radio]:checked + span {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}
.filter-form .filter-select select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cae2e3;
  border-radius: 12px;
  background-color: transparent;
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23007074' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
}
.filter-form .filter-select select:focus {
  outline: none;
  border-color: var(--primary-color);
}
.filter-form .multi-select-container {
  position: relative;
  width: 100%;
}
.filter-form .multi-select-container .multi-select-trigger {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cae2e3;
  border-radius: 12px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-form .multi-select-container .multi-select-trigger .placeholder {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 500;
}
.filter-form .multi-select-container .multi-select-trigger .selected-text {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}
.filter-form .multi-select-container .multi-select-trigger .arrow {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--primary-filter);
  transition: transform 0.3s ease;
}
.filter-form .multi-select-container .multi-select-trigger:hover {
  border-color: var(--primary-color);
}
.filter-form .multi-select-container.open .multi-select-trigger {
  border-color: var(--primary-color);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.filter-form .multi-select-container.open .multi-select-trigger .arrow {
  transform: rotate(180deg);
}
.filter-form .multi-select-container.open .multi-select-dropdown {
  display: block;
}
.filter-form .multi-select-container .multi-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
  border-top: none;
  border-radius: 0 0 12px 12px;
  z-index: 100;
  max-height: 250px;
  overflow: hidden;
}
.filter-form .multi-select-container .multi-select-dropdown .search-input {
  padding: 10px;
  border-bottom: 1px solid #e7eded;
}
.filter-form .multi-select-container .multi-select-dropdown .search-input input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cae2e3;
  border-radius: 8px;
  font-size: 13px;
  color: var(--secondary-color);
}
.filter-form .multi-select-container .multi-select-dropdown .search-input input::-moz-placeholder {
  color: var(--gray-color);
}
.filter-form .multi-select-container .multi-select-dropdown .search-input input::placeholder {
  color: var(--gray-color);
}
.filter-form .multi-select-container .multi-select-dropdown .search-input input:focus {
  outline: none;
  border-color: var(--primary-color);
}
.filter-form .multi-select-container .multi-select-dropdown .options-list {
  max-height: 180px;
  overflow-y: auto;
  padding: 8px 0;
}
.filter-form .multi-select-container .multi-select-dropdown .options-list .option-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.filter-form .multi-select-container .multi-select-dropdown .options-list .option-item:hover {
  background-color: #f3f9fa;
}
.filter-form .multi-select-container .multi-select-dropdown .options-list .option-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  cursor: pointer;
}
.filter-form .multi-select-container .multi-select-dropdown .options-list .option-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary-color);
}
.filter-form .multi-select-container .multi-select-dropdown .options-list .option-item.hidden {
  display: none;
}
.filter-form .price-range-container {
  width: 100%;
}
.filter-form .price-range-container .price-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 60px;
  margin-bottom: 10px;
}
.filter-form .price-range-container .price-bars span {
  width: 6px;
  background-color: #cae2e3;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.filter-form .price-range-container .price-bars span:nth-child(odd) {
  opacity: 0.7;
}
.filter-form .price-range-container .price-bars span.active {
  background-color: var(--primary-color);
  opacity: 1;
}
.filter-form .price-range-container .price-bars span:hover {
  opacity: 1;
}
.filter-form .price-range-container .range-slider {
  position: relative;
  height: 30px;
  margin: 10px 0;
}
.filter-form .price-range-container .range-slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.filter-form .price-range-container .range-slider input[type=range]::-webkit-slider-track {
  height: 6px;
  background: #cae2e3;
  border-radius: 3px;
}
.filter-form .price-range-container .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  border: 3px solid var(--light-color);
  box-shadow: 0 2px 6px rgba(0, 112, 116, 0.3);
  margin-top: -7px;
}
.filter-form .price-range-container .range-slider input[type=range]::-moz-range-track {
  height: 6px;
  background: #cae2e3;
  border-radius: 3px;
}
.filter-form .price-range-container .range-slider input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  border: 3px solid var(--light-color);
  box-shadow: 0 2px 6px rgba(0, 112, 116, 0.3);
}
.filter-form .price-range-container .range-slider .range-min {
  z-index: 1;
}
.filter-form .price-range-container .range-slider .range-max {
  z-index: 2;
}
.filter-form .price-range-container .price-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.filter-form .price-range-container .price-labels span {
  font-size: 11px;
  color: var(--gray-color);
}
.filter-form .price-range-container .price-labels span strong {
  color: var(--primary-color);
  font-weight: 700;
}
.filter-form .filter-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e7eded;
}
.filter-form .filter-actions .custom-btn {
  width: 100%;
  padding: 14px 20px;
}
.filter-form .filter-actions .custom-btn span {
  font-size: 14px;
}
.filter-form .filter-actions .reset-btn {
  background-color: transparent;
  border: 1px solid #cae2e3;
}
.filter-form .filter-actions .reset-btn span {
  color: var(--primary-color);
}
.filter-form .filter-actions .reset-btn:hover {
  background-color: #f3f9fa;
}

.doctor-details {
  margin-top: -80px;
}
.doctor-details .doctor-details-contain {
  width: 100%;
  padding: 40px;
  background-color: var(--light-color);
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
  border-radius: 40px;
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain {
    padding: 20px 15px;
    border-radius: 20px;
  }
}
.doctor-details .doctor-details-contain .user-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 12px;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}
.doctor-details .doctor-details-contain .user-data .image-contain {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 9;
}
.doctor-details .doctor-details-contain .user-data .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.doctor-details .doctor-details-contain .user-data .image-contain .available {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0px 16px 18px rgba(0, 112, 116, 0.1);
  border: 4px solid var(--light-color);
  background-color: #b2b3b3;
}
.doctor-details .doctor-details-contain .user-data .image-contain .available.yes {
  background-color: #34c759;
}
.doctor-details .doctor-details-contain .user-data .data h3 {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  margin: 0px;
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain .user-data .data h3 {
    font-size: 14px;
  }
}
.doctor-details .doctor-details-contain .user-data .data .specialty {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin: 10px 0px;
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain .user-data .data .specialty {
    font-size: 12px;
    margin: 10px 0px;
  }
}
.doctor-details .doctor-details-contain .user-data .data .flex-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .type {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 50px;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 700;
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .type.Diamond {
  background: radial-gradient(circle at 50% 50%, #83243a 0%, #141414 100%);
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .type.Pro {
  background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain .user-data .data .flex-data .type.Pro {
    background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
  }
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .type.Premium {
  background-color: #141414;
  color: #ffcc00;
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .rate {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  background-color: #f0f2f2;
  border-radius: 50px;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .rate img {
  width: 10px;
  height: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .rate span {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}
.doctor-details .doctor-details-contain .user-data .data .flex-data .rate span.number {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-color);
}
.doctor-details .doctor-details-contain .user-data .add-to-fav {
  width: 32px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-inline-start: auto;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #f0f2f2;
  background-color: #fdffff;
}
.doctor-details .doctor-details-contain .user-data .add-to-fav img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--gray-filter);
}
.doctor-details .doctor-details-contain .user-data .add-to-fav.active {
  background-color: #f8eaeb;
  border-color: #f8eaeb;
}
.doctor-details .doctor-details-contain .user-data .add-to-fav.active img {
  filter: var(--red-filter);
}
.doctor-details .doctor-details-contain .list {
  width: 100%;
  padding: 10px 0px 0px;
  margin: 12px 0px;
  border-top: 1px solid #f0f2f2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.doctor-details .doctor-details-contain .list li {
  text-align: center;
  border-inline-end: 1px solid #f0f2f2;
  padding-inline-end: 10px;
}
.doctor-details .doctor-details-contain .list li:last-child {
  border-inline-end: none;
  padding-inline-end: 0px;
}
.doctor-details .doctor-details-contain .list li .name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-color);
  margin-bottom: 10px;
}
.doctor-details .doctor-details-contain .list li .data {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}
.doctor-details .doctor-details-contain .price {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0px;
}
.doctor-details .doctor-details-contain .price span {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .doctor-details .doctor-details-contain .custom-btn {
    margin-inline-start: auto;
  }
}
.doctor-details .doctor-details-contain .categories {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.doctor-details .doctor-details-contain .categories .category {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 50px;
  background-color: #e4f1f2;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
}
.doctor-details .doctor-details-contain .data-contain {
  width: 100%;
  padding: 28px;
  border-radius: 28px;
  background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding-inline-start: 10px;
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain .data-contain {
    background: radial-gradient(circle, var(--primary-color), var(--primary-color), var(--secondary-color));
  }
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain .data-contain {
    padding: 20px 10px;
    border-radius: 15px;
  }
}
.doctor-details .doctor-details-contain .data-contain .data {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-inline-end: 1px solid #f0f2f2;
  gap: 10px;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}
.doctor-details .doctor-details-contain .data-contain .data:last-child {
  border-inline-end: none;
}
.doctor-details .doctor-details-contain .data-contain .data img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain .data-contain .data img {
    width: 24px;
    height: 24px;
  }
}
.doctor-details .doctor-details-contain .data-contain .data span {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-color);
}
@media (max-width: 992px) {
  .doctor-details .doctor-details-contain .data-contain .data span {
    font-size: 12px;
  }
}
.doctor-details .nav.nav-tabs {
  background-color: #f9fbfb;
  border: 1px solid #f0f2f2;
  padding: 8px;
  border-radius: 50px;
}
.doctor-details .nav.nav-tabs .nav-link {
  background-color: transparent;
}
.doctor-details .about-doctor {
  width: 100%;
  padding: 28px;
  background-color: var(--light-color);
  border-radius: 28px;
  box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .doctor-details .about-doctor {
    margin-bottom: 15px;
    padding: 20px 10px;
    border-radius: 15px;
  }
}
.doctor-details .about-doctor .head {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--primary-color);
}
.doctor-details .about-doctor .desc {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0px;
}
.doctor-details .about-doctor .box {
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f2f2;
  padding-bottom: 20px;
}
.doctor-details .about-doctor .box:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.doctor-details .about-doctor .flex-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.doctor-details .about-doctor .flex-data img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor-details .about-doctor .flex-data .data-name p {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.doctor-details .about-doctor .flex-data .data-name span {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}
.doctor-details .about-doctor .flex-data .data-name span .value {
  color: var(--primary-color);
}
.doctor-details h2 {
  color: var(--secondary-color);
  font-size: 18px;
  margin: 20px 0px;
  font-weight: 700;
}
.doctor-details .flex-time {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.doctor-details .flex-time a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 28px;
  background-color: #f9fbfb;
  border: 1px solid #dee0e0;
  position: relative;
  border-radius: 50px;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
.doctor-details .flex-time a.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.doctor-details .flex-time a.active span {
  color: var(--light-color);
}
.doctor-details .flex-time a.taked {
  background-color: #f8eaeb;
  border-color: #f8eaeb;
}
.doctor-details .flex-time a.taked span {
  color: #ff383c;
}
.doctor-details .flex-time a span {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
}
@media (max-width: 992px) {
  .doctor-details .flex-time a span {
    font-size: 14px;
  }
}
.doctor-details .flex-time a span.count {
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--light-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--light-color);
  font-size: 12px;
  font-weight: 500;
}
.doctor-details .review {
  width: 100%;
  padding: 28px;
  background-color: var(--light-color);
  border-radius: 28px;
  box-shadow: 0px 12px 32px rgba(112, 144, 176, 0.12);
  margin-bottom: 24px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .doctor-details .review {
    margin-bottom: 15px;
    padding: 20px 10px;
  }
}
.doctor-details .review .review-header {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .doctor-details .review .review-header {
    margin-bottom: 15px;
  }
}
.doctor-details .review .review-header .user-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 15px;
}
.doctor-details .review .review-header .user-data .user-img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .doctor-details .review .review-header .user-data .user-img {
    width: 60px;
    height: 60px;
  }
}
.doctor-details .review .review-header .user-data .data h2 {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .doctor-details .review .review-header .user-data .data h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.doctor-details .review .review-header .user-data .data .list {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.doctor-details .review .review-header .user-data .data .list .item {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 2px;
}
.doctor-details .review .review-header .user-data .data .list .item img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor-details .review .review-header .user-data .data .list .item span {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .doctor-details .review .review-header .user-data .data .list .item span {
    font-size: 10px;
  }
}
.doctor-details .review .review-header .stars {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 2px;
}
.doctor-details .review .review-header .stars img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.doctor-details .review .desc {
  font-size: 16px;
  font-weight: 700;
  color: var(--semi-dark);
  margin: 0px;
}
@media (max-width: 992px) {
  .doctor-details .review .desc {
    font-size: 14px;
  }
}
.doctor-details .review:hover {
  transform: translateY(-10px);
}
.doctor-details .review:hover h2 {
  color: var(--primary-color) !important;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */
