footer {
  background: #ebe7f3; }

.footer-bottom {
  padding: 30px 0;
  border-top: 2px solid var(--color-primary-purple-primary-15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  line-height: 140%; }
  @media (max-width: 767px) {
    .footer-bottom {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 10px;
      text-align: center; } }
  .footer-bottom p:not(:nth-child(2)) {
    white-space: nowrap; }
  .footer-bottom p:nth-child(2) {
    padding: 0 16px;
    text-align: center; }
    @media (max-width: 767px) {
      .footer-bottom p:nth-child(2) {
        padding: 0; } }
  .footer-bottom span {
    opacity: 0.6;
    font-style: italic; }
  .footer-bottom a {
    color: var(--color-primary-purple-primary);
    text-decoration: underline; }

.footer-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0; }
  @media (max-width: 1023px) {
    .footer-body {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (max-width: 767px) {
    .footer-body {
      -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;
      padding-bottom: 30px; } }
  @media (max-width: 767px) {
    .footer-body .col:first-child {
      text-align: center; } }
  .footer-body .col:first-child img {
    margin-bottom: 15px; }
    @media (max-width: 767px) {
      .footer-body .col:first-child img {
        margin-left: auto;
        margin-right: auto; } }
  .footer-body .col:first-child ul {
    margin-bottom: 20px; }
    @media (max-width: 1199px) {
      .footer-body .col:first-child ul {
        display: none; } }
  .footer-body .col:first-child .link {
    font-size: 14px;
    line-height: 140%;
    text-decoration: underline;
    color: var(--color-primary-purple-primary); }
  @media (max-width: 1023px) {
    .footer-body .col:nth-child(2) {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding-left: 72px; } }
  @media (max-width: 767px) {
    .footer-body .col:nth-child(2) {
      width: 100%;
      padding-top: 40px;
      padding-left: 0; } }
  .footer-body .col:nth-child(2) ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 180px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 60px; }
    @media (max-width: 1199px) {
      .footer-body .col:nth-child(2) ul {
        gap: 0 32px; } }
    @media (max-width: 1023px) {
      .footer-body .col:nth-child(2) ul {
        max-height: 125px; } }
    @media (max-width: 767px) {
      .footer-body .col:nth-child(2) ul {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        max-height: none; } }
  .footer-body .col:nth-child(2) li {
    min-width: 145px;
    max-width: 165px; }
    @media (max-width: 1199px) {
      .footer-body .col:nth-child(2) li {
        min-width: auto; } }
    @media (max-width: 767px) {
      .footer-body .col:nth-child(2) li {
        max-width: 100%; } }
  .footer-body .col:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 60px; }
    @media (max-width: 1199px) {
      .footer-body .col:last-child {
        gap: 0 32px; } }
    @media (max-width: 1023px) {
      .footer-body .col:last-child {
        width: 100%;
        margin-top: 40px; } }
    @media (max-width: 767px) {
      .footer-body .col:last-child {
        -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; } }
    @media (max-width: 1023px) {
      .footer-body .col:last-child .col-box {
        width: 50%; } }
    @media (max-width: 767px) {
      .footer-body .col:last-child .col-box {
        width: 100%; } }
    .footer-body .col:last-child li {
      max-width: 220px; }
      @media (max-width: 1023px) {
        .footer-body .col:last-child li {
          max-width: 100%; } }

.tooltip {
  position: relative; }

.tooltip .tooltiptext {
  visibility: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color-primary-purple-primary);
  color: #fff;
  font-size: 14px;
  width: 205px;
  border: 1px solid var(--color-primary-purple-primary);
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: -16px; }
  .tooltip .tooltiptext::before {
    content: "";
    position: absolute;
    left: 22px;
    background: var(--color-primary-purple-primary);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -4px;
    border-bottom: 1px solid var(--color-primary-purple-primary);
    border-left: 1px solid var(--color-primary-purple-primary);
    width: 10px;
    height: 10px; }

.tooltip:hover .tooltiptext {
  visibility: visible; }

.col-box li:not(:last-child) {
  margin-bottom: 10px; }

.col-box li {
  font-size: 14px;
  line-height: 140%; }

@media (max-width: 767px) {
  .col-box {
    text-align: center; }
    .col-box:not(:last-child) {
      margin-bottom: 40px; } }

.col-box__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px; }

.arrow-up {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 15;
  border: 2px solid var(--color-background);
  background: var(--color-primary-purple-primary);
  width: 44px;
  height: 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  display: none; }
  @media (max-width: 767px) {
    .arrow-up {
      right: 16px; } }
  .arrow-up.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.mobile-social {
  display: none; }
  @media (max-width: 1199px) {
    .mobile-social {
      margin-bottom: 30px;
      display: grid;
      grid-template-columns: auto 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 1023px) {
    .mobile-social {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 767px) {
    .mobile-social {
      gap: 10px;
      grid-template-columns: 1fr; } }
  .mobile-social a {
    border: 1px solid var(--color-primary-purple-primary-15);
    border-radius: 15px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
    .mobile-social a svg {
      margin-right: 10px; }

.hero {
  padding-top: 40px;
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .hero {
      padding-top: 20px;
      padding-bottom: 64px; } }
  @media (max-width: 1023px) {
    .hero .swiper-button-next,
    .hero .swiper-button-prev {
      display: none; } }

.slider-wrapper {
  position: relative; }
  .slider-wrapper .swiper-button-next,
  .slider-wrapper .swiper-button-prev {
    top: calc(50% - 26px);
    margin: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    @media (max-width: 767px) {
      .slider-wrapper .swiper-button-next,
      .slider-wrapper .swiper-button-prev {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        top: auto;
        bottom: 0;
        position: relative; } }
  @media (max-width: 767px) {
    .slider-wrapper .arrows {
      left: 0;
      right: 0;
      bottom: 28px;
      position: absolute;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 20px; } }

.hero-slider {
  max-width: calc(100% - 120px); }
  .hero-slider .swiper-wrapper {
    margin-bottom: 58px; }
    @media (max-width: 767px) {
      .hero-slider .swiper-wrapper {
        margin-bottom: 40px; } }
  @media (max-width: 1023px) {
    .hero-slider {
      max-width: 100%; } }

.hero-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px; }
  @media (max-width: 767px) {
    .hero-slide {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .hero-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 80px 20px;
    max-height: 512px; }
    @media (max-width: 1023px) {
      .hero-slide img {
        border-radius: 47px 12px; } }
  .hero-slide__title {
    font-size: 32px;
    color: var(--color-text-heading);
    margin-bottom: 20px; }
    @media (max-width: 1023px) {
      .hero-slide__title {
        font-size: 28px; } }
    @media (max-width: 767px) {
      .hero-slide__title {
        font-size: 24px; } }
  .hero-slide__subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px; }
    .hero-slide__subtitle svg {
      margin-right: 5px; }
    @media (max-width: 767px) {
      .hero-slide__subtitle {
        font-size: 14px; } }
  .hero-slide__comment {
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 30px; }
  @media (max-width: 767px) {
    .hero-slide .col:last-child {
      grid-row: 1; } }
  @media (max-width: 767px) {
    .hero-slide .btn {
      width: auto; } }

.sales {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .sales {
      padding-bottom: 64px; } }

.sales-slider .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto; }

@media (max-width: 1023px) {
  .sales-slider {
    max-width: calc(100% - 120px); } }

@media (max-width: 1023px) {
  .sales-slider .swiper-wrapper {
    margin-bottom: 58px; } }

@media (max-width: 767px) {
  .sales-slider .swiper-wrapper {
    margin-bottom: 88px; } }

@media (max-width: 767px) {
  .sales-slider {
    max-width: 100%; } }

.sale-slide {
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (max-width: 767px) {
    .sale-slide {
      width: 100%; } }
  .sale-slide__icon {
    margin-top: auto; }
  .sale-slide img {
    border-radius: 10px;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 15px;
    width: 100%; }
  .sale-slide__time {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 5px; }
  .sale-slide__name {
    font-weight: 500;
    line-height: 140%;
    color: var(--color-text-heading);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; }

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.about {
  padding-bottom: 80px; }
  @media (min-width: 767px) {
    .about.animated .col:last-child::before {
      -webkit-animation-name: fadeIn;
              animation-name: fadeIn;
      -webkit-animation-duration: 0.7s;
              animation-duration: 0.7s; }
    .about.animated .col:last-child svg {
      -webkit-animation-name: fadeIn;
              animation-name: fadeIn;
      -webkit-animation-duration: 0.7s;
              animation-duration: 0.7s; }
    .about.animated .svg-wrap {
      -webkit-animation-duration: 6s;
              animation-duration: 6s;
      -webkit-animation-name: rotating;
              animation-name: rotating;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      -webkit-animation-direction: linear;
              animation-direction: linear;
      -webkit-animation-delay: 2s;
              animation-delay: 2s; } }
  @media (max-width: 767px) {
    .about {
      padding-bottom: 64px; } }
  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px; }
    @media (max-width: 1199px) {
      .about .container {
        gap: 40px; } }
    @media (max-width: 1023px) {
      .about .container {
        grid-template-columns: 1fr; } }
  .about h2 {
    margin-bottom: 16px; }
  .about p {
    line-height: 140%; }
    .about p:not(:last-child) {
      margin-bottom: 16px; }
  .about span {
    font-style: italic;
    font-weight: 500;
    color: var(--color-primary-purple-primary); }
  .about img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 450px 450px 25px 25px;
    height: 100%; }
    @media (max-width: 767px) {
      .about img {
        border-radius: 240px 240px 13px 13px; } }
  .about .col:last-child {
    padding-top: 20px;
    padding-right: 20px;
    position: relative; }
    @media (max-width: 1023px) {
      .about .col:last-child {
        max-width: 540px;
        width: 100%;
        margin: 0 auto; } }
    @media (max-width: 767px) {
      .about .col:last-child {
        padding-top: 10px;
        padding-right: 10px; } }
    .about .col:last-child::before {
      content: "";
      position: absolute;
      width: calc(100% - 20px);
      height: calc(100% - 20px);
      top: 0;
      right: 0;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      border: 1px solid var(--color-text-heading);
      border-radius: 450px 450px 25px 25px;
      z-index: -1;
      -webkit-animation-delay: 1s;
              animation-delay: 1s; }
      @media (min-width: 767px) {
        .about .col:last-child::before {
          -webkit-transform: scale(0);
              -ms-transform: scale(0);
                  transform: scale(0); } }
      @media (max-width: 767px) {
        .about .col:last-child::before {
          width: calc(100% - 10px);
          height: calc(100% - 10px);
          border-radius: 240px 240px 13px 13px; } }
    .about .col:last-child .svg-wrap {
      position: absolute;
      top: 25px;
      right: 110px;
      width: 32px;
      height: 32px; }
      @media (max-width: 767px) {
        .about .col:last-child .svg-wrap {
          right: 50px;
          top: 21px; } }
    .about .col:last-child svg {
      position: static;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      -webkit-transform-origin: center center;
          -ms-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-delay: 1.8s;
              animation-delay: 1.8s; }
      @media (min-width: 767px) {
        .about .col:last-child svg {
          -webkit-transform: scale(0);
              -ms-transform: scale(0);
                  transform: scale(0); } }
      @media (max-width: 767px) {
        .about .col:last-child svg {
          width: 18px;
          height: 18px; } }

.show-all {
  margin-top: 20px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-primary-purple-primary);
  position: relative;
  z-index: 2; }
  @media (max-width: 1023px) {
    .show-all {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .show-all svg {
    margin-left: 10px; }
  .show-all.active svg {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg); }

.cta {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .cta {
      padding-bottom: 64px; } }

.cta-box {
  background: var(--color-background--secondary);
  border-radius: 20px;
  padding: 48px 100px 48px 0;
  position: relative;
  overflow: hidden; }
  @media (max-width: 1023px) {
    .cta-box {
      padding: 30px;
      background-image: url(img/cta-bg-mobile.jpg); } }
  @media (max-width: 767px) {
    .cta-box {
      padding: 24px 16px; } }
  .cta-box img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 60%;
    width: 100%;
    height: 100%; }
    @media (max-width: 1280px) {
      .cta-box img {
        left: -90px;
        max-width: 65%; } }
    @media (max-width: 1199px) {
      .cta-box img {
        left: -278px;
        max-width: 83%; } }
    @media (max-width: 1023px) {
      .cta-box img {
        display: none; } }
  @media (max-width: 1023px) {
    .cta-box .btn {
      width: 100%; } }
  .cta-box h2 {
    font-size: 24px;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .cta-box h2 {
        font-size: 20px; } }
  .cta-box .col {
    max-width: 310px;
    width: 100%;
    margin-left: auto; }
    @media (max-width: 1023px) {
      .cta-box .col {
        max-width: 100%; } }

