@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
:root {
  --text-title: #555;
  --text-caption: #888;
  --gray-line: #f6f6f6;
  --brand-primary: #ee9591;
  --brand-background-soft: #fef8f8;
  --reset-color: #fff;
  --brand-background-hard: #fee;
  --font-family: "Roboto", sans-serif;
}

* {
  font-family: var(--font-family);
}

body {
  min-height: 100vh;
  background: #fff;
  color: #000;
  overflow: auto;
}

a.link {
  position: relative;
}
a.link::before, a.link::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--text-title);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  bottom: 0;
}
a.link:hover::before, a.link:hover::after {
  width: 51%;
}
a.link::before {
  left: 0;
}
a.link::after {
  right: 0;
}

body.hidden {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container {
  margin-inline: auto;
  padding: 0 40px;
  max-width: 1320px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 clamp(20px, 5.5vw, 80px);
  }
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-top: 112px;
}
@media (max-width: 768px) {
  .main {
    margin-top: 70px;
  }
}
@media (max-width: 576px) {
  .main {
    margin-top: calc(30px + 6.6vw);
  }
}

.t-button {
  -webkit-box-shadow: 10px 10px 30px 0 rgba(234, 141, 136, 0.4);
          box-shadow: 10px 10px 30px 0 rgba(234, 141, 136, 0.4);
  background: var(--brand-primary);
  border-radius: 6px;
  padding: 10px 20px;
}
.t-button span {
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--gray-line);
}

.t-title-40 {
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  color: var(--text-title);
}
@media (max-width: 768px) {
  .t-title-40 {
    font-size: clamp(22px, 6vw, 40px);
    line-height: 136%;
  }
}
.t-title-40.__scroll-animations {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}
.t-title-40.__scroll-visible {
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.t-title-70 {
  font-weight: 900;
  font-size: 70px;
  line-height: 114%;
  letter-spacing: 0em;
  color: var(--text-title);
}
@media (max-width: 768px) {
  .t-title-70 {
    font-size: clamp(28px, 7.7vw, 70px);
    line-height: 136%;
    letter-spacing: 0.01em;
  }
}

[class*=t-title] span {
  color: var(--brand-primary);
}

.t-text-400 {
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--text-caption);
  overflow: hidden;
  line-height: 175%;
}
.t-text-400 strong a {
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .t-text-400 {
    font-size: clamp(14px, 3.888vw, 16px);
    line-height: 171%;
  }
}
.t-text-400.__scroll-animations {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.t-text-400.__scroll-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1.2s ease 0s, -webkit-transform 0.8s ease 0s;
  transition: opacity 1.2s ease 0s, -webkit-transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s, opacity 1.2s ease 0s;
  transition: transform 0.8s ease 0s, opacity 1.2s ease 0s, -webkit-transform 0.8s ease 0s;
}

.t-text-500 {
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  letter-spacing: -0.02em;
  color: var(--text-caption);
}
.t-text-500.__scroll-animations {
  -webkit-transform: translateX(50%) scale(0);
      -ms-transform: translateX(50%) scale(0);
          transform: translateX(50%) scale(0);
}
.t-text-500.__scroll-visible {
  -webkit-transition: -webkit-transform 0.7s ease 1.5s;
  transition: -webkit-transform 0.7s ease 1.5s;
  transition: transform 0.7s ease 1.5s;
  transition: transform 0.7s ease 1.5s, -webkit-transform 0.7s ease 1.5s;
  -webkit-transform: translateX(0) scale(1);
      -ms-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
}
.t-text-500 strong a {
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .t-text-500 {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
  }
}

.modal-registration {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 301;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.modal-registration__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 10px;
  position: relative;
}
.modal-registration__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(200, 200, 200, 0.8);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  opacity: 0.7;
  z-index: 1;
}
.modal-registration__content {
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  color: #000;
  width: 500px;
  padding: clamp(20px, 5vw, 50px);
  opacity: 1;
  -webkit-transform: perspective(400px) translateY(0) rotateX(0);
          transform: perspective(400px) translateY(0) rotateX(0);
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  z-index: 2;
}
.modal-registration__title {
  text-transform: capitalize;
  text-align: center;
  color: var(--text-title);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 25px;
}
.modal-registration__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal-registration__form label {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-title);
}
.modal-registration__form input {
  width: 100%;
  padding: 0;
  border: 1px solid gray;
  margin-bottom: 25px;
  height: 30px;
}
.modal-registration .close-modal {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0px;
  top: 20px;
}
.modal-registration .close-modal span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-registration .close-modal span::before, .modal-registration .close-modal span::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: var(--text-caption);
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.modal-registration .close-modal span::after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.modal-registration.hidden {
  opacity: 0;
  z-index: -1;
}
.modal-registration.hidden .modal-registration__bg {
  background: rgb(255, 255, 255);
}
.modal-registration.hidden .modal-registration__content {
  opacity: 0;
  -webkit-transform: perspective(400px) translateY(-100%) rotateX(45deg);
          transform: perspective(400px) translateY(-100%) rotateX(45deg);
}
@media (max-width: 576px) {
  .modal-registration__title {
    text-align: left;
    padding-left: 10px;
  }
}

.header {
  padding: 36px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--brand-background-soft);
  z-index: 10;
}
.header__body {
  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: 5vw;
}
@media (min-width: 768px) {
  .header.__scroll-animations .header__body {
    -webkit-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
            transform: translateY(-150%);
    opacity: 0;
  }
  .header.__scroll-visible .header__body {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
  }
}
.header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.header__logo img {
  max-width: 200px;
  max-height: 45px;
}
.header .navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .navigation__list-item {
  font-weight: 500;
  letter-spacing: -0.02em;
}
.header .navigation__list-item a {
  color: var(--text-title);
}
.header__hidden-menu {
  width: 24px;
  height: 14px;
  position: relative;
  display: none;
  z-index: 2;
}
.header__hidden-menu::before, .header__hidden-menu::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--text-caption);
  position: absolute;
  right: 0;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.header__hidden-menu::before {
  top: 0;
  width: 20.88px;
}
.header__hidden-menu::after {
  bottom: 0;
  width: 16.75px;
}
.header__hidden-menu span {
  position: absolute;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background: var(--text-caption);
  width: 100%;
  height: 2px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 5px;
}
.header__hidden-menu.active::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  background: #fff;
  width: 100%;
}
.header__hidden-menu.active::after {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
      -ms-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
  background: #fff;
  width: 100%;
}
.header__hidden-menu.active span {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background: #fff;
}
@media (max-width: 1200px) {
  .header__container {
    padding: 0 clamp(20px, 5.5vw, 40px);
  }
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  .header__body {
    gap: 40px;
  }
  .header .navigation {
    background: var(--brand-primary);
    position: fixed;
    padding: 0 5vw;
    height: 70px;
    top: -20%;
    left: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: top 0.4s ease 0s;
    transition: top 0.4s ease 0s;
  }
  .header .navigation.active {
    top: 0;
    display: block;
  }
  .header .navigation__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    height: 100%;
  }
  .header .navigation__list a {
    color: #fff;
  }
  .header .navigation__list a::before, .header .navigation__list a::after {
    background: #fff;
  }
  .header__hidden-menu {
    display: block;
  }
}
@media (max-width: 576px) {
  .header__body {
    gap: 14px;
  }
  .header__logo img {
    max-width: 31.8vw;
    max-height: 6.6vw;
  }
  .header .navigation {
    height: calc(6.7vw + 35px);
  }
  .header__registration {
    padding: 6px 8px;
    border-radius: 4px;
  }
  .header__registration span {
    font-size: 12px;
  }
}
@media (max-width: 366px) {
  .header .navigation__list {
    gap: 3.2vw;
  }
  .header .navigation__list-item {
    font-size: 12px;
  }
}

