@font-face {
  font-family: "Kanit";
  font-display: swap;
  src: url("../font/Kanit/Kanit-Light.woff") format("woff"), url("../font/Kanit/Kanit-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Kanit";
  font-display: swap;
  src: url("../font/Kanit/Kanit-Regular.woff") format("woff"), url("../font/Kanit/Kanit-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Kanit";
  font-display: swap;
  src: url("../font/Kanit/Kanit-SemiBold.woff") format("woff"), url("../font/Kanit/Kanit-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Kanit";
  font-display: swap;
  src: url("../font/Kanit/Kanit-Bold.woff") format("woff"), url("../font/Kanit/Kanit-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Kanit";
  font-display: swap;
  src: url("../font/Kanit/Kanit-Black.woff") format("woff"), url("../font/Kanit/Kanit-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

/* Trial Form Styles */
/* Global scroll fix for trial form page */
body.trial-form-page,
html {
  height: auto !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.trial-form .form-page {
  /* background-color: #001E4A; */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem 4rem 1rem;
  font-family: "Kanit", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.trial-form .form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 25, 255, 0.3);
  position: relative;
  margin: 0 auto;
}

.trial-form .form-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(142.95deg, #00e0ff 15.31%, #bd00ff 88.32%);
  border-radius: 22px;
  z-index: -1;
}

.trial-form .form-logo {
  text-align: center;
  margin-bottom: 2rem;
  /* margin-top: 2rem; */
  position: relative;
  z-index: 2;
}

.trial-form .form-logo img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.trial-form .form-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #001E4A;
  margin-bottom: 2rem;
}

.trial-form .form-group {
  margin-bottom: 1.5rem;
}

.trial-form .form-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.trial-form .form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Kanit", sans-serif;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.trial-form .form-input:focus {
  outline: none;
  border-color: #0019FF;
  box-shadow: 0 0 0 3px rgba(0, 25, 255, 0.1);
}

.trial-form .form-input::placeholder {
  color: #999;
  font-weight: 300;
}

.trial-form .form-input.error {
  border-color: #ff4444;
  background-color: #fff5f5;
}

.trial-form .form-input.error:focus {
  border-color: #ff4444;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.trial-form label.error {
  color: #ff4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.trial-form .error {
  border-color: #ff4444 !important;
  background-color: #fff5f5 !important;
}

.trial-form .error:focus {
  border-color: #ff4444 !important;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1) !important;
}

.trial-form .required {
  color: #ff4444;
  font-weight: bold;
}

.trial-form .form-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(142.95deg, #00e0ff 15.31%, #bd00ff 88.32%);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Kanit", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.trial-form .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 224, 255, 0.3);
}

.trial-form .form-submit:active {
  transform: translateY(0);
}

.trial-form .form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.trial-form .form-error {
  color: #ff4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.trial-form .form-success {
  background: #4CAF50;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}

.trial-form .loading {
  display: none;
  text-align: center;
  margin-top: 1rem;
}

.trial-form .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0019FF;
  border-radius: 50%;
  animation: trial-form-spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes trial-form-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive design for trial form */
@media (max-width: 768px) {
  .trial-form .form-page {
    padding: 1rem 0.5rem 3rem 0.5rem;
    justify-content: flex-start;
    min-height: 100vh;
  }
  
  .trial-form .form-container {
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 800px;
  }

  .trial-form .form-title {
    font-size: 1.5rem;
  }
  
  .trial-form .form-logo {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }
  
  .trial-form .form-logo img {
    max-width: 250px;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html,
body {
  font-family: "Kanit";
}

body {
  background-color: #001E4A;
  height: 200vh;
  overflow: hidden;
}

body.loaded {
  overflow-y: auto;
}

.site-wrapper {
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}

.clear-space {
  height: 100px;
}

.clear-space_h_xl {
  height: 440px;
}

.clear-space_h_l {
  height: 62px;
}

.clear-space_h_xs {
  height: 18px;
}

.clear-space_h_2xs {
  height: 6px;
}

.black-hole_absorption-force_xs {
  margin-bottom: -10px;
}

.blue-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 23px;
  background-color: #0019FF;
  z-index: -1;
}

.blue-line_fixed {
  top: 0;
  left: 0;
  position: fixed;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.blue-line_fixed.scrolled {
  height: 80px;
}

.mouse {
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.sign-me-now-section {
  position: relative;
  height: 180px;
  margin-bottom: 90px;
}

.sign-me-now-section .sign-me-up {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.site-preloader {
  background-color: white;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.loaded .site-preloader {
  -webkit-animation: preloader 1500ms ease-out 500ms 1 normal forwards;
  animation: preloader 1500ms ease-out 500ms 1 normal forwards;
}

@-webkit-keyframes preloader {
  40% {
    background-color: #001E4A;
  }

  100% {
    pointer-events: none;
    background-color: transparent;
  }
}

@keyframes preloader {
  40% {
    background-color: #001E4A;
  }

  100% {
    pointer-events: none;
    background-color: transparent;
  }
}

.site-preloader .cloud {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  height: 100%;
}

.site-preloader .cloud .cloud__img-wrapper {
  height: 100%;
}

.site-preloader .cloud:nth-child(1) img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.site-preloader .cloud:nth-child(2) img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top right;
  object-position: top right;
}

.site-preloader .cloud:nth-child(3) img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.loaded .site-preloader .cloud:nth-child(1) {
  -webkit-animation: preloader-cloud-1 4500ms ease-in 100ms 1 normal forwards;
  animation: preloader-cloud-1 4500ms ease-in 100ms 1 normal forwards;
}

.loaded .site-preloader .cloud:nth-child(2) {
  -webkit-animation: preloader-cloud-2 4500ms ease-in 100ms 1 normal forwards;
  animation: preloader-cloud-2 4500ms ease-in 100ms 1 normal forwards;
}

.loaded .site-preloader .cloud:nth-child(3) {
  -webkit-animation: preloader-cloud-3 3000ms linear 100ms 1 normal forwards;
  animation: preloader-cloud-3 3000ms linear 100ms 1 normal forwards;
}

@-webkit-keyframes preloader-cloud-1 {
  to {
    -webkit-transform: translate(-150%) scale(1.5);
    transform: translate(-150%) scale(1.5);
  }
}

@keyframes preloader-cloud-1 {
  to {
    -webkit-transform: translate(-150%) scale(1.5);
    transform: translate(-150%) scale(1.5);
  }
}

@-webkit-keyframes preloader-cloud-2 {
  to {
    -webkit-transform: translate(150%) scale(1.5);
    transform: translate(150%) scale(1.5);
  }
}

@keyframes preloader-cloud-2 {
  to {
    -webkit-transform: translate(150%) scale(1.5);
    transform: translate(150%) scale(1.5);
  }
}

@-webkit-keyframes preloader-cloud-3 {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes preloader-cloud-3 {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.title-1 {
  position: relative;
  z-index: 10;
  font-size: 4rem;
  font-weight: 900;
  line-height: 74%;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

.title-1_middle {
  font-size: 4rem;
  line-height: 90%;
}

.title-2 {
  font-size: 2rem;
  max-width: 860px;
  font-weight: 500;
  line-height: 106%;
  color: #FF9900;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

.title-2_v_2 {
  padding-left: 0;
  text-align: center;
  margin-left: auto;
}

.play {
  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;
  width: 60px;
  height: 60px;
  background-size: 50%;
  background-color: #0019FF;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: none;
  outline: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  cursor: pointer;
}

.svg .play {
  background-image: url(../img/icon/play.svg);
}

.no-svg .webp .play {
  background-image: url(../img/icon/play.webp);
}

.no-svg .no-webp .play {
  background-image: url(../img/icon/play.png);
}

.menu-toggler {
  position: relative;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  padding: 0;
}

.menu-toggler span {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.menu-toggler span::after,
.menu-toggler span::before {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: white;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.menu-toggler span::before {
  -webkit-transform: translateX(-13px);
  -ms-transform: translateX(-13px);
  transform: translateX(-13px);
}

.menu-toggler span::after {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

.menu-toggler_active span {
  background-color: #171717;
}

.menu-toggler_active span::before {
  background-color: #171717;
}

.menu-toggler_active span::after {
  background-color: #171717;
}

.menu-hide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 40px;
  background-color: transparent;
}

.menu-hide.mouse:hover {
  opacity: 0.7;
}

.menu-hide span {
  position: absolute;
  display: block;
  width: 36px;
  height: 2px;
  background-color: #171717;
}

.menu-hide span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-hide span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.button-1 {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.95em 2em 1em;
  border-radius: 0.5em;
  background: -o-linear-gradient(300deg, rgb(232, 141, 255) 5%, rgb(0, 179, 255) 98%);
  background: linear-gradient(150deg, rgb(232, 141, 255) 5%, rgb(0, 179, 255) 98%);
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  text-decoration: none;
  margin: 0 auto;
}

.button-1.mouse:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.accordion-block {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.accordion-block__toggler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 14px;
  padding-top: 0;
  padding-bottom: 1em;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  cursor: pointer;
}

.accordion-block__toggler h3 {
  padding-right: 30px;
}

.accordion-block__toggler::after {
  position: absolute;
  right: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(0, 0.5em);
  -ms-transform: translate(0, 0.5em);
  transform: translate(0, 0.5em);
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.accordion-block__toggler.mouse:hover {
  opacity: 0.7;
}

.accordion-block__content {
  overflow: hidden;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.accordion-block__content_closed {
  max-height: 0px !important;
}

.accordion-block__content-text-wrapper {
  padding: 0 0 0.8em;
}

.accordion-block_active .accordion-block__toggler::after {
  -webkit-transform: translate(0, 0.8em) rotate(-180deg);
  -ms-transform: translate(0, 0.8em) rotate(-180deg);
  transform: translate(0, 0.8em) rotate(-180deg);
}

.svg .accordion-block__toggler::after {
  background-image: url(../img/icon/arrow-1.svg);
}

.no-svg.webp .accordion-block__toggler::after {
  background-image: url(../img/icon/arrow-1.webp);
}

.no-svg.no-webp .accordion-block__toggler::after {
  background-image: url(../img/icon/arrow-1.png);
}

.logo {
  display: block;
  width: 330px;
  height: 105px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  text-decoration: none;
}

.logo.mouse:hover {
  opacity: 0.7;
}

.webp .logo {
  background-image: url(../img/other/logo.webp);
}

.no-webp .logo {
  background-image: url(../img/other/logo.png);
}

.decor {
  position: absolute;
  pointer-events: none;
}

.decor img {
  width: 100%;
  display: block;
}

.decor_faq {
  top: 0;
  right: 0;
  z-index: 1;
  width: 120px;
  -webkit-transform: translate(10%, -50%);
  -ms-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}

.decor_equals {
  top: 50%;
  right: 0;
  z-index: 1;
  width: 72px;
  -webkit-transform: translate(35%, -55%);
  -ms-transform: translate(35%, -55%);
  transform: translate(35%, -55%);
}

.decor_exclamation-point {
  left: 70%;
  top: -90px;
  width: 100px;
  -webkit-transform: translate(-11%, -40.5%);
  -ms-transform: translate(-11%, -40.5%);
  transform: translate(-11%, -40.5%);
}

.decor_q {
  left: 0;
  width: 120px;
  top: 0;
  -webkit-transform: translate(-44%, -45%);
  -ms-transform: translate(-44%, -45%);
  transform: translate(-44%, -45%);
}

.sign-me-up {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  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;
  border-radius: 50%;
  background: -o-linear-gradient(307.05deg, #00e0ff 15.31%, #bd00ff 88.32%);
  background: linear-gradient(142.95deg, #00e0ff 15.31%, #bd00ff 88.32%);
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  width: 180px;
  height: 180px;
  -webkit-transform: translate(65%, -50%);
  -ms-transform: translate(65%, -50%);
  transform: translate(65%, -50%);
}

.sign-me-up__bg {
  background: -o-linear-gradient(307.05deg, #00e0ff 15.31%, #bd00ff 88.32%);
  background: linear-gradient(142.95deg, #00e0ff 15.31%, #bd00ff 88.32%);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: scale-and-swing 5000ms ease-in-out 0ms infinite alternate;
  animation: scale-and-swing 5000ms ease-in-out 0ms infinite alternate;
}

.sign-me-up__el {
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 100%;
  color: #ffffff;
}

.sign-me-up__el_1 {
  position: absolute;
  left: 20px;
  -webkit-transform: translate(0, -75%) rotate(15deg);
  -ms-transform: translate(0, -75%) rotate(15deg);
  transform: translate(0, -75%) rotate(15deg);
}

.sign-me-up__el_2 {
  position: absolute;
  left: 20px;
  -webkit-transform: translate(-8px, 12%) rotate(15deg);
  -ms-transform: translate(-8px, 12%) rotate(15deg);
  transform: translate(-8px, 12%) rotate(15deg);
}

.sign-me-up__el_3 {
  position: absolute;
  opacity: 0;
}

.sign-me-up__el_hidden {
  opacity: 0;
}

.sign-me-up_now {
  position: relative;
  top: unset !important;
  right: unset !important;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
}

.sign-me-up_now .sign-me-up__bg {
  background: -o-linear-gradient(307.05deg, #00f0ff 15.32%, #1000c5 88.32%);
  background: linear-gradient(142.95deg, #00f0ff 15.32%, #1000c5 88.32%);
  -webkit-box-shadow: 0px 0px 100px rgba(0, 102, 255, 0.49);
  box-shadow: 0px 0px 100px rgba(0, 102, 255, 0.49);
}

@-webkit-keyframes scale-and-swing {
  from {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  to {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

@keyframes scale-and-swing {
  from {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  to {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

.cloud {
  position: absolute;
  z-index: -1;
  width: 100%;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.cloud__img-wrapper {
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-animation: cloud-moving 15s linear 0ms infinite alternate;
  animation: cloud-moving 15s linear 0ms infinite alternate;
}

.cloud img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  opacity: 0;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.cloud_1l-p {
  top: 0;
  left: 0;
  height: 100%;
  -webkit-transform: translate(-10%, 0);
  -ms-transform: translate(-10%, 0);
  transform: translate(-10%, 0);
}

.cloud_1l-p img {
  -o-object-position: left;
  object-position: left;
}

.cloud_1r-p {
  top: 0;
  right: 0;
  height: 100%;
  -webkit-transform: translate(10%, 0);
  -ms-transform: translate(10%, 0);
  transform: translate(10%, 0);
}

.cloud_1r-p img {
  -o-object-position: right;
  object-position: right;
}

.cloud_1c-p {
  top: 0;
  right: 0;
  height: 100%;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.cloud_1l {
  top: 0;
  left: 0;
  max-width: 1100px;
  -webkit-transform: translate(-10%, 0);
  -ms-transform: translate(-10%, 0);
  transform: translate(-10%, 0);
}

.cloud_1l img {
  -o-object-position: left;
  object-position: left;
}

.cloud_1r {
  top: 0;
  right: 0;
  max-width: 830px;
  -webkit-transform: translate(10%, 0);
  -ms-transform: translate(10%, 0);
  transform: translate(10%, 0);
}

.cloud_1r img {
  -o-object-position: right;
  object-position: right;
}

.cloud_2r {
  top: 50%;
  right: 0;
  -webkit-transform: translate(10%, -50%);
  -ms-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
  max-width: 710px;
}

.cloud_2r img {
  -o-object-position: right;
  object-position: right;
}

.cloud_3l {
  top: 0;
  left: 0;
  -webkit-transform: translate(-10%, -20%);
  -ms-transform: translate(-10%, -20%);
  transform: translate(-10%, -20%);
  max-width: 500px;
}

.cloud_3l img {
  -o-object-position: left;
  object-position: left;
}

.cloud_4r {
  top: 0;
  right: 0;
  max-width: 630px;
  -webkit-transform: translate(10%, 0);
  -ms-transform: translate(10%, 0);
  transform: translate(10%, 0);
}

.cloud_4r img {
  -o-object-position: right;
  object-position: right;
}

.cloud_5r {
  top: 10%;
  right: 0;
  max-width: 750px;
  -webkit-transform: translate(10%, 0);
  -ms-transform: translate(10%, 0);
  transform: translate(10%, 0);
}

.cloud_5r img {
  -o-object-position: right;
  object-position: right;
}

.cloud_6l {
  top: 0;
  left: 0;
  -webkit-transform: translate(-10%, -5%);
  -ms-transform: translate(-10%, -5%);
  transform: translate(-10%, -5%);
  max-width: 900px;
}

.cloud_6l img {
  -o-object-position: left;
  object-position: left;
}

.cloud_7r {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(10%, 45%);
  -ms-transform: translate(10%, 45%);
  transform: translate(10%, 45%);
  max-width: 980px;
}

.cloud_7r img {
  -o-object-position: right;
  object-position: right;
}

.cloud_8c {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
  -ms-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
}

.cloud_8c img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.cloud_9l {
  top: 0;
  left: 0;
  -webkit-transform: translate(-10%, -5%);
  -ms-transform: translate(-10%, -5%);
  transform: translate(-10%, -5%);
  max-width: 1100px;
}

.cloud_9l img {
  -o-object-position: left;
  object-position: left;
}

.cloud_9r {
  top: 50%;
  right: 0;
  -webkit-transform: translate(10%, -40%);
  -ms-transform: translate(10%, -40%);
  transform: translate(10%, -40%);
  max-width: 900px;
}

.cloud_9r img {
  -o-object-position: right;
  object-position: right;
}

.cloud_10l {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-10%, -50%);
  -ms-transform: translate(-10%, -50%);
  transform: translate(-10%, -50%);
  max-width: 1150px;
}

.cloud_10l img {
  -o-object-position: left;
  object-position: left;
}

.cloud_11l {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-10%, 40%);
  -ms-transform: translate(-10%, 40%);
  transform: translate(-10%, 40%);
  max-width: 680px;
}

.cloud_11l img {
  -o-object-position: left;
  object-position: left;
}

.cloud_11r {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(10%, 50%);
  -ms-transform: translate(10%, 50%);
  transform: translate(10%, 50%);
  max-width: 1050px;
}

.cloud_11r img {
  -o-object-position: right;
  object-position: right;
}

@-webkit-keyframes cloud-moving {
  to {
    -webkit-transform: scale(1.05) rotate(1deg);
    transform: scale(1.05) rotate(1deg);
  }
}

@keyframes cloud-moving {
  to {
    -webkit-transform: scale(1.05) rotate(1deg);
    transform: scale(1.05) rotate(1deg);
  }
}

.video {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.video__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 53.6%;
  cursor: pointer;
}

.video__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.384)), to(rgba(0, 0, 0, 0.36)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.384) 0%, rgba(0, 0, 0, 0.36) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.384) 0%, rgba(0, 0, 0, 0.36) 100%);
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.video__wrapper .play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
}

.video__wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video.mouse:hover .video__wrapper::before {
  opacity: 0.7;
}

.video.mouse:hover .play {
  opacity: 0.7;
}

.video_is_playing .video__wrapper::before {
  pointer-events: none;
  opacity: 0 !important;
}

.video_is_playing .play {
  pointer-events: none;
  opacity: 0 !important;
}

.loaded .video__wrapper {
  background: url(../img/other/j.jpg) center center/cover no-repeat;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-top: 45px;
  background-color: transparent;
  -webkit-transition: all ease-in 200ms;
  -o-transition: all ease-in 200ms;
  transition: all ease-in 200ms;
}

.header .menu-toggler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__container {
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.header__row-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  gap: 1.4rem;
}

.header__nav {
  display: none;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.header__nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.4rem;
  font-size: 20px;
  height: 1em;
  padding: 0;
  margin: 0;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.header__nav-list-item {
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.header__nav-link {
  font-weight: 600;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.header .logo {
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  width: 280px;
  height: 80px;
}

.header.scrolled {
  padding-top: 1px;
  -webkit-animation: colorizeHeader 150ms linear 150ms 1 forwards;
  animation: colorizeHeader 150ms linear 150ms 1 forwards;
}

.header.scrolled .header__nav {
  padding-top: 0;
}

.header.scrolled .header__nav-list {
  height: 100%;
}

.header.scrolled .logo {
  width: 280px;
  height: 80px;
}

.header.scrolled .menu-toggler {
  height: 80px;
}

@-webkit-keyframes colorizeHeader {
  to {
    background-color: #0019FF;
  }
}

@keyframes colorizeHeader {
  to {
    background-color: #0019FF;
  }
}

@-webkit-keyframes uncolorizeHeader {
  to {
    background-color: transparent;
  }
}

@keyframes uncolorizeHeader {
  to {
    background-color: transparent;
  }
}

.footer {
  padding: 16px 0 36px;
}

.footer__row-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 0;
  gap: 15px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
  list-style: none;
}

.footer__nav-link {
  font-weight: 600;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.footer__copyright {
  padding-top: 16px;
}

.footer__copyright small {
  display: block;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  color: #FFFFFF;
}

.footer__copyright a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

.footer__copyright a.mouse:hover {
  opacity: 0.7;
}

.footer .logo {
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.menu-1 {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  width: 100%;
  max-width: 480px;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.menu-1_active {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  overflow: unset;
}

.menu-1 *::-moz-selection {
  background-color: transparent;
}

.menu-1 *::selection {
  background-color: transparent;
}

.menu-1__html-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -100;
  width: calc(100% + 100vw);
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.menu-1_active .menu-1__html-overlay {
  display: block;
}

.menu-1__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background-color: white;
  -webkit-box-shadow: 2px 4px 12px rgba(23, 23, 23, 0.1);
  box-shadow: 2px 4px 12px rgba(23, 23, 23, 0.1);
}

.menu-1__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: 2rem;
  padding: 1rem 2rem;
}

.menu-1__hide {
  margin-left: auto;
}

.menu-1__ui-icon {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.menu-1__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.menu-1__menu::-webkit-scrollbar {
  width: 12px;
  background-color: white;
}

.menu-1__menu::-webkit-scrollbar-track {
  background-color: transparent;
}

.menu-1__menu::-webkit-scrollbar-thumb {
  background-color: #171717;
  border: 4px solid white;
}

.menu-1__menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.menu-1__menu-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  background-color: transparent;
  margin: 0;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.menu-1__menu-list-item {
  display: block;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
}

.menu-1__menu-list-item_has_children .menu-1__menu-list {
  display: none;
  padding-left: 1.5rem;
  border-bottom: 1px solid #0019FF;
}

.menu-1__menu-list-item_has_children .menu-1__menu-list_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-1__menu-list-item_has_children .menu-1__menu-list .menu-1__menu-link {
  font-size: 2rem;
}

.menu-1__menu-link {
  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: 1em;
  width: 100%;
  padding: 0.6em 2rem;
  background-color: transparent;
  font-size: 2rem;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  margin: 0;
}

.menu-1__menu-link_active {
  background-color: #0019FF;
  padding: 0.8em 2rem;
}

.menu-1__menu-link_active .menu-1__menu-link-arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.menu-1__menu-link.mouse:hover {
  opacity: 0.7;
}

.menu-1__menu-link-arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 16px;
  height: 24px;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.menu-1__menu-link-arrow::before,
.menu-1__menu-link-arrow::after {
  position: absolute;
  right: 0;
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #171717;
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
}

.menu-1__menu-link-arrow::before {
  -webkit-transform: translate(0, -240%) rotate(45deg);
  -ms-transform: translate(0, -240%) rotate(45deg);
  transform: translate(0, -240%) rotate(45deg);
}

.menu-1__menu-link-arrow::after {
  -webkit-transform: translate(0, 240%) rotate(-45deg);
  -ms-transform: translate(0, 240%) rotate(-45deg);
  transform: translate(0, 240%) rotate(-45deg);
}

.card-1 {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 22px;
  -moz-column-gap: 22px;
  column-gap: 22px;
  row-gap: 1em;
  padding: 30px 25px 40px 30px;
  background: rgba(23, 53, 162, 0.8);
  border-radius: 50px;
}

.card-1_gap_l {
  row-gap: 38px;
}

.card-1_gap_0 {
  row-gap: 0;
}

.card-1_cols_1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.card-1_cols_2 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.card-1_default-fweight_300 p {
  font-weight: 300;
}

.card-1 h3,
.card-1 p {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 148%;
  color: #FFFFFF;
  margin: 0;
}

.card-1 h3 small,
.card-1 h3 span,
.card-1 h3 u,
.card-1 p small,
.card-1 p span,
.card-1 p u {
  display: inline-block;
  padding-top: 1px;
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
}

.card-2 {
  position: relative;
  padding: 30px 25px 45px 30px;
  background: rgba(23, 53, 162, 0.8);
  border-radius: 50px;
}

.card-2_pb_l {
  padding-bottom: 68px;
}

.card-2 h3 {
  font-size: 1.4rem;
  line-height: 148%;
  color: #FFFFFF;
  font-weight: 400;
  margin: 1em 0;
}

.card-2 h3:first-child {
  margin-top: 0;
}

.card-2 h3:last-child {
  margin-bottom: 0;
}

.card-2 p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 150%;
  color: #FFFFFF;
  margin: 1em 0;
}

.card-2 p:first-child {
  margin-top: 0;
}

.card-2 p:last-child {
  margin-bottom: 0;
}

.card-2 p b,
.card-2 p strong,
.card-2 p span {
  font-weight: 700;
}

.card-2 ul {
  padding-left: 0;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 175%;
  color: #FFFFFF;
  list-style: none;
  margin: 1em 0;
}

.card-2 ul:first-child {
  margin-top: 0;
}

.card-2 ul:last-child {
  margin-bottom: 0;
}

.card-2 ul li {
  position: relative;
  padding-left: 1.46em;
}

.card-2 ul li::before {
  content: "";
  position: absolute;
  left: 0.58em;
  top: 0.78em;
  display: block;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
}

.gallery-card-1 {
  position: relative;
}

.gallery-card-1__preview {
  -webkit-transition: all linear 200ms;
  -o-transition: all linear 200ms;
  transition: all linear 200ms;
  cursor: pointer;
}

.gallery-card-1__preview.mouse:hover {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.gallery-card-1__preview img {
  display: block;
  width: 100%;
}

.gallery-card-1__img-wrapper {
  -webkit-animation: gallery-card-moving 12s linear 0ms infinite alternate;
  animation: gallery-card-moving 12s linear 0ms infinite alternate;
}

.gallery-card-1__full_open {
  display: block;
}

.gallery-card-1__full img {
  display: block;
  width: 100%;
}

@-webkit-keyframes gallery-card-moving {
  to {
    -webkit-transform: scale(1.05) rotate(-1deg);
    transform: scale(1.05) rotate(-1deg);
  }
}

@keyframes gallery-card-moving {
  to {
    -webkit-transform: scale(1.05) rotate(-1deg);
    transform: scale(1.05) rotate(-1deg);
  }
}

.layout-1 {
  position: relative;
  padding: 260px 0 54px;
}

.layout-2 {
  position: relative;
  padding: 36px 0 30px;
}

.layout-2__gallery-wrapper {
  max-width: 1440px;
}

.layout-3 {
  position: relative;
}

.layout-3__container {
  max-width: 1280px;
}

.layout-3__list {
  display: block;
  -webkit-columns: 1;
  -moz-columns: 1;
  columns: 1;
  -webkit-column-gap: 36px;
  -moz-column-gap: 36px;
  column-gap: 36px;
  list-style: none;
  padding: 0;
}

.layout-3__list-item {
  display: inline-block;
  margin-bottom: 38px;
}

.layout-3__list-item:nth-child(3) {
  margin-bottom: 38px;
}

.layout-3__list-item:nth-child(4) {
  margin-top: 0;
}

.layout-4 {
  position: relative;
  padding: 57px 0 6px;
}

.layout-4__container {
  max-width: 1280px;
}

.layout-4__list {
  padding-top: 19px;
  -webkit-columns: 1;
  -moz-columns: 1;
  columns: 1;
  -webkit-column-gap: 36px;
  -moz-column-gap: 36px;
  column-gap: 36px;
  list-style: none;
  padding: 0;
}

.layout-4__list-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 36px;
}

.layout-4__list-item:nth-child(1) {
  display: block;
}

.layout-5 {
  position: relative;
  padding: 35vh 0 150px;
}

.layout-5 .title-1 {
  margin-bottom: 0.75em;
}

#see-you {
  z-index: 5;
}

.gallery-1 {
  padding: 17px 0 52px;
}

.gallery-1__list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  height: auto;
  list-style: none;
  padding: 0;
}

.gallery-1__list-item {
  position: relative;
  width: 100%;
}

.gallery-1__list-item:nth-child(1) {
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  -webkit-transform: rotate(-8.14deg);
  -ms-transform: rotate(-8.14deg);
  transform: rotate(-8.14deg);
}

.gallery-1__list-item:nth-child(2) {
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  -webkit-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  z-index: 1;
}

.gallery-1__list-item:nth-child(3) {
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  -webkit-transform: rotate(5.98deg);
  -ms-transform: rotate(5.98deg);
  transform: rotate(5.98deg);
}

.gallery-1__list-item:nth-child(4) {
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  -webkit-transform: rotate(-6.3deg);
  -ms-transform: rotate(-6.3deg);
  transform: rotate(-6.3deg);
}

.writingor--modal {
  position: relative;
  z-index: -1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  width: 100%;
  max-width: 660px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px 20px 20px;
  background: white;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: auto;
}

.writingor--modal_active {
  display: block;
  z-index: 1000;
}

.writingor--modal__hide {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.writingor--modal__hide::after,
.writingor--modal__hide::before {
  content: "";
  position: absolute;
  display: block;
  width: 36px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.5);
}

.writingor--modal__hide::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.writingor--modal__hide::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.writingor--body-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  overflow-y: auto;
  scrollbar-width: none;
}

.writingor--body-overlay::-webkit-scrollbar {
  display: none;
}

.writingor--body-overlay_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.writingor--body_locked {
  overflow: hidden;
}

.writingor--modals-heap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

#threejs {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#webgi-canvas {
  pointer-events: none;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
}

#webgi-canvas-container {
  opacity: 0 !important;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

body.loaded #webgi-canvas-container {
  opacity: 1 !important;
}

body.loaded #webgi-canvas-container.scrolled {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

#webgi-canvas-3 {
  pointer-events: none;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
}

#webgi-canvas-container-3 {
  opacity: 0 !important;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

body.loaded #webgi-canvas-container-3.scrolled {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
}

#webgi-canvas-2 {
  pointer-events: none;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-filter: brightness(1.4);
  filter: brightness(1.4);
}

#webgi-canvas-container-2 {
  position: absolute;
  z-index: 50;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  -webkit-transform: translate(-50%, -32%);
  -ms-transform: translate(-50%, -32%);
  transform: translate(-50%, -32%);
}

.webp .no-svg .no-webp .play {
  background-image: url(../img/icon/play.webp);
}

.webp .no-svg.no-webp .accordion-block__toggler::after {
  background-image: url(../img/icon/arrow-1.webp);
}

.webp .no-webp .logo {
  background-image: url(../img/other/logo.webp);
}

.webp .loaded .video__wrapper {
  background: url(../img/other/j.webp) center center/cover no-repeat;
}

@media screen and (min-width: 500px) {
  .title-1 {
    font-size: 5rem;
  }
}

@media screen and (min-width: 750px) {
  .card-1 {
    padding: 40px 35px 50px 40px;
  }

  .card-2 {
    padding: 40px 35px 50px 40px;
  }
}

@media screen and (min-width: 800px) {
  .play {
    width: 80px;
    height: 80px;
  }

  .header .menu-toggler {
    display: none;
  }

  .header__nav {
    display: block;
    padding-top: 4px;
    margin: 0;
  }
}

@media screen and (min-width: 900px) {
  .header__row-content {
    gap: 44px;
  }

  .header__nav-list {
    gap: 44px;
  }

  .header .logo {
    -webkit-transform: translate(-28px);
    -ms-transform: translate(-28px);
    transform: translate(-28px);
    width: 330px;
    height: 105px;
  }
}

@media screen and (min-width: 950px) {
  .title-1 {
    font-size: 7rem;
    line-height: 90%;
  }

  .title-1_middle {
    font-size: 5rem;
    line-height: 110%;
  }

  .title-2 {
    font-size: 2.2rem;
  }

  .title-2_v_2 {
    margin-left: 0;
    padding-left: 54px;
    text-align: left;
  }

  .accordion-block__toggler::after {
    -webkit-transform: translate(0, 0.6em);
    -ms-transform: translate(0, 0.6em);
    transform: translate(0, 0.6em);
    right: 20px;
  }

  .sign-me-up__el {
    font-size: 1.6rem;
  }

  .sign-me-up_now {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  .footer {
    padding: 16px 0;
  }

  .footer__row-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer .logo {
    margin-left: -24px;
  }

  .card-1_cols_2 {
    -ms-grid-columns: 24fr 13fr;
    grid-template-columns: 24fr 13fr;
  }

  .card-1 h3,
  .card-1 p {
    font-size: 1.2rem;
  }

  .card-1 h3 small,
  .card-1 h3 span,
  .card-1 h3 u,
  .card-1 p small,
  .card-1 p span,
  .card-1 p u {
    font-size: 1.1rem;
  }

  .card-2 h3 {
    font-size: 1.45rem;
  }

  .card-2 p {
    font-size: 1.2rem;
  }

  .card-2 ul {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1000px) {
  .gallery-1__list {
    display: block;
    height: 30.9vw;
  }

  .gallery-1__list-item {
    width: 30%;
  }

  .gallery-1__list-item:nth-child(1) {
    position: absolute;
    -webkit-transform: rotate(-8.14deg) translate(0, -50%);
    -ms-transform: rotate(-8.14deg) translate(0, -50%);
    transform: rotate(-8.14deg) translate(0, -50%);
    left: -0.2%;
    top: 50%;
  }

  .gallery-1__list-item:nth-child(2) {
    position: absolute;
    top: 63%;
    left: 21.8%;
    -webkit-transform: rotate(2deg) translate(0, -50%);
    -ms-transform: rotate(2deg) translate(0, -50%);
    transform: rotate(2deg) translate(0, -50%);
  }

  .gallery-1__list-item:nth-child(3) {
    position: absolute;
    top: 50%;
    right: 23.8%;
    -webkit-transform: rotate(5.98deg) translate(0, -50%);
    -ms-transform: rotate(5.98deg) translate(0, -50%);
    transform: rotate(5.98deg) translate(0, -50%);
  }

  .gallery-1__list-item:nth-child(4) {
    position: absolute;
    right: -6%;
    top: 53%;
    -webkit-transform: rotate(-6.3deg) translate(0, -50%);
    -ms-transform: rotate(-6.3deg) translate(0, -50%);
    transform: rotate(-6.3deg) translate(0, -50%);
  }
}

@media screen and (min-width: 1050px) {
  .clear-space_h_l {
    height: 206px;
  }

  .sign-me-now-section {
    height: 240px;
    margin-bottom: 120px;
  }

  .title-1 {
    font-size: 8rem;
  }

  .title-1_middle {
    font-size: 6rem;
  }

  .title-2 {
    font-size: 2.6rem;
  }

  .play {
    height: 102px;
    width: 102px;
    background-size: auto;
  }

  .accordion-block__toggler::after {
    -webkit-transform: translate(0, 0.7em);
    -ms-transform: translate(0, 0.7em);
    transform: translate(0, 0.7em);
    width: 16px;
    right: 30px;
  }

  .decor_faq {
    width: 386px;
  }

  .decor_equals {
    width: 186px;
  }

  .decor_exclamation-point {
    left: 50%;
    top: -206px;
    width: 364px;
  }

  .decor_q {
    width: 368px;
  }

  .sign-me-up {
    width: 240px;
    height: 240px;
    -webkit-transform: translate(60%, -50%);
    -ms-transform: translate(60%, -50%);
    transform: translate(60%, -50%);
  }

  .sign-me-up__el {
    font-size: 1.9rem;
  }

  .sign-me-up_now {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  .card-1 {
    padding: 45px 40px 55px 45px;
  }

  .card-1 h3,
  .card-1 p {
    font-size: 1.4rem;
  }

  .card-1 h3 small,
  .card-1 h3 span,
  .card-1 h3 u,
  .card-1 p small,
  .card-1 p span,
  .card-1 p u {
    font-size: 1.15rem;
  }

  .card-2 {
    padding: 45px 40px 55px 45px;
  }

  .card-2 h3 {
    font-size: 1.5rem;
  }

  .card-2 p {
    font-size: 1.4rem;
  }

  .card-2 ul {
    font-size: 1.4rem;
  }

  .layout-3__list {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }

  .layout-3__list-item:nth-child(3) {
    margin-bottom: 0;
  }

  .layout-3__list-item:nth-child(4) {
    margin-top: 90px;
  }

  .layout-4 {
    padding: 157px 0 6px;
  }

  .layout-4__list {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}

@media screen and (min-width: 1250px) {
  .sign-me-now-section {
    height: 280px;
    margin-bottom: 140px;
  }

  .title-1 {
    font-size: 150px;
  }

  .title-1_middle {
    font-size: 100px;
  }

  .title-2 {
    font-size: 45px;
  }

  .accordion-block__toggler {
    padding-top: 4px;
    padding-bottom: 27px;
  }

  .accordion-block__toggler h3 {
    padding-right: 0;
  }

  .accordion-block__toggler::after {
    position: unset;
    right: unset;
    width: 18px;
    -webkit-transform: translate(0, 0.8em);
    -ms-transform: translate(0, 0.8em);
    transform: translate(0, 0.8em);
  }

  .accordion-block__content-text-wrapper {
    padding: 0 0 37px;
  }

  .sign-me-up {
    width: 280px;
    height: 280px;
    -webkit-transform: translate(55%, -50%);
    -ms-transform: translate(55%, -50%);
    transform: translate(55%, -50%);
  }

  .sign-me-up__el {
    font-size: 40px;
  }

  .sign-me-up_now {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  .card-1 {
    padding: 50px 44px 60px 53px;
    row-gap: 28px;
  }

  .card-1 h3,
  .card-1 p {
    font-size: 25px;
  }

  .card-1 h3 small,
  .card-1 h3 span,
  .card-1 h3 u,
  .card-1 p small,
  .card-1 p span,
  .card-1 p u {
    font-size: 20px;
  }

  .card-2 {
    padding: 50px 44px 60px 53px;
  }

  .card-2 h3 {
    font-size: 25px;
    margin: 26px 0;
  }

  .card-2 p {
    font-size: 20px;
    margin: 26px 0;
  }

  .card-2 ul {
    font-size: 20px;
    margin: 30px 0;
  }
}

@media screen and (min-width: 1300px) {
  .header__container {
    -webkit-transform: translate(-50px);
    -ms-transform: translate(-50px);
    transform: translate(-50px);
  }
}

@media screen and (min-width: 1380px) {
  .header__container {
    -webkit-transform: translate(-100px);
    -ms-transform: translate(-100px);
    transform: translate(-100px);
  }
}

@media screen and (min-width: 1400px) {
  .sign-me-now-section {
    height: 314px;
    margin-bottom: 157px;
  }

  .sign-me-up {
    width: 314px;
    height: 314px;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  .sign-me-up_now {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}

@media screen and (max-width: 1000px) {
  .clear-space_h_xl {
    height: 300px;
  }

  .clear-space_h_xs {
    height: 10px;
  }

  .clear-space_h_2xs {
    height: 0;
  }
}

@media screen and (max-width: 950px) {
  .container {
    padding: 0 25px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .no-svg .webp .play {
    background-image: url(../img/icon/play@2x.webp);
  }

  .no-svg .no-webp .play {
    background-image: url(../img/icon/play@2x.png);
  }

  .webp .logo {
    background-image: url(../img/other/logo@2x.webp);
  }

  .no-webp .logo {
    background-image: url(../img/other/logo@2x.png);
  }

  .webp .no-svg .no-webp .play {
    background-image: url(../img/icon/play@2x.webp);
  }

  .webp .no-webp .logo {
    background-image: url(../img/other/logo@2x.webp);
  }
}