.directions {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .directions {
      padding-bottom: 64px; } }
  .directions h2 {
    margin-bottom: 40px;
    text-align: center; }
    @media (max-width: 767px) {
      .directions h2 {
        margin-bottom: 20px; } }
  .directions .accordion-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px; }
    @media (max-width: 1023px) {
      .directions .accordion-container {
        grid-template-columns: 1fr;
        gap: 20px; } }
  .directions .accordion {
    padding: 0;
    border: none !important;
    position: relative;
    overflow: visible; }
    @media (max-width: 1023px) {
      .directions .accordion {
        overflow: hidden; } }
  .directions .accordion__content {
    overflow: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% + 10px);
    z-index: 2; }
    .directions .accordion__content ul {
      border: 1px solid var(--color-primary-purple-primary-5);
      border-radius: 20px;
      padding: 20px;
      -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.04);
              box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.04);
      background: var(--color-background);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover; }
      @media (max-width: 1199px) {
        .directions .accordion__content ul {
          padding: 16px; } }
  @media (max-width: 1199px) and (max-width: 767px) {
    .directions .accordion__content ul {
      padding: 20px 16px; } }
    @media (max-width: 1023px) {
      .directions .accordion__content {
        padding: 0;
        position: relative;
        top: 0; } }
    .directions .accordion__content li a {
      color: var(--color-text-heading);
      padding: 20px 0px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      text-align: center;
      font-size: 20px;
      text-align: center;
      font-weight: 400;
      width: 100%;
      text-decoration: none; }
      @media (max-width: 1199px) {
        .directions .accordion__content li a {
          font-size: 16px; } }
      @media (max-width: 1023px) {
        .directions .accordion__content li a {
          font-size: 20px; } }
      @media (max-width: 767px) {
        .directions .accordion__content li a {
          font-size: 16px; } }
      @media (max-width: 1199px) {
        .directions .accordion__content li a p {
          padding: 0 8px; } }
      .directions .accordion__content li a svg {
        -ms-flex-negative: 0;
            flex-shrink: 0; }
  .directions .accordion__content-text {
    padding-top: 0; }
    @media (max-width: 1023px) {
      .directions .accordion__content-text {
        padding-top: 10px; } }
  .directions .accordion__intro {
    padding: 20px 0;
    border-bottom: 2px solid var(--color-primary-purple-primary-15);
    border-top: 2px solid var(--color-primary-purple-primary-15); }
  .directions .accordion__intro-btn {
    margin-left: 0;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 767px) {
      .directions .accordion__intro-btn {
        font-size: 20px; } }

.doctors {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .doctors {
      padding-bottom: 64px; } }
  .doctors h2 {
    margin-bottom: 60px;
    text-align: center; }
    @media (max-width: 767px) {
      .doctors h2 {
        margin-bottom: 40px; } }
  @media (max-width: 767px) {
    .doctors .slider-wrapper .arrows {
      bottom: 72px; } }

.doctors-slider-wrapper {
  border-bottom: 2px solid var(--color-primary-purple-primary-15); }

.doctors-slider {
  margin-bottom: 48px;
  max-width: calc(100% - 120px); }
  @media (max-width: 767px) {
    .doctors-slider {
      margin-bottom: 35px; } }
  .doctors-slider .swiper-wrapper {
    margin-bottom: 58px; }
    @media (max-width: 767px) {
      .doctors-slider .swiper-wrapper {
        margin-bottom: 106px; } }
  @media (max-width: 1023px) {
    .doctors-slider {
      max-width: calc(100% - 120px); } }
  @media (max-width: 767px) {
    .doctors-slider {
      max-width: 100%; } }

.doctors-slide {
  text-align: center; }
  .doctors-slide__name {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px; }
  .doctors-slide__position {
    padding: 0 8px;
    font-size: 14px;
    line-height: 140%; }
  .doctors-slide img {
    width: 120px;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 10px; }

.top-line {
  position: relative;
  margin-bottom: 40px; }
  .top-line__icon {
    padding: 0 16px;
    background: var(--color-background);
    position: relative;
    z-index: 3;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
  .top-line::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: var(--color-primary-purple-primary-15); }

.reviews {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .reviews {
      padding-bottom: 64px; } }

.reviews-slider {
  max-width: calc(100% - 120px); }
  .reviews-slider .swiper-wrapper {
    margin-bottom: 58px; }
    @media (max-width: 767px) {
      .reviews-slider .swiper-wrapper {
        margin-bottom: 88px; } }
  @media (max-width: 1023px) {
    .reviews-slider {
      max-width: calc(100% - 120px); } }
  @media (max-width: 767px) {
    .reviews-slider {
      max-width: 100%; } }

