/*	Defined widths
--------------------------------------- */
/*	Slider settings
--------------------------------------- */
/*	Colors
--------------------------------------- */
/*	Breakpoints
--------------------------------------- */
/*	Other
--------------------------------------- */
/* common border radius */
/* disable text selection */
/*	Font / Text Mixins
======================================================================== */
/*	Font family mixin
    Examples:
    @include f(s,r);
    @include f(gs,l);
--------------------------------------- */
/*	Text mixin
    (dynamic font size and line height)
--------------------------------------- */
.home-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  padding: 6rem 0rem 8rem 0rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.home-section::before {
  position: absolute;
  content: "";
  width: 100%;
  background: url("../../images/square.svg");
  background-repeat: repeat;
  top: -3rem;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}
.home-section__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 114.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  margin: 0 auto;
  z-index: 5;
}
.home-section__content-title {
  width: 100%;
  max-width: 84.8rem;
  text-align: center;
}
@media screen and (max-width: 430px) {
  .home-section__content-title h1 {
    /*	1) Headlines text group
      --------------------------------------- */
    font-size: calc(var(--fs-rate) * 6.4rem);
    line-height: 1;
  }
}
.home-section__content-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
}
.home-section__content-buttons a .icon {
  height: 1.4cap;
}

.home-bg {
  position: relative;
  margin-top: -6rem;
  background: var(--Cool-Gray-Cool-Gray-010, #f2f4f8);
}
@-webkit-keyframes slide-up-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2.4rem);
            transform: translateY(2.4rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-up-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2.4rem);
            transform: translateY(2.4rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes stay-at-bottom {
  0% {
    -webkit-transform: translateY(2.4rem);
            transform: translateY(2.4rem);
  }
  100% {
    -webkit-transform: translateY(2.4rem);
            transform: translateY(2.4rem);
  }
}
@keyframes stay-at-bottom {
  0% {
    -webkit-transform: translateY(2.4rem);
            transform: translateY(2.4rem);
  }
  100% {
    -webkit-transform: translateY(2.4rem);
            transform: translateY(2.4rem);
  }
}
.home-bg__slider-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  z-index: 5;
}
.home-bg__slider-container .swiper-slide img {
  width: 100%;
  height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .home-bg__slider-container .swiper-slide img {
    height: 30rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.home-bg__slider-container .swiper-pagination {
  position: absolute;
  bottom: 1.6rem !important;
  z-index: 10;
}
.home-bg__slider-container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
.home-bg__slider-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--Brand, #05c7a5);
  border: 1px solid var(--Brand, #05c7a5);
  opacity: 1;
}
.home-bg__slider-container .swiper-button-prev,
.home-bg__slider-container .swiper-button-next {
  color: #fff;
  border-radius: 0.4rem;
  border: 1px solid var(--Cool-Gray-Cool-Gray-010, #f2f4f8);
  background: rgba(33, 39, 42, 0.01);
  backdrop-filter: blur(12.5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0.4rem;
  z-index: 10;
}
.home-bg__slider-container .swiper-button-prev:after,
.home-bg__slider-container .swiper-button-next:after {
  font-size: 2rem;
  content: "";
}
.home-bg__slider-container .swiper-button-prev:hover,
.home-bg__slider-container .swiper-button-next:hover {
  background: rgba(33, 39, 42, 0.25);
}
.home-bg__slider-container .swiper-button-prev {
  left: 10rem;
}
@media screen and (max-width: 600px) {
  .home-bg__slider-container .swiper-button-prev {
    left: 2rem;
  }
}
.home-bg__slider-container .swiper-button-prev::after {
  background: url(../../images/arrow-left-bg.svg);
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-bg__slider-container .swiper-button-next {
  right: 10rem;
}
@media screen and (max-width: 600px) {
  .home-bg__slider-container .swiper-button-next {
    right: 2rem;
  }
}
.home-bg__slider-container .swiper-button-next::after {
  rotate: 180deg;
  background: url(../../images/arrow-left-bg.svg);
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-bg__slider {
  position: absolute;
  width: 100%;
  max-width: 4.4rem;
  height: 6.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 9.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 600px) {
  .home-bg__slider {
    top: 60%;
  }
}
.home-bg__slider:hover .home-bg__slider-icon {
  background: var(--Brand, #05c7a5);
}
.home-bg__slider-icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.4rem;
  height: 4.4rem;
  padding: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.4rem;
  background: #fff;
  -webkit-animation: slide-up-down 2s infinite;
          animation: slide-up-down 2s infinite;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.home-bg__slider-icon::before {
  position: absolute;
  content: "";
  background: url("../../images/arrow.svg") no-repeat;
  width: 100%;
  max-width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.our-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: var(--Cool-Gray-Cool-Gray-010, #f2f4f8);
}
.our-services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 114.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin: 0 auto;
}
.our-services__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.our-services__content-title-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 56.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.our-services__content-title-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
}
.our-services__content-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.our-services__content-boxes .box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 24.8rem;
  width: 100%;
  height: 24.8rem;
  padding: 1.6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6rem;
  border-radius: 0.4rem;
  background: var(--White, #fff);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.our-services__content-boxes .box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 22.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(46.26%, rgba(255, 255, 255, 0.8)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 46.26%);
  left: 0;
  bottom: 0;
  z-index: 1;
}
.our-services__content-boxes .box:hover {
  background: var(--Cool-Gray-Cool-Gray-100, #121619);
}
.our-services__content-boxes .box:hover .box__description {
  color: var(--Cool-Gray-Cool-Gray-080, #343a3e);
}
.our-services__content-boxes .box:hover .box__description-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: var(--Cool-Gray-Cool-Gray-100, #121619);
  border: 1px solid var(--Cool-Gray-Cool-Gray-080, #343a3e);
}
.our-services__content-boxes .box:hover .box__description-icon svg g path {
  stroke: var(--White, #fff);
}
.our-services__content-boxes .box__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
  position: relative;
  z-index: 2;
}
.our-services__content-boxes .box__description-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-radius: 0.4rem;
  border: 1px solid var(--Cool-Gray-Cool-Gray-020, #dde1e5);
  background: var(--White, #fff);
  -webkit-transition: background 0.4s, -webkit-transform 0.4s;
  transition: background 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, background 0.4s;
  transition: transform 0.4s, background 0.4s, -webkit-transform 0.4s;
}

.reference {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: var(--Cool-Gray-Cool-Gray-010, #f2f4f8);
}
.reference__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 114.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin: 0 auto;
}
.reference__content-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  border-radius: 99.9rem;
  background: var(--White, #fff);
}
.reference__content-stars-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.reference__content-stars-text .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
.reference__content-stars-text .number svg {
  width: 100%;
  max-width: 1.6rem;
  height: 1.6rem;
}
.reference__content-stars-text .number svg g path {
  fill: #05c7a5;
}
.reference__content h4 {
  max-width: 95.2rem;
  text-align: center;
  font-size: 2.5rem;
}
.reference__content-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.reference__content-author-image {
  border-radius: 2.8rem;
  max-width: 2.8rem;
  height: 2.8rem;
  background: lightgray no-repeat;
  aspect-ratio: 1/1;
}
.reference__content-author-image img {
  border-radius: 2.8rem;
  aspect-ratio: 1/1;
}
.reference__content .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
.reference__content .pagination .button-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.reference__content .pagination .button-navigation .custom-button-next,
.reference__content .pagination .button-navigation .custom-button-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  cursor: pointer;
  border-radius: 0.4rem;
  border: 1px solid var(--Cool-Gray-Cool-Gray-020, #dde1e5);
  background: var(--White, #fff);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.reference__content .pagination .button-navigation .custom-button-next:hover,
.reference__content .pagination .button-navigation .custom-button-prev:hover {
  background: var(--Cool-Gray-Cool-Gray-010, #f2f4f8);
}

@media screen and (max-width: 600px) {
  .technology .inner {
    padding-bottom: 0;
  }
}
.technology__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10.4rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--Cool-Gray-Cool-Gray-100, #121619);
}
@media screen and (max-width: 1165px) {
  .technology__content {
    padding-block: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  .technology__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
  }
}
.technology__content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 1440px) {
  .technology__content-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}
@media screen and (max-width: 1000px) {
  .technology__content-text {
    padding: 0 2.5rem 2.5rem 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.technology__content-text .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 47.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.technology__content-text .title h4 {
  color: #f5f5f7;
}
.technology__content-text .title p {
  color: #f5f5f7;
}
@media screen and (max-width: 1000px) {
  .technology__content-text .title {
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.technology__content-text .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
@media screen and (max-width: 1165px) {
  .technology__content-text .boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .technology__content-text .boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 660px) {
  .technology__content-text .boxes {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.technology__content-text .boxes__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 28rem;
  padding: 2.2rem 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  border-radius: 0.4rem;
  background: #21272a;
}
.technology__content-text .boxes__box-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 660px) {
  .technology__content-text .boxes__box-description {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.technology__content-text .boxes__box-description p {
  color: #f5f5f7;
}
.technology__content-text .boxes__box-description svg g path {
  stroke: #a2a9b0;
}

.for-doctor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 600px) {
  .for-doctor .inner {
    padding-block: 4rem;
  }
}
.for-doctor__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 114.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin: 0 auto;
}
.for-doctor__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 56.8rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.for-doctor__content-title .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.for-doctor__content-title .description h3 {
  text-box-trim: trim-both;
  text-box-edge: text alphabetic;
}
.for-doctor__content-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.for-doctor__content-cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16.4rem;
  width: calc(33.3333333333% - 0.5333333333rem);
  border-radius: 0.4rem;
  background: var(--Cool-Gray-Cool-Gray-010, #f2f4f8);
}
@media screen and (max-width: 900px) {
  .for-doctor__content-cards .card {
    width: calc(50% - 0.4rem);
  }
}
@media screen and (max-width: 600px) {
  .for-doctor__content-cards .card {
    width: calc(100% - 0rem);
  }
}
@media screen and (max-width: 713px) {
  .for-doctor__content-cards .card {
    gap: 3.6rem;
  }
}
.for-doctor__content-cards .card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.for-doctor__content-cards .card__text svg g path {
  stroke: #a2a9b0;
}
.for-doctor__content-cards .card__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.3rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.for-doctor__content-cards .card__links .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--Cool-Gray-Cool-Gray-020, #dde1e5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.for-doctor__content-cards .card__links .link svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.for-doctor__content-cards .card__links .link p {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.for-doctor__content-cards .card__links .link:hover {
  border-bottom: 1px solid var(--Brand, #05c7a5);
}
.for-doctor__content-cards .card__links .link:hover svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.for-doctor__content-cards .card__links .link:hover svg g path {
  stroke: var(--Brand, #05c7a5);
}
.for-doctor__content-cards .card__links .link:hover p {
  color: var(--Brand, #05c7a5);
}
.for-doctor__content-cards .card__links .link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.help-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--Cool-Gray-Cool-Gray-100, #121619);
}
.help-us__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 2.5rem;
}
@media (min-width: 1440px) {
  .help-us__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 144rem;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  .help-us__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 0;
  }
}
.help-us__content-col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 47.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 1000px) {
  .help-us__content-col-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
  }
}
.help-us__content-col-left .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 47.2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  margin: 0;
}
.help-us__content-col-left .description h3,
.help-us__content-col-left .description p {
  color: #f5f5f7;
}
@media (max-width: 1000px) {
  .help-us__content-col-left .description {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5rem;
  }
}
.help-us__content-col-left .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
}
@media (max-width: 1000px) {
  .help-us__content-col-left .buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.help-us__content-col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 71.6rem;
}
.help-us__content-col-right figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  width: 100%;
}
.help-us__content-col-right figure img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 71.6rem;
          flex: 1 0 71.6rem;
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
  bottom: unset;
  left: unset;
  top: unset;
}

.swiper-pagination-bullet {
  background: var(--White, #fff);
  opacity: 1;
  border: 1px solid #dde1e5;
}
.swiper-pagination-bullet-active {
  background: var(--Cool-Gray-Cool-Gray-100, #121619);
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
/*# sourceMappingURL=home.css.map */
