@charset "UTF-8";
:root {
  --mainFont: "Inter", sans-serif;
  --white: #fff;
  --grey: rgba(255, 255, 255, 0.7);
  --grey_light: rgba(255, 255, 255, 0.5);
  --black: #000;
  --fuxy: #67219B;
  --violet: rgba-color(#67219B, 0.4);
  --rosy: #BF95DE;
  --orange: #FF6228;
  --orange_mid: #FF8769;
  --red: #C73F21;
  --yellow: #FFBC69;
  --violet: #2A0D44;
  --default-transition: all 0.15s ease-in;
  --color-transition: color 0.15s ease-in;
  --font-size-12: .75rem;
  --font-size-15: .9375rem;
  --font-size-25: 1.5625rem;
  --font-size-35: 2.1875rem;
  --font-size-30: 1.875rem;
  --font-size-40: 2.5rem;
  --font-size-45: 2.8125rem;
  --font-size-50: 3.125rem;
  --font-size-60: 3.75rem;
  --breakpoint-sm: 480px;
  --breakpoint-md: 640px;
  --breakpoint-lg: 768px;
  --breakpoint-xl: 1024px;
  --breakpoint-2xl: 1280px;
  --breakpoint-3xl: 1440px;
  --container-sm: 40rem;
  --container-md: 48rem;
  --container-lg-narrow: 51.875rem;
  --container-lg: 64rem;
  --container-xl: 80rem;
  --container-2xl: 87.5rem;
  --spacing-0: 0;
  --spacing-5: .3125rem;
  --spacing-10: .625rem;
  --spacing-15: .9375rem;
  --spacing-20: 1.25rem;
  --spacing-25: 1.5625rem;
  --spacing-30: 1.875rem;
  --spacing-35: 2.1875rem;
  --spacing-40: 2.5rem;
  --spacing-45: 2.8125rem;
  --spacing-50: 3.125rem;
  --spacing-55: 3.4375rem;
  --spacing-60: 3.75rem;
  --spacing-65: 4.0625rem;
  --spacing-70: 4.375rem;
  --spacing-75: 4.6875rem;
  --spacing-80: 5rem;
  --spacing-85: 5.3125rem;
  --spacing-90: 5.625rem;
  --spacing-95: 5.9375rem;
  --spacing-100: 6.25rem;
  --spacing-105: 6.5625rem;
  --spacing-110: 6.875rem;
  --spacing-115: 7.1875rem;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-SemiBold.woff2") format("woff2"), url("../fonts/Inter18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Medium.woff2") format("woff2"), url("../fonts/Inter18pt-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Regular.woff2") format("woff2"), url("../fonts/Inter18pt-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  appearance: none;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
}

#smooth-wrapper,
#smooth-content {
  z-index: 99;
}

.gsap-spacer {
  height: var(--spacing-100);
}

.--full_height {
  height: 100vh;
}
.--full_height .wrapper,
.--full_height .blocks {
  height: 100%;
}

.--with_icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-10);
}
.--with_icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.--text_white {
  color: var(--white);
}

.--text_grey {
  color: var(--grey);
}

.--text_grey_light {
  color: var(--grey_light);
}

.--text_yellow {
  color: var(--yellow);
}

.--text_orange_mid {
  color: var(--orange_mid);
}

.--text_rosy {
  color: var(--rosy);
}

.--text_center {
  text-align: center;
}

.--text_xs {
  font-size: var(--font-size-15);
  line-height: 1.5625rem;
  font-weight: 600;
  letter-spacing: -0.00938rem;
}

.--text_sm {
  font-size: var(--font-size-30);
  line-height: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.01875rem;
}

.--text_sm_md {
  font-size: var(--font-size-35);
  line-height: 2.8125rem;
  font-weight: 500;
  letter-spacing: -0.01875rem;
}

.--text_md {
  font-size: var(--font-size-50);
  line-height: 4.0625rem;
  font-weight: 600;
  letter-spacing: -0.15rem;
}

.--text_lg {
  font-size: var(--font-size-60);
  line-height: 4.0625rem;
  font-weight: 600;
  letter-spacing: -0.15rem;
}

.--text_regular {
  font-weight: 400;
}