.reviews-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff; }
  .reviews-slide__title {
    font-size: 24px;
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      .reviews-slide__title {
        font-size: 20px; } }
  .reviews-slide__preview {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 140%;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .reviews-slide__preview {
        font-size: 14px;
        -webkit-line-clamp: 3; } }
  .reviews-slide a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: auto;
    font-size: 14px;
    color: var(--color-primary-purple-primary); }
    .reviews-slide a svg {
      margin-left: 5px; }

.fancybox__slide .reviews-slide {
  max-width: 600px;
  width: 100%; }

.fancybox__slide .reviews-slide__preview {
  display: block; }

.features:not(.features--about).animated .col:first-child::before {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s; }

.features:not(.features--about).animated .col:first-child svg {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s; }

.features:not(.features--about).animated .svg-wrap {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-name: rotating;
          animation-name: rotating;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
          animation-direction: linear;
  -webkit-animation-delay: 2s;
          animation-delay: 2s; }

.features:not(.features--about) .col:first-child svg {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s; }
  @media (min-width: 767px) {
    .features:not(.features--about) .col:first-child svg {
      -webkit-transform: scale(0);
          -ms-transform: scale(0);
              transform: scale(0); } }

.features:not(.features--about) .col:first-child::before {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s; }
  @media (min-width: 767px) {
    .features:not(.features--about) .col:first-child::before {
      -webkit-transform: scale(0);
          -ms-transform: scale(0);
              transform: scale(0); } }

.features {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .features {
      padding-bottom: 64px; } }
  .features .top-line__icon {
    margin-right: auto;
    margin-left: 80px; }
  .features .top-line:last-child {
    margin-bottom: 0;
    margin-top: 40px; }
    .features .top-line:last-child .top-line__icon {
      margin-left: auto;
      margin-right: 80px; }
  .features .features-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; }
    @media (max-width: 1023px) {
      .features .features-wrap {
        grid-template-columns: 1fr;
        gap: 40px; } }
  .features .col:last-child {
    padding: 40px 0; }
    @media (max-width: 1023px) {
      .features .col:last-child {
        padding: 0; } }
  .features .col:first-child {
    padding-top: 30px;
    padding-left: 30px;
    position: relative; }
    @media (max-width: 1023px) {
      .features .col:first-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 415px;
        margin: 0 auto;
        width: 100%;
        padding-top: 24px;
        padding-left: 24px; } }
    @media (max-width: 767px) {
      .features .col:first-child {
        padding-top: 16px;
        padding-left: 16px; } }
    .features .col:first-child .svg-wrap {
      position: absolute;
      top: 20px;
      left: 16px; }
      @media (max-width: 1023px) {
        .features .col:first-child .svg-wrap {
          top: 8px; } }
      @media (max-width: 767px) {
        .features .col:first-child .svg-wrap {
          top: 10px;
          left: 8px; } }
    @media (max-width: 767px) {
      .features .col:first-child svg {
        top: 10px;
        left: 8px;
        width: 18px;
        height: 18px; } }
    .features .col:first-child::before {
      content: "";
      position: absolute;
      width: calc(100% - 30px);
      height: calc(100% - 30px);
      top: 0;
      left: 0;
      border: 1px solid var(--color-text-heading);
      border-radius: 120px 20px;
      z-index: -1; }
      @media (max-width: 1023px) {
        .features .col:first-child::before {
          width: calc(100% - 24px);
          height: calc(100% - 24px);
          border-radius: 92px 15px; } }
      @media (max-width: 767px) {
        .features .col:first-child::before {
          width: calc(100% - 16px);
          height: calc(100% - 16px);
          border-radius: 64px 11px; } }
  .features img {
    border-radius: 120px 20px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    right: 0;
    bottom: 0; }
    @media (max-width: 1023px) {
      .features img {
        max-height: 276px;
        height: 100%;
        width: 100%;
        position: static;
        border-radius: 92px 15px; } }
    @media (max-width: 767px) {
      .features img {
        border-radius: 64px 11px; } }
  @media (max-width: 1023px) {
    .features .btn {
      width: 100%; } }
  .features h2 {
    margin-bottom: 20px; }
  .features ul:not(:last-child) {
    margin-bottom: 30px; }
  .features li:not(:last-child) {
    margin-bottom: 10px; }
  .features li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 140%; }
    .features li svg {
      margin-top: 2px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 5px; }

.features--reverse.animated .col:first-child::before {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s; }

.features--reverse.animated .col:first-child svg {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s; }

.features--reverse.animated .svg-wrap {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-name: rotating;
          animation-name: rotating;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
          animation-direction: linear;
  -webkit-animation-delay: 2s;
          animation-delay: 2s; }

.features--reverse img {
  border-radius: 20px 120px;
  left: 0;
  right: auto; }
  @media (max-width: 1023px) {
    .features--reverse img {
      border-radius: 15px 92px; } }
  @media (max-width: 767px) {
    .features--reverse img {
      border-radius: 11px 64px; } }

.features--reverse .col:first-child::before {
  left: auto;
  right: 0;
  border-radius: 20px 120px; }
  @media (max-width: 1023px) {
    .features--reverse .col:first-child::before {
      border-radius: 15px 92px; } }
  @media (max-width: 767px) {
    .features--reverse .col:first-child::before {
      border-radius: 11px 64px; } }

.features--reverse .features-wrap .col:first-child {
  grid-column: 2/3;
  grid-row: 1; }
  .features--reverse .features-wrap .col:first-child .svg-wrap {
    right: 19px;
    top: 19px;
    left: auto; }
    @media (max-width: 1023px) {
      .features--reverse .features-wrap .col:first-child .svg-wrap {
        top: 8px;
        right: 15px; } }
    @media (max-width: 767px) {
      .features--reverse .features-wrap .col:first-child .svg-wrap {
        right: 12px; } }
  @media (max-width: 1023px) {
    .features--reverse .features-wrap .col:first-child {
      padding-left: 0;
      padding-right: 24px;
      grid-row: 2;
      grid-column: 1/2; } }
  @media (max-width: 767px) {
    .features--reverse .features-wrap .col:first-child {
      padding-right: 16px; } }

.features--reverse .features-wrap .col:last-child {
  grid-row: 1;
  grid-column: 1/2; }
  @media (max-width: 1023px) {
    .features--reverse .features-wrap .col:last-child {
      grid-row: 1; } }

.news .sale-slide__name {
  margin-bottom: 5px; }

.news .sale-slide__descr {
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.pay {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .pay {
      padding-bottom: 64px; } }

.pay-box {
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
  background: #fff;
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 40px; }
  @media (max-width: 767px) {
    .pay-box {
      padding: 24px 16px; } }
  .pay-box h2 {
    margin-bottom: 10px; }
  .pay-box p {
    line-height: 140%;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .pay-box p {
        font-size: 14px; } }
  @media (max-width: 767px) {
    .pay-box .btn {
      width: 100%;
      margin-bottom: 20px; } }
  .pay-box__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 767px) {
      .pay-box__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }

.gallery {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .gallery {
      padding-bottom: 64px; } }
  .gallery h2 {
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .gallery h2 {
        margin-bottom: 20px; } }
  .gallery .container {
    position: relative; }
  .gallery .gallery-left {
    position: absolute;
    top: -54px;
    left: -54px;
    z-index: -1; }
    @media (max-width: 767px) {
      .gallery .gallery-left {
        display: none; } }
  .gallery .gallery-center {
    position: absolute;
    top: -54px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 24%;
    z-index: -1; }
    @media (max-width: 767px) {
      .gallery .gallery-center {
        display: none; } }
  .gallery .btn-border {
    display: none; }
    @media (max-width: 1023px) {
      .gallery .btn-border {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        margin-top: 20px; } }

.gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }
  @media (max-width: 1023px) {
    .gallery-wrap {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 767px) {
    .gallery-wrap {
      grid-template-columns: 1fr 1fr;
      gap: 10px; } }
  @media (max-width: 767px) {
    .gallery-wrap.gallery-wrap--video {
      gap: 20px;
      grid-template-columns: 1fr; }
      .gallery-wrap.gallery-wrap--video img {
        aspect-ratio: auto; } }
  .gallery-wrap a.hidden {
    display: none; }
  .gallery-wrap .video {
    position: relative; }
    .gallery-wrap .video::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 20px;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
    .gallery-wrap .video svg {
      position: absolute;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin: 0 auto;
      left: 0;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
  .gallery-wrap img {
    aspect-ratio: 1/1;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.awards {
  padding-bottom: 80px;
  position: relative; }
  @media (max-width: 767px) {
    .awards {
      padding-bottom: 64px; } }
  .awards h2 {
    text-align: center;
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .awards h2 {
        margin-bottom: 24px; } }
  .awards .awards-top {
    position: absolute;
    left: -110px;
    top: -32px;
    z-index: -1; }
    @media (max-width: 767px) {
      .awards .awards-top {
        left: -99px;
        top: 41px; } }

@media (max-width: 1023px) {
  .awards-slider {
    max-width: calc(100% - 120px); } }

.awards-slider .swiper-wrapper {
  margin-bottom: 58px; }
  @media (max-width: 767px) {
    .awards-slider .swiper-wrapper {
      margin-bottom: 108px; } }

@media (max-width: 767px) {
  .awards-slider {
    max-width: 100%; } }

.awards-slide {
  text-align: center; }
  @media (max-width: 1023px) {
    .awards-slide {
      width: 100%; } }
  .awards-slide img {
    height: 256px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 14px;
    margin: 0 auto 20px; }
  .awards-slide__name {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 10px; }
  .awards-slide__descr {
    line-height: 140%; }

.map {
  position: relative; }
  .map iframe {
    display: block; }
  .map ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px; }
    .map ul span {
      color: var(--color-primary-purple-primary); }
    @media (max-width: 767px) {
      .map ul {
        font-size: 14px; } }
  .map .map-box {
    position: absolute;
    left: calc(50vw - 610px);
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    border: 1px solid var(--color-primary-purple-primary-15);
    background: #fff;
    border-radius: 20px;
    padding: 30px; }
    @media (max-width: 1280px) {
      .map .map-box {
        left: 40px; } }
    @media (max-width: 1023px) {
      .map .map-box {
        left: 20px; } }
    @media (max-width: 767px) {
      .map .map-box {
        padding: 30px 16px;
        border-radius: 20px 20px 0 0;
        position: static;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        background: var(--color-background);
        background-image: url(img/contacts-bg.png);
        background-repeat: no-repeat;
        background-size: cover; } }
  .map address {
    font-style: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 140%;
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      .map address {
        max-width: 80%;
        font-size: 14px; } }
    .map address svg {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 10px; }
  .map h2 {
    font-size: 24px;
    margin-bottom: 20px; }
  .map .btn-border {
    margin-top: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    @media (max-width: 767px) {
      .map .btn-border {
        width: 100%; } }
  .map .tel {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    @media (max-width: 767px) {
      .map .tel {
        font-size: 18px; } }

.video-reviews {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .video-reviews {
      padding-bottom: 64px; } }
  .video-reviews h2 {
    margin-bottom: 40px;
    text-align: center; }
    @media (max-width: 767px) {
      .video-reviews h2 {
        margin-bottom: 20px; } }

.video-slide {
  width: 100%;
  position: relative; }
  .video-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1); }
  .video-slide svg {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .video-slide img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px; }

.text-reviews {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .text-reviews {
      padding-bottom: 64px; } }

.text-reviews-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid var(--color-primary-purple-primary-10);
  border-radius: 20px;
  padding: 40px 20px;
  -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.04);
  background: rgba(224, 218, 237, 0.1); }
  .text-reviews-box h2 {
    text-align: center;
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .text-reviews-box h2 {
        margin-bottom: 20px; } }

.img-reviews-slider {
  max-width: calc(100% - 120px); }
  .img-reviews-slider .swiper-wrapper {
    margin-bottom: 58px; }
    @media (max-width: 767px) {
      .img-reviews-slider .swiper-wrapper {
        margin-bottom: 88px; } }
  @media (max-width: 767px) {
    .img-reviews-slider {
      max-width: 100%; } }
  .img-reviews-slider a {
    width: 100%; }
  .img-reviews-slider img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px; }

.doctor-page {
  padding-bottom: 88px; }
  @media (max-width: 767px) {
    .doctor-page {
      padding-bottom: 64px; } }
  .doctor-page .mobile-btn {
    display: none; }
    @media (max-width: 767px) {
      .doctor-page .mobile-btn {
        border-top: 1px solid var(--color-primary-purple-primary-15);
        padding: 20px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: -webkit-sticky;
        position: sticky;
        bottom: 0; }
        .doctor-page .mobile-btn .btn {
          width: 100%; }
        .doctor-page .mobile-btn.scroll {
          display: block; } }
  .doctor-page .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .doctor-page .col:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 80px; }
    @media (max-width: 1199px) {
      .doctor-page .col:last-child {
        padding-left: 60px; } }
    @media (max-width: 1023px) {
      .doctor-page .col:last-child {
        padding-left: 0; } }
  .doctor-page .col:first-child {
    position: -webkit-sticky;
    position: sticky;
    top: 80px; }
    @media (max-width: 1023px) {
      .doctor-page .col:first-child {
        display: none; } }
  @media (min-width: 1023px) {
    .doctor-page .accordion__intro {
      pointer-events: none; }
    .doctor-page .accordion__intro-btn {
      display: none; }
    .doctor-page .accordion__content {
      max-height: none;
      opacity: 1; } }

.doctor-img img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px; }
  @media (max-width: 1199px) {
    .doctor-img img {
      width: 280px;
      height: 280px; } }

.doctor-img .btn {
  width: 100%; }

.doctor-page-head {
  padding-top: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-primary-purple-primary-15); }
  @media (max-width: 1023px) {
    .doctor-page-head {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 0; }
      .doctor-page-head .doctor-page-head__box {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; } }
  @media (max-width: 767px) {
    .doctor-page-head {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: center; } }
  .doctor-page-head .btn {
    display: none; }
    @media (max-width: 1023px) {
      .doctor-page-head .btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        margin-top: 20px; } }
  .doctor-page-head img {
    display: none; }
    @media (max-width: 1023px) {
      .doctor-page-head img {
        display: block;
        width: 240px;
        height: 240px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 50%;
        margin-right: 40px; } }
    @media (max-width: 767px) {
      .doctor-page-head img {
        width: 200px;
        height: 200px;
        margin-right: 0;
        margin-bottom: 24px; } }
  .doctor-page-head h1 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 32px;
    color: var(--color-text-heading);
    margin-bottom: 10px; }
    @media (max-width: 1023px) {
      .doctor-page-head h1 {
        font-size: 28px; } }
    @media (max-width: 767px) {
      .doctor-page-head h1 {
        font-size: 24px; } }
  .doctor-page-head__text {
    font-weight: 500;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.4); }
    .doctor-page-head__text span {
      color: var(--color-body-text); }
    @media (max-width: 767px) {
      .doctor-page-head__text {
        font-size: 14px; } }
  .doctor-page-head__links {
    font-weight: 500;
    line-height: 140%;
    color: var(--color-primary-purple-primary);
    margin-bottom: 10px; }
    .doctor-page-head__links a {
      color: var(--color-primary-purple-primary); }
    @media (max-width: 767px) {
      .doctor-page-head__links {
        font-size: 14px; } }

.accordion {
  overflow: hidden;
  position: relative;
  padding: 20px 0; }
  @media (max-width: 1023px) {
    .accordion {
      border-bottom: 1px solid var(--color-primary-purple-primary-15) !important; } }

.accordion:not(:last-child) {
  border-bottom: 1px solid var(--color-primary-purple-primary-15); }

.accordion__intro {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  font-size: 24px;
  color: var(--color-text-heading); }
  @media (max-width: 767px) {
    .accordion__intro {
      font-size: 18px; } }

.accordion__active .accordion__content {
  opacity: 1; }

.accordion__active .accordion__intro-btn svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
  .accordion__active .accordion__intro-btn svg path {
    fill: var(--color-primary-purple-primary) !important; }

.accordion__active .accordion__intro {
  color: var(--color-primary-purple-primary); }

.accordion__content {
  max-height: 0;
  will-change: max-height;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0;
  position: relative;
  line-height: 1.55;
  padding: 0; }
  .accordion__content iframe {
    display: block;
    border-radius: 20px;
    width: 100%;
    height: 440px; }
    @media (max-width: 1199px) {
      .accordion__content iframe {
        height: 320px; } }
  .accordion__content a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: var(--color-primary-purple-primary); }

.accordion__content-text {
  padding-top: 30px; }
  .accordion__content-text li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 140%; }
    .accordion__content-text li:not(:last-child) {
      margin-bottom: 10px; }
    .accordion__content-text li svg {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 5px;
      margin-top: 3px; }

.accordion__intro-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  position: relative;
  margin-left: 15px; }

.accordion__intro-btn svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }

.media {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .media {
      padding-bottom: 64px; } }
  .media .top-line__icon {
    margin-right: auto;
    margin-left: 80px; }
  .media .top-line:last-child {
    margin-bottom: 0;
    margin-top: 40px; }
    .media .top-line:last-child .top-line__icon {
      margin-left: auto;
      margin-right: 80px; }

.media-head {
  margin-bottom: 40px; }
  .media-head h2 {
    margin-bottom: 10px; }
  .media-head p {
    line-height: 140%; }
    .media-head p:not(:last-child) {
      margin-bottom: 10px; }
    @media (max-width: 767px) {
      .media-head p {
        font-size: 14px; } }

