:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "Inter", sans-serif;
  --content-width: 180rem;
  --container-offset: 3rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --it-white: #fff;
  --30-black: #f7f7f7;
  --it-black: #000512;
  --it-pink: #ff2ccd;
  --it-pink-hover: #ff56d7;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  background-color: var(--it-black);
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 0.5208333333vw;
}
@media screen and (min-width: 2560px) {
  .page {
    font-size: 0.390625vw;
  }
}
@media (max-width: 576px) {
  .page {
    font-size: 1.7361111111vw;
  }
}

.page__body {
  margin: 0;
  min-width: 320px;
  height: auto;
  min-height: 100%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--it-white);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.logo {
  width: 18.2rem;
  height: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.logo img,
.logo svg {
  display: block;
  width: 100%;
  height: 3.1rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.logo svg {
  fill: var(--it-white);
}
.logo .logo_symbol {
  -webkit-transition: fill 0.3s ease-in;
  transition: fill 0.3s ease-in;
}
@media (any-hover: hover) {
  .logo:hover .logo_symbol {
    fill: var(--it-pink-hover);
  }
}
.logo:focus-visible .logo_symbol {
  fill: var(--it-pink-hover);
}
.logo:active .logo_symbol {
  fill: var(--it-pink);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
  padding: 2rem;
  background-color: var(--it-pink);
  color: var(--it-white);
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: var(--it-pink-hover);
    color: var(--it-white);
  }
}
.btn:focus-visible {
  outline: none;
  background-color: var(--it-pink-hover);
  color: var(--it-white);
}
.btn:active {
  background-color: var(--it-pink);
  color: var(--it-white);
}
.btn_dark {
  background-color: var(--it-black);
}
.btn_light {
  background-color: var(--it-white);
  color: var(--it-black);
}
.btn:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.25);
}

h2 {
  margin: 0;
  font-weight: 700;
  font-size: 5rem;
  line-height: 110%;
  color: var(--it-white);
}
h2:not(:last-child) {
  margin-bottom: 5rem;
}
h2:not(:first-child) {
  margin-top: 2rem;
}
@media (max-width: 576px) {
  h2 {
    font-size: 4.4rem;
  }
}

[data-video] {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
}
[data-video] video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  max-height: 70rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 576px) {
  [data-video] video {
    aspect-ratio: 9/16;
    max-height: unset;
  }
}

[data-video-play] {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 15.7rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--it-white);
  padding-left: 2rem;
  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;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
[data-video-play] svg {
  width: 50%;
  height: 50%;
  fill: var(--it-black);
  -webkit-transition-property: fill;
  transition-property: fill;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  [data-video-play]:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }
  [data-video-play]:hover svg {
    fill: var(--it-pink);
  }
}

.desc {
  margin: 0;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 140%;
}
.desc_accent {
  color: var(--it-pink);
}

ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 140%;
}
ul li {
  position: relative;
  padding-left: 1.8rem;
}
ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.8rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 1rem;
  background-color: var(--it-pink);
}
ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  flex-wrap: wrap;
}
.socials li::before {
  display: none;
}
.socials li {
  padding: 0;
  width: 2.1rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.socials li:not(:last-child) {
  margin-bottom: 0;
}
.socials li a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--it-white);
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  .socials li a:hover {
    background-color: var(--it-pink-hover);
  }
}
.socials li a:focus-visible {
  outline: none;
  background-color: var(--it-pink-hover);
}
.socials li a:active {
  background-color: var(--it-pink);
}

.link-btn {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  .link-btn:hover {
    color: var(--it-pink);
  }
}
.link-btn:focus-visible {
  outline: none;
  color: var(--it-pink);
}
.link-btn:active {
  color: var(--it-pink);
}