.--text_medium {
  font-weight: 500;
}

.--overflow_hidden {
  overflow: hidden;
}

.--inner_page {
  padding-top: 11.25rem;
}

.--with_gradient_inner {
  background: var(--violet);
}
.--with_gradient_inner:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 50rem;
  background: linear-gradient(180deg, #000 0%, #2A0D44 100%);
}

@media (max-width: 1024px) {
  .--text_lg {
    font-size: var(--font-size-45);
    line-height: 3.125rem;
    font-weight: 600;
    letter-spacing: -0.1125rem;
  }
  .--text_md {
    font-size: var(--font-size-35);
    line-height: 2.8125rem;
    font-weight: 500;
    letter-spacing: -0.0875rem;
  }
}
html {
  font-size: 1.1104vw;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 1.6128vw;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 4.2672vw;
  }
}

body {
  font-family: var(--mainFont);
  font-size: var(--font-size-15);
  line-height: 1;
  color: var(--white);
  background: var(--black);
}

a {
  transition: var(--color-transition);
}

button {
  transition: var(--default-transition);
}

path,
circle {
  transition: var(--default-transition);
}

svg {
  width: 100%;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  max-width: var(--container-xl);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-15);
}
.wrapper.--narrow {
  max-width: var(--container-lg-narrow);
}

.content h3 {
  font-size: var(--font-size-50);
  line-height: 3.4375rem;
  font-weight: 600;
  letter-spacing: -0.125rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.content h4 {
  font-size: var(--font-size-40);
  line-height: 2.8125rem;
  font-weight: 600;
  letter-spacing: -0.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}
.content h5 {
  font-size: var(--font-size-30);
  line-height: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.075rem;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.content h6 {
  font-size: var(--font-size-25);
  line-height: 2.1875rem;
  font-weight: 600;
  letter-spacing: -0.0625rem;
  color: var(--white);
  margin-bottom: 0.31rem;
  margin-top: 0.62rem;
}
.content p {
  font-size: var(--font-size-15);
  line-height: 1.5625rem;
  font-weight: 500;
  letter-spacing: -0.0094rem;
  margin-bottom: 1.25rem;
  color: var(--rosy);
}
.content a {
  color: var(--white);
  word-break: break-word;
}
.content a:hover {
  color: var(--rosy);
}
.content ul,
.content ol {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
}
.content ul > li,
.content ol > li {
  font-size: var(--font-size-15);
  line-height: 1.5625rem;
  font-weight: 500;
  letter-spacing: -0.0094rem;
  counter-increment: item;
  position: relative;
  padding-left: 3em;
  color: var(--rosy);
  /* nested ordered list */
  /* nested unordered list */
}
.content ul > li::before,
.content ol > li::before {
  content: counter(item, decimal-leading-zero) " ";
  position: absolute;
  left: 0;
  width: 2.5em;
  text-align: left;
  font-weight: bold;
  color: var(--white);
}
.content ul > li > ol,
.content ol > li > ol {
  counter-reset: subitem;
}
.content ul > li > ol > li,
.content ol > li > ol > li {
  counter-increment: subitem;
  position: relative;
  padding-left: 3.2em;
}
.content ul > li > ol > li::before,
.content ol > li > ol > li::before {
  /* parent with leading zero + child as plain number */
  content: counter(item, decimal-leading-zero) "." counter(subitem) " ";
  position: absolute;
  left: 0;
  width: 3.5em;
  text-align: left;
  font-weight: bold;
}
.content ul > li > ul,
.content ol > li > ul {
  margin-bottom: 1.25rem;
  margin-top: 0.625rem;
}
.content ul > li > ul > li,
.content ol > li > ul > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.625rem;
}
.content ul > li > ul > li::before,
.content ol > li > ul > li::before {
  content: "— ";
  position: absolute;
  left: 0;
  color: var(--white);
}

@media (max-width: 1024px) {
  .wrapper {
    max-width: 100%;
    padding: 0 var(--spacing-20);
  }
}
@media (max-width: 480px) {
  .content h3 {
    font-size: var(--font-size-35);
    line-height: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.075rem;
  }
  .content h4 {
    font-size: var(--font-size-30);
    line-height: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.075rem;
  }
  .content h5 {
    font-size: var(--font-size-25);
    line-height: 2.1875rem;
    font-weight: 600;
    letter-spacing: -0.0625rem;
  }
  .content ul li {
    padding-left: 2rem;
  }
}
.spttl span {
  opacity: 0.5;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.875rem;
  padding: var(--spacing-30) 0;
}
.header__logo {
  max-width: 15.625rem;
  width: 100%;
}
.header__menu {
  flex-grow: 1;
  display: none;
}

@media (min-width: 1025px) {
  .header__menu .burger {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header__wrapper {
    gap: 1.25rem;
  }
  .header__logo {
    max-width: unset;
    width: auto;
  }
  .header__menu .menu {
    display: none;
  }
}
.side {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-radius: 0 0 1.5625rem 1.5625rem;
  background: linear-gradient(180deg, #000 0%, #2A0D44 100%);
  box-shadow: 0 15px 64px 0 rgba(0, 0, 0, 0.85);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.268, 0.08, 1, 0.508);
}
.side__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 6.87rem 1.25rem 2.5rem;
}
.side .menu ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.62;
}
.side .menu a {
  font-size: var(--font-size-20);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.0125rem;
  display: block;
  padding: 0.625rem 0.9375rem 0.625rem 1.25rem;
}
.side.--active {
  transform: translateY(0);
}