.pay-page {
  padding-bottom: 88px; }
  @media (max-width: 767px) {
    .pay-page {
      padding-bottom: 64px; } }

.pay-page__box {
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 40px;
  -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
  background: rgba(224, 218, 237, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (max-width: 767px) {
    .pay-page__box {
      padding: 20px; } }
  .pay-page__box form {
    max-width: 800px;
    width: 100%;
    margin-bottom: 20px; }
  .pay-page__box .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px; }
    @media (max-width: 767px) {
      .pay-page__box .form-row {
        grid-template-columns: 1fr; } }
  .pay-page__box .form-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 767px) {
      .pay-page__box .form-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .pay-page__box .form-bottom .btn {
      margin-right: 40px; }
      @media (max-width: 767px) {
        .pay-page__box .form-bottom .btn {
          width: 100%;
          margin-right: 0;
          margin-bottom: 40px; } }

.pay-page__box-head {
  margin-bottom: 32px; }
  .pay-page__box-head h1 {
    font-weight: 400;
    font-size: 32px;
    color: var(--color-text-heading);
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      .pay-page__box-head h1 {
        font-size: 28px; } }
  .pay-page__box-head p {
    line-height: 140%; }
    @media (max-width: 767px) {
      .pay-page__box-head p {
        font-size: 14px; } }
    .pay-page__box-head p a {
      text-decoration: underline;
      color: var(--color-primary-purple-primary); }

.pay-page__box-bottom:not(:last-child) {
  margin-bottom: 20px; }

.pay-page__box-bottom h3 {
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 12px; }

.pay-page__box-bottom p {
  font-size: 14px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.7); }

.pay-page__box-bottom ul {
  font-size: 14px; }
  .pay-page__box-bottom ul li {
    padding-left: 16px;
    position: relative; }
    .pay-page__box-bottom ul li::before {
      content: "";
      position: absolute;
      width: 4px;
      height: 4px;
      background-color: rgba(0, 0, 0, 0.7);
      left: 0;
      top: 6px;
      border-radius: 50%; }
  .pay-page__box-bottom ul li:not(:last-child) {
    margin-bottom: 8px; }
  .pay-page__box-bottom ul a {
    font-style: italic;
    font-weight: 400;
    text-decoration: underline;
    color: var(--color-primary-purple-primary); }

.pay-page__box-bottom p:not(:last-child) {
  margin-bottom: 12px; }

.doctors-page {
  padding-bottom: 88px; }
  .doctors-page h1 {
    margin-bottom: 20px; }

.doctors-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 60px; }
  @media (max-width: 1199px) {
    .doctors-items {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 1023px) {
    .doctors-items {
      margin-bottom: 40px;
      grid-template-columns: 1fr 1fr;
      gap: 30px 60px; } }
  @media (max-width: 767px) {
    .doctors-items {
      margin-bottom: 24px;
      gap: 20px;
      grid-template-columns: 1fr; } }
  .doctors-items .doctors-slide {
    cursor: pointer;
    padding-bottom: 20px; }
    .doctors-items .doctors-slide__position {
      margin-bottom: 20px; }
      .doctors-items .doctors-slide__position a {
        font-size: 14px;
        display: block;
        text-decoration: underline;
        color: var(--color-primary-purple-primary); }
    .doctors-items .doctors-slide__name {
      display: block; }
    .doctors-items .doctors-slide__img {
      position: relative;
      margin-bottom: 15px; }
    .doctors-items .doctors-slide .btn {
      -webkit-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s;
      opacity: 0;
      width: 100%;
      height: 42px;
      font-size: 14px; }
      @media (max-width: 1023px) {
        .doctors-items .doctors-slide .btn {
          opacity: 1;
          max-width: 170px;
          margin: 0 auto; } }
    .doctors-items .doctors-slide img {
      width: 135px;
      height: 135px; }
    .doctors-items .doctors-slide img.hover {
      -webkit-transition: opacity 0.3s;
      -o-transition: opacity 0.3s;
      transition: opacity 0.3s;
      opacity: 0;
      border-radius: 0;
      -o-object-fit: contain;
         object-fit: contain;
      position: absolute;
      top: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 0;
      right: 0;
      margin: 0 auto;
      height: 160px;
      width: 160px;
      z-index: -1; }
      @media (max-width: 1023px) {
        .doctors-items .doctors-slide img.hover {
          opacity: 1; } }

.doctors-search {
  margin-bottom: 20px;
  max-width: 620px; }
  @media (max-width: 1023px) {
    .doctors-search {
      max-width: 100%; } }
  .doctors-search .input {
    margin-bottom: 0;
    position: relative; }
    .doctors-search .input input {
      padding-left: 40px; }
  .doctors-search svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 14px; }

.doctors-types {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px; }
  @media (max-width: 767px) {
    .doctors-types {
      display: none; } }
  .doctors-types input[type="radio"] {
    display: none; }
  .doctors-types .radio-name {
    cursor: pointer;
    border-radius: 45px;
    padding: 8px 20px 12px 20px;
    background: var(--color-primary-purple-primary-5);
    color: var(--color-primary-purple-primary);
    font-size: 14px;
    white-space: nowrap;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s; }
  .doctors-types input[type="radio"]:checked + .radio-name {
    background: var(--color-primary-purple-primary);
    color: #fff; }

.doctors-select {
  margin-bottom: 30px;
  display: none; }
  @media (max-width: 767px) {
    .doctors-select {
      display: block; } }
  .doctors-select .nice-select {
    float: none;
    width: 100%;
    height: 50px;
    border: 1px solid var(--color-primary-purple-primary-15);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 14px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .doctors-select .nice-select .list {
      border: 1px solid var(--color-primary-purple-primary-5);
      border-radius: 20px;
      padding: 20px;
      -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.04);
              box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.04);
      background: var(--color-background);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      background-image: url(img/select-bg.png);
      width: 100%; }
      .doctors-select .nice-select .list li {
        padding: 0; }
  .doctors-select .nice-select .option:hover,
  .doctors-select .nice-select .option.focus,
  .doctors-select .nice-select .option.selected.focus {
    background-color: transparent; }
  .doctors-select .nice-select:after {
    margin-top: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    border: none;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.59961 12.4132L3.99961 12.4132L3.99961 11.2132L4.59961 11.2132L4.59961 12.4132ZM10.7836 18.324C10.7836 18.6554 10.515 18.924 10.1836 18.924C9.85225 18.924 9.58362 18.6554 9.58362 18.324L10.7836 18.324ZM15.9996 11.2132L16.5996 11.2132L16.5996 12.4132L15.9996 12.4132L15.9996 11.2132ZM9.65947 1.62549L9.65947 1.02549L10.8595 1.02549L10.8595 1.62549L9.65947 1.62549ZM10.8595 18.3998C10.8595 18.7312 10.5908 18.9998 10.2595 18.9998C9.9281 18.9998 9.65947 18.7312 9.65947 18.3998L10.8595 18.3998ZM4.59961 11.2132C6.12143 11.2132 7.29974 11.6601 8.19609 12.3568C9.08393 13.0469 9.66097 13.9551 10.0371 14.8321C10.4132 15.7092 10.5983 16.578 10.6903 17.2218C10.7366 17.5452 10.7598 17.8158 10.7716 18.0075C10.7775 18.1035 10.7805 18.18 10.782 18.2337C10.7828 18.2606 10.7832 18.2818 10.7834 18.297C10.7835 18.3046 10.7836 18.3107 10.7836 18.3152C10.7836 18.3174 10.7836 18.3193 10.7836 18.3208C10.7836 18.3215 10.7836 18.3221 10.7836 18.3227C10.7836 18.3229 10.7836 18.3233 10.7836 18.3234C10.7836 18.3237 10.7836 18.324 10.1836 18.324C9.58362 18.324 9.58362 18.3242 9.58362 18.3244C9.58362 18.3244 9.58362 18.3246 9.58362 18.3247C9.58362 18.3248 9.58362 18.3249 9.58362 18.3248C9.58362 18.3247 9.58362 18.3242 9.58361 18.3233C9.5836 18.3216 9.58357 18.3183 9.58351 18.3136C9.58338 18.3041 9.5831 18.2888 9.5825 18.268C9.58131 18.2264 9.57887 18.163 9.57384 18.0809C9.56377 17.9166 9.54343 17.6785 9.50241 17.3916C9.41993 16.8146 9.25608 16.0557 8.93419 15.3051C8.61227 14.5544 8.14231 13.8349 7.45964 13.3043C6.78549 12.7802 5.86979 12.4132 4.59961 12.4132L4.59961 11.2132ZM10.2595 18.3239C9.65947 18.3239 9.65947 18.3236 9.65947 18.3233C9.65947 18.3232 9.65947 18.3229 9.65947 18.3226C9.65947 18.322 9.65947 18.3214 9.65947 18.3206C9.65948 18.3192 9.65949 18.3173 9.6595 18.315C9.65954 18.3105 9.6596 18.3043 9.6597 18.2967C9.65992 18.2815 9.66034 18.2601 9.66113 18.2332C9.66271 18.1792 9.66581 18.1026 9.67187 18.0065C9.68396 17.8144 9.70794 17.5433 9.75553 17.2194C9.85028 16.5746 10.0409 15.7047 10.428 14.8266C10.8152 13.948 11.4086 13.0405 12.3192 12.352C13.2375 11.6576 14.4428 11.2132 15.9996 11.2132L15.9996 12.4132C14.6864 12.4132 13.7391 12.7827 13.043 13.3091C12.3392 13.8413 11.8562 14.5615 11.526 15.3106C11.1956 16.0602 11.0274 16.8179 10.9428 17.3939C10.9007 17.6803 10.8798 17.9179 10.8695 18.0819C10.8643 18.1638 10.8618 18.227 10.8606 18.2684C10.86 18.2891 10.8597 18.3044 10.8596 18.3138C10.8595 18.3185 10.8595 18.3217 10.8595 18.3234C10.8595 18.3243 10.8595 18.3247 10.8595 18.3248C10.8595 18.3249 10.8595 18.3248 10.8595 18.3247C10.8595 18.3246 10.8595 18.3244 10.8595 18.3244C10.8595 18.3242 10.8595 18.3239 10.2595 18.3239ZM10.8595 1.62549L10.8595 10.0127L9.65947 10.0127L9.65947 1.62549L10.8595 1.62549ZM10.8595 10.0127L10.8595 18.3239L9.65947 18.3239L9.65947 10.0127L10.8595 10.0127ZM10.8595 18.3239L10.8595 18.3998L9.65947 18.3998L9.65947 18.3239L10.8595 18.3239Z' fill='black' /%3E%3C/svg%3E"); }
  .doctors-select .nice-select .option {
    font-size: 14px;
    line-height: 32px;
    min-height: 24px; }
  .doctors-select .nice-select .option.selected {
    font-weight: 500;
    color: var(--color-primary-purple-primary); }

.price-page {
  padding-bottom: 88px; }
  @media (max-width: 767px) {
    .price-page {
      padding-bottom: 64px; } }
  .price-page .container {
    max-width: 1000px; }
  .price-page h1 {
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .price-page h1 {
        margin-bottom: 20px; } }
  .price-page .price-box ul {
    display: block !important; }
  .price-page .price-box {
    display: block !important; }
    .price-page .price-box:not(:last-child) {
      margin-bottom: 20px; }
    .price-page .price-box ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .price-page .price-box ul li:not(:last-child) {
        margin-bottom: 15px; }
      @media (max-width: 767px) {
        .price-page .price-box ul li {
          -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; } }
    .price-page .price-box ul a {
      text-decoration: underline;
      color: var(--color-primary-purple-primary); }
    .price-page .price-box ul p:first-child {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .price-page .price-box ul p:first-child svg {
        margin-right: 10px; }
    .price-page .price-box ul p:last-child {
      font-weight: 500; }
      @media (max-width: 767px) {
        .price-page .price-box ul p:last-child {
          margin-top: 10px;
          padding-left: 30px; } }
    .price-page .price-box > p {
      font-style: italic;
      font-weight: 500;
      line-height: 140%;
      color: var(--color-primary-purple-primary);
      margin-bottom: 15px; }

#accordian > ul > li:first-child {
  border-top: 1px solid var(--color-primary-purple-primary-15); }

#accordian > ul > li svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }
  #accordian > ul > li svg path {
    -webkit-transition: fill 0.3s;
    -o-transition: fill 0.3s;
    transition: fill 0.3s; }

