@font-face {
  font-family: "Montserrat Regular";
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Medium";
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat SemiBold";
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Black";
  src: local("Montserrat Black"), local("Montserrat-Black"), url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Bold";
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Regular";
  src: local("Roboto Regular"), local("Roboto-Regular"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Medium";
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Thin";
  src: local("Roboto Thin"), local("Roboto-Thin"), url("../fonts/Roboto-Thin.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Light";
  src: local("Roboto Light"), local("Roboto-Light"), url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Bold";
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@keyframes fade-in {
  0% {
    transform: translateY(-30%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-30%);
    opacity: 0;
  }
}
@keyframes make-transparent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes make-opaque {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes carousel {
  0% {
    transform: translate(0%);
  }
  100% {
    transform: translate(-100%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Regular", serif;
}
*::marker {
  content: none;
  display: none;
}

html {
  scrollbar-gutter: stable;
}

button {
  border: none;
  background: none;
}

img {
  display: block;
}

a {
  color: black;
  text-decoration: none;
  transition-duration: 0.3s;
}
a:hover {
  color: #909099;
}

h4 {
  font-size: 18px;
  line-height: 21px;
  font-family: "Montserrat SemiBold", sans-serif;
}

h3 {
  font-size: 36px;
  line-height: 1.1;
  font-family: "Montserrat SemiBold", sans-serif;
}
@media only screen and (max-width: 576px) {
  h3 {
    font-size: 24px;
  }
}

h2 {
  font-size: 42px;
  line-height: 1.1;
  font-family: "Montserrat SemiBold", sans-serif;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 576px) {
  h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 430px) {
  h2 {
    font-size: 28px;
  }
}

ul, ol {
  list-style: none;
}

input, textarea {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #C0C0CC;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::placeholder, textarea::placeholder {
  color: #909099;
  font-family: "Roboto Light", sans-serif;
}

.header {
  padding-top: 16px;
  background: #FFF;
  transition-duration: 0.3s;
}
.start-animation .header {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .header {
    padding-top: 20px;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.header__buttons_mobile {
  gap: 4px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header__buttons_mobile {
    display: flex;
  }
}
.header__buttons_mobile .header__mobile-button {
  width: 32px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__buttons_desktop {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .header__buttons_desktop {
    display: none;
  }
}
.header__wrapper {
  display: flex;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.0509803922);
  border-radius: 38px;
  padding: 12px 16px 12px 32px;
}
@media only screen and (max-width: 768px) {
  .header__wrapper {
    padding: 16px 20px;
  }
}
.header__list {
  margin-left: 48px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .header__list {
    display: none;
  }
}
.header__list ul {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1280px) {
  .header__list ul {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .header__logo-image img {
    height: 32px;
  }
}

.wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.wrapper .wrapper-inner {
  width: 1280px;
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #909099;
  transition-duration: 0.3s;
}
.link:hover {
  background-color: #212121;
  color: #fff;
}
.link.small {
  height: 48px;
  border-radius: 24px;
}
@media only screen and (max-width: 768px) {
  .link.small {
    border: none;
    height: 32px;
    border-radius: 0;
  }
}
.link.big {
  height: 66px;
  border-radius: 33px;
}
.link.icon {
  width: 48px;
}
@media only screen and (max-width: 768px) {
  .link.icon {
    width: 32px;
  }
}
.link.icon.big {
  width: 66px;
}
.link.with-text {
  padding: 0 32px;
  width: max-content;
  gap: 16px;
}

.animated-button {
  height: 66px;
  border-radius: 33px;
  border: 1px solid #242424;
  padding-right: 72px;
  position: relative;
  display: flex;
  box-sizing: content-box;
  cursor: pointer;
}
.animated-button:hover .animated-button__main-text_real {
  width: calc(100% + 2px);
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.animated-button__main-text {
  padding: 0 32px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 33px;
  background: #242424;
  color: white;
  z-index: 5;
  transition-duration: 300ms;
}
.animated-button__main-text_fake {
  opacity: 0;
}
.animated-button__main-text_real {
  position: absolute;
  width: calc(100% - 72px);
  white-space: nowrap;
  top: 0;
  left: -1px;
}
.animated-button__arrow-icon {
  position: absolute;
  display: block;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.presentation-container {
  background: #F7F7FC;
  overflow: hidden;
}

.error-message {
  display: none;
  padding-left: 20px;
}
.invalid + .error-message {
  display: block;
  color: red;
}
.invalid + .error-message:after {
  content: "";
}

.invalid {
  border-color: red;
}

.burger-modal {
  background: white;
  padding: 40px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
.burger-modal.open {
  animation: fade-in 0.3s forwards cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.burger-modal.closing {
  animation: fade-out 0.3s forwards cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
@media only screen and (max-width: 768px) {
  .burger-modal {
    padding: 20px;
  }
}
.burger-modal__logo {
  height: 32px;
  display: block;
}
.burger-modal__logo img {
  height: 100%;
}
.burger-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.burger-modal__links {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 48px;
  margin-top: 32px;
}
@media only screen and (max-width: 430px) {
  .burger-modal__links {
    flex-direction: column;
  }
}
.burger-modal__links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.burger-modal__button-links {
  display: flex;
  gap: 12px;
}
.burger-modal__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}
.burger-modal__buttons .animated-button__main-text {
  padding: 0 28px;
}
@media only screen and (max-width: 576px) {
  .burger-modal__buttons {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .burger-modal__buttons .burger-modal__cases-button {
    justify-content: center;
  }
}
.burger-modal__cases-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid #242424;
  border-radius: 33px;
  font-size: 18px;
  padding: 0 28px;
}

.form-modal {
  max-width: 688px;
  margin: 40px auto;
  background: white;
  border-radius: 18px;
  padding: 40px;
}
.form-modal.open {
  animation: make-transparent 0.3s forwards cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.form-modal.closing {
  animation: make-opaque 0.3s forwards cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
@media only screen and (max-width: 576px) {
  .form-modal {
    padding: 20px;
    margin: 20px 0 0;
  }
}
.form-modal__cross {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}
.form-modal__head {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.form-modal__subtitle {
  color: #909099;
  font-size: 14px;
  margin-top: 12px;
}
.form-modal__discuss-form {
  margin-top: 48px;
}
@media only screen and (max-width: 1024px) {
  .form-modal__discuss-form {
    margin-top: 24px;
  }
}

.form-submit-modal {
  background: white;
  border-radius: 18px;
  padding: 40px;
  max-width: 688px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 576px) {
  .form-submit-modal {
    padding: 20px;
    margin: 20px 0 0;
  }
}
.form-submit-modal.open {
  animation: make-transparent 0.3s forwards cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.form-submit-modal.closing {
  animation: make-opaque 0.3s forwards cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.form-submit-modal__header {
  text-align: center;
}
.form-submit-modal__body {
  margin-top: 48px;
  text-align: center;
}
.form-submit-modal__cross {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}

.modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 30;
  display: none;
  background-color: rgba(0, 0, 0, 0);
  transition-duration: 30ms;
}
.modals.modal-open {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
body:has(.modals.modal-open) {
  overflow: hidden;
}
.modals:has(.closing) {
  background-color: rgba(0, 0, 0, 0);
}
.modals > div {
  display: none;
}
.modals > div.open, .modals > div.closing {
  display: block;
}

.start-animation {
  overflow: hidden;
}
.start-animation .start-animation__overlay {
  z-index: 50;
  top: 0;
  left: 0;
  background: #242424;
  position: fixed;
  width: 100vw;
  height: 100vh;
  animation: overlay-hiding 0.5s forwards 0.5s;
}

@keyframes overlay-hiding {
  0% {
    height: 100vh;
  }
  100% {
    height: 0;
  }
}
.first-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.0392156863);
}
@media only screen and (max-width: 1920px) {
  .first-section {
    min-height: calc(100vh - 88px);
  }
}
@media only screen and (max-width: 1024px) {
  .first-section {
    padding-bottom: 40px;
  }
}
.first-section__links, .first-section__main-text {
  transition-duration: 0.3s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.start-animation .first-section__links, .start-animation .first-section__main-text {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0s;
  transform: translateX(-150px);
}
@media only screen and (max-width: 1024px) {
  .first-section__links, .first-section__main-text {
    transform: translateX(0) !important;
  }
}
@media only screen and (max-width: 768px) {
  .first-section__links {
    transition-delay: 1.2s;
  }
}
.first-section__marketplace-animation {
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.3s;
  transition-delay: 0.5s;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .first-section__marketplace-animation {
    display: none;
  }
}
.start-animation .first-section__marketplace-animation {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0s;
}
.first-section__marketplace-text {
  user-select: none;
  font-size: 221px;
  animation: carousel 10s infinite linear 1s;
  font-family: "Montserrat Black", sans-serif;
  color: #F7F7FA;
  letter-spacing: 30px;
}
.start-animation .first-section__marketplace-text {
  animation: unset;
}
.first-section__container {
  display: grid;
  gap: 24px 12px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  margin-top: 120px;
  z-index: 5;
}
@media only screen and (max-width: 1024px) {
  .first-section__container {
    margin-top: 32px;
    gap: 32px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (max-width: 576px) {
  .first-section__container {
    gap: 64px;
  }
}
.first-section__main-image {
  grid-row: 1/-1;
  grid-column-start: 2;
  transition-duration: 0.3s;
  transition-delay: 0.5s;
}
@media only screen and (max-width: 1024px) {
  .first-section__main-image {
    grid-column: 1;
    grid-row-start: 2;
  }
}
.first-section__main-image img {
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .first-section__main-image img {
    transform: scale(1.3);
  }
}
.start-animation .first-section__main-image {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0s;
}
@media only screen and (max-width: 768px) {
  .first-section__main-image {
    transition-delay: 0.8s;
  }
}
.first-section__title {
  font-size: 56px;
  font-family: "Montserrat SemiBold", sans-serif;
  line-height: 62px;
}
@media only screen and (max-width: 430px) {
  .first-section__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.first-section__text {
  margin-top: 24px;
  line-height: 24px;
  letter-spacing: 0.3px;
  font-family: "Roboto Light", sans-serif;
}
.first-section__project {
  font-family: "Roboto Bold", sans-serif;
}
.first-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.first-section__tag {
  color: #4B4B4D;
  background-color: #F2F2F7;
  border-radius: 10px;
  padding: 4px 12px;
}
.first-section__link {
  margin-top: 24px;
}
.first-section__link a {
  font-family: "Montserrat SemiBold", sans-serif;
  color: #00D88F;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .first-section__link {
    transition-duration: 0.3s;
    transition-delay: 1.5s;
  }
  .start-animation .first-section__link {
    opacity: 0;
    transition-duration: 0s;
    transition-delay: 0s;
  }
}
.first-section__button {
  margin-top: 98px;
  transition-duration: 0.3s;
  transition-delay: 1s;
}
.first-section__button .animated-button {
  box-sizing: border-box;
}
.first-section__button .animated-button__main-text {
  padding: 0 43px;
}
@media only screen and (max-width: 1024px) {
  .first-section__button {
    margin-top: 64px;
  }
}
.start-animation .first-section__button {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0s;
}

.discuss-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px 12px;
}
@media only screen and (max-width: 768px) {
  .discuss-form {
    grid-template-columns: 1fr;
  }
}
.discuss-form__input {
  display: flex;
  flex-direction: column;
}
.discuss-form__input > span {
  font-size: 14px;
  margin-bottom: 4px;
  padding-left: 20px;
  font-family: "Roboto Light", sans-serif;
}
.discuss-form__input > span::after {
  content: "*";
  color: red;
  margin-left: 4px;
}
.discuss-form__name, .discuss-form__description, .discuss-form__submit {
  grid-column: 1/-1;
}
@media only screen and (max-width: 768px) {
  .discuss-form__name, .discuss-form__description, .discuss-form__submit {
    grid-column: 1;
  }
}
.discuss-form__description textarea {
  min-height: 160px;
  resize: none;
}
@media only screen and (max-width: 1280px) {
  .discuss-form__description textarea {
    min-height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .discuss-form__description textarea {
    min-height: 80px;
  }
}
.discuss-form__submit {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 48px;
}
@media only screen and (max-width: 1280px) {
  .discuss-form__submit {
    padding-top: 24px;
  }
}
@media only screen and (max-width: 576px) {
  .discuss-form__submit {
    padding-top: 0;
  }
}
.discuss-form__submit button {
  min-width: 230px;
}
@media only screen and (max-width: 768px) {
  .discuss-form__submit button {
    min-width: unset;
    width: calc(100% - 77px);
  }
}
.discuss-form__policy-title {
  font-size: 12px;
  color: #A8A8B2;
  margin-top: 12px;
}
.discuss-form__policy-link {
  text-decoration: underline;
}

.section-about {
  padding-top: 96px;
  position: relative;
  padding-bottom: 114px;
}
@media only screen and (max-width: 1024px) {
  .section-about {
    padding-top: 64px;
    padding-bottom: 96px;
  }
}
.section-about__pointer {
  position: absolute;
  top: 200px;
  left: 164px;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .section-about__pointer {
    left: 50%;
    top: unset;
    bottom: calc(-130px - var(--scroll-visibility) * 40px);
    transform: translate(-50%) rotate3d(-0.2, 1, 0, 180deg);
    z-index: 10;
  }
}
@media only screen and (max-width: 576px) {
  .section-about__pointer {
    bottom: calc(-50px - var(--scroll-visibility) * 40px);
    width: 150px;
  }
  .section-about__pointer img {
    width: 100%;
  }
}
.section-about__content {
  z-index: 3;
  padding-top: 10px;
}
.section-about__content {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(50px);
}
.section-about__content.is-active, .is-active .section-about__content {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-about__content-block {
  margin-bottom: 24px;
}
.section-about__content-text {
  font-family: "Roboto Light", sans-serif;
  line-height: 24px;
}
.section-about__content-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 12px;
}
.section-about__content-list li::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  background: black;
}
.section-about__head {
  z-index: 3;
}
.section-about__head {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-about__head.is-active, .is-active .section-about__head {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-about__head {
    transform: translateX(0) !important;
  }
}
.section-about__main {
  color: #00D88F;
  font-family: "Montserrat SemiBold", sans-serif;
}
.section-about__container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 8px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .section-about__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .section-about__container {
    gap: 32px;
  }
}
.section-about__circle {
  content: "";
  position: absolute;
  top: -172px;
  left: -185px;
  width: 555px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #F2F2F7;
}
@media only screen and (max-width: 1024px) {
  .section-about__circle {
    top: 105px;
    left: unset;
    right: -134px;
  }
}
.section-about__release {
  padding: 32px;
  border: 2px solid #D8D8E5;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
.section-about__left {
  font-family: "Montserrat SemiBold", sans-serif;
  font-size: 18px;
}
.section-about__right {
  font-family: "Roboto Light", sans-serif;
}

@media only screen and (max-width: 1024px) {
  .section-team__container.wrapper-inner {
    width: 100%;
  }
}
.section-team__container.wrapper-inner {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-team__container.wrapper-inner.is-active, .is-active .section-team__container.wrapper-inner {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-team__container.wrapper-inner {
    transform: translateX(0) !important;
  }
}
.section-team__label {
  padding: 18px 30px;
  border: 1px solid #D8D8E5;
  border-radius: 30px;
  background-color: white;
  white-space: nowrap;
  font-family: "Roboto Light", sans-serif;
}
.section-team__label-pair {
  display: flex;
  gap: 12px;
}
@media only screen and (max-width: 576px) {
  .section-team__label-pair {
    position: relative;
  }
  .section-team__label-pair:nth-child(even) {
    justify-content: flex-end;
    transform: translateX(calc(var(--scroll-visibility) * 200px - 150px));
  }
  .section-team__label-pair:nth-child(odd) {
    justify-content: flex-start;
    transform: translateX(calc((var(--scroll-visibility) * 200px - 150px) * -1));
  }
}
.section-team__label-row {
  display: flex;
  gap: 12px;
  position: relative;
  --amplitude: 650px;
  --differ: 500px;
  position: relative;
  transition-duration: 0s;
  transition-delay: 0s;
  will-change: transform;
}
.section-team__label-row:nth-child(even) {
  justify-content: flex-end;
  transform: translateX(calc(var(--scroll-visibility) * var(--amplitude) - var(--differ)));
}
.section-team__label-row:nth-child(odd) {
  justify-content: flex-start;
  transform: translateX(calc((var(--scroll-visibility) * var(--amplitude) - var(--differ)) * -1));
}
@media only screen and (max-width: 1280px) {
  .section-team__label-row {
    --amplitude: 400px;
    --differ: 300px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-team__label-row {
    --differ: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-team__label-row {
    --differ: 400px;
    --amplitude: 500px;
  }
}
@media only screen and (max-width: 576px) {
  .section-team__label-row {
    flex-direction: column;
    --differ: 0;
    --amplitude: 0;
    justify-content: flex-start !important;
  }
}
.section-team__label-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 72px;
}
@media only screen and (max-width: 1024px) {
  .section-team__label-wrapper {
    margin-top: 48px;
  }
}

.section-possibilities {
  padding-top: 120px;
  background: #F7F7FC;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.section-possibilities__head {
  line-height: 1.1;
}
.section-possibilities__head {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-possibilities__head.is-active, .is-active .section-possibilities__head {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__head {
    transform: translateX(0) !important;
  }
}
.section-possibilities__info-block {
  margin-top: 72px;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__info-block {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 576px) {
  .section-possibilities__info-block {
    margin-top: 32px;
  }
}
.section-possibilities__info-block h3 {
  font-size: 28px;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__info-block h3 {
    font-size: 24px;
  }
}
.section-possibilities__info-block-title {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-possibilities__info-block-title.is-active, .is-active .section-possibilities__info-block-title {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__info-block-title {
    transform: translateX(0) !important;
  }
}
.section-possibilities__green {
  color: #00D88F;
  font-family: "Montserrat SemiBold", sans-serif;
}
.section-possibilities__subtitle {
  font-family: "Roboto Light", sans-serif;
  margin-top: 18px;
}
.section-possibilities__scroll-container {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 12px;
  margin-top: 32px;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__scroll-container {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}
.section-possibilities__text-blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.section-possibilities__text-block {
  padding: 32px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0392156863);
  position: relative;
  transition-duration: 0.3s;
}
.section-possibilities__text-block {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(50px);
}
.section-possibilities__text-block.is-active, .is-active .section-possibilities__text-block {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__text-block {
    padding: 20px;
  }
}
.section-possibilities__text-block h4 {
  font-family: "Montserrat SemiBold", sans-serif;
  font-size: 18px;
  line-height: 21.6px;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__text-block h4 {
    font-family: "Roboto Light", sans-serif;
    min-height: 36px;
    display: flex;
    align-items: center;
    padding-right: 48px;
  }
}
.section-possibilities__text-block p {
  margin-top: 16px;
  line-height: 24px;
  font-family: "Roboto Light", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__text-block p {
    height: 0;
    margin-top: 0;
    overflow: hidden;
  }
}
.section-possibilities__text-block:hover {
  background: #242424;
  color: white;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__text-block.opened p {
    height: auto;
    margin-top: 16px;
    overflow: visible;
  }
}
.section-possibilities__image-container {
  height: auto;
}
.section-possibilities__image-container {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-possibilities__image-container.is-active, .is-active .section-possibilities__image-container {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__image-container {
    transform: translateX(0) !important;
  }
}
.section-possibilities__sticky-image {
  position: sticky;
  top: 16px;
  height: auto;
  padding: 32px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0392156863);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1280px) {
  .section-possibilities__sticky-image img {
    width: 100%;
  }
}
.section-possibilities__image-wrapper {
  position: relative;
}
.section-possibilities__overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__overlay-image {
    display: none;
  }
}
.section-possibilities__overlay-image.active {
  opacity: 1;
}
.section-possibilities__plus-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .section-possibilities__plus-icon {
    display: block;
  }
}
.section-possibilities__plus-icon .section-possibilities__plus-line:last-child {
  transform: translateX(-50%) rotate(180deg);
}
.section-possibilities__plus-icon .section-possibilities__plus-line:first-child {
  transform: translateX(-50%) rotate(90deg);
}
.section-possibilities__plus-line {
  position: absolute;
  top: calc(50% - 1.5px);
  left: 50%;
  width: 16px;
  height: 3px;
  border-radius: 1.5px;
  background: #00D88F;
  transition-duration: 0.3s;
}
.opened .section-possibilities__plus-line {
  transform: translateX(-50%) rotate(0deg) !important;
}

.section-order {
  background: #F7F7FC;
}
.section-order__container {
  position: relative;
  overflow: hidden;
  background-color: #F7F7FC;
  padding: 32px;
  border-radius: 18px;
  transition-duration: 0.3s;
}
.is-active .section-order__container {
  background-color: #252525;
}
@media only screen and (max-width: 1024px) {
  .section-order__container {
    margin: 0 -40px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 768px) {
  .section-order__container {
    margin: 0 -20px;
  }
}
.section-order__container h2 {
  color: white;
  opacity: 0;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 576px) {
  .section-order__container h2 {
    max-width: 200px;
  }
}
.is-active .section-order__container h2 {
  transition-delay: 0.3s;
  opacity: 1;
}
h2 .section-order__green {
  color: #00D88F;
  font-family: "Montserrat Medium", sans-serif;
}
.section-order__bold {
  font-family: "Montserrat Medium", sans-serif;
}
.section-order__title {
  color: #C0C0CC;
  max-width: 330px;
  font-size: 16px;
  line-height: 20px;
  margin-top: 24px;
  opacity: 0;
  transition-duration: 0.3s;
  position: relative;
  z-index: 1;
}
.is-active .section-order__title {
  transition-delay: 0.6s;
  opacity: 1;
}
.section-order__button {
  margin-top: 48px;
  max-width: 315px;
  width: 100%;
  opacity: 0;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 1024px) {
  .section-order__button {
    max-width: 266px;
  }
}
@media only screen and (max-width: 768px) {
  .section-order__button {
    max-width: 213px;
  }
}
@media only screen and (max-width: 576px) {
  .section-order__button {
    max-width: calc(100% - 77px);
  }
}
.is-active .section-order__button {
  transition-delay: 0.9s;
  opacity: 1;
}
.section-order__button .animated-button {
  border-color: white;
  width: 100%;
}
.section-order__button .animated-button .animated-button__main-text {
  background-color: white;
  color: black;
}
.section-order__fire {
  position: absolute;
  right: 0;
  top: -100px;
}
@media only screen and (max-width: 1024px) {
  .section-order__fire {
    top: -70px;
    right: -20%;
  }
}
@media only screen and (max-width: 768px) {
  .section-order__fire {
    top: -10px;
    right: -160px;
  }
}
@media only screen and (max-width: 576px) {
  .section-order__fire {
    right: -60px;
  }
}
.section-order__fire-image {
  transition-duration: 0.5s;
  filter: blur(30px);
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  .section-order__fire-image {
    width: 595px;
  }
}
@media only screen and (max-width: 768px) {
  .section-order__fire-image {
    width: 515px;
  }
}
@media only screen and (max-width: 576px) {
  .section-order__fire-image {
    width: 229px;
  }
}
.is-active .section-order__fire-image {
  filter: blur(0px);
  transition-delay: 0.3s;
  opacity: 1;
}

.section-monetization {
  padding-top: 120px;
  background: #F7F7FC;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .section-monetization__container.wrapper-inner {
    width: 100%;
  }
}
.section-monetization__title {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-monetization__title.is-active, .is-active .section-monetization__title {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-monetization__green {
  color: #00D88F;
  font-family: "Montserrat SemiBold", sans-serif;
}
.section-monetization__types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 238px;
  gap: 12px;
  margin-top: 72px;
  width: 100%;
  overflow-x: scroll;
}
.section-monetization__types::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .section-monetization__types {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 251px 251px;
  }
}
@media only screen and (max-width: 768px) {
  .section-monetization__types {
    margin-top: 32px;
    grid-template-columns: repeat(4, 291px);
    grid-template-rows: 238px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .section-monetization__types {
    grid-template-columns: repeat(4, 238px);
    grid-template-rows: 200px;
  }
}
.section-monetization__type {
  border: 1px solid #00D88F;
  background-color: white;
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.section-monetization__type {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-monetization__type.is-active, .is-active .section-monetization__type {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.is-active .section-monetization__type:nth-child(1) {
  transition: background-color 0.3s, opacity 0.1s 0.3s, transform 0.1s 0.3s cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.is-active .section-monetization__type:nth-child(2) {
  transition: background-color 0.3s, opacity 0.1s 0.4s, transform 0.1s 0.4s cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.is-active .section-monetization__type:nth-child(3) {
  transition: background-color 0.3s, opacity 0.1s 0.5s, transform 0.1s 0.5s cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.is-active .section-monetization__type:nth-child(4) {
  transition: background-color 0.3s, opacity 0.1s 0.6s, transform 0.1s 0.6s cubic-bezier(0.39, 0.53, 0.12, 1.14);
}
.section-monetization__type.unavailable {
  border: none;
}
.section-monetization__type:not(.unavailable):hover {
  background-color: #00D88F;
  color: white;
}
.section-monetization__type:not(.unavailable):hover .section-monetization__type-available {
  color: white;
}
.section-monetization__type-title {
  font-size: 18px;
  transition-duration: 0.3s;
}
.unavailable .section-monetization__type-title {
  color: #787880;
}
.section-monetization__type-available {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: #00D88F;
  transition-duration: 0.3s;
}
.unavailable .section-monetization__type-available {
  color: #909099;
}
.section-monetization__type-available span {
  font-family: "Montserrat SemiBold", sans-serif;
}

.section-developments {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #F7F7FC;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .section-developments__container.wrapper-inner {
    width: 100%;
  }
}
.section-developments__container.wrapper-inner h2 {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-developments__container.wrapper-inner h2.is-active, .is-active .section-developments__container.wrapper-inner h2 {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-developments__green {
  color: #00D88F;
  font-family: "Montserrat SemiBold", sans-serif;
}
.section-developments__tags-container {
  margin-top: 72px;
}
@media only screen and (max-width: 1024px) {
  .section-developments__tags-container {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .section-developments__tags-container {
    margin-top: 72px;
  }
}
.section-developments__tags {
  flex-direction: column;
  gap: 12px;
}
.section-developments__tags_desktop {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .section-developments__tags_desktop {
    display: none;
  }
}
.section-developments__tags_laptop {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .section-developments__tags_laptop {
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  .section-developments__tags_laptop {
    display: none;
  }
}
.section-developments__tags_mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .section-developments__tags_mobile {
    display: flex;
  }
}
.section-developments__tags-row {
  display: flex;
  gap: 12px;
  --amplitude: 650px;
  --differ: 500px;
  position: relative;
  transition-duration: 0s;
  transition-delay: 0s;
  will-change: transform;
}
.section-developments__tags-row:nth-child(even) {
  justify-content: flex-end;
  transform: translateX(calc(var(--scroll-visibility) * var(--amplitude) - var(--differ)));
}
.section-developments__tags-row:nth-child(odd) {
  justify-content: flex-start;
  transform: translateX(calc((var(--scroll-visibility) * var(--amplitude) - var(--differ)) * -1));
}
@media only screen and (max-width: 1280px) {
  .section-developments__tags-row {
    --amplitude: 400px;
    --differ: 300px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-developments__tags-row {
    --differ: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-developments__tags-row {
    --differ: 400px;
    --amplitude: 500px;
  }
}
.section-developments__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 30px;
  border-radius: 30px;
  background-color: white;
  border: 1px solid #D8D8E5;
  white-space: nowrap;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0392156863);
}
.section-developments__tag_dark {
  background: #242424;
  border: none;
  color: white;
}
.section-developments__table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 72px;
}
.section-developments__table > div {
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .section-developments__table {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 576px) {
  .section-developments__table {
    grid-template-columns: 1fr;
  }
}
.section-developments__content-cell {
  border-radius: 18px;
  background: white;
  padding: 32px;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0392156863);
}
.section-developments__content-cell:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1882352941);
}
.section-developments__content-cell:hover .section-developments__content-title img {
  transform: scale(1.15);
}
@media only screen and (max-width: 1024px) {
  .section-developments__content-cell {
    padding: 20px;
  }
}
.section-developments__content-cell_animated {
  grid-row: 1/4;
  transform: translateY(50px);
  opacity: 0;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 1024px) {
  .section-developments__content-cell_animated {
    grid-row: 1/1;
    grid-column: 1/3;
    transform: translateY(0px);
  }
}
@media only screen and (max-width: 576px) {
  .section-developments__content-cell_animated {
    grid-column: 1/2;
  }
}
.section-developments__content-cell_animated.is-active {
  opacity: 1;
  transform: translateY(0);
}
.section-developments__content-cell_right {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-developments__content-cell_right.is-active, .is-active .section-developments__content-cell_right {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-developments__content-cell_right {
    transform: translateX(0) !important;
  }
}
.section-developments__content-cell_left {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(50px);
}
.section-developments__content-cell_left.is-active, .is-active .section-developments__content-cell_left {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-developments__content-cell_left {
    transform: translateX(0) !important;
  }
}
@media only screen and (max-width: 576px) {
  .section-developments__content-cell_alfa-bank {
    grid-row: 5/6;
  }
}
@media only screen and (max-width: 576px) {
  .section-developments__content-cell_multilanguage {
    grid-row: 6/7;
  }
}
.section-developments__content-title {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.section-developments__content-title h4 {
  font-family: "Montserrat SemiBold", sans-serif;
}
.section-developments__content-title img {
  transition-duration: 0.3s;
}
.section-developments__table-content {
  font-family: "Roboto Light", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
}
.section-developments__animation {
  margin-top: 52px;
}
.section-developments__animation video {
  width: 100%;
}
.section-developments__glass_first {
  position: relative;
}
.section-developments__glass_first img {
  position: absolute;
  right: -92px;
  --main-position: -75px;
  --amplitude: 150px;
  bottom: calc(var(--main-position) + var(--amplitude) / 2 - var(--amplitude) * var(--scroll-visibility));
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .section-developments__glass_first {
    grid-row-start: 3;
    grid-column-start: 1;
  }
  .section-developments__glass_first img {
    right: unset;
    left: -78px;
    --main-position: 20px;
    --amplitude: 75px;
  }
}
@media only screen and (max-width: 576px) {
  .section-developments__glass_first {
    height: 84px;
    z-index: 2 !important;
  }
  .section-developments__glass_first img {
    --main-position: -100px;
  }
}
.section-developments__glass_second img {
  --main-position: 0px;
  --amplitude: 150px;
  position: relative;
  left: -55px;
  top: calc(var(--main-position) - var(--amplitude) / 2 + var(--amplitude) * var(--scroll-visibility));
}
@media only screen and (max-width: 1024px) {
  .section-developments__glass_second {
    grid-row-start: 4;
    grid-column-start: 2;
  }
  .section-developments__glass_second img {
    left: unset;
  }
}
@media only screen and (max-width: 576px) {
  .section-developments__glass_second {
    grid-column-start: 1;
    grid-row: 7/8;
    height: 72px;
  }
  .section-developments__glass_second img {
    --main-position: -130px;
  }
}
.section-developments__glass_third {
  position: relative;
}
.section-developments__glass_third img {
  --main-position: -124px;
  --amplitude: 200px;
  position: absolute;
  left: -159px;
  top: calc(var(--main-position) - var(--amplitude) / 2 + var(--amplitude) * var(--scroll-visibility));
}
@media only screen and (max-width: 1024px) {
  .section-developments__glass_third {
    grid-row: 5/7;
  }
  .section-developments__glass_third img {
    --main-position: 50px;
    --amplitude: 300px;
  }
}
@media only screen and (max-width: 576px) {
  .section-developments__glass_third {
    grid-row: 10/11;
    height: 160px;
  }
  .section-developments__glass_third img {
    --main-position: -200px;
    --amplitude: 150px;
    left: unset;
    right: -30px;
    transform: rotate(60deg);
  }
}

.section-summary {
  background: #F7F7FC;
  overflow: hidden;
  padding-bottom: 96px;
}
.section-summary__green {
  color: #00D88F;
  font-family: "Montserrat Medium", sans-serif;
}
.section-summary__passed-steps {
  grid-column: 1/4;
}
.section-summary__passed-steps svg {
  overflow: visible;
  margin-top: 48px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .section-summary__passed-steps {
    grid-column: 1/3;
    overflow: scroll;
    margin: 0 -40px;
    padding: 0 40px;
  }
  .section-summary__passed-steps .section-summary__step {
    width: max-content;
  }
  .section-summary__passed-steps::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .section-summary__passed-steps {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
.section-summary__steps-container {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 420px;
  gap: 12px;
}
@media only screen and (max-width: 1024px) {
  .section-summary__steps-container {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
    column-gap: 0;
    margin-top: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .section-summary__steps-container {
    margin-top: 32px;
  }
}
.section-summary__head {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(0px);
}
.section-summary__head.is-active, .is-active .section-summary__head {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-summary__subtitle {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(0px);
}
.section-summary__subtitle.is-active, .is-active .section-summary__subtitle {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-summary__big-image {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(50px);
}
.section-summary__big-image.is-active, .is-active .section-summary__big-image {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-summary__step {
  background: white;
  border-radius: 18px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0392156863);
  padding: 32px;
}
@media only screen and (max-width: 1024px) {
  .section-summary__step {
    padding: 20px;
  }
}
.section-summary__step_online-business .section-summary__icon {
  left: 2px;
  top: 272px;
}
.section-summary__step_online-business.is-active .section-summary__title, .section-summary__step_online-business.is-active h4 {
  transition-delay: 0.3s;
}
@media only screen and (max-width: 1024px) {
  .section-summary__step_online-business {
    padding-left: 241px;
  }
  .section-summary__step_online-business .section-summary__icon {
    left: 20px;
    top: 20px;
  }
  .section-summary__step_online-business .section-summary__icon svg {
    width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .section-summary__step_online-business {
    padding-left: 183px;
  }
  .section-summary__step_online-business .section-summary__icon {
    top: 67px;
  }
  .section-summary__step_online-business .section-summary__icon svg {
    width: 230px;
  }
}
@media only screen and (max-width: 576px) {
  .section-summary__step_online-business {
    padding-bottom: 108px;
    padding-left: 20px;
  }
  .section-summary__step_online-business .section-summary__icon {
    left: 20px;
    top: unset;
    bottom: -100px;
  }
  .section-summary__step_online-business .section-summary__icon svg {
    width: 180px;
    height: 180px;
  }
}
.section-summary__step_number-control {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section-summary__step_number-control.is-active .section-summary__title, .section-summary__step_number-control.is-active h4 {
  transition-delay: 0.6s;
}
.section-summary__step_number-control .section-summary__icon {
  top: -100px;
}
@media only screen and (max-width: 1024px) {
  .section-summary__step_number-control {
    padding-right: 241px;
  }
  .section-summary__step_number-control .section-summary__icon {
    top: 20px;
    right: -50px;
  }
  .section-summary__step_number-control .section-summary__icon svg {
    width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .section-summary__step_number-control {
    padding-right: 183px;
  }
  .section-summary__step_number-control .section-summary__icon {
    top: 43px;
  }
  .section-summary__step_number-control .section-summary__icon svg {
    width: 230px;
  }
}
@media only screen and (max-width: 576px) {
  .section-summary__step_number-control {
    padding-right: 20px;
    padding-bottom: 118px;
  }
  .section-summary__step_number-control .section-summary__icon {
    left: 20px;
    right: unset;
    top: unset;
    bottom: -85px;
  }
  .section-summary__step_number-control .section-summary__icon svg {
    width: 180px;
  }
}
.section-summary__step_flexibility.is-active .section-summary__title, .section-summary__step_flexibility.is-active h4 {
  transition-delay: 0.9s;
}
.section-summary__step_flexibility .section-summary__icon {
  left: -7px;
  bottom: -107px;
}
@media only screen and (max-width: 1024px) {
  .section-summary__step_flexibility {
    padding-left: 241px;
  }
  .section-summary__step_flexibility .section-summary__icon svg {
    width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .section-summary__step_flexibility .section-summary__icon {
    bottom: -50px;
  }
  .section-summary__step_flexibility .section-summary__icon svg {
    width: 230px;
  }
}
@media only screen and (max-width: 576px) {
  .section-summary__step_flexibility {
    padding-left: 20px;
    padding-bottom: 142px;
  }
  .section-summary__step_flexibility .section-summary__icon {
    left: 20px;
    bottom: -50px;
  }
  .section-summary__step_flexibility .section-summary__icon svg {
    width: 180px;
  }
}
.section-summary__step_online-business, .section-summary__step_number-control, .section-summary__step_flexibility {
  overflow: hidden;
  position: relative;
}
.section-summary__step_online-business, .section-summary__step_number-control, .section-summary__step_flexibility {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(0px);
}
.section-summary__step_online-business.is-active, .is-active .section-summary__step_online-business, .section-summary__step_number-control.is-active, .is-active .section-summary__step_number-control, .section-summary__step_flexibility.is-active, .is-active .section-summary__step_flexibility {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-summary__step_online-business, .section-summary__step_number-control, .section-summary__step_flexibility {
    grid-column: 1/2;
    transition-delay: 0s !important;
  }
}
.section-summary__title {
  font-family: "Roboto Light", sans-serif;
  line-height: 24px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.section-summary__title {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-summary__title.is-active, .is-active .section-summary__title {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-summary__step-title {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-summary__step-title.is-active, .is-active .section-summary__step-title {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-summary__icon {
  color: #F2F2F7;
  position: absolute;
}
.section-summary__icon svg {
  height: auto;
  opacity: 0.6;
}

.section-projects {
  padding-top: 96px;
  padding-bottom: 96px;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .section-projects {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-projects {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .section-projects {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-projects__container {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 72px;
}
@media only screen and (max-width: 1024px) {
  .section-projects__container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    width: 100%;
    row-gap: 48px;
  }
}
.section-projects__head-title {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-projects__head-title.is-active, .is-active .section-projects__head-title {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-projects__head-title {
    transform: translateX(0) !important;
  }
}
.section-projects__slider {
  grid-column: 1/3;
  --swiper-pagination-color: #787880;
  --slider-transition: 0px;
}
.section-projects__slider {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(calc(-1 * var(--slider-transition)));
}
.section-projects__slider.is-active, .is-active .section-projects__slider {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.is-active .section-projects__slider {
  transition-delay: 0.3s;
}
@media only screen and (max-width: 1024px) {
  .section-projects__slider {
    --slider-transition: -50px;
  }
}
.section-projects__slider .swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: 20px;
  border-radius: 4px !important;
}
.section-projects__slider .swiper {
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .section-projects__slider .swiper {
    padding-bottom: 0;
  }
}
.section-projects__slider .swiper-pagination {
  bottom: 0 !important;
}
@media only screen and (max-width: 1024px) {
  .section-projects__slider .swiper-pagination {
    display: none;
  }
}
.section-projects__slider :is(.swiper-button-next, .swiper-button-prev) {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  border: 1px solid #E9E9F2;
  opacity: 0;
  transition-duration: 0.3s;
}
.section-projects__slider :is(.swiper-button-next, .swiper-button-prev):after {
  content: none;
}
@media only screen and (max-width: 768px) {
  .section-projects__slider :is(.swiper-button-next, .swiper-button-prev) {
    display: none;
  }
}
.section-projects:hover .section-projects__slider :is(.swiper-button-next, .swiper-button-prev) {
  opacity: 1;
}
.section-projects__slider .swiper-button-prev img {
  transform: rotate(180deg);
}
.section-projects__green {
  font-family: "Montserrat SemiBold", sans-serif;
  color: #00D88F;
}
.section-projects__all-projects {
  font-size: 18px;
  display: flex;
  align-items: center;
  height: 46px;
  border-radius: 23px;
}
@media only screen and (max-width: 1024px) {
  .section-projects__all-projects {
    grid-row: 3/4;
    margin-top: 8px;
  }
}
@media only screen and (max-width: 576px) {
  .section-projects__all-projects.link {
    width: 100%;
    padding: 0 16px;
  }
}
.section-projects__all-projects {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(0px);
}
.section-projects__all-projects.is-active, .is-active .section-projects__all-projects {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.is-active .section-projects__all-projects {
  transition: transform 0.3s 0.6s cubic-bezier(0.39, 0.53, 0.12, 1.14), opacity 0.3s 0.6s, hover 0.3s 0;
}
.section-projects__card-picture {
  border-radius: 18px;
  overflow: hidden;
}
.section-projects__card-picture img {
  width: 100%;
}
.section-projects__card-title {
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  .section-projects__card-title {
    margin-top: 16px;
  }
}
.section-projects__card-title h4 {
  color: black;
}

.section-advantages {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #F7F7FC;
}
@media only screen and (max-width: 1024px) {
  .section-advantages {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.section-advantages__head {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-advantages__head.is-active, .is-active .section-advantages__head {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-advantages__green {
  color: #00D88F;
  font-family: "Montserrat SemiBold", sans-serif;
}
.section-advantages__advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 72px;
}
@media only screen and (max-width: 1280px) {
  .section-advantages__advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .section-advantages__advantages-grid {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .section-advantages__advantages-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 576px) {
  .section-advantages__advantages-grid {
    margin-top: 48px;
  }
}
.section-advantages__advantage-item {
  padding: 32px;
  background: white;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  gap: 56px;
}
.section-advantages__advantage-item {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-advantages__advantage-item.is-active, .is-active .section-advantages__advantage-item {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-advantages__advantage-item img {
  width: 48px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 768px) {
  .section-advantages__advantage-item img {
    width: 32px;
  }
}
@media only screen and (max-width: 1280px) {
  .section-advantages__advantage-item {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-advantages__advantage-item {
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .section-advantages__advantage-item {
    gap: 32px;
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .section-advantages__advantage-item {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

.section-request {
  background-color: #F7F7FC;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .section-request {
    padding-bottom: 96px;
  }
}
@media only screen and (max-width: 576px) {
  .section-request {
    padding-bottom: 0;
  }
}
.section-request__container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
}
@media only screen and (max-width: 1024px) {
  .section-request__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }
}
.section-request__head {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(-50px);
}
.section-request__head.is-active, .is-active .section-request__head {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.section-request__subtitle {
  color: #4B4B4D;
  font-size: 14px;
  line-height: 21px;
  margin-top: 12px;
}
.section-request__quote-text {
  font-family: "Roboto Light", sans-serif;
  line-height: 24px;
  max-width: 263px;
}
@media only screen and (max-width: 1024px) {
  .section-request__quote-text {
    max-width: unset;
  }
}
.section-request__form {
  grid-row: 1/3;
  grid-column-start: 2;
  padding: 32px;
  background: white;
  border-radius: 18px;
}
.section-request__form {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(0px);
}
.section-request__form.is-active, .is-active .section-request__form {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 1024px) {
  .section-request__form {
    grid-row: 3/4;
    grid-column-start: 1;
    margin-top: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .section-request__form {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 576px) {
  .section-request__form {
    padding: 20px;
    margin: 0 -20px;
    border-radius: 0;
  }
}
.section-request__manager {
  display: flex;
  margin-top: 48px;
}
.section-request__manager {
  opacity: 0;
  transition-duration: 0.3s;
  pointer-events: none;
  transition-timing-function: cubic-bezier(0.39, 0.53, 0.12, 1.14);
  transform: translateX(0px);
}
.section-request__manager.is-active, .is-active .section-request__manager {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media only screen and (max-width: 576px) {
  .section-request__manager {
    flex-direction: column;
  }
}
.section-request__manager-image {
  width: 311px;
  height: 311px;
}
@media only screen and (max-width: 1280px) {
  .section-request__manager-image {
    width: 291px;
    height: 291px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-request__manager-image {
    width: 271px;
    height: 271px;
  }
}
@media only screen and (max-width: 768px) {
  .section-request__manager-image {
    width: 221px;
    height: 221px;
  }
}
@media only screen and (max-width: 576px) {
  .section-request__manager-image {
    width: 134px;
    height: 134px;
  }
}
.section-request__image {
  position: relative;
  display: flex;
  height: max-content;
  width: max-content;
}
@media only screen and (max-width: 576px) {
  .section-request__image {
    padding-bottom: 56px;
  }
}
.section-request__quote {
  display: flex;
  gap: 12px;
}
@media only screen and (max-width: 576px) {
  .section-request__quote {
    flex-direction: column;
    gap: 0;
  }
}
.section-request__title {
  font-size: 42px;
}
@media only screen and (max-width: 576px) {
  .section-request__title {
    font-size: 32px;
  }
}
.section-request__quote-letter {
  font-size: 72px;
  font-family: "Montserrat Bold", sans-serif;
  line-height: 65px;
}
@media only screen and (max-width: 576px) {
  .section-request__quote-letter {
    line-height: 12px;
    margin-top: 20px;
  }
}
.section-request__manager-arrow {
  position: absolute;
  right: 30px;
  bottom: 0;
}
@media only screen and (max-width: 576px) {
  .section-request__manager-arrow {
    bottom: 40px;
    right: 15px;
  }
}
.section-request__manager-tag {
  position: absolute;
  right: -175px;
  bottom: 0;
}
@media only screen and (max-width: 576px) {
  .section-request__manager-tag {
    right: -140%;
    bottom: 25px;
  }
}
@media only screen and (max-width: 375px) {
  .section-request__manager-tag {
    right: -110%;
  }
}
.section-request .animated-button {
  width: calc(100% - 77px);
}
@media only screen and (max-width: 1024px) {
  .section-request .animated-button {
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  .section-request .animated-button {
    width: calc(100% - 77px);
  }
}

.footer .link {
  border-color: #242424;
}
.footer__container {
  padding: 64px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 64px;
}
@media only screen and (max-width: 576px) {
  .footer__container {
    row-gap: 56px;
    padding-top: 120px;
    padding-bottom: 48px;
  }
}
@media only screen and (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}
.footer__icon {
  display: block;
}
@media only screen and (max-width: 768px) {
  .footer__icon {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 576px) {
  .footer__icon {
    grid-column: 1;
  }
}
.footer__copyright-data {
  border-top: 1px solid #E9E9F2;
  padding-top: 64px;
  grid-column: 1/3;
  font-size: 12px;
}
.footer__copyright-data > div {
  font-family: "Roboto Light", sans-serif;
}
@media only screen and (max-width: 576px) {
  .footer__copyright-data {
    grid-column: 1;
    padding-top: 56px;
  }
}
.footer__unordered-list {
  display: flex;
  gap: 24px;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer__unordered-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.footer__blog-links {
  display: flex;
  gap: 12px;
}
@media only screen and (max-width: 1024px) {
  .footer__blog-links {
    flex-direction: column;
  }
  .footer__blog-links .link {
    width: 100%;
    justify-content: flex-start;
  }
  .footer__blog-links .link img {
    width: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__blog-links {
    grid-row: 3;
    width: max-content;
  }
}
@media only screen and (max-width: 576px) {
  .footer__blog-links {
    grid-column: 1;
    grid-row: 4;
  }
}
.footer__contacts {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
@media only screen and (max-width: 576px) {
  .footer__contacts {
    justify-content: flex-start;
  }
}
.footer__copyright-text {
  margin-top: 24px;
}

/*# sourceMappingURL=styles.css.map */