@media (max-height: 500px) {
  .header {
    position: absolute;
  }
}
.main-content {
  background: var(--brand-background-soft);
}
.main-content__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 140px;
}
.main-content__information-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 600px;
          flex: 0 1 600px;
  position: relative;
  padding-top: 60px;
}
.main-content__information-block .point-decorator-9x3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  width: 108px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
.main-content__information-block .point-decorator-9x3 span {
  background: var(--brand-primary);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.5;
}
.main-content__title {
  margin-bottom: 35px;
}
.main-content__title .t-title-70.__scroll-animations {
  opacity: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.main-content__title .t-title-70.__scroll-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.main-content__title .t-title-70:nth-child(1).__scroll-visible {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s, -webkit-transform 1s ease 0s;
}
.main-content__title .t-title-70:nth-child(2).__scroll-visible {
  -webkit-transition: opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
  transition: opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
  transition: transform 1s ease 0.5s, opacity 1s ease 0.5s;
  transition: transform 1s ease 0.5s, opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
}
.main-content__description {
  margin-bottom: 40px;
}
.main-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 40px;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main-content__list-item {
  padding-left: 30px;
  position: relative;
  white-space: nowrap;
}
.main-content__list-item::before, .main-content__list-item::after {
  display: block;
  content: "";
  background: var(--brand-primary);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-content__list-item::before {
  left: 6px;
  width: 11px;
  height: 11px;
}
.main-content__list-item::after {
  left: 0;
  opacity: 0.32;
  width: 22px;
  height: 22px;
}
.main-content__list-item span {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--text-caption);
}
.main-content__button {
  display: inline-block;
  max-width: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.main-content__button.__scroll-visible {
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.main-content__button span {
  width: 100%;
  display: block;
  letter-spacing: -0.02em;
  color: var(--gray-line);
  text-align: center;
}
.main-content__button span:first-child {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}
.main-content__button span:last-child {
  line-height: 157%;
  font-style: italic;
  font-size: 14px;
}
.main-content .decorator {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: auto;
  aspect-ratio: 1.09605;
}
.main-content .decorator__body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.main-content .decorator__body .flower.__scroll-animations {
  -webkit-transform: scale(0.5) translateY(-100%);
      -ms-transform: scale(0.5) translateY(-100%);
          transform: scale(0.5) translateY(-100%);
  opacity: 0;
}
.main-content .decorator__body .flower.__scroll-visible {
  -webkit-transform: scale(1) translateY(0);
      -ms-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  opacity: 1;
}
.main-content .decorator__body .flower:nth-child(1).__scroll-visible {
  right: calc(15% + 100px);
  -webkit-transition: all 1s ease 0.5s;
  transition: all 1s ease 0.5s;
  position: absolute;
  top: 0;
}
.main-content .decorator__body .flower:nth-child(2).__scroll-visible {
  -webkit-transition: all 1s ease 0.8s;
  transition: all 1s ease 0.8s;
  height: 190px;
  right: 15%;
  position: absolute;
  top: 0;
}
.main-content .decorator__body .flower:nth-child(2).__scroll-visible .flower__line {
  height: 159px;
}
.main-content .decorator__img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 87.5%;
  height: 85.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  z-index: 2;
}
.main-content .decorator__img.__scroll-animations {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.main-content .decorator__img.__scroll-visible {
  -webkit-transition: -webkit-transform 0.6s ease 0.5s;
  transition: -webkit-transform 0.6s ease 0.5s;
  transition: transform 0.6s ease 0.5s;
  transition: transform 0.6s ease 0.5s, -webkit-transform 0.6s ease 0.5s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.main-content .decorator__img img {
  width: 100%;
  max-height: 100%;
}
.main-content .decorator__copyright {
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  text-align: right;
  color: var(--text-title);
  z-index: 2;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.main-content .decorator__copyright.__scroll-visible {
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s;
  transition: transform 1s ease 0s, opacity 1s ease 0s, -webkit-transform 1s ease 0s;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.main-content .decorator .bg {
  width: 89%;
  height: 92.5%;
  background: linear-gradient(289deg, #F37B76 0%, rgba(238, 149, 145, 0.19) 58.23%, rgba(238, 149, 145, 0.06) 74.59%, rgba(238, 149, 145, 0) 90%, var(--brand-background-soft) 100%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  border-radius: 16px;
}
.main-content .decorator .bg.__scroll-animations {
  -webkit-transform: scale(0.2);
      -ms-transform: scale(0.2);
          transform: scale(0.2);
}
.main-content .decorator .bg.__scroll-visible {
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.main-content .decorator .bg__body {
  width: 100%;
  height: 100%;
}
.main-content .decorator .point-decorator-9x9 {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  z-index: 1;
}
.main-content .decorator .point-decorator-9x9 span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
}
.main-content .decorator .point-decorator-9x9 span:nth-child(5) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(6) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(7) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(8) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(9) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(14) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(15) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(16) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(17) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(18) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(23) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(24) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(25) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(26) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(27) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(32) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(33) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(34) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(35) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(36) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(37) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(38) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(39) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(40) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(41) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(42) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(43) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(44) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(45) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(46) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(47) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(48) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(49) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(50) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(51) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(52) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(53) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(54) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(55) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(56) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(57) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(58) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(59) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(60) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(61) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(62) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(63) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(64) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(65) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(66) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(67) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(68) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(69) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(70) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(71) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(72) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(73) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(74) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(75) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(76) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(77) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(78) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(79) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(80) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9 span:nth-child(81) {
  background: var(--gray-line);
}
.main-content .decorator .point-decorator-9x9.__scroll-animations span {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.5;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(2) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(3) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(4) {
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(6) {
  -webkit-transition-delay: 125ms;
          transition-delay: 125ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(7) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(8) {
  -webkit-transition-delay: 175ms;
          transition-delay: 175ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(9) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(10) {
  -webkit-transition-delay: 225ms;
          transition-delay: 225ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(11) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(12) {
  -webkit-transition-delay: 275ms;
          transition-delay: 275ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(13) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(14) {
  -webkit-transition-delay: 325ms;
          transition-delay: 325ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(15) {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(16) {
  -webkit-transition-delay: 375ms;
          transition-delay: 375ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(17) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(18) {
  -webkit-transition-delay: 425ms;
          transition-delay: 425ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(19) {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(20) {
  -webkit-transition-delay: 475ms;
          transition-delay: 475ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(21) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(22) {
  -webkit-transition-delay: 525ms;
          transition-delay: 525ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(23) {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(24) {
  -webkit-transition-delay: 575ms;
          transition-delay: 575ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(25) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(26) {
  -webkit-transition-delay: 625ms;
          transition-delay: 625ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(27) {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(28) {
  -webkit-transition-delay: 675ms;
          transition-delay: 675ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(29) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(30) {
  -webkit-transition-delay: 725ms;
          transition-delay: 725ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(31) {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(32) {
  -webkit-transition-delay: 775ms;
          transition-delay: 775ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(33) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(34) {
  -webkit-transition-delay: 825ms;
          transition-delay: 825ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(35) {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(36) {
  -webkit-transition-delay: 875ms;
          transition-delay: 875ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(37) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(38) {
  -webkit-transition-delay: 925ms;
          transition-delay: 925ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(39) {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(40) {
  -webkit-transition-delay: 975ms;
          transition-delay: 975ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(41) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(42) {
  -webkit-transition-delay: 1025ms;
          transition-delay: 1025ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(43) {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(44) {
  -webkit-transition-delay: 1075ms;
          transition-delay: 1075ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(45) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(46) {
  -webkit-transition-delay: 1125ms;
          transition-delay: 1125ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(47) {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(48) {
  -webkit-transition-delay: 1175ms;
          transition-delay: 1175ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(49) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(50) {
  -webkit-transition-delay: 1225ms;
          transition-delay: 1225ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(51) {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(52) {
  -webkit-transition-delay: 1275ms;
          transition-delay: 1275ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(53) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(54) {
  -webkit-transition-delay: 1325ms;
          transition-delay: 1325ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(55) {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(56) {
  -webkit-transition-delay: 1375ms;
          transition-delay: 1375ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(57) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(58) {
  -webkit-transition-delay: 1425ms;
          transition-delay: 1425ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(59) {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(60) {
  -webkit-transition-delay: 1475ms;
          transition-delay: 1475ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(61) {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(62) {
  -webkit-transition-delay: 1525ms;
          transition-delay: 1525ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(63) {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(64) {
  -webkit-transition-delay: 1575ms;
          transition-delay: 1575ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(65) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(66) {
  -webkit-transition-delay: 1625ms;
          transition-delay: 1625ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(67) {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(68) {
  -webkit-transition-delay: 1675ms;
          transition-delay: 1675ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(69) {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(70) {
  -webkit-transition-delay: 1725ms;
          transition-delay: 1725ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(71) {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(72) {
  -webkit-transition-delay: 1775ms;
          transition-delay: 1775ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(73) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(74) {
  -webkit-transition-delay: 1825ms;
          transition-delay: 1825ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(75) {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(76) {
  -webkit-transition-delay: 1875ms;
          transition-delay: 1875ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(77) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(78) {
  -webkit-transition-delay: 1925ms;
          transition-delay: 1925ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(79) {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(80) {
  -webkit-transition-delay: 1975ms;
          transition-delay: 1975ms;
}
.main-content .decorator .point-decorator-9x9.__scroll-visible span:nth-child(81) {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
@media (max-width: 1200px) {
  .main-content__information-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .main-content__body {
    padding: 60px 0 120px;
    gap: 0;
  }
  .main-content__list {
    margin-bottom: 40px;
  }
  .main-content .decorator {
    display: none;
  }
}
@media (max-width: 768px) {
  .main-content__body {
    padding: clamp(38px, 10.5vw, 60px) 0 clamp(50px, 13.4vw, 120px);
  }
  .main-content__information-block {
    padding: 0;
  }
  .main-content__information-block .point-decorator-9x3 {
    display: none;
  }
  .main-content__information-block .point-decorator-9x9 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
    width: 76px;
    height: 76px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .main-content__information-block .point-decorator-9x9 span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0.5;
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(1) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(2) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(3) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(4) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(5) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(6) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(7) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(8) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(9) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(10) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(11) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(12) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(13) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(14) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(15) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(16) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(17) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(18) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(19) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(20) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(21) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(22) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(23) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(24) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(25) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(26) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(27) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(28) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(29) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(30) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(31) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(32) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(33) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(34) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(35) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(36) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(37) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(38) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(39) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(40) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(41) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(42) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(43) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(44) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(45) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(50) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(51) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(52) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(53) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(54) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(59) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(60) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(61) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(62) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(63) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(68) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(69) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(70) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(71) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(72) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(77) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(78) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(79) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(80) {
    background: var(--brand-primary);
  }
  .main-content__information-block .point-decorator-9x9 span:nth-child(81) {
    background: var(--brand-primary);
  }
  .main-content__list {
    gap: clamp(10px, 3vw, 30px);
    margin-bottom: 26px;
  }
  .main-content__description {
    margin-bottom: 22px;
  }
  .main-content__list-item {
    padding-left: 22px;
  }
  .main-content__list-item span {
    font-size: 12px;
    line-height: 200%;
    letter-spacing: -0.03em;
  }
  .main-content__list-item::before {
    left: 4px;
    width: 8px;
    height: 8px;
  }
  .main-content__list-item::after {
    width: 16px;
    height: 16px;
  }
  .main-content__button {
    width: 100%;
  }
  .main-content__button span:first-child {
    margin-bottom: 3px;
    font-size: clamp(12px, 4vw, 20px);
    line-height: 173%;
  }
  .main-content__button span:last-child {
    font-size: clamp(10px, 3.222vw, 14px);
    line-height: 183%;
  }
}
@media (max-width: 350px) {
  .main-content__list {
    -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: start;
  }
  .main-content__information-block .point-decorator-9x9 {
    opacity: 0.5;
  }
}

.stats {
  padding: 150px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--reset-color)), to(var(--brand-background-soft)));
  background: linear-gradient(var(--reset-color), var(--brand-background-soft));
}
.stats__body {
  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;
}
.stats .stats-description {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
  padding-bottom: 35px;
  position: relative;
}
.stats .stats-description::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  border-radius: 100px;
  width: 100px;
  height: 12px;
  background: var(--brand-primary);
}
.stats .stats-description__title {
  margin-bottom: 24px;
}
.stats .stats-description__subtitle {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  letter-spacing: -0.02em;
  color: var(--text-caption);
}
.stats .stats-cards {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59%;
          flex: 0 1 59%;
}
.stats .stats-cards__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.stats .stats-cards__circles {
  position: absolute;
  right: 40px;
  top: -90px;
  width: 487px;
  height: 458px;
}
.stats .stats-cards__circles-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.stats .stats-cards__circles-body::before {
  display: block;
  content: "";
  width: 434px;
  height: 434px;
  border-radius: 100%;
  background: var(--brand-primary);
  right: 0;
  top: 0;
  opacity: 0.1;
  position: absolute;
}
.stats .stats-cards__circles-body::after {
  display: block;
  position: absolute;
  opacity: 0.32;
  content: "";
  width: 434px;
  height: 434px;
  border-radius: 100%;
  left: 0;
  bottom: 0;
  border: 2px solid var(--brand-primary);
}
.stats .stats-cards .card-item {
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
          flex: 0 1 350px;
  border: 8px solid var(--gray-line);
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: -40px 40px 50px 0 rgba(85, 85, 85, 0.14);
          box-shadow: -40px 40px 50px 0 rgba(85, 85, 85, 0.14);
  background: linear-gradient(132deg, #f9a8a5 0%, #e28a86 100%);
}
.stats .stats-cards .card-item__body {
  padding: 26px 32px 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.stats .stats-cards .card-item__title {
  font-weight: 700;
  font-size: 90px;
  line-height: 111%;
  color: var(--reset-color);
  margin-bottom: 14px;
}
.stats .stats-cards .card-item__description {
  line-height: 157%;
  letter-spacing: -0.02em;
  color: var(--reset-color);
  margin-bottom: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.stats .stats-cards .card-item__footer {
  font-size: 10px;
  line-height: 220%;
  letter-spacing: -0.03em;
  color: var(--reset-color);
  opacity: 0.4;
}
.stats .stats-cards .card-item .point-decorator-7x7 {
  width: 61px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  right: 17px;
  top: 16px;
}
.stats .stats-cards .card-item .point-decorator-7x7 span {
  border-radius: 50%;
  width: 4px;
  height: 4px;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(1) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(2) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(3) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(4) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(5) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(6) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(7) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(8) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(9) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(10) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(11) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(12) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(13) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(14) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(15) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(16) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(17) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(18) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(19) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(20) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(21) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(24) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(25) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(26) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(27) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(28) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(31) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(32) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(33) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(34) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(35) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(40) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(41) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(42) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(47) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(48) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7 span:nth-child(49) {
  background: var(--gray-line);
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-animations span {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.5;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(2) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(3) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(4) {
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(6) {
  -webkit-transition-delay: 125ms;
          transition-delay: 125ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(7) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(8) {
  -webkit-transition-delay: 175ms;
          transition-delay: 175ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(9) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(10) {
  -webkit-transition-delay: 225ms;
          transition-delay: 225ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(11) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(12) {
  -webkit-transition-delay: 275ms;
          transition-delay: 275ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(13) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(14) {
  -webkit-transition-delay: 325ms;
          transition-delay: 325ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(15) {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(16) {
  -webkit-transition-delay: 375ms;
          transition-delay: 375ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(17) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(18) {
  -webkit-transition-delay: 425ms;
          transition-delay: 425ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(19) {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(20) {
  -webkit-transition-delay: 475ms;
          transition-delay: 475ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(21) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(22) {
  -webkit-transition-delay: 525ms;
          transition-delay: 525ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(23) {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(24) {
  -webkit-transition-delay: 575ms;
          transition-delay: 575ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(25) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(26) {
  -webkit-transition-delay: 625ms;
          transition-delay: 625ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(27) {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(28) {
  -webkit-transition-delay: 675ms;
          transition-delay: 675ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(29) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(30) {
  -webkit-transition-delay: 725ms;
          transition-delay: 725ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(31) {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(32) {
  -webkit-transition-delay: 775ms;
          transition-delay: 775ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(33) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(34) {
  -webkit-transition-delay: 825ms;
          transition-delay: 825ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(35) {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(36) {
  -webkit-transition-delay: 875ms;
          transition-delay: 875ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(37) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(38) {
  -webkit-transition-delay: 925ms;
          transition-delay: 925ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(39) {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(40) {
  -webkit-transition-delay: 975ms;
          transition-delay: 975ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(41) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(42) {
  -webkit-transition-delay: 1025ms;
          transition-delay: 1025ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(43) {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(44) {
  -webkit-transition-delay: 1075ms;
          transition-delay: 1075ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(45) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(46) {
  -webkit-transition-delay: 1125ms;
          transition-delay: 1125ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(47) {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(48) {
  -webkit-transition-delay: 1175ms;
          transition-delay: 1175ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(49) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(50) {
  -webkit-transition-delay: 1225ms;
          transition-delay: 1225ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(51) {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(52) {
  -webkit-transition-delay: 1275ms;
          transition-delay: 1275ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(53) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(54) {
  -webkit-transition-delay: 1325ms;
          transition-delay: 1325ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(55) {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(56) {
  -webkit-transition-delay: 1375ms;
          transition-delay: 1375ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(57) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(58) {
  -webkit-transition-delay: 1425ms;
          transition-delay: 1425ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(59) {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(60) {
  -webkit-transition-delay: 1475ms;
          transition-delay: 1475ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(61) {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(62) {
  -webkit-transition-delay: 1525ms;
          transition-delay: 1525ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(63) {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(64) {
  -webkit-transition-delay: 1575ms;
          transition-delay: 1575ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(65) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(66) {
  -webkit-transition-delay: 1625ms;
          transition-delay: 1625ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(67) {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(68) {
  -webkit-transition-delay: 1675ms;
          transition-delay: 1675ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(69) {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(70) {
  -webkit-transition-delay: 1725ms;
          transition-delay: 1725ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(71) {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(72) {
  -webkit-transition-delay: 1775ms;
          transition-delay: 1775ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(73) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(74) {
  -webkit-transition-delay: 1825ms;
          transition-delay: 1825ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(75) {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(76) {
  -webkit-transition-delay: 1875ms;
          transition-delay: 1875ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(77) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(78) {
  -webkit-transition-delay: 1925ms;
          transition-delay: 1925ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(79) {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(80) {
  -webkit-transition-delay: 1975ms;
          transition-delay: 1975ms;
}
.stats .stats-cards .card-item .point-decorator-7x7.__scroll-visible span:nth-child(81) {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
.stats .stats-cards.__scroll-animations .card-item {
  -webkit-transform: translate(100%, -50%) scale(0) rotate(45deg);
      -ms-transform: translate(100%, -50%) scale(0) rotate(45deg);
          transform: translate(100%, -50%) scale(0) rotate(45deg);
}
.stats .stats-cards.__scroll-visible .card-item {
  -webkit-transition: -webkit-transform 1s ease 1s;
  transition: -webkit-transform 1s ease 1s;
  transition: transform 1s ease 1s;
  transition: transform 1s ease 1s, -webkit-transform 1s ease 1s;
  -webkit-transform: translate(0, 0) scale(1) rotate(0);
      -ms-transform: translate(0, 0) scale(1) rotate(0);
          transform: translate(0, 0) scale(1) rotate(0);
}
@media (max-width: 1200px) {
  .stats {
    padding: 80px 0 130px;
  }
  .stats__body {
    display: block;
  }
  .stats .stats-description {
    padding: 0;
    margin-bottom: 100px;
  }
  .stats .stats-description::after {
    display: none;
  }
  .stats .stats-cards__circles {
    right: 15vw;
  }
  .stats .stats-cards__body {
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stats .stats-cards .card-item__title {
    font-size: clamp(60px, 7.5vw, 90px);
  }
}
@media (max-width: 768px) {
  .stats {
    padding: clamp(20px, 5.5vw, 80px) 0 clamp(80px, 22vw, 130px);
  }
  .stats .stats-description {
    margin-bottom: clamp(40px, 11vw, 100px);
  }
  .stats .stats-description__title, .stats .stats-description__subtitle {
    margin-bottom: 15px;
  }
  .stats .stats-cards__circles {
    display: none;
  }
  .stats .stats-cards__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .stats .stats-cards .card-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 450px;
            flex: 0 1 450px;
  }
  .stats .stats-cards.__scroll-visible .card-item {
    -webkit-transition: -webkit-transform 1s ease 0s;
    transition: -webkit-transform 1s ease 0s;
    transition: transform 1s ease 0s;
    transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
  }
}

.digital-pattern {
  background: var(--brand-background-soft);
  padding: 100px 0 0;
}
.digital-pattern__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.digital-pattern .pattern-header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-bottom: 100px;
}
.digital-pattern .pattern-header__title {
  margin-bottom: 40px;
}
.digital-pattern .pattern-header__title.__scroll-animations {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.digital-pattern .pattern-header__title.__scroll-visible {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
.digital-pattern .pattern-header__subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  letter-spacing: -0.02em;
  color: var(--text-caption);
}
.digital-pattern .pattern-header__subtitle.__scroll-animations {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}
.digital-pattern .pattern-header__subtitle.__scroll-visible {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}
.digital-pattern .pattern-tools {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 620px;
          flex: 0 1 620px;
}
.digital-pattern .pattern-tools .circle {
  width: 534px;
  height: auto;
  aspect-ratio: 1.0075;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
}
.digital-pattern .pattern-tools .circle__item {
  border-radius: 100%;
  position: absolute;
  width: 93%;
  height: 93%;
}
.digital-pattern .pattern-tools .circle__item:first-child {
  background: var(--text-caption);
  opacity: 0.05;
  top: 0;
  right: 0;
}
.digital-pattern .pattern-tools .circle__item:last-child {
  left: 0;
  bottom: 0;
}
.digital-pattern .pattern-tools .circle__item:last-child .border {
  opacity: 0.32;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-primary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
}
.digital-pattern .pattern-tools .circle__item:last-child .small-circle {
  width: 100%;
  height: 100%;
  position: relative;
}
.digital-pattern .pattern-tools .circle__item:last-child .small-circle::after {
  display: block;
  content: "";
  border-radius: 100%;
  background: var(--brand-primary);
  width: 34px;
  height: 34px;
  position: absolute;
  bottom: 2.9228%;
  left: 27.5574%;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  z-index: 2;
}
.digital-pattern .pattern-tools .circle__body {
  width: 100%;
  height: 100%;
}
.digital-pattern .pattern-tools__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.digital-pattern .pattern-tools__card-container {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.digital-pattern .pattern-tools__card {
  margin: 0 50px 50px 0;
  background: #fff;
  overflow: hidden;
  max-width: 260px;
  max-height: 180px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  padding: 30px 30px 25px;
  border-radius: 16px;
  -webkit-box-shadow: 30px 30px 60px 0 rgba(85, 85, 85, 0.1);
          box-shadow: 30px 30px 60px 0 rgba(85, 85, 85, 0.1);
  background: #fffbfb;
}
.digital-pattern .pattern-tools .tools-card-1 {
  margin-top: 60px;
}
.digital-pattern .pattern-tools .tools-card-1 .pattern-tools__image:first-child img {
  -webkit-transform: scale(0.78);
      -ms-transform: scale(0.78);
          transform: scale(0.78);
}
.digital-pattern .pattern-tools .tools-card-1 .pattern-tools__image:nth-child(2) {
  background: var(--brand-primary);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  border-radius: 50%;
}
.digital-pattern .pattern-tools .tools-card-1 .pattern-tools__image:nth-child(3) {
  background: var(--text-caption);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  border-radius: 50%;
}
.digital-pattern .pattern-tools .tools-card-1 .pattern-tools__image:nth-child(4) {
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  border: 1px solid var(--brand-primary);
}
.digital-pattern .pattern-tools__image-box {
  position: relative;
  margin-bottom: 25px;
}
.digital-pattern .pattern-tools__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40%;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  z-index: 4;
  position: relative;
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
}
.digital-pattern .pattern-tools__image img {
  width: 100%;
  aspect-ratio: 1;
  max-height: 100%;
}
.digital-pattern .pattern-tools__image:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 20%;
  z-index: 3;
}
.digital-pattern .pattern-tools__image:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 40%;
  z-index: 2;
}
.digital-pattern .pattern-tools__image:nth-child(4) {
  position: absolute;
  bottom: 0;
  left: 60%;
  z-index: 1;
}
.digital-pattern .pattern-tools__description {
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  letter-spacing: -0.02em;
  color: var(--text-caption);
}
.digital-pattern .pattern-tools__card.__scroll-animations .pattern-tools__image:not(:nth-child(1)) {
  opacity: 0;
  -webkit-transform: scale(1.4) translateX(-50%);
      -ms-transform: scale(1.4) translateX(-50%);
          transform: scale(1.4) translateX(-50%);
}
.digital-pattern .pattern-tools__card.__scroll-animations .pattern-tools__image:nth-child(1) {
  opacity: 0;
}
.digital-pattern .pattern-tools__card.__scroll-visible .pattern-tools__image:not(:nth-child(1)) {
  opacity: 1;
  -webkit-transform: scale(1.4) translateX(0);
      -ms-transform: scale(1.4) translateX(0);
          transform: scale(1.4) translateX(0);
}
.digital-pattern .pattern-tools__card.__scroll-visible .pattern-tools__image:not(:nth-child(1)):nth-child(1) {
  -webkit-transition: opacity 1s ease 0ms, -webkit-transform 1s ease 0ms;
  transition: opacity 1s ease 0ms, -webkit-transform 1s ease 0ms;
  transition: transform 1s ease 0ms, opacity 1s ease 0ms;
  transition: transform 1s ease 0ms, opacity 1s ease 0ms, -webkit-transform 1s ease 0ms;
}
.digital-pattern .pattern-tools__card.__scroll-visible .pattern-tools__image:not(:nth-child(1)):nth-child(2) {
  -webkit-transition: opacity 1s ease 500ms, -webkit-transform 1s ease 500ms;
  transition: opacity 1s ease 500ms, -webkit-transform 1s ease 500ms;
  transition: transform 1s ease 500ms, opacity 1s ease 500ms;
  transition: transform 1s ease 500ms, opacity 1s ease 500ms, -webkit-transform 1s ease 500ms;
}
.digital-pattern .pattern-tools__card.__scroll-visible .pattern-tools__image:not(:nth-child(1)):nth-child(3) {
  -webkit-transition: opacity 1s ease 1000ms, -webkit-transform 1s ease 1000ms;
  transition: opacity 1s ease 1000ms, -webkit-transform 1s ease 1000ms;
  transition: transform 1s ease 1000ms, opacity 1s ease 1000ms;
  transition: transform 1s ease 1000ms, opacity 1s ease 1000ms, -webkit-transform 1s ease 1000ms;
}
.digital-pattern .pattern-tools__card.__scroll-visible .pattern-tools__image:not(:nth-child(1)):nth-child(4) {
  -webkit-transition: opacity 1s ease 1500ms, -webkit-transform 1s ease 1500ms;
  transition: opacity 1s ease 1500ms, -webkit-transform 1s ease 1500ms;
  transition: transform 1s ease 1500ms, opacity 1s ease 1500ms;
  transition: transform 1s ease 1500ms, opacity 1s ease 1500ms, -webkit-transform 1s ease 1500ms;
}
.digital-pattern .pattern-tools__card.__scroll-visible .pattern-tools__image:nth-child(1) {
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
}
.digital-pattern .pattern-tools .tools-card-1.__scroll-animations .pattern-tools__image:not(:nth-child(1)) {
  opacity: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.digital-pattern .pattern-tools .tools-card-1.__scroll-visible .pattern-tools__image:not(:nth-child(1)) {
  opacity: 1;
  -webkit-transform: scale(1) translateX(0);
      -ms-transform: scale(1) translateX(0);
          transform: scale(1) translateX(0);
}
.digital-pattern .pattern-tools .tools-card-1.__scroll-visible .pattern-tools__image:not(:nth-child(1)):nth-child(2) {
  -webkit-transition: opacity 1s ease 500ms, -webkit-transform 1s ease 500ms;
  transition: opacity 1s ease 500ms, -webkit-transform 1s ease 500ms;
  transition: transform 1s ease 500ms, opacity 1s ease 500ms;
  transition: transform 1s ease 500ms, opacity 1s ease 500ms, -webkit-transform 1s ease 500ms;
}
.digital-pattern .pattern-tools .tools-card-1.__scroll-visible .pattern-tools__image:not(:nth-child(1)):nth-child(3) {
  -webkit-transition: opacity 1s ease 1000ms, -webkit-transform 1s ease 1000ms;
  transition: opacity 1s ease 1000ms, -webkit-transform 1s ease 1000ms;
  transition: transform 1s ease 1000ms, opacity 1s ease 1000ms;
  transition: transform 1s ease 1000ms, opacity 1s ease 1000ms, -webkit-transform 1s ease 1000ms;
}
.digital-pattern .pattern-tools .tools-card-1.__scroll-visible .pattern-tools__image:not(:nth-child(1)):nth-child(4) {
  -webkit-transition: opacity 1s ease 1500ms, -webkit-transform 1s ease 1500ms;
  transition: opacity 1s ease 1500ms, -webkit-transform 1s ease 1500ms;
  transition: transform 1s ease 1500ms, opacity 1s ease 1500ms;
  transition: transform 1s ease 1500ms, opacity 1s ease 1500ms, -webkit-transform 1s ease 1500ms;
}
.digital-pattern .pattern-info-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(100% - 620px);
          flex: 1 1 calc(100% - 620px);
  padding: 40px 0 40px 120px;
  position: relative;
}
.digital-pattern .pattern-info-block::before {
  position: absolute;
  left: 120px;
  top: 0;
  display: block;
  content: "";
  border-radius: 100px;
  width: 100px;
  height: 12px;
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block__title, .digital-pattern .pattern-info-block__paragraph {
  margin-bottom: 55px;
}
.digital-pattern .pattern-info-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 22px;
}
.digital-pattern .pattern-info-block__list-item {
  padding-left: 38px;
  position: relative;
}
.digital-pattern .pattern-info-block__list-item::before, .digital-pattern .pattern-info-block__list-item::after {
  display: block;
  content: "";
  background: var(--brand-primary);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.digital-pattern .pattern-info-block__list-item::before {
  left: 5px;
  width: 9px;
  height: 9px;
}
.digital-pattern .pattern-info-block__list-item::after {
  left: 0;
  opacity: 0.32;
  width: 18px;
  height: 18px;
}
.digital-pattern .pattern-info-block__list-item span {
  font-weight: 700;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: -0.02em;
  color: var(--text-caption);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 {
  width: 110px;
  height: 133px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  opacity: 0;
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(5) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(6) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(7) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(8) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(9) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(14) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(15) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(16) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(17) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(18) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(23) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(24) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(25) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(26) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(27) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(32) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(33) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(34) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(35) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(36) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(41) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(42) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(43) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(44) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(45) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(45) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(46) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(47) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(48) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(49) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(50) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(51) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(52) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(53) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(54) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(54) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(55) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(56) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(57) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(58) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(59) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(60) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(61) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(62) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(63) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(63) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(64) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(65) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(66) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(67) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(68) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(69) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(70) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(71) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(72) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(72) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(73) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(74) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(75) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(76) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(77) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(78) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(79) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(80) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(81) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(81) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(82) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(83) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(84) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(85) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(86) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(87) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(88) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(89) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(90) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(90) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(91) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(92) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(93) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(94) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(95) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(96) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(97) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(98) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10 span:nth-child(99) {
  background: var(--brand-primary);
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-animations span {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.5;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(2) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(3) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(4) {
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(6) {
  -webkit-transition-delay: 125ms;
          transition-delay: 125ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(7) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(8) {
  -webkit-transition-delay: 175ms;
          transition-delay: 175ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(9) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(10) {
  -webkit-transition-delay: 225ms;
          transition-delay: 225ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(11) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(12) {
  -webkit-transition-delay: 275ms;
          transition-delay: 275ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(13) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(14) {
  -webkit-transition-delay: 325ms;
          transition-delay: 325ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(15) {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(16) {
  -webkit-transition-delay: 375ms;
          transition-delay: 375ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(17) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(18) {
  -webkit-transition-delay: 425ms;
          transition-delay: 425ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(19) {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(20) {
  -webkit-transition-delay: 475ms;
          transition-delay: 475ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(21) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(22) {
  -webkit-transition-delay: 525ms;
          transition-delay: 525ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(23) {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(24) {
  -webkit-transition-delay: 575ms;
          transition-delay: 575ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(25) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(26) {
  -webkit-transition-delay: 625ms;
          transition-delay: 625ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(27) {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(28) {
  -webkit-transition-delay: 675ms;
          transition-delay: 675ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(29) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(30) {
  -webkit-transition-delay: 725ms;
          transition-delay: 725ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(31) {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(32) {
  -webkit-transition-delay: 775ms;
          transition-delay: 775ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(33) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(34) {
  -webkit-transition-delay: 825ms;
          transition-delay: 825ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(35) {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(36) {
  -webkit-transition-delay: 875ms;
          transition-delay: 875ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(37) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(38) {
  -webkit-transition-delay: 925ms;
          transition-delay: 925ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(39) {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(40) {
  -webkit-transition-delay: 975ms;
          transition-delay: 975ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(41) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(42) {
  -webkit-transition-delay: 1025ms;
          transition-delay: 1025ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(43) {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(44) {
  -webkit-transition-delay: 1075ms;
          transition-delay: 1075ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(45) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(46) {
  -webkit-transition-delay: 1125ms;
          transition-delay: 1125ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(47) {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(48) {
  -webkit-transition-delay: 1175ms;
          transition-delay: 1175ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(49) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(50) {
  -webkit-transition-delay: 1225ms;
          transition-delay: 1225ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(51) {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(52) {
  -webkit-transition-delay: 1275ms;
          transition-delay: 1275ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(53) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(54) {
  -webkit-transition-delay: 1325ms;
          transition-delay: 1325ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(55) {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(56) {
  -webkit-transition-delay: 1375ms;
          transition-delay: 1375ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(57) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(58) {
  -webkit-transition-delay: 1425ms;
          transition-delay: 1425ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(59) {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(60) {
  -webkit-transition-delay: 1475ms;
          transition-delay: 1475ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(61) {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(62) {
  -webkit-transition-delay: 1525ms;
          transition-delay: 1525ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(63) {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(64) {
  -webkit-transition-delay: 1575ms;
          transition-delay: 1575ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(65) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(66) {
  -webkit-transition-delay: 1625ms;
          transition-delay: 1625ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(67) {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(68) {
  -webkit-transition-delay: 1675ms;
          transition-delay: 1675ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(69) {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(70) {
  -webkit-transition-delay: 1725ms;
          transition-delay: 1725ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(71) {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(72) {
  -webkit-transition-delay: 1775ms;
          transition-delay: 1775ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(73) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(74) {
  -webkit-transition-delay: 1825ms;
          transition-delay: 1825ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(75) {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(76) {
  -webkit-transition-delay: 1875ms;
          transition-delay: 1875ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(77) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(78) {
  -webkit-transition-delay: 1925ms;
          transition-delay: 1925ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(79) {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(80) {
  -webkit-transition-delay: 1975ms;
          transition-delay: 1975ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(81) {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(82) {
  -webkit-transition-delay: 2025ms;
          transition-delay: 2025ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(83) {
  -webkit-transition-delay: 2050ms;
          transition-delay: 2050ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(84) {
  -webkit-transition-delay: 2075ms;
          transition-delay: 2075ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(85) {
  -webkit-transition-delay: 2100ms;
          transition-delay: 2100ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(86) {
  -webkit-transition-delay: 2125ms;
          transition-delay: 2125ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(87) {
  -webkit-transition-delay: 2150ms;
          transition-delay: 2150ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(88) {
  -webkit-transition-delay: 2175ms;
          transition-delay: 2175ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(89) {
  -webkit-transition-delay: 2200ms;
          transition-delay: 2200ms;
}
.digital-pattern .pattern-info-block .point-decorator-9x10.__scroll-visible span:nth-child(90) {
  -webkit-transition-delay: 2225ms;
          transition-delay: 2225ms;
}
@media (max-width: 1200px) {
  .digital-pattern .pattern-header__title {
    margin-bottom: clamp(20px, 2.5vw, 40px);
    font-size: clamp(40px, 5vw, 70px);
    text-align: center;
  }
  .digital-pattern .pattern-header__subtitle {
    text-align: center;
  }
  .digital-pattern .pattern-tools {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 700px;
            flex: 0 1 700px;
    margin-bottom: 100px;
  }
  .digital-pattern .pattern-tools__body {
    gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .digital-pattern .pattern-tools__card-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 25px);
            flex: 0 0 calc(50% - 25px);
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .digital-pattern .pattern-tools__card {
    margin: 0;
    max-width: 260px;
    width: 100%;
  }
  .digital-pattern .pattern-info-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding-left: 0;
  }
  .digital-pattern .pattern-info-block::before {
    left: 0;
  }
}
@media (max-width: 768px) {
  .digital-pattern {
    padding: clamp(10px, 2.5vw, 100px) 0 30px;
  }
  .digital-pattern .pattern-header {
    margin-bottom: clamp(40px, 11vw, 100px);
  }
  .digital-pattern .pattern-header__title {
    font-size: clamp(26px, 7.2vw, 40px);
    text-align: center;
    margin-bottom: 0;
  }
  .digital-pattern .pattern-header__subtitle {
    display: none;
  }
  .digital-pattern .pattern-tools__body {
    gap: clamp(15px, 5vw, 40px);
  }
  .digital-pattern .pattern-tools__card-container {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - clamp(7.5px, 2.5vw, 20px));
            flex: 0 0 calc(50% - clamp(7.5px, 2.5vw, 20px));
    gap: clamp(15px, 5vw, 40px);
  }
  .digital-pattern .pattern-tools .tools-card-1 {
    margin: 0;
  }
  .digital-pattern .pattern-info-block::before {
    display: none;
  }
  .digital-pattern .pattern-info-block__paragraph, .digital-pattern .pattern-info-block__title {
    margin-bottom: clamp(40px, 8vw, 55px);
  }
  .digital-pattern .pattern-info-block__list-item span {
    font-size: 14px;
  }
}
@media (max-width: 650px) {
  .digital-pattern .pattern-tools .circle {
    width: clamp(215px, 59vw, 400px);
    height: clamp(215px, 59vw, 400px);
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
  .digital-pattern .pattern-info-block .point-decorator-9x10 {
    display: none;
  }
}
@media (max-width: 576px) {
  .digital-pattern .pattern-tools__image-box {
    margin-bottom: 4vw;
  }
  .digital-pattern .pattern-tools__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 5vw 5vw 4vw;
  }
  .digital-pattern .pattern-tools__description {
    font-size: 12px;
    letter-spacing: -0.03em;
    text-align: center;
  }
}

.facilities {
  padding: 75px 0 150px;
  background: var(--brand-background-soft);
  position: relative;
}
.facilities__bg {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 250px;
  background: #fff;
  z-index: 1;
}
.facilities__body {
  position: relative;
  z-index: 2;
}
.facilities__title {
  padding-top: 30px;
  position: relative;
  max-width: 650px;
  margin-bottom: clamp(58px, 7vw, 80px);
}
.facilities__title::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
  width: 100px;
  height: 12px;
  background: var(--brand-primary);
}
.facilities__cards-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.facilities__cards-block .point-decorator-12x10 {
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 123px;
  height: 148px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  position: absolute;
  left: 0;
  top: 140px;
}
.facilities__cards-block .point-decorator-12x10 span {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  opacity: 0;
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(0) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(1) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(2) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(3) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(4) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(5) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(6) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(7) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(8) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(9) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(10) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(10) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(11) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(12) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(13) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(14) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(15) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(16) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(17) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(18) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(19) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(20) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(20) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(21) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(22) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(23) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(24) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(25) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(26) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(27) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(28) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(29) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(30) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(30) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(31) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(32) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(33) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(34) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(35) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(36) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(37) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(38) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(39) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(40) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(40) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(41) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(42) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(43) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(44) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(45) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(46) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(47) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(48) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(49) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(50) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(50) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(51) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(52) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(53) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(54) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(55) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(56) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(57) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(58) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(59) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(60) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(60) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(61) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(62) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(63) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(64) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(65) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(66) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(67) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(68) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(69) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(70) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(70) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(71) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(72) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(73) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(74) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(75) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(76) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(77) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(78) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(79) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(80) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(80) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(81) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(82) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(83) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(84) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(85) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(86) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(87) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(88) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(89) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(90) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(90) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(91) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(92) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(93) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(94) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(95) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(96) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(97) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(98) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(99) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(100) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(100) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(101) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(102) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(103) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(104) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(105) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(106) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(107) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(108) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(109) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(110) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(110) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(111) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(112) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(113) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(114) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(115) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(116) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(117) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(118) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(119) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(120) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(120) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(121) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(122) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(123) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(124) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(125) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(126) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(127) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(128) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(129) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10 span:nth-child(130) {
  background: var(--brand-primary);
}
.facilities__cards-block .point-decorator-12x10.__scroll-animations span {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.5;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(2) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(3) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(4) {
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(6) {
  -webkit-transition-delay: 125ms;
          transition-delay: 125ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(7) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(8) {
  -webkit-transition-delay: 175ms;
          transition-delay: 175ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(9) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(10) {
  -webkit-transition-delay: 225ms;
          transition-delay: 225ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(11) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(12) {
  -webkit-transition-delay: 275ms;
          transition-delay: 275ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(13) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(14) {
  -webkit-transition-delay: 325ms;
          transition-delay: 325ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(15) {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(16) {
  -webkit-transition-delay: 375ms;
          transition-delay: 375ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(17) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(18) {
  -webkit-transition-delay: 425ms;
          transition-delay: 425ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(19) {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(20) {
  -webkit-transition-delay: 475ms;
          transition-delay: 475ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(21) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(22) {
  -webkit-transition-delay: 525ms;
          transition-delay: 525ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(23) {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(24) {
  -webkit-transition-delay: 575ms;
          transition-delay: 575ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(25) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(26) {
  -webkit-transition-delay: 625ms;
          transition-delay: 625ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(27) {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(28) {
  -webkit-transition-delay: 675ms;
          transition-delay: 675ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(29) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(30) {
  -webkit-transition-delay: 725ms;
          transition-delay: 725ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(31) {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(32) {
  -webkit-transition-delay: 775ms;
          transition-delay: 775ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(33) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(34) {
  -webkit-transition-delay: 825ms;
          transition-delay: 825ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(35) {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(36) {
  -webkit-transition-delay: 875ms;
          transition-delay: 875ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(37) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(38) {
  -webkit-transition-delay: 925ms;
          transition-delay: 925ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(39) {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(40) {
  -webkit-transition-delay: 975ms;
          transition-delay: 975ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(41) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(42) {
  -webkit-transition-delay: 1025ms;
          transition-delay: 1025ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(43) {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(44) {
  -webkit-transition-delay: 1075ms;
          transition-delay: 1075ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(45) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(46) {
  -webkit-transition-delay: 1125ms;
          transition-delay: 1125ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(47) {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(48) {
  -webkit-transition-delay: 1175ms;
          transition-delay: 1175ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(49) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(50) {
  -webkit-transition-delay: 1225ms;
          transition-delay: 1225ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(51) {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(52) {
  -webkit-transition-delay: 1275ms;
          transition-delay: 1275ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(53) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(54) {
  -webkit-transition-delay: 1325ms;
          transition-delay: 1325ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(55) {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(56) {
  -webkit-transition-delay: 1375ms;
          transition-delay: 1375ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(57) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(58) {
  -webkit-transition-delay: 1425ms;
          transition-delay: 1425ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(59) {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(60) {
  -webkit-transition-delay: 1475ms;
          transition-delay: 1475ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(61) {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(62) {
  -webkit-transition-delay: 1525ms;
          transition-delay: 1525ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(63) {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(64) {
  -webkit-transition-delay: 1575ms;
          transition-delay: 1575ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(65) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(66) {
  -webkit-transition-delay: 1625ms;
          transition-delay: 1625ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(67) {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(68) {
  -webkit-transition-delay: 1675ms;
          transition-delay: 1675ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(69) {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(70) {
  -webkit-transition-delay: 1725ms;
          transition-delay: 1725ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(71) {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(72) {
  -webkit-transition-delay: 1775ms;
          transition-delay: 1775ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(73) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(74) {
  -webkit-transition-delay: 1825ms;
          transition-delay: 1825ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(75) {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(76) {
  -webkit-transition-delay: 1875ms;
          transition-delay: 1875ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(77) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(78) {
  -webkit-transition-delay: 1925ms;
          transition-delay: 1925ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(79) {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(80) {
  -webkit-transition-delay: 1975ms;
          transition-delay: 1975ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(81) {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(82) {
  -webkit-transition-delay: 2025ms;
          transition-delay: 2025ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(83) {
  -webkit-transition-delay: 2050ms;
          transition-delay: 2050ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(84) {
  -webkit-transition-delay: 2075ms;
          transition-delay: 2075ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(85) {
  -webkit-transition-delay: 2100ms;
          transition-delay: 2100ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(86) {
  -webkit-transition-delay: 2125ms;
          transition-delay: 2125ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(87) {
  -webkit-transition-delay: 2150ms;
          transition-delay: 2150ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(88) {
  -webkit-transition-delay: 2175ms;
          transition-delay: 2175ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(89) {
  -webkit-transition-delay: 2200ms;
          transition-delay: 2200ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(90) {
  -webkit-transition-delay: 2225ms;
          transition-delay: 2225ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(91) {
  -webkit-transition-delay: 2250ms;
          transition-delay: 2250ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(92) {
  -webkit-transition-delay: 2275ms;
          transition-delay: 2275ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(93) {
  -webkit-transition-delay: 2300ms;
          transition-delay: 2300ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(94) {
  -webkit-transition-delay: 2325ms;
          transition-delay: 2325ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(95) {
  -webkit-transition-delay: 2350ms;
          transition-delay: 2350ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(96) {
  -webkit-transition-delay: 2375ms;
          transition-delay: 2375ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(97) {
  -webkit-transition-delay: 2400ms;
          transition-delay: 2400ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(98) {
  -webkit-transition-delay: 2425ms;
          transition-delay: 2425ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(99) {
  -webkit-transition-delay: 2450ms;
          transition-delay: 2450ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(100) {
  -webkit-transition-delay: 2475ms;
          transition-delay: 2475ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(101) {
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(102) {
  -webkit-transition-delay: 2525ms;
          transition-delay: 2525ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(103) {
  -webkit-transition-delay: 2550ms;
          transition-delay: 2550ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(104) {
  -webkit-transition-delay: 2575ms;
          transition-delay: 2575ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(105) {
  -webkit-transition-delay: 2600ms;
          transition-delay: 2600ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(106) {
  -webkit-transition-delay: 2625ms;
          transition-delay: 2625ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(107) {
  -webkit-transition-delay: 2650ms;
          transition-delay: 2650ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(108) {
  -webkit-transition-delay: 2675ms;
          transition-delay: 2675ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(109) {
  -webkit-transition-delay: 2700ms;
          transition-delay: 2700ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(110) {
  -webkit-transition-delay: 2725ms;
          transition-delay: 2725ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(111) {
  -webkit-transition-delay: 2750ms;
          transition-delay: 2750ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(112) {
  -webkit-transition-delay: 2775ms;
          transition-delay: 2775ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(113) {
  -webkit-transition-delay: 2800ms;
          transition-delay: 2800ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(114) {
  -webkit-transition-delay: 2825ms;
          transition-delay: 2825ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(115) {
  -webkit-transition-delay: 2850ms;
          transition-delay: 2850ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(116) {
  -webkit-transition-delay: 2875ms;
          transition-delay: 2875ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(117) {
  -webkit-transition-delay: 2900ms;
          transition-delay: 2900ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(118) {
  -webkit-transition-delay: 2925ms;
          transition-delay: 2925ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(119) {
  -webkit-transition-delay: 2950ms;
          transition-delay: 2950ms;
}
.facilities__cards-block .point-decorator-12x10.__scroll-visible span:nth-child(120) {
  -webkit-transition-delay: 2975ms;
          transition-delay: 2975ms;
}
.facilities__cards-block .circle {
  width: 362px;
  height: auto;
  aspect-ratio: 1.0075;
  position: absolute;
  z-index: 1;
  right: 100px;
  top: -112px;
}
.facilities__cards-block .circle.__scroll-visible .circle__body {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.facilities__cards-block .circle__item {
  border-radius: 100%;
  position: absolute;
  width: 93%;
  height: 93%;
}
.facilities__cards-block .circle__item:first-child {
  background: var(--text-caption);
  opacity: 0.05;
  left: 0;
  bottom: 0;
}
.facilities__cards-block .circle__item:last-child {
  top: 0;
  right: 0;
}
.facilities__cards-block .circle__item:last-child .border {
  opacity: 0.32;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-primary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
}
.facilities__cards-block .circle__item:last-child .small-circle {
  width: 100%;
  height: 100%;
  position: relative;
}
.facilities__cards-block .circle__item:last-child .small-circle::after {
  display: block;
  content: "";
  border-radius: 100%;
  background: var(--brand-primary);
  width: 34px;
  height: 34px;
  position: absolute;
  top: 2%;
  right: 19%;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  z-index: 2;
}
.facilities__cards-block .circle__body {
  width: 100%;
  height: 100%;
}
.facilities .facilities-card {
  z-index: 2;
  -webkit-box-shadow: 50px 50px 60px 0 rgba(85, 85, 85, 0.08);
          box-shadow: 50px 50px 60px 0 rgba(85, 85, 85, 0.08);
  background: #fffbfb;
  border-radius: 16px;
  padding: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 274px;
          flex: 0 0 274px;
}
.facilities .facilities-card__image {
  margin-bottom: 20px;
  width: 76px;
  height: auto;
  aspect-ratio: 1;
  margin-inline: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.facilities .facilities-card__image svg {
  z-index: 1;
  max-width: 100%;
}
.facilities .facilities-card__image img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 60%;
  aspect-ratio: 1;
  max-height: 60%;
}
.facilities .facilities-card__description {
  font-weight: 500;
  font-size: 26px;
  line-height: 154%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text-caption);
}
.facilities .facilities-card.__scroll-animations {
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.facilities .facilities-card.__scroll-visible {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
@media (max-width: 1200px) {
  .facilities__cards-block .circle {
    right: 0;
    top: 0;
    -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
@media (max-width: 768px) {
  .facilities {
    padding: 0 0 150px;
  }
  .facilities__bg {
    height: 200px;
  }
  .facilities__card {
    padding: clamp(15px, 4vw, 30px);
  }
  .facilities__title {
    padding: 0;
    margin-bottom: clamp(40px, 11vw, 58px);
  }
  .facilities__title::before {
    display: none;
  }
  .facilities__cards-block {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
  .facilities__cards-block .point-decorator-12x10 {
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .facilities .facilities-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
    padding: clamp(7.5px, 4.1666vw, 15px);
  }
  .facilities .facilities-card__image {
    margin-bottom: 0;
  }
  .facilities .facilities-card__image svg {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }
  .facilities .facilities-card__image img {
    max-width: 50%;
    max-height: 50%;
  }
  .facilities .facilities-card__description {
    font-size: clamp(10px, 3.8889vw, 14px);
    letter-spacing: -0.02em;
  }
}
@media (max-width: 350px) {
  .facilities__cards-block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
  .facilities .facilities-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 250px;
            flex: 0 1 250px;
  }
}

.staff__body {
  position: relative;
}
.staff__body .point-decorator-9x10 {
  width: 123px;
  height: 122px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  position: absolute;
  right: 0;
  top: 0;
}
.staff__body .point-decorator-9x10 span {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  opacity: 0;
}
.staff__body .point-decorator-9x10 span:nth-child(1) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(2) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(3) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(4) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(5) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(11) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(12) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(13) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(14) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(15) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(21) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(22) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(23) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(24) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(25) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(31) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(32) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(33) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(34) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(35) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(41) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(42) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(43) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(44) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(45) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(46) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(47) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(48) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(49) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(50) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(51) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(51) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(52) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(53) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(54) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(55) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(56) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(57) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(58) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(59) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(60) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(61) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(61) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(62) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(63) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(64) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(65) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(66) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(67) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(68) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(69) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(70) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(71) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(71) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(72) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(73) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(74) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(75) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(76) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(77) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(78) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(79) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(80) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(81) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(81) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(82) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(83) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(84) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(85) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(86) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(87) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(88) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(89) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(90) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(91) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(91) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(92) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(93) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(94) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(95) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(96) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(97) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(98) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(99) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(100) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10 span:nth-child(101) {
  background: var(--brand-primary);
}
.staff__body .point-decorator-9x10.__scroll-animations span {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.staff__body .point-decorator-9x10.__scroll-visible span {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.32;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(2) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(3) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(4) {
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(6) {
  -webkit-transition-delay: 125ms;
          transition-delay: 125ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(7) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(8) {
  -webkit-transition-delay: 175ms;
          transition-delay: 175ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(9) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(10) {
  -webkit-transition-delay: 225ms;
          transition-delay: 225ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(11) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(12) {
  -webkit-transition-delay: 275ms;
          transition-delay: 275ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(13) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(14) {
  -webkit-transition-delay: 325ms;
          transition-delay: 325ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(15) {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(16) {
  -webkit-transition-delay: 375ms;
          transition-delay: 375ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(17) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(18) {
  -webkit-transition-delay: 425ms;
          transition-delay: 425ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(19) {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(20) {
  -webkit-transition-delay: 475ms;
          transition-delay: 475ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(21) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(22) {
  -webkit-transition-delay: 525ms;
          transition-delay: 525ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(23) {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(24) {
  -webkit-transition-delay: 575ms;
          transition-delay: 575ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(25) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(26) {
  -webkit-transition-delay: 625ms;
          transition-delay: 625ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(27) {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(28) {
  -webkit-transition-delay: 675ms;
          transition-delay: 675ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(29) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(30) {
  -webkit-transition-delay: 725ms;
          transition-delay: 725ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(31) {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(32) {
  -webkit-transition-delay: 775ms;
          transition-delay: 775ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(33) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(34) {
  -webkit-transition-delay: 825ms;
          transition-delay: 825ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(35) {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(36) {
  -webkit-transition-delay: 875ms;
          transition-delay: 875ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(37) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(38) {
  -webkit-transition-delay: 925ms;
          transition-delay: 925ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(39) {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(40) {
  -webkit-transition-delay: 975ms;
          transition-delay: 975ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(41) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(42) {
  -webkit-transition-delay: 1025ms;
          transition-delay: 1025ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(43) {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(44) {
  -webkit-transition-delay: 1075ms;
          transition-delay: 1075ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(45) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(46) {
  -webkit-transition-delay: 1125ms;
          transition-delay: 1125ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(47) {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(48) {
  -webkit-transition-delay: 1175ms;
          transition-delay: 1175ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(49) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(50) {
  -webkit-transition-delay: 1225ms;
          transition-delay: 1225ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(51) {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(52) {
  -webkit-transition-delay: 1275ms;
          transition-delay: 1275ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(53) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(54) {
  -webkit-transition-delay: 1325ms;
          transition-delay: 1325ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(55) {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(56) {
  -webkit-transition-delay: 1375ms;
          transition-delay: 1375ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(57) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(58) {
  -webkit-transition-delay: 1425ms;
          transition-delay: 1425ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(59) {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(60) {
  -webkit-transition-delay: 1475ms;
          transition-delay: 1475ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(61) {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(62) {
  -webkit-transition-delay: 1525ms;
          transition-delay: 1525ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(63) {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(64) {
  -webkit-transition-delay: 1575ms;
          transition-delay: 1575ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(65) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(66) {
  -webkit-transition-delay: 1625ms;
          transition-delay: 1625ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(67) {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(68) {
  -webkit-transition-delay: 1675ms;
          transition-delay: 1675ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(69) {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(70) {
  -webkit-transition-delay: 1725ms;
          transition-delay: 1725ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(71) {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(72) {
  -webkit-transition-delay: 1775ms;
          transition-delay: 1775ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(73) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(74) {
  -webkit-transition-delay: 1825ms;
          transition-delay: 1825ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(75) {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(76) {
  -webkit-transition-delay: 1875ms;
          transition-delay: 1875ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(77) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(78) {
  -webkit-transition-delay: 1925ms;
          transition-delay: 1925ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(79) {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(80) {
  -webkit-transition-delay: 1975ms;
          transition-delay: 1975ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(81) {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(82) {
  -webkit-transition-delay: 2025ms;
          transition-delay: 2025ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(83) {
  -webkit-transition-delay: 2050ms;
          transition-delay: 2050ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(84) {
  -webkit-transition-delay: 2075ms;
          transition-delay: 2075ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(85) {
  -webkit-transition-delay: 2100ms;
          transition-delay: 2100ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(86) {
  -webkit-transition-delay: 2125ms;
          transition-delay: 2125ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(87) {
  -webkit-transition-delay: 2150ms;
          transition-delay: 2150ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(88) {
  -webkit-transition-delay: 2175ms;
          transition-delay: 2175ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(89) {
  -webkit-transition-delay: 2200ms;
          transition-delay: 2200ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(90) {
  -webkit-transition-delay: 2225ms;
          transition-delay: 2225ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(91) {
  -webkit-transition-delay: 2250ms;
          transition-delay: 2250ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(92) {
  -webkit-transition-delay: 2275ms;
          transition-delay: 2275ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(93) {
  -webkit-transition-delay: 2300ms;
          transition-delay: 2300ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(94) {
  -webkit-transition-delay: 2325ms;
          transition-delay: 2325ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(95) {
  -webkit-transition-delay: 2350ms;
          transition-delay: 2350ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(96) {
  -webkit-transition-delay: 2375ms;
          transition-delay: 2375ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(97) {
  -webkit-transition-delay: 2400ms;
          transition-delay: 2400ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(98) {
  -webkit-transition-delay: 2425ms;
          transition-delay: 2425ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(99) {
  -webkit-transition-delay: 2450ms;
          transition-delay: 2450ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(100) {
  -webkit-transition-delay: 2475ms;
          transition-delay: 2475ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(101) {
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(102) {
  -webkit-transition-delay: 2525ms;
          transition-delay: 2525ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(103) {
  -webkit-transition-delay: 2550ms;
          transition-delay: 2550ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(104) {
  -webkit-transition-delay: 2575ms;
          transition-delay: 2575ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(105) {
  -webkit-transition-delay: 2600ms;
          transition-delay: 2600ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(106) {
  -webkit-transition-delay: 2625ms;
          transition-delay: 2625ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(107) {
  -webkit-transition-delay: 2650ms;
          transition-delay: 2650ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(108) {
  -webkit-transition-delay: 2675ms;
          transition-delay: 2675ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(109) {
  -webkit-transition-delay: 2700ms;
          transition-delay: 2700ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(110) {
  -webkit-transition-delay: 2725ms;
          transition-delay: 2725ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(111) {
  -webkit-transition-delay: 2750ms;
          transition-delay: 2750ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(112) {
  -webkit-transition-delay: 2775ms;
          transition-delay: 2775ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(113) {
  -webkit-transition-delay: 2800ms;
          transition-delay: 2800ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(114) {
  -webkit-transition-delay: 2825ms;
          transition-delay: 2825ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(115) {
  -webkit-transition-delay: 2850ms;
          transition-delay: 2850ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(116) {
  -webkit-transition-delay: 2875ms;
          transition-delay: 2875ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(117) {
  -webkit-transition-delay: 2900ms;
          transition-delay: 2900ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(118) {
  -webkit-transition-delay: 2925ms;
          transition-delay: 2925ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(119) {
  -webkit-transition-delay: 2950ms;
          transition-delay: 2950ms;
}
.staff__body .point-decorator-9x10.__scroll-visible span:nth-child(120) {
  -webkit-transition-delay: 2975ms;
          transition-delay: 2975ms;
}
.staff__title {
  margin-bottom: 15px;
  text-align: center;
}
.staff__subtitle {
  text-align: center;
  margin-bottom: clamp(65px, 8.125vw, 80px);
}
.staff__cards-row {
  margin-bottom: clamp(150px, 18.75vw, 180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  position: relative;
}
.staff__cards-row .circle {
  width: 755px;
  height: auto;
  aspect-ratio: 1.0075;
  position: absolute;
  z-index: 1;
  left: 0;
  -webkit-transform: translate(-70%, -15%);
      -ms-transform: translate(-70%, -15%);
          transform: translate(-70%, -15%);
  top: 0;
}
.staff__cards-row .circle__item {
  border-radius: 100%;
  position: absolute;
  width: 93%;
  height: 93%;
}
.staff__cards-row .circle__item:first-child {
  background: var(--text-caption);
  opacity: 0.05;
  left: 0;
  top: 0;
}
.staff__cards-row .circle__item:last-child {
  bottom: 0;
  right: 0;
}
.staff__cards-row .circle__item:last-child .border {
  opacity: 0.32;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-primary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
}
.staff__cards-row .circle__item:last-child .small-circle {
  width: 100%;
  height: 100%;
  position: relative;
}
.staff__cards-row .circle__item:last-child .small-circle::after {
  display: block;
  content: "";
  border-radius: 100%;
  background: var(--brand-primary);
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 16.3841%;
  right: 13.6384%;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  z-index: 2;
}
.staff__cards-row .circle__body {
  width: 100%;
  height: 100%;
}
.staff .staff-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 274px;
          flex: 0 0 274px;
  z-index: 3;
}
.staff .staff-card__body {
  width: 100%;
}
.staff .staff-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 0.85625;
  -webkit-box-shadow: 22px 22px 34px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 22px 22px 34px 0 rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 26px;
}
.staff .staff-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff .staff-card__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: var(--text-title);
  margin-bottom: 4px;
}
.staff .staff-card__description {
  font-weight: 500;
  line-height: 157%;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
  margin-bottom: 4px;
}
.staff .staff-card__role {
  font-weight: 500;
  line-height: 157%;
  letter-spacing: 0.01em;
  color: var(--text-caption);
}
.staff .staff-card.__scroll-animations .staff-card__image {
  -webkit-transform: translate(50%, -50%) scale(0);
      -ms-transform: translate(50%, -50%) scale(0);
          transform: translate(50%, -50%) scale(0);
  opacity: 0;
}
.staff .staff-card.__scroll-animations .staff-card__name,
.staff .staff-card.__scroll-animations .staff-card__description,
.staff .staff-card.__scroll-animations .staff-card__role {
  opacity: 0;
}
.staff .staff-card.__scroll-visible .staff-card__image {
  -webkit-transform: translate(0, 0) scale(1);
      -ms-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
  opacity: 1;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
.staff .staff-card.__scroll-visible .staff-card__name,
.staff .staff-card.__scroll-visible .staff-card__description,
.staff .staff-card.__scroll-visible .staff-card__role {
  opacity: 1;
  -webkit-transition: opacity 2s ease 0.8s;
  transition: opacity 2s ease 0.8s;
}
.staff .testimonial__body {
  max-width: 670px;
  margin-left: auto;
}
.staff .testimonial__block-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
}
.staff .testimonial__title {
  margin-bottom: 40px;
}
.staff .testimonial .testimonial-card__body {
  display: grid;
  gap: 16px 40px;
  grid-template-columns: 180px auto;
  grid-template-rows: auto auto auto;
}
.staff .testimonial .testimonial-card__image-block {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/3;
  height: auto;
  aspect-ratio: 1;
  max-width: 180px;
}
.staff .testimonial .testimonial-card__image-body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 50% 50% 50%;
}
.staff .testimonial .testimonial-card__image-body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: relative;
}
.staff .testimonial .testimonial-card__circle {
  width: 22.22%;
  height: 22.22%;
  background: var(--brand-primary);
  border-radius: 50%;
  position: absolute;
  right: 4px;
  bottom: 4px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.staff .testimonial .testimonial-card__circle.__scroll-visible {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
.staff .testimonial .testimonial-card .point-decorator-3x9 {
  width: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  position: absolute;
  right: 0;
  top: 0;
}
.staff .testimonial .testimonial-card .point-decorator-3x9 span {
  border-radius: 50%;
  width: 4px;
  height: 4px;
  opacity: 0;
  background: var(--brand-primary);
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-animations span {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.32;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(2) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(3) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(4) {
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(6) {
  -webkit-transition-delay: 125ms;
          transition-delay: 125ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(7) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(8) {
  -webkit-transition-delay: 175ms;
          transition-delay: 175ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(9) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(10) {
  -webkit-transition-delay: 225ms;
          transition-delay: 225ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(11) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(12) {
  -webkit-transition-delay: 275ms;
          transition-delay: 275ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(13) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(14) {
  -webkit-transition-delay: 325ms;
          transition-delay: 325ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(15) {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(16) {
  -webkit-transition-delay: 375ms;
          transition-delay: 375ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(17) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(18) {
  -webkit-transition-delay: 425ms;
          transition-delay: 425ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(19) {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(20) {
  -webkit-transition-delay: 475ms;
          transition-delay: 475ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(21) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(22) {
  -webkit-transition-delay: 525ms;
          transition-delay: 525ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(23) {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(24) {
  -webkit-transition-delay: 575ms;
          transition-delay: 575ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(25) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(26) {
  -webkit-transition-delay: 625ms;
          transition-delay: 625ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(27) {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(28) {
  -webkit-transition-delay: 675ms;
          transition-delay: 675ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(29) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(30) {
  -webkit-transition-delay: 725ms;
          transition-delay: 725ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(31) {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(32) {
  -webkit-transition-delay: 775ms;
          transition-delay: 775ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(33) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(34) {
  -webkit-transition-delay: 825ms;
          transition-delay: 825ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(35) {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(36) {
  -webkit-transition-delay: 875ms;
          transition-delay: 875ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(37) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(38) {
  -webkit-transition-delay: 925ms;
          transition-delay: 925ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(39) {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(40) {
  -webkit-transition-delay: 975ms;
          transition-delay: 975ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(41) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(42) {
  -webkit-transition-delay: 1025ms;
          transition-delay: 1025ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(43) {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(44) {
  -webkit-transition-delay: 1075ms;
          transition-delay: 1075ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(45) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(46) {
  -webkit-transition-delay: 1125ms;
          transition-delay: 1125ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(47) {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(48) {
  -webkit-transition-delay: 1175ms;
          transition-delay: 1175ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(49) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(50) {
  -webkit-transition-delay: 1225ms;
          transition-delay: 1225ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(51) {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(52) {
  -webkit-transition-delay: 1275ms;
          transition-delay: 1275ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(53) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(54) {
  -webkit-transition-delay: 1325ms;
          transition-delay: 1325ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(55) {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(56) {
  -webkit-transition-delay: 1375ms;
          transition-delay: 1375ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(57) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(58) {
  -webkit-transition-delay: 1425ms;
          transition-delay: 1425ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(59) {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(60) {
  -webkit-transition-delay: 1475ms;
          transition-delay: 1475ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(61) {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(62) {
  -webkit-transition-delay: 1525ms;
          transition-delay: 1525ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(63) {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(64) {
  -webkit-transition-delay: 1575ms;
          transition-delay: 1575ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(65) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(66) {
  -webkit-transition-delay: 1625ms;
          transition-delay: 1625ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(67) {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(68) {
  -webkit-transition-delay: 1675ms;
          transition-delay: 1675ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(69) {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(70) {
  -webkit-transition-delay: 1725ms;
          transition-delay: 1725ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(71) {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(72) {
  -webkit-transition-delay: 1775ms;
          transition-delay: 1775ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(73) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(74) {
  -webkit-transition-delay: 1825ms;
          transition-delay: 1825ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(75) {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(76) {
  -webkit-transition-delay: 1875ms;
          transition-delay: 1875ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(77) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(78) {
  -webkit-transition-delay: 1925ms;
          transition-delay: 1925ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(79) {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(80) {
  -webkit-transition-delay: 1975ms;
          transition-delay: 1975ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(81) {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(82) {
  -webkit-transition-delay: 2025ms;
          transition-delay: 2025ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(83) {
  -webkit-transition-delay: 2050ms;
          transition-delay: 2050ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(84) {
  -webkit-transition-delay: 2075ms;
          transition-delay: 2075ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(85) {
  -webkit-transition-delay: 2100ms;
          transition-delay: 2100ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(86) {
  -webkit-transition-delay: 2125ms;
          transition-delay: 2125ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(87) {
  -webkit-transition-delay: 2150ms;
          transition-delay: 2150ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(88) {
  -webkit-transition-delay: 2175ms;
          transition-delay: 2175ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(89) {
  -webkit-transition-delay: 2200ms;
          transition-delay: 2200ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(90) {
  -webkit-transition-delay: 2225ms;
          transition-delay: 2225ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(91) {
  -webkit-transition-delay: 2250ms;
          transition-delay: 2250ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(92) {
  -webkit-transition-delay: 2275ms;
          transition-delay: 2275ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(93) {
  -webkit-transition-delay: 2300ms;
          transition-delay: 2300ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(94) {
  -webkit-transition-delay: 2325ms;
          transition-delay: 2325ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(95) {
  -webkit-transition-delay: 2350ms;
          transition-delay: 2350ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(96) {
  -webkit-transition-delay: 2375ms;
          transition-delay: 2375ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(97) {
  -webkit-transition-delay: 2400ms;
          transition-delay: 2400ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(98) {
  -webkit-transition-delay: 2425ms;
          transition-delay: 2425ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(99) {
  -webkit-transition-delay: 2450ms;
          transition-delay: 2450ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(100) {
  -webkit-transition-delay: 2475ms;
          transition-delay: 2475ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(101) {
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(102) {
  -webkit-transition-delay: 2525ms;
          transition-delay: 2525ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(103) {
  -webkit-transition-delay: 2550ms;
          transition-delay: 2550ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(104) {
  -webkit-transition-delay: 2575ms;
          transition-delay: 2575ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(105) {
  -webkit-transition-delay: 2600ms;
          transition-delay: 2600ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(106) {
  -webkit-transition-delay: 2625ms;
          transition-delay: 2625ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(107) {
  -webkit-transition-delay: 2650ms;
          transition-delay: 2650ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(108) {
  -webkit-transition-delay: 2675ms;
          transition-delay: 2675ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(109) {
  -webkit-transition-delay: 2700ms;
          transition-delay: 2700ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(110) {
  -webkit-transition-delay: 2725ms;
          transition-delay: 2725ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(111) {
  -webkit-transition-delay: 2750ms;
          transition-delay: 2750ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(112) {
  -webkit-transition-delay: 2775ms;
          transition-delay: 2775ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(113) {
  -webkit-transition-delay: 2800ms;
          transition-delay: 2800ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(114) {
  -webkit-transition-delay: 2825ms;
          transition-delay: 2825ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(115) {
  -webkit-transition-delay: 2850ms;
          transition-delay: 2850ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(116) {
  -webkit-transition-delay: 2875ms;
          transition-delay: 2875ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(117) {
  -webkit-transition-delay: 2900ms;
          transition-delay: 2900ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(118) {
  -webkit-transition-delay: 2925ms;
          transition-delay: 2925ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(119) {
  -webkit-transition-delay: 2950ms;
          transition-delay: 2950ms;
}
.staff .testimonial .testimonial-card .point-decorator-3x9.__scroll-visible span:nth-child(120) {
  -webkit-transition-delay: 2975ms;
          transition-delay: 2975ms;
}
.staff .testimonial .testimonial-card__about-block {
  grid-column: 2/3;
  grid-row: 1/2;
}
.staff .testimonial .testimonial-card__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  letter-spacing: 0.01em;
  color: var(--text-title);
  margin-bottom: 5px;
}
.staff .testimonial .testimonial-card__role {
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--brand-primary);
}
.staff .testimonial .testimonial-card__content-block {
  grid-column: 2/3;
  grid-row: 2/4;
}
.staff .testimonial .testimonial-card__description {
  margin-bottom: 15px;
}
.staff .testimonial .testimonial-card__next-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  color: var(--text-caption);
  display: inline-block;
  border-radius: 3px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
  padding: 5px;
  width: 60px;
  height: 26px;
}
.staff .testimonial .testimonial-card__next-link span {
  display: block;
  width: 15.45px;
  height: 1.88px;
  background: var(--brand-primary);
  border-radius: 5px;
  position: absolute;
  right: 3px;
  top: 50%;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.staff .testimonial .testimonial-card__next-link::before {
  display: block;
  content: "";
  position: absolute;
  right: 4px;
  width: 7px;
  height: 1.88px;
  top: 50%;
  border-radius: 5px;
  background: var(--brand-primary);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.staff .testimonial .testimonial-card__next-link::after {
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  content: "";
  position: absolute;
  right: 4px;
  width: 7px;
  height: 1.88px;
  top: 50%;
  border-radius: 5px;
  background: var(--brand-primary);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.staff .testimonial .testimonial-card__next-link a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% - 3px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.staff .testimonial .testimonial-card__next-link:hover {
  background: var(--brand-primary);
  color: #fff;
}
.staff .testimonial .testimonial-card__next-link:hover::after, .staff .testimonial .testimonial-card__next-link:hover::before,
.staff .testimonial .testimonial-card__next-link:hover span {
  background: #fff;
}
@media (max-width: 1330px) {
  .staff__cards-row {
    max-width: 900px;
    margin-inline: auto;
  }
  .staff__cards-row .circle {
    width: 50vw;
    top: 50%;
    left: 100%;
    -webkit-transform: translate(-50%, -5%);
        -ms-transform: translate(-50%, -5%);
            transform: translate(-50%, -5%);
  }
}
@media (max-width: 992px) {
  .staff__cards-row .circle {
    display: none;
  }
}
@media (max-width: 1200px) {
  .staff__body .point-decorator-9x10 {
    display: none;
  }
  .staff__subtitle {
    margin-bottom: clamp(40px, 1.05vw, 65px);
  }
}
@media (max-width: 992px) {
  .staff {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .staff {
    margin-bottom: clamp(70px, 20vw, 100px);
  }
  .staff__cards-row {
    gap: 48px 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 90px;
  }
  .staff .staff-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
  }
  .staff .staff-card__image {
    margin-bottom: clamp(9px, 2.5vw, 26px);
  }
  .staff .staff-card__name {
    font-size: clamp(14px, 5vw, 18px);
  }
  .staff .staff-card__description {
    font-size: clamp(10px, 0.0277777778vw, 14px);
    line-height: 160%;
    letter-spacing: 0.02em;
  }
  .staff .staff-card__role {
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    letter-spacing: 0.02em;
  }
  .staff .testimonial__title {
    margin-bottom: clamp(17px, 4.7vw, 40px);
  }
  .staff .testimonial .testimonial-card__name {
    font-size: 14px;
  }
  .staff .testimonial .testimonial-card__body {
    gap: 16px 20px;
    grid-template-columns: 22% 78%;
    grid-template-rows: auto auto auto;
  }
  .staff .testimonial .testimonial-card__about-block {
    grid-row: 1/3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .staff .testimonial .testimonial-card__content-block {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}
@media (max-width: 576px) {
  .staff .testimonial .testimonial-card__circle {
    right: 0;
    bottom: 0;
  }
  .staff .testimonial .testimonial-card .point-decorator-3x9 {
    display: none;
  }
}
@media (max-width: 350px) {
  .staff__cards-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .staff .staff-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 250px;
  }
}

.footer {
  position: relative;
  padding: 80px 0;
  margin: -60px 0 0;
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: clamp(350px, 30.5vw, 400px);
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.footer__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
          flex: 0 1 350px;
}
.footer__logo {
  max-width: 240px;
  height: 50px;
  position: relative;
  margin-bottom: 30px;
}
.footer__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.footer__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.02em;
  color: var(--reset-color);
  opacity: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.footer__title.__scroll-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 1s ease 0.5s;
  transition: all 1s ease 0.5s;
}
.footer__description {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.02em;
  color: var(--reset-color);
  opacity: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.footer__description.__scroll-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s ease 1.2s;
  transition: all 1s ease 1.2s;
}
.footer__sponsors {
  max-width: 150px;
  height: 37px;
  position: relative;
  margin-bottom: 14px;
  opacity: 0;
}
.footer__sponsors.__scroll-visible {
  opacity: 1;
  -webkit-transition: all 1s ease 1.9s;
  transition: all 1s ease 1.9s;
}
.footer__sponsors img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.footer__copyright {
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.02em;
  color: var(--reset-color);
  opacity: 0;
}
.footer__copyright.__scroll-visible {
  opacity: 1;
  -webkit-transition: all 1s ease 2.5s;
  transition: all 1s ease 2.5s;
}
.footer__copyright strong {
  font-weight: 700;
}
.footer .links {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 350px;
          flex: 0 1 350px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.footer .links__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 100px;
}
.footer .links__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
  margin-bottom: 30px;
}
.footer .links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.footer .links__list-item a {
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: -0.02em;
  color: var(--text-caption);
}
.footer .links__list-item a::before, .footer .links__list-item a::after {
  background: var(--text-caption);
}
.footer .links__list-item a span {
  color: var(--brand-primary);
}
.footer__left-decorator {
  width: 0;
  height: 100%;
  background: var(--brand-primary);
  border-top-right-radius: 36%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
.footer__left-decorator.__scroll-visible {
  opacity: 1;
  width: 40%;
  -webkit-transition: width 1s ease 0s, opacity 1s ease 0s;
  transition: width 1s ease 0s, opacity 1s ease 0s;
}
.footer .right-decorator {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 32%;
}
.footer .right-decorator img {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.footer .right-decorator.__scroll-visible img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 1s ease 0s;
  transition: -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s;
  transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
}
.footer .right-decorator__body {
  position: relative;
  width: 100%;
  min-height: 100px;
}
.footer .right-decorator__body img {
  position: absolute;
  left: 0;
  bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .footer {
    margin: 0;
    padding: clamp(30px, 4.5vw, 80px) 0;
  }
  .footer__body {
    padding: 0;
  }
  .footer .right-decorator {
    display: none;
  }
  .footer__left-decorator.__scroll-visible {
    width: 100%;
  }
  .footer .links {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 37.5%;
            flex: 0 1 37.5%;
  }
  .footer .links__body {
    gap: 60px;
  }
  .footer .links__title, .footer .links__list-item a, .footer .links__list-item a span {
    color: var(--reset-color);
  }
  .footer .links__list-item a::before, .footer .links__list-item a::after {
    background: var(--reset-color);
  }
  .footer__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 53%;
            flex: 0 1 53%;
  }
}
@media (max-width: 768px) {
  .footer .links {
    display: none;
  }
  .footer__title {
    margin-bottom: 20px;
  }
  .footer__description {
    margin-bottom: 35px;
  }
  .footer__logo {
    max-width: clamp(171px, 47.5vw, 240px);
    height: clamp(36px, 10vw, 50px);
  }
  .footer__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 min(600px, 100%);
            flex: 0 1 min(600px, 100%);
  }
}

.flower {
  width: 45px;
  height: 141px;
}
.flower__body {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.flower__line {
  position: absolute;
  width: 2px;
  height: 106px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--text-title);
  z-index: -2;
}
.flower__circle {
  width: 17px;
  height: 17px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--text-title);
  border-radius: 50%;
  z-index: -4;
}
.flower__petal {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--brand-primary);
  z-index: -3;
  border-radius: 50% 50% 0 0;
  border-right: 2px solid var(--text-title);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: hidden;
}
.flower__petal::before {
  content: "";
  display: block;
  height: calc(100% + 0.5px);
  position: relative;
  width: calc(100% + 0.5px);
  border-radius: 100%;
  left: 0;
  top: 0;
  border-top: 2px solid var(--text-title);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.flower__petal::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 150%;
  background: var(--brand-primary);
  width: 50%;
}

.circle.__scroll-animations .circle__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.circle.__scroll-visible .circle__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 1s ease 0s;
  transition: -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s;
  transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
}

[class*=point-decorator].__scroll-animations span {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

[class*=point-decorator].__scroll-visible span {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.5;
}
[class*=point-decorator].__scroll-visible span:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(2) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(3) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(4) {
  -webkit-transition-delay: 75ms;
          transition-delay: 75ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(6) {
  -webkit-transition-delay: 125ms;
          transition-delay: 125ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(7) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(8) {
  -webkit-transition-delay: 175ms;
          transition-delay: 175ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(9) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(10) {
  -webkit-transition-delay: 225ms;
          transition-delay: 225ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(11) {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(12) {
  -webkit-transition-delay: 275ms;
          transition-delay: 275ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(13) {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(14) {
  -webkit-transition-delay: 325ms;
          transition-delay: 325ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(15) {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(16) {
  -webkit-transition-delay: 375ms;
          transition-delay: 375ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(17) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(18) {
  -webkit-transition-delay: 425ms;
          transition-delay: 425ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(19) {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(20) {
  -webkit-transition-delay: 475ms;
          transition-delay: 475ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(21) {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(22) {
  -webkit-transition-delay: 525ms;
          transition-delay: 525ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(23) {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(24) {
  -webkit-transition-delay: 575ms;
          transition-delay: 575ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(25) {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(26) {
  -webkit-transition-delay: 625ms;
          transition-delay: 625ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(27) {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(28) {
  -webkit-transition-delay: 675ms;
          transition-delay: 675ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(29) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(30) {
  -webkit-transition-delay: 725ms;
          transition-delay: 725ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(31) {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(32) {
  -webkit-transition-delay: 775ms;
          transition-delay: 775ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(33) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(34) {
  -webkit-transition-delay: 825ms;
          transition-delay: 825ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(35) {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(36) {
  -webkit-transition-delay: 875ms;
          transition-delay: 875ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(37) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(38) {
  -webkit-transition-delay: 925ms;
          transition-delay: 925ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(39) {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(40) {
  -webkit-transition-delay: 975ms;
          transition-delay: 975ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(41) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(42) {
  -webkit-transition-delay: 1025ms;
          transition-delay: 1025ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(43) {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(44) {
  -webkit-transition-delay: 1075ms;
          transition-delay: 1075ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(45) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(46) {
  -webkit-transition-delay: 1125ms;
          transition-delay: 1125ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(47) {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(48) {
  -webkit-transition-delay: 1175ms;
          transition-delay: 1175ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(49) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(50) {
  -webkit-transition-delay: 1225ms;
          transition-delay: 1225ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(51) {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(52) {
  -webkit-transition-delay: 1275ms;
          transition-delay: 1275ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(53) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(54) {
  -webkit-transition-delay: 1325ms;
          transition-delay: 1325ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(55) {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(56) {
  -webkit-transition-delay: 1375ms;
          transition-delay: 1375ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(57) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(58) {
  -webkit-transition-delay: 1425ms;
          transition-delay: 1425ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(59) {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(60) {
  -webkit-transition-delay: 1475ms;
          transition-delay: 1475ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(61) {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(62) {
  -webkit-transition-delay: 1525ms;
          transition-delay: 1525ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(63) {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(64) {
  -webkit-transition-delay: 1575ms;
          transition-delay: 1575ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(65) {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(66) {
  -webkit-transition-delay: 1625ms;
          transition-delay: 1625ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(67) {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(68) {
  -webkit-transition-delay: 1675ms;
          transition-delay: 1675ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(69) {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(70) {
  -webkit-transition-delay: 1725ms;
          transition-delay: 1725ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(71) {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(72) {
  -webkit-transition-delay: 1775ms;
          transition-delay: 1775ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(73) {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(74) {
  -webkit-transition-delay: 1825ms;
          transition-delay: 1825ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(75) {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(76) {
  -webkit-transition-delay: 1875ms;
          transition-delay: 1875ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(77) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(78) {
  -webkit-transition-delay: 1925ms;
          transition-delay: 1925ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(79) {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(80) {
  -webkit-transition-delay: 1975ms;
          transition-delay: 1975ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(81) {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(82) {
  -webkit-transition-delay: 2025ms;
          transition-delay: 2025ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(83) {
  -webkit-transition-delay: 2050ms;
          transition-delay: 2050ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(84) {
  -webkit-transition-delay: 2075ms;
          transition-delay: 2075ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(85) {
  -webkit-transition-delay: 2100ms;
          transition-delay: 2100ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(86) {
  -webkit-transition-delay: 2125ms;
          transition-delay: 2125ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(87) {
  -webkit-transition-delay: 2150ms;
          transition-delay: 2150ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(88) {
  -webkit-transition-delay: 2175ms;
          transition-delay: 2175ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(89) {
  -webkit-transition-delay: 2200ms;
          transition-delay: 2200ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(90) {
  -webkit-transition-delay: 2225ms;
          transition-delay: 2225ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(91) {
  -webkit-transition-delay: 2250ms;
          transition-delay: 2250ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(92) {
  -webkit-transition-delay: 2275ms;
          transition-delay: 2275ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(93) {
  -webkit-transition-delay: 2300ms;
          transition-delay: 2300ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(94) {
  -webkit-transition-delay: 2325ms;
          transition-delay: 2325ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(95) {
  -webkit-transition-delay: 2350ms;
          transition-delay: 2350ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(96) {
  -webkit-transition-delay: 2375ms;
          transition-delay: 2375ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(97) {
  -webkit-transition-delay: 2400ms;
          transition-delay: 2400ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(98) {
  -webkit-transition-delay: 2425ms;
          transition-delay: 2425ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(99) {
  -webkit-transition-delay: 2450ms;
          transition-delay: 2450ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(100) {
  -webkit-transition-delay: 2475ms;
          transition-delay: 2475ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(101) {
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(102) {
  -webkit-transition-delay: 2525ms;
          transition-delay: 2525ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(103) {
  -webkit-transition-delay: 2550ms;
          transition-delay: 2550ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(104) {
  -webkit-transition-delay: 2575ms;
          transition-delay: 2575ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(105) {
  -webkit-transition-delay: 2600ms;
          transition-delay: 2600ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(106) {
  -webkit-transition-delay: 2625ms;
          transition-delay: 2625ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(107) {
  -webkit-transition-delay: 2650ms;
          transition-delay: 2650ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(108) {
  -webkit-transition-delay: 2675ms;
          transition-delay: 2675ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(109) {
  -webkit-transition-delay: 2700ms;
          transition-delay: 2700ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(110) {
  -webkit-transition-delay: 2725ms;
          transition-delay: 2725ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(111) {
  -webkit-transition-delay: 2750ms;
          transition-delay: 2750ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(112) {
  -webkit-transition-delay: 2775ms;
          transition-delay: 2775ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(113) {
  -webkit-transition-delay: 2800ms;
          transition-delay: 2800ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(114) {
  -webkit-transition-delay: 2825ms;
          transition-delay: 2825ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(115) {
  -webkit-transition-delay: 2850ms;
          transition-delay: 2850ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(116) {
  -webkit-transition-delay: 2875ms;
          transition-delay: 2875ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(117) {
  -webkit-transition-delay: 2900ms;
          transition-delay: 2900ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(118) {
  -webkit-transition-delay: 2925ms;
          transition-delay: 2925ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(119) {
  -webkit-transition-delay: 2950ms;
          transition-delay: 2950ms;
}
[class*=point-decorator].__scroll-visible span:nth-child(120) {
  -webkit-transition-delay: 2975ms;
          transition-delay: 2975ms;
}

ul.__scroll-animations li {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

ul.__scroll-visible li {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
ul.__scroll-visible li:nth-child(1) {
  -webkit-transition: all 1s ease 500ms;
  transition: all 1s ease 500ms;
}
ul.__scroll-visible li:nth-child(2) {
  -webkit-transition: all 1s ease 800ms;
  transition: all 1s ease 800ms;
}
ul.__scroll-visible li:nth-child(3) {
  -webkit-transition: all 1s ease 1100ms;
  transition: all 1s ease 1100ms;
}
ul.__scroll-visible li:nth-child(4) {
  -webkit-transition: all 1s ease 1400ms;
  transition: all 1s ease 1400ms;
}
ul.__scroll-visible li:nth-child(5) {
  -webkit-transition: all 1s ease 1700ms;
  transition: all 1s ease 1700ms;
}