.hint {
  cursor: help;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.1rem;
  aspect-ratio: 1/1;
  border-radius: 100rem;
  background-color: #e6e6e6;
  padding: 0.5rem;
  position: relative;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.hint > * {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 576px) {
  .hint {
    width: 3.2rem;
  }
}
.hint::after {
  content: "i";
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 120%;
  color: var(--it-black);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media (max-width: 576px) {
  .hint::after {
    font-size: 2.2rem;
    font-weight: 600;
  }
}
@media (any-hover: hover) {
  .hint:hover::after {
    color: var(--it-white);
  }
  .hint:hover {
    background-color: var(--it-pink-hover);
  }
}
.hint:focus-visible::after {
  color: var(--it-white);
}
.hint:focus-visible {
  outline: none;
  background-color: var(--it-pink-hover);
}
.hint:active::after {
  color: var(--it-white);
}
.hint:active {
  background-color: var(--it-pink);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.tippy-box[data-theme~=tooltip] {
  padding: 3rem 4rem;
  border-radius: 2rem;
  background-color: var(--it-white);
  border: 1px solid #e6e6e6;
  color: var(--it-black);
  font-size: 1.6rem;
  min-width: 42rem;
}

.just-validate-error-label {
  display: none;
}

.swiper .swiper-slide {
  width: auto;
  height: auto;
}

.burger {
  --burger-width: 3.2rem;
  --burger-height: 2.4rem;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: var(--it-white);
  background-color: transparent;
  cursor: pointer;
  border-radius: 10px;
}
.burger::before, .burger::after {
  content: "";
  border-radius: 10px;
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger {
  position: relative;
  z-index: 100;
}

.modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  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: 9rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 576px) {
  .modal {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.modal__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2rem);
}
.modal .container {
  width: 100%;
}
.modal__container {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media (max-width: 576px) {
  .modal__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}
.modal__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: var(--it-white);
  padding: 8rem;
  border-radius: 1rem;
}
@media (max-width: 576px) {
  .modal__content {
    padding: 4rem 3rem;
  }
}
.modal__close {
  position: absolute;
  z-index: 9;
  top: 3rem;
  right: 3rem;
  width: 3rem;
  height: 3rem;
  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;
}
@media (max-width: 576px) {
  .modal__close {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.modal__close svg {
  width: 100%;
  height: 100%;
  stroke: var(--it-white);
  -webkit-transition-property: stroke;
  transition-property: stroke;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 576px) {
  .modal__close svg {
    width: 60%;
    height: 60%;
    stroke: var(--it-black);
  }
}
@media (any-hover: hover) {
  .modal__close:hover svg {
    stroke: var(--it-pink-hover);
  }
}
.modal__close:focus-visible {
  outline: none;
}
.modal__close:focus-visible svg {
  stroke: var(--it-pink-hover);
}
.modal__close:active svg {
  stroke: var(--it-pink);
}
.modal__header {
  margin-bottom: 5rem;
}
@media (max-width: 576px) {
  .modal__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 4rem;
  }
}
.modal__title {
  margin: 0;
  font-weight: 700;
  font-size: 5.4rem;
  color: var(--it-black);
}
@media (max-width: 576px) {
  .modal__title {
    font-size: 3.6rem;
  }
}
.modal__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 87.2rem;
  min-height: 67rem;
  -webkit-mask-image: url("./../img/cta-mask.svg");
  mask-image: url("./../img/cta-mask.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: relative;
}
@media (max-width: 576px) {
  .modal__img {
    width: 100%;
    min-height: 31.6rem;
    -webkit-mask-image: url("./../img/cta-mask-mob.svg");
    mask-image: url("./../img/cta-mask-mob.svg");
  }
}
.modal__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal--success .modal__container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal--success .modal__content {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  max-width: 50rem;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 576px) {
  .modal--success .modal__content {
    padding: 4rem 3rem;
    max-width: 100%;
  }
}
.modal__success-icon {
  margin: 0 auto 5rem;
  width: 9.6rem;
  height: 7rem;
  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;
}
.modal__success-icon svg {
  width: 100%;
  height: 100%;
}
.modal__success-title {
  margin: 0;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--it-black);
  line-height: 1.2;
}
.modal__success-title:not(:last-child) {
  margin-bottom: 1rem;
}
.modal__success-text {
  margin: 0 0 4rem;
  font-size: 2.2rem;
  color: var(--it-black);
  line-height: 1.5;
}
.modal__success-btn {
  width: 100%;
  padding: 2rem 4rem;
  background-color: var(--it-pink);
  color: var(--it-white);
  font-weight: 700;
  font-size: 2.2rem;
  border-radius: 2rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.content {
  color: var(--it-white);
  font-family: var(--font-family, sans-serif);
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 140%;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin: 0;
  font-weight: 700;
  color: var(--it-white);
  line-height: 110%;
}
.content h1:not(:first-child),
.content h2:not(:first-child),
.content h3:not(:first-child),
.content h4:not(:first-child),
.content h5:not(:first-child),
.content h6:not(:first-child) {
  margin-top: 2rem;
}
.content h1 {
  font-size: 6rem;
  line-height: 110%;
}
.content h1:not(:last-child) {
  margin-bottom: 5rem;
}
@media (max-width: 576px) {
  .content h1 {
    font-size: 4.4rem;
  }
}
.content h2 {
  font-size: 5rem;
  line-height: 110%;
}
.content h2:not(:last-child) {
  margin-bottom: 5rem;
}
@media (max-width: 576px) {
  .content h2 {
    font-size: 4.4rem;
  }
}
.content h3 {
  font-size: 4rem;
  line-height: 120%;
}
.content h3:not(:last-child) {
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .content h3 {
    font-size: 3.2rem;
  }
}
.content h4 {
  font-size: 3.2rem;
  line-height: 130%;
}
.content h4:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .content h4 {
    font-size: 2.8rem;
  }
}
.content h5 {
  font-size: 2.6rem;
  line-height: 140%;
}
.content h5:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 576px) {
  .content h5 {
    font-size: 2.4rem;
  }
}
.content h6 {
  font-size: 2.2rem;
  line-height: 140%;
}
.content h6:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .content h6 {
    font-size: 2rem;
  }
}
.content p {
  margin: 0;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 140%;
}
.content p:not(:last-child) {
  margin-bottom: 2rem;
}
.content a {
  color: var(--it-white);
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition-property: color, text-decoration-color;
  transition-property: color, text-decoration-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
@media (any-hover: hover) {
  .content a:hover {
    color: var(--it-pink-hover);
    text-decoration-color: var(--it-pink-hover);
  }
}
.content a:focus-visible {
  outline: none;
  color: var(--it-pink-hover);
  text-decoration-color: var(--it-pink-hover);
}
.content a:active {
  color: var(--it-pink);
  text-decoration-color: var(--it-pink);
}
.content ul,
.content ol {
  margin: 0;
  padding-left: 0;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 140%;
}
.content ul:not(:last-child),
.content ol:not(:last-child) {
  margin-bottom: 2rem;
}
.content ul {
  list-style: none;
}
.content ul li {
  position: relative;
  padding-left: 1.8rem;
}
.content ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.8rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 1rem;
  background-color: var(--it-pink);
}
.content ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.content ol {
  padding-left: 2.5rem;
  list-style: decimal;
}
.content ol li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.content img {
  display: block;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2rem;
}
.content img:not(:last-child) {
  margin-bottom: 2rem;
}
.content figure {
  margin: 0;
}
.content figure:not(:last-child) {
  margin-bottom: 2rem;
}
.content figure img {
  margin-bottom: 1rem;
}
.content figure figcaption {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.content video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 2rem;
}
.content video:not(:last-child) {
  margin-bottom: 2rem;
}
.content blockquote {
  margin: 0;
  padding: 2rem 3rem;
  border-left: 0.4rem solid var(--it-pink);
  background-color: rgba(255, 44, 205, 0.1);
  border-radius: 0 2rem 2rem 0;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 140%;
  font-style: italic;
}
.content blockquote:not(:last-child) {
  margin-bottom: 2rem;
}
.content blockquote p {
  margin: 0;
}
.content blockquote p:not(:last-child) {
  margin-bottom: 1rem;
}
.content code {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  font-family: "Courier New", monospace;
  font-size: 1.8rem;
  line-height: 140%;
  color: var(--it-pink);
}
.content pre {
  margin: 0;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  overflow-x: auto;
  font-family: "Courier New", monospace;
  font-size: 1.8rem;
  line-height: 140%;
}
.content pre:not(:last-child) {
  margin-bottom: 2rem;
}
.content pre code {
  display: block;
  padding: 0;
  background-color: transparent;
  color: var(--it-white);
}
.content strong,
.content b {
  font-weight: 700;
  color: var(--it-white);
}
.content em,
.content i {
  font-style: italic;
}
.content mark {
  background-color: var(--it-pink);
  color: var(--it-white);
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
}
.content hr {
  margin: 3rem 0;
  border: none;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.content table:not(:last-child) {
  margin-bottom: 2rem;
}
.content table th,
.content table td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
  font-weight: 300;
  font-size: 2rem;
  line-height: 140%;
}
.content table th {
  font-weight: 700;
  color: var(--it-white);
  background-color: rgba(255, 255, 255, 0.05);
}
.content table td {
  color: rgba(255, 255, 255, 0.8);
}
.content table tr:last-child th,
.content table tr:last-child td {
  border-bottom: none;
}
.content abbr {
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: help;
}
.content ul ul,
.content ol ol,
.content ul ol,
.content ol ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  --gap: -1rem;
}
@media (max-width: 576px) {
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.form__field {
  display: block;
  width: 100%;
  position: relative;
}
.form__field--long {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
@media (any-hover: hover) {
  .form__field:hover input:not(:disabled) ~ .form__label {
    color: rgba(0, 0, 0, 0.45);
  }
  .form__field:hover textarea:not(:disabled) ~ .form__label {
    color: rgba(0, 0, 0, 0.45);
  }
}
.form__field-wrapper {
  height: 8rem;
  position: relative;
  border-radius: 2rem;
  outline: 2px solid transparent;
  padding: 2rem;
  background-color: #f2f2f2;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 150%;
  overflow: hidden;
  -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, outline-color 0.3s ease-in;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, outline-color 0.3s ease-in;
}
.form__field-wrapper--area {
  height: 14rem;
}
.form__field.filled .form__label {
  font-size: 1.6rem;
  -webkit-transform: translateY(var(--gap, -1rem));
  -ms-transform: translateY(var(--gap, -1rem));
  transform: translateY(var(--gap, -1rem));
}
.form__field.filled .form__input {
  padding-bottom: 0.5rem;
  padding-top: 2rem;
}
.form__field.filled .form__input--area {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.form__field.filled .form__field-wrapper {
  background-color: #fafafa;
}
.form__field.focus .form__field-wrapper {
  background-color: #fafafa;
}
.form__label {
  position: absolute;
  z-index: 4;
  top: 0;
  padding-top: 2.2rem;
  left: 2rem;
  right: 2rem;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.25);
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  -webkit-transition: font-size 0.3s ease-in, background-color 0.3s ease-in, -webkit-transform 0.3s ease-in;
  transition: font-size 0.3s ease-in, background-color 0.3s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, font-size 0.3s ease-in, background-color 0.3s ease-in;
  transition: transform 0.3s ease-in, font-size 0.3s ease-in, background-color 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.form__input {
  display: block;
  position: absolute;
  padding: 1.5rem 2rem;
  height: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  border: none;
  background: none;
  -webkit-transition: padding-top 0.3s ease-in, padding-bottom 0.3s ease-in, background-color 0.3s ease-in;
  transition: padding-top 0.3s ease-in, padding-bottom 0.3s ease-in, background-color 0.3s ease-in;
}
.form__input:focus {
  outline: none;
  padding-bottom: 0.5rem;
  padding-top: 2.5rem;
}
.form__input:focus ~ .form__label {
  font-size: 1.6rem;
  -webkit-transform: translateY(var(--gap, -1rem));
  -ms-transform: translateY(var(--gap, -1rem));
  transform: translateY(var(--gap, -1rem));
}
.form__input:disabled {
  cursor: not-allowed;
  -ms-touch-action: none;
  touch-action: none;
  background-color: #f2f2f2;
}
.form__input--area {
  height: 100%;
  resize: none;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  padding-top: 2rem;
}
.form__input--area:focus {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.form__btn {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  padding: 1.5rem 2rem 1.6rem;
  height: 8rem;
}

.dropdown {
  display: block;
  width: 100%;
  border-radius: 2rem;
  padding: 2.4rem 3rem;
  background-color: #f2f2f2;
  border: none;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 150%;
  -webkit-transition: color 0.1s ease-out, background-color 0.1s ease-out, border-radius 0.1s ease-out;
  transition: color 0.1s ease-out, background-color 0.1s ease-out, border-radius 0.1s ease-out;
  position: relative;
  z-index: 15;
}
.dropdown__header {
  position: relative;
  color: rgba(0, 0, 0, 0.25);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .dropdown__header:hover {
    color: rgba(0, 0, 0, 0.45);
  }
}
.dropdown__btn {
  position: absolute;
  top: 50%;
  right: -1.6rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.1rem;
  height: 1.2rem;
}
.dropdown__btn svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.dropdown__label {
  position: absolute;
  top: 0rem;
  color: currentColor;
  -webkit-transition: color 0.3s ease, font-size 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, font-size 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, font-size 0.3s ease, -webkit-transform 0.3s ease;
}
.dropdown__capture {
  opacity: 0;
  color: currentColor;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease-in;
  transition: color 0.3s ease, opacity 0.3s ease-in;
}
.dropdown__body {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  will-change: max-height;
  overflow: hidden;
}
.dropdown__content {
  background: rgba(0, 0, 0, 0.04);
  z-index: 5;
  padding: 0.5rem 3rem 2rem;
  border-top: none;
  border-radius: 0 0 2rem 2rem;
  -webkit-transition: color 0.1s ease-out, background-color 0.1s ease-out, border-radius 0.1s ease-out;
  transition: color 0.1s ease-out, background-color 0.1s ease-out, border-radius 0.1s ease-out;
}
.dropdown__item {
  cursor: pointer;
  color: var(--it-black);
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
.dropdown__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.dropdown__item:first-child {
  display: none;
}
@media (any-hover: hover) {
  .dropdown__item:hover {
    color: var(--it-pink);
  }
}
.dropdown.open {
  background-color: #fafafa;
  border-radius: 2rem 2rem 0 0;
  border-bottom: none;
}
.dropdown.open .dropdown__content {
  background-color: #fafafa;
}
.dropdown.open .dropdown__header {
  color: var(--it-black);
}
@media (any-hover: hover) {
  .dropdown.open:hover .dropdown__capture {
    color: var(--it-black);
  }
  .dropdown.open:hover .dropdown__label {
    color: var(--it-black);
  }
}
.dropdown.filled {
  background-color: #fafafa;
}
.dropdown.filled .dropdown__capture {
  color: var(--it-black);
}
.dropdown.filled .dropdown__label {
  -webkit-transform: translateY(-1rem);
  -ms-transform: translateY(-1rem);
  transform: translateY(-1rem);
  font-size: 1.2rem;
}
.dropdown.filled .dropdown__capture {
  opacity: 1;
  -webkit-transform: translateY(0.8rem);
  -ms-transform: translateY(0.8rem);
  transform: translateY(0.8rem);
}
@media (any-hover: hover) {
  .dropdown.filled:hover .dropdown__capture {
    color: rgba(0, 0, 0, 0.45);
  }
}
.dropdown.open.filled .dropdown__capture {
  color: var(--it-black);
}
@media (any-hover: hover) {
  .dropdown:hover .dropdown__capture {
    color: rgba(0, 0, 0, 0.45);
  }
}

.star {
  position: absolute;
  bottom: 0;
  left: -30rem;
  width: 62.8rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.star img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.big-cube {
  position: absolute;
  right: -30rem;
  bottom: -40rem;
  width: 105rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.big-cube img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 576px) {
  .big-cube {
    width: 70rem;
    right: -20rem;
    bottom: -30rem;
  }
}

.long {
  position: absolute;
  left: -30rem;
  top: -4rem;
  width: 57rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.long img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cube {
  position: absolute;
  width: 41.4rem;
  aspect-ratio: 1/1;
  right: -15rem;
  top: 40rem;
  pointer-events: none;
}
.cube img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.arc {
  position: absolute;
  width: 72.4rem;
  aspect-ratio: 1/1;
  right: -40rem;
  top: 45rem;
  pointer-events: none;
}
.arc img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.rellax {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}
.rellax img {
  -webkit-animation-name: sway-img;
  animation-name: sway-img;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes sway-img {
  0% {
    -webkit-transform: translateX(-8px) translateY(-12px);
    transform: translateX(-8px) translateY(-12px);
  }
  100% {
    -webkit-transform: translateX(8px) translateY(12px);
    transform: translateX(8px) translateY(12px);
  }
}

@keyframes sway-img {
  0% {
    -webkit-transform: translateX(-8px) translateY(-12px);
    transform: translateX(-8px) translateY(-12px);
  }
  100% {
    -webkit-transform: translateX(8px) translateY(12px);
    transform: translateX(8px) translateY(12px);
  }
}
#scene {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 576px) {
  .header {
    pointer-events: all;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1001;
    padding: 2rem var(--container-offset);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .header.header--hidden {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .header.header--visible {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    border-radius: 0 0 1rem 1rem;
    background-color: black;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
.header__profile {
  display: block;
  color: var(--it-white);
  width: 3rem;
  height: 4.1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
  position: relative;
  z-index: 2;
}
.header__profile::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 2;
}
.header__profile svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
@media (any-hover: hover) {
  .header__profile:hover {
    color: var(--it-pink-hover);
  }
}
.header__profile:focus-visible {
  color: var(--it-pink-hover);
}
.header__profile:active {
  color: var(--it-pink);
}
.header__burger {
  display: none;
}
@media (max-width: 576px) {
  .header__burger {
    display: block;
  }
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.menu--active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(0, 0, 0, 0.2392156863)));
  background-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.2392156863));
  backdrop-filter: blur(10px);
}
.menu__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem var(--container-offset);
  background-color: var(--it-black);
  padding: 11rem 0 8rem;
}
.menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.menu__logo {
  display: block;
  color: var(--it-white);
}
.menu__burger {
  color: var(--it-white);
}
.menu__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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.menu__list li::before {
  display: none;
}
.menu__item {
  width: 100%;
  text-align: center;
  opacity: 1;
}
.menu__link {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--it-white);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.menu__link:hover {
  opacity: 0.8;
}
.menu__link:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}

.hero {
  position: relative;
  height: 100vh;
  padding: 13rem 7.5rem;
  margin-bottom: 10rem;
}
@media (max-width: 576px) {
  .hero {
    padding: 15rem 0 3rem;
    height: 100vh;
  }
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  width: 100%;
  height: 240rem;
  background-image: url("./../img/blur-sphere.svg"), url("./../img/grid.svg");
  background-size: contain, auto 100%;
  background-repeat: no-repeat;
  background-position: right;
  pointer-events: none;
}
@media (max-width: 576px) {
  .hero::after {
    background-image: url("./../img/blur-sphere-mob.svg"), url("./../img/grid-mob.svg");
    background-position: bottom left;
    height: 100%;
    top: unset;
    bottom: 0;
    background-size: contain, 100% auto;
  }
}
@media (max-width: 576px) {
  .hero > .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero__header {
  margin-bottom: 9.5rem;
}
@media (max-width: 576px) {
  .hero__header {
    margin-bottom: unset;
  }
}
.hero__content {
  position: relative;
  z-index: 5;
  max-width: 75rem;
}
@media (max-width: 576px) {
  .hero__content {
    max-width: unset;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: none;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 6rem;
  font-weight: 700;
  font-size: 7rem;
  line-height: 110%;
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 4.9rem;
    margin-bottom: 3.2rem;
  }
}
.hero__desc {
  margin: 0;
  margin-bottom: 6rem;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 140%;
}
.hero__desc span {
  display: block;
  color: var(--it-pink);
}
@media (max-width: 576px) {
  .hero__desc {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
}
.hero__btn {
  width: 100%;
  max-width: 51.6rem;
}
@media (max-width: 576px) {
  .hero__btn {
    max-width: 100%;
    margin-top: auto;
    pointer-events: all;
  }
}
.hero__decor {
  position: absolute;
  z-index: 2;
  right: 7rem;
  top: 0;
  height: 100%;
  width: 88.7rem;
}
@media (max-width: 576px) {
  .hero__decor {
    width: 100%;
    height: auto;
    top: 25vh;
    bottom: 0;
  }
}
.hero__element {
  position: absolute;
  aspect-ratio: 1/1;
}
.hero__element img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero__element_square {
  z-index: 3;
  right: -3.5rem;
  bottom: -4.7rem;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  width: 50rem;
  -webkit-animation-name: woble;
  animation-name: woble;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 576px) {
  .hero__element_square {
    width: 44rem;
    right: -12rem;
    bottom: 0;
  }
}
.hero__element_square-second {
  z-index: 2;
  width: 24rem;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-name: sway-slow;
  animation-name: sway-slow;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 576px) {
  .hero__element_square-second {
    width: 20rem;
    top: 10rem;
  }
}
.hero__element_square-third {
  top: 4rem;
  right: 4rem;
  z-index: 2;
  width: 16rem;
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-name: sway-fast;
  animation-name: sway-fast;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 576px) {
  .hero__element_square-third {
    width: 12rem;
    right: 0rem;
    top: 7rem;
  }
}
.hero__element_diamond {
  z-index: 2;
  width: 20rem;
  left: -3rem;
  bottom: 5rem;
  -webkit-animation-name: sway-medium;
  animation-name: sway-medium;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3.5s;
  animation-duration: 3.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 576px) {
  .hero__element_diamond {
    width: 18rem;
    left: 1rem;
    bottom: 30rem;
  }
}
.hero__element_tubus {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 15rem;
  top: -6rem;
  left: 28rem;
  -webkit-animation-name: sway-tubus;
  animation-name: sway-tubus;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@media (max-width: 576px) {
  .hero__element_tubus {
    display: none;
  }
}

@-webkit-keyframes woble {
  0% {
    -webkit-transform: rotate(-30deg) translateX(0px) translateY(0px) rotateZ(0deg);
    transform: rotate(-30deg) translateX(0px) translateY(0px) rotateZ(0deg);
  }
  25% {
    -webkit-transform: rotate(-30deg) translateX(10px) translateY(-8px) rotateZ(2deg);
    transform: rotate(-30deg) translateX(10px) translateY(-8px) rotateZ(2deg);
  }
  50% {
    -webkit-transform: rotate(-30deg) translateX(15px) translateY(5px) rotateZ(-1deg);
    transform: rotate(-30deg) translateX(15px) translateY(5px) rotateZ(-1deg);
  }
  75% {
    -webkit-transform: rotate(-30deg) translateX(-8px) translateY(12px) rotateZ(1deg);
    transform: rotate(-30deg) translateX(-8px) translateY(12px) rotateZ(1deg);
  }
  100% {
    -webkit-transform: rotate(-30deg) translateX(-12px) translateY(-5px) rotateZ(-2deg);
    transform: rotate(-30deg) translateX(-12px) translateY(-5px) rotateZ(-2deg);
  }
}

@keyframes woble {
  0% {
    -webkit-transform: rotate(-30deg) translateX(0px) translateY(0px) rotateZ(0deg);
    transform: rotate(-30deg) translateX(0px) translateY(0px) rotateZ(0deg);
  }
  25% {
    -webkit-transform: rotate(-30deg) translateX(10px) translateY(-8px) rotateZ(2deg);
    transform: rotate(-30deg) translateX(10px) translateY(-8px) rotateZ(2deg);
  }
  50% {
    -webkit-transform: rotate(-30deg) translateX(15px) translateY(5px) rotateZ(-1deg);
    transform: rotate(-30deg) translateX(15px) translateY(5px) rotateZ(-1deg);
  }
  75% {
    -webkit-transform: rotate(-30deg) translateX(-8px) translateY(12px) rotateZ(1deg);
    transform: rotate(-30deg) translateX(-8px) translateY(12px) rotateZ(1deg);
  }
  100% {
    -webkit-transform: rotate(-30deg) translateX(-12px) translateY(-5px) rotateZ(-2deg);
    transform: rotate(-30deg) translateX(-12px) translateY(-5px) rotateZ(-2deg);
  }
}
@-webkit-keyframes sway-slow {
  0% {
    -webkit-transform: rotate(30deg) translateX(-5px) translateY(-3px);
    transform: rotate(30deg) translateX(-5px) translateY(-3px);
  }
  100% {
    -webkit-transform: rotate(30deg) translateX(5px) translateY(3px);
    transform: rotate(30deg) translateX(5px) translateY(3px);
  }
}
@keyframes sway-slow {
  0% {
    -webkit-transform: rotate(30deg) translateX(-5px) translateY(-3px);
    transform: rotate(30deg) translateX(-5px) translateY(-3px);
  }
  100% {
    -webkit-transform: rotate(30deg) translateX(5px) translateY(3px);
    transform: rotate(30deg) translateX(5px) translateY(3px);
  }
}
@-webkit-keyframes sway-fast {
  0% {
    -webkit-transform: rotate(30deg) translateX(-8px) translateY(-5px);
    transform: rotate(30deg) translateX(-8px) translateY(-5px);
  }
  100% {
    -webkit-transform: rotate(30deg) translateX(8px) translateY(5px);
    transform: rotate(30deg) translateX(8px) translateY(5px);
  }
}
@keyframes sway-fast {
  0% {
    -webkit-transform: rotate(30deg) translateX(-8px) translateY(-5px);
    transform: rotate(30deg) translateX(-8px) translateY(-5px);
  }
  100% {
    -webkit-transform: rotate(30deg) translateX(8px) translateY(5px);
    transform: rotate(30deg) translateX(8px) translateY(5px);
  }
}
@-webkit-keyframes sway-medium {
  0% {
    -webkit-transform: translateX(-6px) translateY(-4px) rotate(-2deg);
    transform: translateX(-6px) translateY(-4px) rotate(-2deg);
  }
  100% {
    -webkit-transform: translateX(6px) translateY(4px) rotate(2deg);
    transform: translateX(6px) translateY(4px) rotate(2deg);
  }
}
@keyframes sway-medium {
  0% {
    -webkit-transform: translateX(-6px) translateY(-4px) rotate(-2deg);
    transform: translateX(-6px) translateY(-4px) rotate(-2deg);
  }
  100% {
    -webkit-transform: translateX(6px) translateY(4px) rotate(2deg);
    transform: translateX(6px) translateY(4px) rotate(2deg);
  }
}
@-webkit-keyframes sway-tubus {
  0% {
    -webkit-transform: rotate(-45deg) translateX(-4px) translateY(-6px);
    transform: rotate(-45deg) translateX(-4px) translateY(-6px);
  }
  100% {
    -webkit-transform: rotate(-45deg) translateX(4px) translateY(6px);
    transform: rotate(-45deg) translateX(4px) translateY(6px);
  }
}
@keyframes sway-tubus {
  0% {
    -webkit-transform: rotate(-45deg) translateX(-4px) translateY(-6px);
    transform: rotate(-45deg) translateX(-4px) translateY(-6px);
  }
  100% {
    -webkit-transform: rotate(-45deg) translateX(4px) translateY(6px);
    transform: rotate(-45deg) translateX(4px) translateY(6px);
  }
}
.benefits {
  position: relative;
  padding: 10rem 0;
}
@media (max-width: 576px) {
  .benefits {
    padding: 7.5rem 0;
  }
}
.benefits__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 576px) {
  .benefits__container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.benefits__item {
  height: 35rem;
  padding: 5rem;
  overflow: hidden;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.2) 48.04%, rgba(255, 255, 255, 0.2) 59.03%, rgba(255, 255, 255, 0.01) 100%), url("./../img/svg/ben-item.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-image: url("./../img/benefits/card.svg");
  mask-image: url("./../img/benefits/card.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  backdrop-filter: blur(1.5rem);
}
@media (max-width: 576px) {
  .benefits__item {
    background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.2) 48.04%, rgba(255, 255, 255, 0.2) 59.03%, rgba(255, 255, 255, 0.01) 100%), url("./../img/benefits/border-mob.svg");
    -webkit-mask-image: url("./../img/benefits/card-mob.svg");
    mask-image: url("./../img/benefits/card-mob.svg");
    aspect-ratio: 1/1;
    height: auto;
    padding: 2rem;
  }
}
.benefits__text {
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 130%;
  max-width: 26rem;
}
@media (max-width: 576px) {
  .benefits__text {
    font-size: 2.2rem;
    max-width: 100%;
  }
}
.benefits__text p {
  margin: 0;
}
.benefits__icon {
  width: 10.4rem;
  height: 10.4rem;
  margin-left: auto;
}
@media (max-width: 576px) {
  .benefits__icon {
    width: 6.6rem;
    height: 6.6rem;
  }
}
.benefits__icon > * {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top right;
  object-position: top right;
}

.about {
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 576px) {
  .about {
    padding: 7.5rem 0;
  }
}
.about::after {
  content: "";
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 70%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 240rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
@media (max-width: 576px) {
  .about::after {
    left: unset;
    right: -4%;
    top: 100%;
  }
}
@media (max-width: 576px) {
  .about__video {
    display: block;
    -webkit-mask-image: url("./../img/video-mask-mob.svg");
    mask-image: url("./../img/video-mask-mob.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: bottom;
    mask-position: bottom;
  }
}
.about__video_mob {
  display: none;
}
@media (max-width: 576px) {
  .about__video_mob {
    display: block;
    -webkit-mask-image: url("./../img/video-mask-mob.svg");
    mask-image: url("./../img/video-mask-mob.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: bottom;
    mask-position: bottom;
  }
}

.clients {
  padding: 10rem 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .clients {
    padding: 7.5rem 0;
  }
}
.clients__title {
  margin-bottom: 5rem;
}
.clients__wrapper {
  position: relative;
}
.clients__wrapper::after {
  content: "";
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 70%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 240rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.clients__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 3rem;
  padding: 0 calc((100% - var(--content-width)) / 2);
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 576px) {
  .clients__container {
    padding: 0 var(--container-offset);
  }
}
.clients__item {
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.clients__item-top {
  background-color: var(--it-white);
  padding: 5rem 4rem;
  color: var(--it-black);
  border-radius: 2rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.clients__item-bottom {
  height: 28rem;
  overflow: hidden;
  padding: 3.5rem 4rem;
  backdrop-filter: blur(1rem);
  -webkit-mask-image: url("./../img/clients/card.svg");
  mask-image: url("./../img/clients/card.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-image: linear-gradient(140deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.25) 48.04%, rgba(255, 255, 255, 0.25) 59.03%, rgba(255, 255, 255, 0.01) 100%), url("./../img/clients/border.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.clients__item-title {
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 120%;
}

.work {
  position: relative;
  z-index: 2;
  padding: 10rem 0;
}
@media (max-width: 576px) {
  .work {
    padding: 7.5rem 0;
  }
}
.work::before {
  content: "";
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  right: 50%;
  top: 20%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 240rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.work__wrapper {
  position: relative;
}
.work__title {
  margin-bottom: 5rem;
}
.work__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 3rem;
  min-width: 0;
  max-width: 100%;
  padding: 0 calc((100% - var(--content-width)) / 2);
}
@media (max-width: 576px) {
  .work__container {
    padding: 0 var(--container-offset);
  }
}
.work__item {
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 47rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.work__item-top {
  padding: 5rem 4rem;
  background-image: linear-gradient(140deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.25) 48.04%, rgba(255, 255, 255, 0.25) 59.03%, rgba(255, 255, 255, 0.01) 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  backdrop-filter: blur(1rem);
  border-radius: 2rem;
  color: var(--it-white);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  outline-width: 2px;
  outline-offset: -2px;
  outline-style: solid;
  outline-color: rgba(255, 255, 255, 0.3);
}
.work__item-title {
  white-space: nowrap;
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 150%;
}
.work__item-img {
  height: 47rem;
  position: relative;
  -webkit-mask-image: url("./../img/work/mask.svg");
  mask-image: url("./../img/work/mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.work__item-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.why {
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 576px) {
  .why {
    padding: 7.5rem 0;
  }
}
.why::before {
  content: "";
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  right: 70%;
  top: 90%;
  width: 240rem;
  aspect-ratio: 1/1;
  pointer-events: none;
  -webkit-animation: shake 4s linear infinite;
  animation: shake 4s linear infinite;
}
@media (max-width: 576px) {
  .why__title:not(:last-child) {
    margin-bottom: 9rem;
  }
}
.why__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 576px) {
  .why__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}
.why__item {
  color: var(--it-black);
  padding: 6rem;
  background-color: #fff;
  -webkit-mask-image: url("./../img/svg/why-mask.svg");
  mask-image: url("./../img/svg/why-mask.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
}
@media (max-width: 576px) {
  .why__item {
    -webkit-mask: none;
    mask: none;
    position: relative;
    z-index: 2;
    padding: 1.5rem 4rem 4rem;
    border-radius: 0 2rem 2rem 2rem;
  }
  .why__item::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: calc(100% - 2.1rem);
    width: 100%;
    height: 5.5rem;
    background-color: var(--it-white);
    -webkit-mask-image: url("./../img/svg/why-mask-mob.svg");
    mask-image: url("./../img/svg/why-mask-mob.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-position: top;
  }
  .why__item::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 5rem);
    background-color: var(--it-white);
    border-radius: 0 0 2rem 2rem;
  }
}
.why__item-capture {
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 120%;
  color: var(--it-black);
}
@media (max-width: 576px) {
  .why__item-capture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
  }
  .why__item-capture::after {
    content: "";
    display: block;
    width: 4rem;
    height: 4rem;
    aspect-ratio: 1/1;
    background-image: url("./../img/svg/arrow-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
}
.why__item.active .why__item-capture::after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
@media (max-width: 576px) {
  .why__item-desc {
    max-height: 0;
    overflow: hidden;
    will-change: max-height;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: max-height;
    transition-property: max-height;
  }
}

.different {
  margin: 10rem 0;
  padding: 20rem 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url("./../img/different.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  z-index: 4;
}
@media (max-width: 576px) {
  .different {
    padding: 12rem 0;
    margin: 7.5rem 0;
    min-height: 100vh;
  }
}
.different .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.different__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  pointer-events: none;
}
.different__video.is-visible {
  opacity: 1;
}
.different__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.different__title {
  font-size: 8rem;
  line-height: 110%;
}
@media (max-width: 576px) {
  .different__title {
    font-size: 6.4rem;
    margin-bottom: 2rem;
  }
}
.different__subtitle {
  margin: 0;
  margin-bottom: 9.6rem;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 150%;
}
@media (max-width: 576px) {
  .different__subtitle {
    font-size: 2.7rem;
    margin-bottom: 5rem;
  }
}

.status {
  -webkit-mask-image: url("./../img/svg/status-mask.svg");
  mask-image: url("./../img/svg/status-mask.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: var(--it-white);
  aspect-ratio: 894/429;
  width: 89.4rem;
  height: 42.9rem;
  overflow: hidden;
  color: var(--it-black);
  padding: 8rem 7rem;
}
@media (max-width: 576px) {
  .status {
    padding: 6rem;
    -webkit-mask-image: url("./../img/svg/status-mask-mob.svg");
    mask-image: url("./../img/svg/status-mask-mob.svg");
    aspect-ratio: unset;
    width: 100%;
    height: auto;
  }
}
.status__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  margin-bottom: 4.8rem;
}
@media (max-width: 576px) {
  .status__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 4rem;
  }
}
.status__col {
  color: var(--it-black);
}
.status__col_everywhere {
  color: rgba(0, 0, 0, 0.45);
}
.status__capture {
  margin: 0;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 130%;
}
@media (max-width: 576px) {
  .status__capture {
    font-size: 2rem;
  }
}
.status__price {
  margin: 0;
  font-weight: 600;
  font-size: 7.8rem;
  line-height: 130%;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .status__price {
    font-size: 6rem;
    line-height: 140%;
  }
}
.status__diff {
  margin: 0;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  color: var(--it-pink);
}
@media (max-width: 576px) {
  .status__diff {
    margin-top: 0.5rem;
    font-size: 2.4rem;
  }
}
.status__btn {
  width: 100%;
}

.steps {
  padding: 10rem 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .steps {
    padding: 7.5rem 0;
  }
}
.steps::after {
  content: "";
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 70%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 240rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.steps__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  counter-reset: steps;
}
@media (max-width: 576px) {
  .steps__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.steps__item {
  counter-increment: steps;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.25) 48.04%, rgba(255, 255, 255, 0.25) 59.03%, rgba(255, 255, 255, 0.01) 100%), url("./../img/svg/steps-border.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-image: url("./../img/svg/steps-mask.svg");
  mask-image: url("./../img/svg/steps-mask.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  aspect-ratio: 580/339;
  backdrop-filter: blur(1.5rem);
  padding: 5rem;
  padding-right: 9rem;
}
@media (max-width: 576px) {
  .steps__item {
    aspect-ratio: unset;
    padding: 5rem 4rem;
    height: 28rem;
    background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.25) 48.04%, rgba(255, 255, 255, 0.25) 59.03%, rgba(255, 255, 255, 0.01) 100%), url("./../img/svg/steps-border-mob.svg");
    -webkit-mask-image: url("./../img/svg/steps-mask-mob.svg");
    mask-image: url("./../img/svg/steps-mask-mob.svg");
  }
}
.steps__item::before {
  content: counter(steps);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 150%;
  color: var(--it-pink);
}
@media (max-width: 576px) {
  .steps__item::before {
    position: absolute;
    right: 4rem;
    top: 5rem;
    line-height: 1;
    margin: 0;
  }
}
.steps__item-title {
  margin: 0;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 120%;
}
@media (max-width: 576px) {
  .steps__item-title {
    padding-right: 4rem;
  }
}
.steps__item-desc {
  font-weight: 300;
}
@media (max-width: 576px) {
  .steps__item-desc {
    padding-right: 1rem;
  }
}

.care {
  padding: 10rem 0;
}
@media (max-width: 576px) {
  .care {
    padding: 7.5rem 0;
  }
}
.care__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
}
@media (max-width: 576px) {
  .care__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.care__content {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6rem;
  background-color: var(--it-white);
  border-radius: 2rem;
  color: var(--it-black);
  overflow: hidden;
}
.care__content ul li:not(:last-child),
.care__content ol li:not(:last-child) {
  margin-bottom: 5rem;
}
@media (max-width: 576px) {
  .care__content ul li:not(:last-child),
  .care__content ol li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .care__content {
    padding: 5rem 4rem;
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}
.care__img {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  position: relative;
  -webkit-mask-image: url("./../img/care-mask.svg");
  mask-image: url("./../img/care-mask.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top;
  mask-position: top;
}
.care__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .care__img {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-mask-image: url("./../img/care-mask-mob.svg");
    mask-image: url("./../img/care-mask-mob.svg");
    aspect-ratio: unset;
    height: 32.8rem;
  }
}

.give {
  padding: 10rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .give {
    padding: 7.5rem 0;
  }
}
.give::after {
  content: "";
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  right: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 240rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
@media (max-width: 576px) {
  .give::after {
    right: -30%;
  }
}
.give__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.give__img {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  -ms-flex-preferred-size: 112rem;
  flex-basis: 112rem;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .give__img {
    display: none;
  }
}
.give__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.give__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.give__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.give__list li::before {
  display: none;
}
.give__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.8rem;
  height: 18.3rem;
  padding: 1.5rem 5rem;
  backdrop-filter: blur(1.5rem);
  aspect-ratio: 650/183;
  -webkit-mask-image: url("./../img/give/card.svg");
  mask-image: url("./../img/give/card.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.2) 48.04%, rgba(255, 255, 255, 0.2) 59.03%, rgba(255, 255, 255, 0.01) 100%), url("./../img/give/border.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 576px) {
  .give__item {
    height: 24.8rem;
    overflow: hidden;
    aspect-ratio: unset;
    background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.2) 48.04%, rgba(255, 255, 255, 0.2) 59.03%, rgba(255, 255, 255, 0.01) 100%), url("./../img/give/border-mob.svg");
    -webkit-mask-image: url("./../img/give/card-mob.svg");
    mask-image: url("./../img/give/card-mob.svg");
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 2.4rem;
  }
}
.give__item:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .give__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.give__item-icon {
  width: 7.3rem;
  height: 7.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.give__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.give__item-text {
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 130%;
}
.give__item-text p {
  margin: 0;
}

.support {
  padding: 10rem 0;
  position: relative;
}
.support::after {
  content: "";
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -1;
  left: 60%;
  top: 70%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 240rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
@media (max-width: 576px) {
  .support::after {
    display: none;
  }
}
.support__title {
  margin-bottom: 2rem;
}
.support__desc {
  margin-bottom: 5rem;
}
.support__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
@media (max-width: 576px) {
  .support__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--container-offset));
    padding: 0 var(--container-offset);
  }
}
.support__item {
  -ms-flex-preferred-size: calc(33.3333333333% - 3rem);
  flex-basis: calc(33.3333333333% - 3rem);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--it-white);
  color: var(--it-black);
  padding: 5rem;
  border-radius: 2rem;
}
.support__item:not(:last-child) {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .support__item {
    -ms-flex-preferred-size: 46rem;
    flex-basis: 46rem;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 4rem;
  }
}
.support__item::before {
  display: none;
}
.support__item-icon {
  width: 8.3rem;
  height: 8.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.support__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.support__item-text {
  margin: 0;
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 130%;
  color: var(--it-black);
}

.master {
  padding: 10rem 0;
  position: relative;
  z-index: 1;
}
.master::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  width: 100%;
  height: 270rem;
  -webkit-transform: translateX(-50%) translateY(0%);
  -ms-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
  background-image: url("./../img/blur-sphere-all.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  pointer-events: none;
}
@media (max-width: 576px) {
  .master::after {
    background-image: url("./../img/blur-sphere-mob.svg");
    background-position: bottom left;
    height: 100%;
    top: unset;
    bottom: 0;
    background-size: contain;
  }
}
@media (max-width: 576px) {
  .master {
    padding: 7.5rem 0;
  }
}
.master__title {
  margin-bottom: 2rem;
}
.master__desc {
  margin-bottom: 5rem;
}
.master__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .master__container {
    -webkit-perspective: unset;
    perspective: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.master__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 8rem;
  border-radius: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.2) 48.04%, rgba(255, 255, 255, 0.2) 59.03%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(2rem);
}
.master__content ul,
.master__content ol {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.master__content ul:not(:last-child),
.master__content ol:not(:last-child) {
  margin-bottom: 2.5rem;
}
.master__content ul li:not(:last-child),
.master__content ol li:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .master__content ul li:not(:last-child),
  .master__content ol li:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 576px) {
  .master__content {
    padding: 5rem 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.master__card {
  max-width: 79.3rem;
  width: 100%;
  height: 50rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
  border-radius: 1.5rem;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
}
.master__card canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
}
@media (max-width: 576px) {
  .master__card canvas {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 576px) {
  .master__card {
    height: 31.4rem;
  }
}
.master__extra {
  margin: 0;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 140%;
  color: #ff50d4;
}
@media (max-width: 576px) {
  .master__extra {
    margin-bottom: 3rem;
  }
}

.footer {
  padding: 10rem 0 6rem;
}
@media (max-width: 576px) {
  .footer {
    padding: 7.5rem 0 3rem;
  }
}
.footer__container {
  --row-gap: 3rem;
  padding: 5rem 4rem;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.2) 48.04%, rgba(255, 255, 255, 0.2) 59.03%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(2rem);
  border-radius: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  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: 5rem;
}
@media (max-width: 576px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.footer__socials {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  .footer__socials {
    display: none;
  }
}
.footer__socials_mob {
  display: none;
}
@media (max-width: 576px) {
  .footer__socials_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__left, .footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: var(--row-gap);
}
@media (max-width: 576px) {
  .footer__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 576px) {
  .footer__right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__link {
  margin: 0;
  font-weight: 300;
  font-size: 2.2rem;
}
.footer__link a {
  color: inherit;
}
.footer__policy a {
  text-decoration: underline;
  color: inherit;
}

.currency {
  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;
  gap: 1rem;
  width: 100%;
}
.currency__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.currency__item label {
  cursor: pointer;
  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;
  min-width: 3.5rem;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.45);
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.currency__item input:checked + label {
  cursor: default;
  pointer-events: none;
  background-color: var(--it-black);
  color: var(--it-white);
}

.course__caption {
  margin: 0;
  font-size: 1.4rem;
  line-height: 120%;
}
.course__value {
  margin: 0;
  font-size: 2.2rem;
  line-height: 120%;
  color: var(--it-black);
}
.course__btn {
  color: var(--it-black);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.3rem;
  aspect-ratio: 1/1;
}
.course__btn svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .course__btn:hover {
    color: var(--it-pink);
  }
}
.course__btn:focus-visible {
  outline: none;
  color: var(--it-pink);
}
.course__btn:active {
  color: var(--it-pink);
}

.calculator {
  position: relative;
  z-index: 4;
}
.calculator_main {
  padding: 10rem 0;
}
@media (max-width: 576px) {
  .calculator_main {
    padding: 7.5rem 0;
  }
  .calculator_main .calculator__patterns {
    display: none;
  }
}
.calculator__title:not(:last-child) {
  margin-bottom: 2rem;
}
.calculator__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 576px) {
  .calculator__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.calculator__patterns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 576px) {
  .calculator__patterns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.calculator__desc {
  display: none;
}
@media (max-width: 576px) {
  .calculator__desc {
    display: block;
    margin-bottom: 3rem;
  }
}
.calculator__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.calculator__row > *:nth-child(1) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.calculator__row > *:nth-child(2) {
  min-width: 16.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.calculator__row:nth-child(2) > *:nth-child(2) {
  min-width: 25.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.calculator__row:nth-child(3) > *:nth-child(2) {
  min-width: 30rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .calculator__row:nth-child(3) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.calculator__row:not(:last-child) {
  margin-bottom: 2rem;
}
.calculator__item {
  background-color: var(--it-white);
  color: var(--it-black);
  padding: 1rem 2rem;
  min-height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2rem;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.45);
}
.calculator__item span {
  color: var(--it-black);
}
.calculator__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.calculator__hint {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
}
.calculator__field {
  width: 100%;
}
.calculator__inwrapper {
  position: relative;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 120%;
  color: var(--it-black);
  cursor: pointer;
}
.calculator__inwrapper > label {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition-property: color, font-size, -webkit-transform;
  transition-property: color, font-size, -webkit-transform;
  transition-property: color, transform, font-size;
  transition-property: color, transform, font-size, -webkit-transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.calculator__inwrapper > input {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.calculator__inwrapper > input:focus, .calculator__inwrapper.is-filled > input {
  -webkit-transform: translateY(0.8rem);
  -ms-transform: translateY(0.8rem);
  transform: translateY(0.8rem);
}
.calculator__inwrapper > input:focus ~ label, .calculator__inwrapper.is-filled > label {
  -webkit-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%);
  font-size: 1.6rem;
}
.calculator__inwrapper::after {
  content: attr(data-after);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.calculator__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 576px) {
  .calculator__btn {
    font-size: 2.2rem;
    padding: 1.5rem;
  }
}
.calculator__reset {
  width: 8rem;
  background-color: var(--it-white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 2rem;
  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;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.calculator__reset svg {
  fill: var(--it-black);
  width: 3rem;
  height: 3rem;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media (max-width: 576px) {
  .calculator__reset svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media (max-width: 576px) {
  .calculator__reset {
    width: 6rem;
  }
}
@media (any-hover: hover) {
  .calculator__reset:hover {
    background-color: var(--it-pink-hover);
  }
  .calculator__reset:hover svg {
    fill: var(--it-white);
  }
}
.calculator__reset:focus-visible {
  outline: none;
  background-color: var(--it-pink-hover);
}
.calculator__reset:focus-visible svg {
  fill: var(--it-white);
}
.calculator__reset:active {
  background-color: var(--it-pink);
}
.calculator__reset:active svg {
  fill: var(--it-white);
}
.calculator__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.calculator__inwrapper input[type=range] {
  position: absolute;
  left: 2rem;
  right: 2rem;
  z-index: 1;
  bottom: -0.6rem;
  height: 1.3rem;
  border-radius: 100%;
  background-color: var(--blue);
}
.calculator__inwrapper span {
  display: none;
  position: absolute;
  z-index: 1;
  bottom: -0.6rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 100%;
  background-color: var(--blue);
}
@media (max-width: 576px) {
  .calculator__inwrapper span {
    bottom: -0.4rem;
  }
}
.calculator__inwrapper .range {
  position: absolute;
  z-index: 1;
  bottom: -2.1rem;
  height: 2px;
  left: 0rem;
  right: 0rem;
}
.calculator__inwrapper .range * {
  border: none;
}
.calculator__inwrapper .noUi-connects {
  background: none;
}
.calculator__inwrapper .noUi-target {
  border: none;
  border-radius: none;
  background: none;
}
.calculator__inwrapper .noUi-connect {
  background-color: var(--it-pink);
}
.calculator__inwrapper .noUi-horizontal .noUi-handle {
  -webkit-transform: translateX(50%) translateY(-50%);
  -ms-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
  top: 50%;
  width: 1.7rem;
  height: 1.7rem;
  right: 0;
  border-radius: 100%;
  background: none;
  background-color: var(--it-pink);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.calculator__inwrapper .noUi-horizontal .noUi-handle::before, .calculator__inwrapper .noUi-horizontal .noUi-handle::after {
  display: none;
}

.calculator__summary {
  margin-bottom: 2rem;
  padding: 6rem;
  background-color: var(--it-white);
  border-radius: 2rem;
  color: var(--it-black);
}
@media (max-width: 576px) {
  .calculator__summary {
    padding: 4rem;
    margin-bottom: 1rem;
  }
}
.calculator__summary p {
  margin-top: 0;
}
.calculator__summary-title {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  line-height: 100%;
  color: var(--it-black);
}
@media (max-width: 576px) {
  .calculator__summary-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 3rem;
  }
}
.calculator__summary-profit {
  margin-bottom: 3.2rem;
  font-size: 6rem;
  line-height: 100%;
  color: var(--it-black);
  white-space: nowrap;
}
@media (max-width: 576px) {
  .calculator__summary-profit {
    font-size: 4.4rem;
    font-weight: 600;
  }
}
.calculator__summary-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .calculator__summary-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 4rem;
  }
  .calculator__summary-row > div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
  }
}
.calculator__summary-cost {
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 120%;
  color: var(--it-black);
}
@media (max-width: 576px) {
  .calculator__summary-cost {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
.calculator__summary-annually {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.45);
}
@media (max-width: 576px) {
  .calculator__summary-tabs {
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs label {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
@media (any-hover: hover) {
  .tabs label:hover {
    color: rgba(0, 0, 0, 0.8);
  }
}
.tabs label:focus-visible {
  outline: none;
  color: rgba(0, 0, 0, 0.8);
}
.tabs span {
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.tabs input[data-selected="1"] ~ span {
  color: var(--it-black);
}

.pattern {
  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: -2px;
  backdrop-filter: blur(2rem);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2.6rem;
  padding: 5rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: outline-color 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.35s ease;
  transition: outline-color 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.35s ease;
  transition: outline-color 0.3s ease, background-color 0.3s ease, box-shadow 0.35s ease, backdrop-filter 0.3s ease;
  transition: outline-color 0.3s ease, background-color 0.3s ease, box-shadow 0.35s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.35s ease;
  will-change: box-shadow, background-color, backdrop-filter, outline-color;
}
.pattern__img {
  position: absolute;
  z-index: -1;
  right: -30rem;
  bottom: -23.3rem;
  width: 51.3rem;
  height: 51.3rem;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-animation: none;
  animation: none;
}
.pattern__img img {
  display: block;
  width: 100%;
  height: 100%;
}
.pattern__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.pattern__title {
  margin: 0;
  font-weight: 400;
  font-size: 4rem;
  line-height: 120%;
  color: var(--it-white);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.pattern__annual {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 100%;
  text-align: right;
  color: var(--it-pink);
}
.pattern__annual span {
  display: block;
}
.pattern__item-capture {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 120%;
  color: #bfbfbf;
}
.pattern__item-value {
  margin: 0;
  font-weight: 400;
  font-size: 3rem;
  line-height: 120%;
  white-space: nowrap;
}
.pattern__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
.pattern__row:not(:last-child) {
  margin-bottom: 1.4rem;
}
.pattern--active {
  outline: none;
  background-color: var(--it-white);
  color: var(--it-black);
}
.pattern--active .pattern__title {
  color: var(--it-black);
}
.pattern--active .pattern__annual {
  color: var(--it-black);
}
.pattern:hover .pattern__title {
  color: var(--it-pink);
}
.pattern:hover .pattern__img {
  -webkit-animation: pattern-float 3.5s ease-in-out infinite alternate;
  animation: pattern-float 3.5s ease-in-out infinite alternate;
}

@-webkit-keyframes pattern-float {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(-1.2rem, -0.6rem, 0);
    transform: translate3d(-1.2rem, -0.6rem, 0);
  }
  60% {
    -webkit-transform: translate3d(0.8rem, -1.4rem, 0);
    transform: translate3d(0.8rem, -1.4rem, 0);
  }
  100% {
    -webkit-transform: translate3d(-0.8rem, 1.2rem, 0);
    transform: translate3d(-0.8rem, 1.2rem, 0);
  }
}

@keyframes pattern-float {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(-1.2rem, -0.6rem, 0);
    transform: translate3d(-1.2rem, -0.6rem, 0);
  }
  60% {
    -webkit-transform: translate3d(0.8rem, -1.4rem, 0);
    transform: translate3d(0.8rem, -1.4rem, 0);
  }
  100% {
    -webkit-transform: translate3d(-0.8rem, 1.2rem, 0);
    transform: translate3d(-0.8rem, 1.2rem, 0);
  }
}
.cta {
  padding: 10rem 0;
}
@media (max-width: 576px) {
  .cta {
    padding: 7.5rem 0;
  }
}/*# sourceMappingURL=main.css.map */