.burger {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.9375rem;
  background: rgba(191, 149, 222, 0.16);
}
.burger span {
  position: absolute;
  width: 1.125rem;
  height: 2px;
  border-radius: 6px;
  background: var(--white);
  transition: var(--default-transition);
}
.burger .top {
  transform: translateY(0.4rem);
}
.burger .bottom {
  transform: translateY(-0.4rem);
}
.burger.--active .mid-1 {
  transform: rotate(45deg);
}
.burger.--active .mid-2 {
  transform: rotate(-45deg);
}
.burger.--active .top,
.burger.--active .bottom {
  transform: translateY(0) scale(0);
}

.menu.--bigger_padding ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
}
.menu.--bigger_padding a {
  padding: var(--spacing-10) var(--spacing-20);
}
.menu ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.menu a {
  font-size: var(--font-size-15);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  padding: var(--spacing-10) var(--spacing-20);
  color: var(--white);
  transition: var(--default-transition);
}
.menu a:hover {
  color: var(--rosy);
}

.btns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-20);
}

.btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--font-size-15);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01875rem;
  color: var(--white);
  padding: var(--spacing-10) var(--spacing-20);
  border: 1px solid var(--rosy);
  border-radius: 0.9375rem;
  transition: var(--default-transition);
}
.btn__icon {
  transition: var(--default-transition);
}
.btn__icon path {
  transition: var(--default-transition);
}
.btn:not(.--no_border, .--primary, .--secondary):hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn:not(.--no_border, .--primary, .--secondary):hover .btn__icon path {
  stroke: var(--black);
}
.btn.--primary {
  height: 3.75rem;
}
.btn.--secondary {
  height: 3.125rem;
}
.btn.--no_border {
  border-color: transparent;
}
.btn.--no_border:hover {
  border-color: var(--rosy);
  background-color: unset;
}
.btn.--with_round_icon .btn__icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-radius: 50%;
  background-color: var(--white);
  width: 2rem;
  height: 2rem;
}
.btn.--with_round_icon_simple .btn__icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-radius: 50%;
}
.btn.--with_gradient {
  border: none;
  background: linear-gradient(175deg, #FF6228 -2.28%, #67219B 65.55%);
  background-size: 200% 150%;
}
.btn.--with_gradient:hover {
  background-size: 120% 120%;
}
.btn.--with_gradient:hover:not(.--with_round_icon_simple) .btn__icon {
  background: rgba(255, 98, 40, 0.3);
}
.btn.--with_gradient:hover:not(.--with_round_icon_simple) .btn__icon path {
  stroke: var(--white);
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .btn:not(.--no_border, .--primary):hover {
    background-color: unset;
  }
  .btn.--mobile_no_text .text {
    display: none;
  }
  .btn.--mobile_background {
    background-color: rgba(0, 0, 0, 0.25);
  }
  .btn.--mobile_icon_white .icon path {
    stroke: var(--white);
  }
  .btn.--mobile_square {
    width: 3.125rem;
    height: 3.125rem;
    padding: 0;
  }
}
.logo {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 10rem;
  padding-bottom: 0.625rem;
}
.logo .mobile {
  max-width: 2.125rem;
}

@media (min-width: 1025px) {
  .logo .mobile {
    display: none;
  }
}
@media (max-width: 1024px) {
  .logo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    max-width: unset;
    padding-bottom: 0;
  }
  .logo .desktop {
    display: none;
  }
}
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.overlay.--gradient {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-image: url("../images/main/overlay.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay.--black {
  background-color: var(--black);
  opacity: 0;
  z-index: 5;
}
.overlay.--gradient_inner {
  background: linear-gradient(180deg, #000000 10%, #2A0D44 100%);
}

.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: var(--default-transition);
}
.modal.--active {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
}
.modal__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 100%;
}
.modal__body {
  position: relative;
  max-width: 37.5rem;
  width: 100%;
  padding: 3.75rem;
  background: linear-gradient(var(--black), #2A0D44) padding-box, linear-gradient(to right, var(--fuxy), var(--orange)) border-box;
  border-radius: 1.875rem;
  border: 0.25rem solid transparent;
}
.modal__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.modal__content .btns {
  margin-top: 1.25rem;
}
.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.3125rem;
  cursor: pointer;
}
.modal__close span {
  position: absolute;
  background-color: var(--rosy);
  display: block;
  width: 80%;
  height: 2px;
}
.modal__close span:first-child {
  transform: rotate(45deg);
}
.modal__close span:last-child {
  transform: rotate(-45deg);
}
.modal__close:hover span {
  background-color: var(--white);
}