#accordian > ul > li > h3 {
  font-weight: 400; }
  #accordian > ul > li > h3 svg {
    margin-left: 8px; }

#accordian > ul > li > h3 > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 24px;
  border-bottom: 1px solid var(--color-primary-purple-primary-15);
  padding: 20px 0px; }
  @media (max-width: 767px) {
    #accordian > ul > li > h3 > a {
      font-size: 20px; } }

#accordian > ul > li > ul > li > a {
  border-bottom: 1px solid var(--color-primary-purple-primary-15);
  padding: 20px 0px 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px; }
  #accordian > ul > li > ul > li > a svg {
    margin-left: 8px; }
  @media (max-width: 1023px) {
    #accordian > ul > li > ul > li > a {
      padding-left: 20px; } }
  @media (max-width: 767px) {
    #accordian > ul > li > ul > li > a {
      font-size: 18px;
      padding-left: 10px; } }

#accordian > ul > li > ul > li > ul > li {
  padding: 20px 0px 20px 40px;
  border-bottom: 1px solid var(--color-primary-purple-primary-15); }
  @media (max-width: 1023px) {
    #accordian > ul > li > ul > li > ul > li {
      padding-left: 20px; } }
  @media (max-width: 767px) {
    #accordian > ul > li > ul > li > ul > li {
      padding-left: 10px; } }

#accordian > ul > li.active > h3 a {
  color: var(--color-primary-purple-primary); }
  #accordian > ul > li.active > h3 a svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
  #accordian > ul > li.active > h3 a svg path {
    fill: var(--color-primary-purple-primary) !important; }

#accordian > ul > li > ul > li > .price-box {
  padding-top: 20px; }

#accordian > ul > li > ul > li.active > a {
  color: var(--color-primary-purple-primary);
  background: var(--color-primary-purple-primary-5); }
  #accordian > ul > li > ul > li.active > a svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
  #accordian > ul > li > ul > li.active > a svg path {
    fill: var(--color-primary-purple-primary) !important; }

.accordian ul ul {
  display: none; }

#accordian li.active > ul {
  display: block; }

.media-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; }
  @media (max-width: 1023px) {
    .media-items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 767px) {
    .media-items {
      grid-template-columns: 1fr; } }

.media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 20px; }
  .media-item__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 10px; }
    .media-item__head svg {
      margin-right: 10px; }
      @media (max-width: 767px) {
        .media-item__head svg {
          height: 32px; } }

.media-item__body {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  .media-item__body p {
    font-size: 14px;
    line-height: 140%;
    color: #2c2d30;
    margin-bottom: 10px; }

.media-item__images {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr; }
  @media (max-width: 767px) {
    .media-item__images {
      gap: 5px; } }
  .media-item__images img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px solid var(--color-primary-purple-primary-5);
    border-radius: 10px; }

.media-item__images-3 {
  grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 1199px) {
    .media-item__images-3 {
      grid-template-columns: 1fr 1fr; }
      .media-item__images-3 a:not(:nth-child(-n + 2)) {
        display: none; } }

.media-item__images--1 {
  grid-template-columns: 1fr; }
  .media-item__images--1 img {
    max-height: 170px; }
    @media (max-width: 767px) {
      .media-item__images--1 img {
        max-height: 140px; } }

.features--about .features-wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.features--about .img-left {
  position: absolute;
  bottom: 64px;
  left: -125px;
  right: auto;
  z-index: -1;
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain; }

@media (max-width: 1023px) {
  .features--about ul li:not(:nth-child(-n + 3)) {
    display: none; } }

@media (max-width: 767px) {
  .features--about ul {
    font-size: 14px; } }

.features--about ul li.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.features--about .img-right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -80px;
  z-index: -1;
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain; }

.features--about .container {
  position: relative; }

.features--about .col:first-child {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  height: 400px; }
  @media (max-width: 1023px) {
    .features--about .col:first-child {
      position: relative;
      top: 0;
      height: 300px; } }

.about-video {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .about-video {
      padding-bottom: 64px; } }
  .about-video iframe {
    display: block;
    border-radius: 20px;
    height: 500px !important;
    max-width: 960px;
    width: 100%;
    margin: 0 auto; }
    @media (max-width: 1023px) {
      .about-video iframe {
        height: 380px !important; } }
    @media (max-width: 767px) {
      .about-video iframe {
        height: 220px !important; } }

.about-page {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .about-page {
      padding-bottom: 64px; } }
  .about-page .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative; }
    @media (max-width: 1023px) {
      .about-page .container {
        gap: 64px;
        grid-template-columns: 1fr; } }
    @media (max-width: 767px) {
      .about-page .container {
        gap: 40px; } }
  .about-page .img-left {
    position: absolute;
    width: 320px;
    height: 320px;
    -o-object-fit: contain;
       object-fit: contain;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -120px; }
  .about-page .img-right {
    position: absolute;
    width: 320px;
    height: 320px;
    -o-object-fit: contain;
       object-fit: contain;
    bottom: 0;
    right: -120px; }
  .about-page .col:last-child {
    position: -webkit-sticky;
    position: sticky;
    padding-top: 30px;
    padding-right: 30px;
    top: 80px;
    height: 320px; }
    @media (max-width: 1023px) {
      .about-page .col:last-child {
        max-width: 320px;
        width: 100%;
        margin: 0 auto; } }
    .about-page .col:last-child::before {
      content: "";
      position: absolute;
      width: calc(100% - 30px);
      height: calc(100% - 30px);
      top: 0;
      right: 0;
      border: 1px solid var(--color-text-heading);
      border-radius: 20px 120px;
      z-index: -1; }
    .about-page .col:last-child svg {
      position: absolute;
      top: 20px;
      right: 26px; }
    .about-page .col:last-child img {
      border-radius: 20px 120px;
      width: calc(100% - 30px);
      height: calc(100% - 30px);
      -o-object-fit: cover;
      object-fit: cover;
      position: absolute;
      left: 0;
      bottom: 0; }