@media (max-width: 480px) {
  .modal .ttl {
    font-size: var(--font-size-35);
  }
  .modal__wrapper {
    padding: 0 var(--spacing-15);
  }
  .modal__body {
    padding: 2rem;
  }
}
form {
  width: 100%;
}

.form__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.5rem;
}
.form__top, .form__sections, .form__section {
  width: 100%;
}
.form__section {
  display: none;
}
.form__section.--active {
  display: block;
}
.form__row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.form__top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.form__steps {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}
.form__btns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.form__btns {
  width: 100%;
}

.steps {
  width: 14.0625rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.steps .circle,
.steps .line {
  opacity: 0.3;
}
.steps .circle {
  width: 0.8125rem;
  height: 0.8125rem;
  border: 0.1875rem solid var(--rosy);
  border-radius: 50%;
  transition: var(--default-transition);
}
.steps .line {
  width: 2.5rem;
  height: 0.1875rem;
  background-color: var(--rosy);
  transition: var(--default-transition);
}
.steps.--active_1 .circle:nth-child(1) {
  border-color: var(--white);
  opacity: 1;
}

@media (max-width: 480px) {
  .form__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .form__top {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .form__row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .form__btns {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .form__btns .btn {
    width: 100% !important;
  }
}
input {
  width: 100%;
  height: 3.125rem;
  padding: 0 var(--spacing-20);
  border: 0.0625rem solid var(--rosy);
  border-radius: 15px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1501px;
}

label {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 100%;
  line-height: 1 !important;
}

.input {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10.08px;
  position: relative;
  width: 100%;
}

.checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.63rem;
  width: 100%;
}

.checkbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.63rem;
  position: relative;
  cursor: pointer;
}
.checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.checkbox__icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid var(--rosy);
}
.checkbox__icon svg {
  opacity: 0;
  visibility: hidden;
  transition: var(--default-transition);
}
.checkbox input:checked + .checkbox__icon {
  background: linear-gradient(158deg, #FF6228 -2.28%, #67219B 85.55%), #178EE0;
  border: 0;
}
.checkbox input:checked + .checkbox__icon svg {
  opacity: 1;
  visibility: visible;
}
.checkbox.--active .checkbox__icon {
  background: linear-gradient(158deg, #FF6228 -2.28%, #67219B 85.55%), #178EE0;
  border: 0;
}
.checkbox.--active .checkbox__icon svg {
  opacity: 1;
  visibility: visible;
}

.checkbox .wpcf7-form-control-wrap {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.checkbox .wpcf7-list-item-label {
  display: none;
}
.checkbox .wpcf7-checkbox,
.checkbox .wpcf7-form-control,
.checkbox .wpcf7-list-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 999;
  margin: 0;
}

.error,
.wpcf7-not-valid-tip {
  font-size: var(--font-size-12);
  line-height: 13px;
  font-weight: 500;
  letter-spacing: 0.24px;
  color: var(--white);
  padding: 0.31rem;
  border-radius: 100px;
  background: var(--red);
  position: absolute;
  bottom: -0.75rem;
  left: 1.25rem;
  transition: var(--default-transition);
}

.error {
  display: none;
}

.input.with-error input {
  border-color: var(--red);
}
.input.with-error .error {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
  .checkboxes {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}
.wpcf7,
.wpcf7-form-control-wrap {
  width: 100%;
}

.section {
  position: relative;
  z-index: 5;
}
.section .wrapper {
  position: relative;
  z-index: 2;
}
.section .blocks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .section {
    padding-bottom: 6.25rem;
  }
}
.hero {
  position: relative;
}
.hero__content {
  height: 100%;
}
.hero__img {
  position: absolute;
  right: -15.5rem;
  top: 2.25rem;
  max-width: 65rem;
  width: 100%;
  z-index: 2;
}
.hero-logos {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 3.75rem;
  width: 100%;
  z-index: 2;
}
.hero-logos__items {
  margin-top: 2.5rem;
}
.hero .block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  max-width: 35.5rem;
}
.hero .text {
  font-weight: 500;
}

@media (max-width: 1180px) {
  .hero__img {
    top: 8.25rem;
  }
}
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding-top: 7.5rem;
  }
  .hero__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0.0938rem;
  }
  .hero .wrapper {
    order: 2;
  }
  .hero__img {
    order: 1;
    position: relative;
    top: unset;
    right: unset;
    max-width: 50rem;
  }
  .hero-logos {
    position: relative;
    padding-bottom: 0;
  }
  .hero .blocks {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 100%;
    width: 100%;
  }
  .hero .block {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
  }
  .hero .block .ttl,
  .hero .block .text {
    text-align: center;
  }
  .hero .block .btns {
    margin-top: 0.9375rem;
  }
  .hero-logos {
    margin-top: 3.125rem;
  }
  .hero-logos .ttl {
    text-align: center;
  }
}
@media (min-width: 481px) {
  .hero__img .mobile {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero .spttl span {
    margin-left: -5px;
  }
  .hero__img .desktop {
    display: none;
  }
  .hero .btns,
  .hero .btn {
    width: 100%;
  }
}
.logos__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6.875rem;
  flex-wrap: nowrap;
}
.logos__item {
  flex-shrink: 0;
  max-width: 100%;
  width: 3.75rem;
  height: 3.75rem;
}
.logos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logos__item.--w_80 {
  width: 5rem;
}
.logos__item.--w_100 {
  width: 6.25rem;
}

@media (max-width: 580px) {
  .logos__wrapper {
    gap: 3.75rem;
  }
}
.security .overlay {
  opacity: 0;
}
.security .blocks,
.security .block {
  width: 100%;
}
.security .video-player {
  position: relative;
  width: 100%;
  max-width: 56rem;
  aspect-ratio: 16/10;
  margin: auto;
  border-radius: 1.25rem;
  overflow: hidden;
}
.security .video-player .video-js {
  width: 100%;
  height: 100%;
}
.security .video-player iframe,
.security .video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.security .video-player__layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.security .video-player__layer .blur,
.security .video-player__layer .ttl,
.security .video-player__layer .text {
  opacity: 0;
}
.security .video-player__layer .blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3.125rem);
}
.security .video-player__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  position: absolute;
  inset: 0;
  max-width: 35.9375rem;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.security__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  max-width: 25.9375rem;
  margin-inline: auto;
  margin-bottom: 6.25rem;
}

@media (min-width: 1025px) {
  .security__info {
    display: none;
  }
}
@media (max-width: 1024px) {
  .security.--full_height {
    height: auto;
  }
  .security .video-player {
    max-width: 100%;
  }
}
@media (max-width: 580px) {
  .security__info {
    margin-bottom: 3.125rem;
  }
}
.screens {
  min-height: 100vh;
}
.screens__blocks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.screens__block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 23.125rem;
  width: 100%;
  height: 100vh;
}
.screens__block .ttl,
.screens__block .text {
  font-weight: 500;
}
.screens-imgs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: 50rem;
}
.screens-imgs__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  width: 100%;
  height: 29.25rem;
}
.screens__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 2em;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.screens__img.active {
  opacity: 1;
}
.screens .blocks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.75rem;
}