.about-page__head {
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    .about-page__head {
      margin-bottom: 20px; } }
  .about-page__head p {
    font-weight: 500;
    line-height: 140%;
    color: var(--color-text-heading); }
    @media (max-width: 767px) {
      .about-page__head p {
        font-size: 14px; } }
  .about-page__head h1 {
    margin-bottom: 10px; }

.about-page__text h2 {
  font-size: 24px;
  margin-bottom: 10px; }
  @media (max-width: 767px) {
    .about-page__text h2 {
      font-size: 20px; } }

.about-page__text p {
  line-height: 140%; }
  .about-page__text p:not(:last-child) {
    margin-bottom: 10px; }
  @media (max-width: 1023px) {
    .about-page__text p:not(:nth-child(-n + 4)) {
      display: none; } }
  @media (max-width: 767px) {
    .about-page__text p {
      font-size: 14px; } }
  .about-page__text p.open {
    display: block; }

.create-review {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .create-review {
      padding-bottom: 64px; } }

.reviews-list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px; }
  @media (max-width: 767px) {
    .reviews-list {
      margin-bottom: 24px; } }

.review-item {
  -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .review-item__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 140%; }
    .review-item__head p:first-child {
      color: var(--color-primary-purple-primary); }
    @media (max-width: 767px) {
      .review-item__head {
        font-size: 14px; } }
  .review-item__text {
    line-height: 140%; }
    @media (max-width: 767px) {
      .review-item__text {
        font-size: 14px; } }
  .review-item:not(:last-child) {
    margin-bottom: 20px; }

.create-review__box {
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 40px;
  -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px; }
  .create-review__box .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px; }
    @media (max-width: 767px) {
      .create-review__box .form-row {
        grid-template-columns: 1fr;
        gap: 0; } }
  @media (max-width: 767px) {
    .create-review__box .btn {
      width: 100%; } }
  @media (max-width: 767px) {
    .create-review__box {
      padding: 32px 20px; } }

.create-review__box-head {
  margin-bottom: 20px; }
  .create-review__box-head h2 {
    font-size: 32px;
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      .create-review__box-head h2 {
        font-size: 24px; } }
  .create-review__box-head p {
    font-weight: 500;
    line-height: 140%; }
    @media (max-width: 767px) {
      .create-review__box-head p {
        font-size: 14px; } }

.say-slide.fancybox__content {
  max-width: 600px; }

.say-reviews {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .say-reviews {
      padding-bottom: 64px; } }
  .say-reviews h2 {
    margin-bottom: 40px;
    text-align: center; }
    @media (max-width: 767px) {
      .say-reviews h2 {
        margin-bottom: 20px; } }

.say-slider {
  max-width: calc(100% - 120px); }
  @media (max-width: 767px) {
    .say-slider {
      max-width: 100%; } }
  .say-slider .swiper-wrapper {
    margin-bottom: 58px; }
    @media (max-width: 767px) {
      .say-slider .swiper-wrapper {
        margin-bottom: 88px; } }

.say-slide {
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 20px;
  background-position: center;
  background: #fff;
  background-size: cover;
  background-repeat: no-repeat; }
  .say-slide a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    font-size: 14px;
    color: var(--color-primary-purple-primary); }

.say-slide__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px; }
  .say-slide__head img {
    margin-right: 10px; }
  .say-slide__head .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 500; }
  .say-slide__head .col {
    width: 100%; }
    .say-slide__head .col > p {
      font-size: 14px;
      line-height: 140%; }
      .say-slide__head .col > p span {
        color: rgba(0, 0, 0, 0.4); }

.say-slide__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 140%;
  margin-bottom: 20px; }
  @media (max-width: 767px) {
    .say-slide__text {
      font-size: 14px; } }

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: var(--color-primary-purple-primary); }

.carousel__button {
  color: var(--color-primary-purple-primary); }
  .carousel__button svg {
    -webkit-filter: none;
            filter: none; }

.search-page {
  padding-bottom: 88px; }
  @media (max-width: 767px) {
    .search-page {
      padding-bottom: 64px; } }
  .search-page h1 {
    text-align: center;
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .search-page h1 {
        margin-bottom: 20px; } }
  .search-page .delete {
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .search-page form {
    position: relative; }
    .search-page form:not(:last-child) {
      margin-bottom: 40px; }
  .search-page .input {
    position: relative;
    margin-bottom: 0; }
    .search-page .input svg {
      position: absolute;
      left: 14px;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
    .search-page .input input {
      padding-right: 44px;
      padding-left: 44px; }

.search-page__box {
  max-width: 620px;
  width: 100%;
  margin: 0 auto; }

.search-wrapper .row:not(:last-child) {
  margin-bottom: 20px; }

.search-wrapper .row-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 20px; }
  .search-wrapper .row-title .line {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
    background: var(--color-primary-purple-primary-15); }
  .search-wrapper .row-title p {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-primary-purple-primary); }

.search-wrapper .row__text {
  font-size: 14px;
  line-height: 140%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.search-wrapper .row__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  width: 100%; }
  @media (max-width: 767px) {
    .search-wrapper .row__head {
      -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; } }
  .search-wrapper .row__head:not(:last-child) {
    margin-bottom: 5px; }
  .search-wrapper .row__head .price {
    white-space: nowrap;
    padding-left: 8px; }
    @media (max-width: 767px) {
      .search-wrapper .row__head .price {
        padding-left: 0;
        margin-top: 10px; } }

.search-wrapper .row-body {
  border: 1px solid var(--color-primary-purple-primary-5);
  border-radius: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7); }

.search-doctor {
  width: 100%;
  border: 1px solid var(--color-primary-purple-primary-5);
  border-radius: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 767px) {
    .search-doctor {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .search-doctor:not(:last-child) {
    margin-bottom: 20px; }
  .search-doctor img {
    width: 64px;
    height: 64px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 20px;
    border-radius: 100%; }
    @media (max-width: 767px) {
      .search-doctor img {
        margin-right: 0;
        margin-bottom: 10px; } }

@media (max-width: 767px) {
  .search-doctor__info {
    font-size: 14px; } }

.search-doctor__info p:not(:last-child) {
  font-weight: 500;
  margin-bottom: 5px; }

.search-doctor__info a {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-primary-purple-primary); }

.search-services li:not(:last-child) {
  margin-bottom: 20px; }

.search-services a {
  font-size: 20px; }
  @media (max-width: 767px) {
    .search-services a {
      font-size: 18px; } }

.sales-page {
  padding-bottom: 80px; }
  .sales-page h1 {
    margin-bottom: 20px; }
  .sales-page .doctors-types {
    margin-bottom: 40px; }

.sales-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }
  @media (max-width: 1199px) {
    .sales-items {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 1023px) {
    .sales-items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 767px) {
    .sales-items {
      grid-template-columns: 1fr; } }
  .sales-items:not(:last-child) {
    margin-bottom: 40px; }

.news-page {
  padding-bottom: 80px; }
  .news-page h1 {
    margin-bottom: 20px; }
  .news-page .doctors-types {
    margin-bottom: 40px; }
  .news-page .sale-slide__descr {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.portal {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .portal {
      padding-bottom: 64px; } }
  .portal h1 {
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .portal h1 {
        margin-bottom: 20px; } }

.portal-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }
  @media (max-width: 1199px) {
    .portal-items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 767px) {
    .portal-items {
      grid-template-columns: 1fr;
      gap: 20px; } }

.portal-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 30px 20px;
  min-height: 116px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
  background: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 130%;
  color: var(--color-text-heading); }