@media (min-width: 1025px) {
  .screens__block img {
    display: none;
  }
}
@media (max-width: 1024px) {
  .screens {
    min-height: auto;
  }
  .screens .blocks {
    gap: unset;
  }
  .screens__blocks {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3.125rem;
    width: 100%;
  }
  .screens__block, .screens-imgs {
    height: auto;
  }
  .screens__block {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    max-width: 100%;
  }
  .screens__block .text {
    max-width: 20.9375rem;
    margin-inline: auto;
  }
  .screens__block img {
    margin-top: 1.25rem;
  }
  .screens-imgs {
    display: none;
  }
}
.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta .ttl,
.cta .text,
.cta .btns {
  opacity: 0;
}
.cta .wrapper {
  position: relative;
  z-index: 10;
}
.cta .blocks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.cta .block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
}
.cta-bottom {
  position: absolute;
  bottom: 70px;
  width: 100%;
}
.cta-bottom__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cta__links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .cta {
    height: auto;
    min-height: 100dvh;
    padding-top: 4.375rem;
    padding-bottom: 0;
  }
  .cta__links {
    order: 1;
  }
  .cta__menu {
    order: 2;
  }
  .cta__copyright {
    order: 3;
    padding-top: 3.125rem;
  }
  .cta .wrapper {
    height: auto;
  }
  .cta .blocks {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 5.625rem;
  }
  .cta .block {
    margin-top: unset;
  }
  .cta-bottom {
    position: relative;
    bottom: unset;
    padding-bottom: 2.75rem;
  }
  .cta-bottom .wrapper {
    height: unset;
  }
  .cta-bottom__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .cta .ttl,
  .cta .text,
  .cta .btns {
    opacity: 1;
  }
  .cta .menu ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
.leaks__top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
.leaks__charts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
.leaks__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 5rem;
  flex-wrap: nowrap;
  width: 100%;
  padding-bottom: 6.55rem;
}
.leaks__player {
  max-width: 50rem;
  width: 100%;
}
.leaks__texts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  position: relative;
  max-width: 25rem;
  width: 100%;
}
.leaks__text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  position: absolute;
  width: 100%;
  opacity: 0;
}
.leaks__text .ttl, .leaks__text p {
  font-weight: 500;
}
.leaks__text.active {
  opacity: 1;
  visibility: visible;
}
.leaks .blocks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
}
.leaks .block {
  width: 100%;
}

.chart__img {
  position: relative;
}
.chart__img span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: absolute;
  top: 1.1rem;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 1280px) {
  .leaks__info {
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 1025px) {
  .leaks__text.--mobile {
    display: none;
  }
}
@media (max-width: 1024px) {
  .leaks.--full_height {
    height: auto;
  }
  .leaks .blocks {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
  }
  .leaks__top {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
  }
  .leaks__top .ttl {
    text-align: center;
  }
  .leaks__info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    padding-bottom: 0;
  }
  .leaks__text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    position: relative;
  }
  .leaks__text:not(.--mobile) {
    display: none;
  }
  .leaks__player {
    max-width: 100%;
  }
  .chart__img {
    margin-top: 0.9375rem;
  }
}
@media (max-width: 480px) {
  .leaks__charts {
    gap: 1.25rem;
    flex-wrap: nowrap;
  }
  .chart .ttl {
    line-height: 0.9375rem;
  }
}
@media (max-height: 820px) {
  .leaks__player {
    max-width: 40rem;
  }
}
.sample {
  padding-bottom: 6.25rem;
}
.sample__top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.9375rem;
}
.sample__content {
  margin-top: var(--spacing-40);
}