.article-page {
  padding-bottom: 80px; }
  @media (max-width: 767px) {
    .article-page {
      padding-bottom: 64px; } }
  .article-page .article {
    max-width: 800px;
    width: 100%;
    margin: 0 auto; }
    .article-page .article:not(:last-child) {
      margin-bottom: 40px; }
  .article-page h1 {
    margin-bottom: 10px; }
  .article-page .cta-box {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--color-primary-purple-primary-15);
    border-radius: 20px;
    padding: 40px;
    background: rgba(224, 218, 237, 0.1); }
    @media (max-width: 767px) {
      .article-page .cta-box {
        padding: 20px; } }
    .article-page .cta-box h2 {
      text-align: center;
      margin-bottom: 10px; }
    .article-page .cta-box p {
      font-size: 14px;
      line-height: 140%;
      text-align: center;
      margin-bottom: 20px; }
    .article-page .cta-box .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px; }
      @media (max-width: 767px) {
        .article-page .cta-box .form-row {
          grid-template-columns: 1fr;
          gap: 0; } }
    .article-page .cta-box .btn {
      width: 100%; }

.article__head {
  margin-bottom: 20px; }
  .article__head p {
    font-weight: 500;
    color: var(--color-primary-purple-primary); }

.article__body img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 300px; }
  .article__body img:not(:last-child) {
    margin-bottom: 20px; }

.article__body h2 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 24px; }
  @media (max-width: 767px) {
    .article__body h2 {
      font-size: 20px; } }

.article__body h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--color-text-heading);
  margin-bottom: 10px; }

.article__body a {
  text-decoration: underline;
  color: var(--color-primary-purple-primary); }

.article__body p {
  line-height: 140%;
  color: var(--color-text-heading); }
  .article__body p:not(:last-child) {
    margin-bottom: 10px; }

.article-pagination {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 20px 10px;
  background: rgba(224, 218, 237, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative; }
  .article-pagination::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 27px;
    background: var(--color-primary-purple-primary-15); }
  @media (max-width: 767px) {
    .article-pagination {
      gap: 40px; } }
  .article-pagination a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative; }
    .article-pagination a svg {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 10px; }
    .article-pagination a:last-child {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .article-pagination a:last-child svg {
        margin-left: 10px;
        margin-right: 0; }
      .article-pagination a:last-child .article-pagination__text {
        text-align: right; }
  .article-pagination:not(:last-child) {
    margin-bottom: 40px; }

.article-pagination__text p:first-child {
  font-weight: 500;
  color: var(--color-primary-purple-primary);
  margin-bottom: 5px; }

.article-pagination__text p:last-child {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  max-width: 288px; }
  @media (max-width: 1023px) {
    .article-pagination__text p:last-child {
      max-width: 270px; } }
  @media (max-width: 767px) {
    .article-pagination__text p:last-child {
      max-width: none;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      white-space: wrap; } }

.contacts-page {
  padding-bottom: 80px; }
  .contacts-page h1 {
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      .contacts-page h1 {
        margin-bottom: 20px; } }
  .contacts-page h2 {
    font-size: 24px;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .contacts-page h2 {
        font-size: 20px; } }

.contacts-item:not(:last-child) {
  margin-bottom: 40px; }

.contacts-item__box {
  border: 1px solid var(--color-primary-purple-primary-15);
  border-radius: 20px;
  padding: 40px;
  -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
  background: rgba(255, 255, 255, 0.7);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (max-width: 767px) {
    .contacts-item__box {
      padding: 20px; } }
  .contacts-item__box .organization__title {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 12px; }
    @media (max-width: 767px) {
      .contacts-item__box .organization__title {
        font-size: 18px;
        line-height: 140%; }
        .contacts-item__box .organization__title br {
          display: none; } }
  .contacts-item__box .organization:not(:last-child) {
    margin-bottom: 40px; }
  .contacts-item__box .organization ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-bottom: 10px; }
    .contacts-item__box .organization ul li:not(:last-child) {
      margin-right: 40px; }
      @media (max-width: 767px) {
        .contacts-item__box .organization ul li:not(:last-child) {
          margin-right: 0;
          margin-bottom: 10px; } }
    @media (max-width: 767px) {
      .contacts-item__box .organization ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .contacts-item__box .organization span {
    opacity: 0.4;
    padding-left: 10px;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-body-text); }
    @media (max-width: 767px) {
      .contacts-item__box .organization span {
        font-size: 14px;
        display: block;
        padding-left: 0; } }
  .contacts-item__box .organization address,
  .contacts-item__box .organization a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 140%;
    font-style: normal; }
    .contacts-item__box .organization address svg,
    .contacts-item__box .organization a svg {
      margin-right: 10px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }

.contacts-item__box-text {
  max-width: 800px;
  width: 100%;
  line-height: 140%; }
  .contacts-item__box-text a {
    text-decoration: underline;
    color: var(--color-primary-purple-primary); }

.contacts-page__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px; }
  @media (max-width: 1023px) {
    .contacts-page__info {
      gap: 40px; } }
  @media (max-width: 767px) {
    .contacts-page__info {
      grid-template-columns: 1fr; } }
  .contacts-page__info p.col__title {
    font-weight: 500;
    color: var(--color-primary-purple-primary);
    margin-bottom: 10px; }
  .contacts-page__info a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
  .contacts-page__info a:not(:last-child) {
    margin-bottom: 10px; }
  .contacts-page__info .link-more {
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-primary-purple-primary); }
  .contacts-page__info .link-doctor {
    font-style: italic;
    font-weight: 500;
    line-height: 140%;
    color: var(--color-primary-purple-primary); }
  .contacts-page__info .time span {
    color: var(--color-primary-purple-primary); }

.contacts-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 40px; }
  @media (max-width: 1199px) {
    .contacts-page-wrap {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 1023px) {
    .contacts-page-wrap {
      grid-template-columns: 1fr; } }
  .contacts-page-wrap iframe {
    height: 100% !important;
    display: block;
    border: 1px solid var(--color-primary-purple-primary-15);
    border-radius: 20px; }
    @media (max-width: 1023px) {
      .contacts-page-wrap iframe {
        height: 450px !important; } }
  .contacts-page-wrap .col:first-child {
    border: 1px solid var(--color-primary-purple-primary-15);
    border-radius: 20px;
    padding: 40px;
    -webkit-box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
            box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.02);
    background: rgba(255, 255, 255, 0.7);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
    @media (max-width: 767px) {
      .contacts-page-wrap .col:first-child {
        padding: 20px; } }
  .contacts-page-wrap .btn {
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .contacts-page-wrap .btn {
        width: 100%; } }
  .contacts-page-wrap .offer {
    line-height: 140%; }
    @media (max-width: 767px) {
      .contacts-page-wrap .offer {
        font-size: 14px; } }
    .contacts-page-wrap .offer a {
      color: var(--color-primary-purple-primary);
      text-decoration: underline; }
  .contacts-page-wrap .social {
    margin-bottom: 20px;
    display: block; }
    .contacts-page-wrap .social p {
      font-weight: 500;
      margin-bottom: 16px; }
      @media (max-width: 767px) {
        .contacts-page-wrap .social p {
          font-size: 14px; } }
    .contacts-page-wrap .social ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 20px; }
      .contacts-page-wrap .social ul a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
  .contacts-page-wrap .tel {
    font-size: 24px; }
    @media (max-width: 767px) {
      .contacts-page-wrap .tel {
        font-size: 20px; } }
  .contacts-page-wrap address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 140%;
    font-style: normal; }
    @media (max-width: 767px) {
      .contacts-page-wrap address {
        font-size: 14px; } }
    .contacts-page-wrap address svg {
      margin-right: 10px;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  .contacts-page-wrap .links {
    margin-bottom: 20px; }
    .contacts-page-wrap .links li:not(:last-child) {
      margin-bottom: 10px; }
    .contacts-page-wrap .links p span {
      color: var(--color-primary-purple-primary); }
    @media (max-width: 767px) {
      .contacts-page-wrap .links p {
        font-size: 14px; } }
  .contacts-page-wrap .col__title {
    color: var(--color-primary-purple-primary);
    font-weight: 500;
    margin-bottom: 16px; }

@media (hover), (min-width: 0\0), (min--moz-device-pixel-ratio: 0) {
  .doctors-types .radio-name:hover {
    background: var(--color-primary-purple-primary-15); }
  .doctors-items .doctors-slide:hover .btn {
    opacity: 1; }
  .doctors-items .doctors-slide:hover img.hover {
    opacity: 1; }
  .text-content a:hover {
    opacity: 0.5; }
  .breadcrumbs ul a:hover {
    opacity: 0.5; } }

.revealOnScroll {
  opacity: 0; }

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  aniamtion-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.flipX {
  -webkit-animation-name: flipX;
          animation-name: flipX; }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft; }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight; }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown; }

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn; }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: matrix3d(1.08419, 0.00011, 0, 0, -0.00011, 1.08419, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1.08419, 0.00011, 0, 0, -0.00011, 1.08419, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    opacity: 1; } }

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: matrix3d(1.08419, 0.00011, 0, 0, -0.00011, 1.08419, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
            transform: matrix3d(1.08419, 0.00011, 0, 0, -0.00011, 1.08419, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@media screen and (max-width: 767px) {
  .revealOnScroll {
    opacity: 1; } }
