html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

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

a {
  background-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

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

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;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  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 {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --vh: 100vh;
  --wrapper-width: 1920px;
  --container-width: 1440px;
  --font-default: "Inter", sans-serif;
  --fz-body: 16px;
  --bg-body: #1e1a58;
  --main-color: #4362a0;
  --text-color: rgba(255, 255, 255, 0.8);
  --title-color: #fff;
  --pink-color: #f80bf4;
  --orange-color: #ff9655;
  --yellow-color: #fcea2c;
  --animation-fade: fade 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  :root {
    --container-width: 1248px;
  }
}

/* ------------------- Default -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

html.no-scroll {
  overflow: hidden !important;
}
html.no-scroll body {
  overflow: hidden !important;
}

body {
  width: 100vw;
  min-height: 100vh;
  min-width: 320px;
  background: var(--bg-body);
  color: var(--text-color);
  font-family: var(--font-default);
  font-size: var(--fz-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page__body.lock-scroll {
  overflow: hidden;
}

.page__wrapper {
  width: 100%;
  max-width: var(--wrapper-width);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.page__main {
  flex: 1;
}

.footer {
  margin-top: auto;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
}

.title-h1,
.title-h2,
.title-h3,
.title-h4,
.title-h5,
.title-h6 {
  color: var(--title-color);
  margin: 0;
  padding: 0;
}

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

a {
  cursor: pointer;
  font-size: inherit;
  color: inherit;
  transition: all 0.2s ease-in-out;
}
a:hover {
  text-decoration: none;
}

input,
button,
textarea,
select {
  font-family: var(--font-default);
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  background-color: none;
  font-size: inherit;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  border-radius: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  color: inherit;
}
input::-moz-placeholder {
  color: #666;
}
input::placeholder {
  color: #666;
}

strong {
  font-weight: bold;
  font-weight: 700;
}

ul {
  list-style: none;
}

.list-reset {
  list-style: none;
}

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

.text-accent {
  color: var(--main-color);
}

.hidden {
  display: none !important;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #fff;
}
.section-title span {
  font-weight: 300;
  font-style: italic;
  position: relative;
}
.section-title span.underlined {
  display: inline-block;
}
.section-title span.underlined::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: var(--orange-color);
  position: absolute;
  bottom: -3px;
  left: 0;
}
@media (max-width: 480px) {
  .section-title span.underlined::after {
    height: 2px;
  }
}
@media (max-width: 800px) {
  .section-title {
    font-size: 48px;
  }
}
@media (max-width: 640px) {
  .section-title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 375px) {
  .section-title {
    font-size: 28px;
  }
}

.blue-bg {
  background: #1d1955 radial-gradient(177.34% 132.74% at 11.03% -22.7%, rgb(81, 80, 162) 0%, rgb(62, 53, 148) 20.000000298%, rgb(46, 45, 134) 30.0000011921%, rgb(36, 32, 99) 50%, rgb(22, 18, 73) 89.9999976158%, rgb(22, 18, 72) 100%);
}

@keyframes fadeInBlock {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutBlock {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ------------------- LIBS -------------------- */
/* ------------------- COMPONENTS -------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000000000000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161249;
}
#preloader .spinner {
  position: relative;
  width: 64px;
  height: 64px;
}
#preloader .spinner:before, #preloader .spinner:after {
  content: "";
  display: block;
}
#preloader .spinner .spinner-bar:before, #preloader .spinner .spinner-bar:after {
  content: "";
  display: block;
}
#preloader .square {
  width: 100%;
  height: 100%;
  background-color: var(--pink-color);
  transform: scale(1) rotate(0deg);
  transform-origin: center center;
  animation: scale-rotate 3s linear 0s infinite;
}

#preloader.hide-preloader {
  animation: hidePreloader 1s;
}

#preloader.preloader-hidden {
  display: none;
}

@keyframes hidePreloader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scale-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  12.5% {
    transform: scale(0.5) rotate(45deg);
  }
  25% {
    transform: scale(1) rotate(90deg);
  }
  37.5% {
    transform: scale(0.5) rotate(135deg);
  }
  50% {
    transform: scale(1) rotate(180deg);
  }
  62.5% {
    transform: scale(0.5) rotate(225deg);
  }
  75% {
    transform: scale(1) rotate(270deg);
  }
  87.5% {
    transform: scale(0.5) rotate(315deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
.btn-top {
  cursor: pointer;
  display: inline-block;
  width: 48px;
  height: 48px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  transition: all 0.3s ease-in;
}
.btn-top.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.btn-top:hover {
  opacity: 1;
  background-color: var(--pink-color);
}
.btn-top::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m10.598 5.013 8.154 8.281c.33.33.33.865 0 1.195l-.499.5a.844.844 0 0 1-1.195 0L10 7.796 2.942 14.98a.844.844 0 0 1-1.195 0l-.5-.499a.844.844 0 0 1 0-1.195l8.155-8.281a.85.85 0 0 1 1.196.007Z' fill='%23fff'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-top:hover {
  opacity: 1;
}
@media (max-width: 599px) {
  .btn-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }
}

.nav {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 100;
}
.nav__list {
  min-width: 240px;
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.nav__list.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav__item {
  cursor: pointer;
  width: 100%;
  display: block;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.nav__item:hover {
  color: #fff;
}
.nav__item:hover::after {
  background: var(--orange-color);
  width: 100%;
}
.nav__item.active {
  cursor: default;
  color: #fff;
  border-bottom: 1px solid var(--pink-color);
}
.nav__item.active::after {
  display: none;
}
.nav__item::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--orange-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.burger {
  cursor: pointer;
  width: 32px;
  height: 28px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.burger span {
  background-color: #fff;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 3px;
  transition-duration: 500ms;
}
.burger span:nth-child(1) {
  top: 0px;
  left: 0px;
}
.burger span:nth-child(2) {
  width: 24px;
  top: 12px;
  left: 0px;
  opacity: 1;
}
.burger span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}
.burger span:not(.active):hover span:nth-child(1) {
  transform: rotate(-3deg) scaleY(1.1);
}
.burger span:not(.open):hover span:nth-child(2) {
  transform: rotate(3deg) scaleY(1.1);
}
.burger span:not(.open):hover span:nth-child(3) {
  transform: rotate(-4deg) scaleY(1.1);
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}

@media (max-width: 640px) {
  .nav {
    position: fixed;
    top: inherit;
    right: 24px;
    bottom: 24px;
  }
  .nav__list {
    top: inherit;
    right: -16px;
    bottom: 50px;
    padding: 16px;
    gap: 8px;
  }
  .burger {
    width: 24px;
    height: 24px;
  }
  .burger.active::after {
    background: var(--pink-color);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    border-color: transparent;
  }
  .burger::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(#45438d), 0.9;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    top: -11px;
    left: -13px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
  }
  .burger span:nth-child(1) {
    top: 4px;
  }
  .burger span:nth-child(3) {
    bottom: 1px;
  }
}
/* ------------------- Modal -------------------- */
.modal-success {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  pointer-events: none;
}
.modal-success.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal-success.active .modal-success__content {
  transform: none;
}
.modal-success__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  padding: 20px;
}
.modal-success__content {
  width: 100%;
  max-height: 90%;
  max-width: 440px;
  margin: auto;
  overflow: auto;
  background: #252458;
  border-radius: 24px;
  padding: 48px;
  transform: translateY(-50px);
  transition: transform 0.3s ease-in-out;
  position: relative;
  text-align: center;
}
.modal-success__icon {
  flex-shrink: 0;
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}
.modal-success__title {
  color: #fff;
  font-size: clamp(1.5rem, 0.5rem + 5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}
.modal-success__descr {
  color: var(--text-color);
}
.modal-success__close {
  cursor: pointer;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iZDExOGI1ZGIiPgogICAgPGcgaWQ9IjRkY2RmM2E3Ij4KICAgICAgPHBhdGggZD0iTTIxLjY1NjcgOC40NTc5MUw4LjQ1NzQyIDIxLjY1NzJDNy45MzY3MiAyMi4xNzc5IDcuOTM2NzIgMjMuMDIyMiA4LjQ1NzQyIDIzLjU0MjlDOC45NzgxMiAyNC4wNjM2IDkuODIyMzQgMjQuMDYzNiAxMC4zNDMgMjMuNTQyOUwyMy41NDI0IDEwLjM0MzVDMjQuMDYzMSA5LjgyMjgzIDI0LjA2MzEgOC45Nzg2MSAyMy41NDI0IDguNDU3OTFDMjMuMDIxNyA3LjkzNzIxIDIyLjE3NzQgNy45MzcyMSAyMS42NTY3IDguNDU3OTFaIiBmaWxsPSJ3aGl0ZSI+PC9wYXRoPgogICAgICA8cGF0aCBkPSJNMjMuNTQyNCAyMS42NTcyTDEwLjM0MyA4LjQ1NzkxQzkuODIyMzQgNy45MzcyMSA4Ljk3ODEyIDcuOTM3MjEgOC40NTc0MiA4LjQ1NzkxQzcuOTM2NzIgOC45Nzg2MSA3LjkzNjcyIDkuODIyODMgOC40NTc0MiAxMC4zNDM1TDIxLjY1NjcgMjMuNTQyOUMyMi4xNzc0IDI0LjA2MzYgMjMuMDIxNyAyNC4wNjM2IDIzLjU0MjQgMjMuNTQyOUMyNC4wNjMxIDIzLjAyMjIgMjQuMDYzMSAyMi4xNzc5IDIzLjU0MjQgMjEuNjU3MloiIGZpbGw9IndoaXRlIj48L3BhdGg+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=");
  background-size: cover;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.modal-success__close:hover {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iYWI2Y2QxODIiPgogICAgPGcgaWQ9IjI3NjdiMmI5Ij4KICAgICAgPHBhdGggZD0iTTIxLjY1NjcgOC40NTc5MUw4LjQ1NzQyIDIxLjY1NzJDNy45MzY3MiAyMi4xNzc5IDcuOTM2NzIgMjMuMDIyMiA4LjQ1NzQyIDIzLjU0MjlDOC45NzgxMiAyNC4wNjM2IDkuODIyMzQgMjQuMDYzNiAxMC4zNDMgMjMuNTQyOUwyMy41NDI0IDEwLjM0MzVDMjQuMDYzMSA5LjgyMjgzIDI0LjA2MzEgOC45Nzg2MSAyMy41NDI0IDguNDU3OTFDMjMuMDIxNyA3LjkzNzIxIDIyLjE3NzQgNy45MzcyMSAyMS42NTY3IDguNDU3OTFaIiBmaWxsPSIjRjgwQkY0Ij48L3BhdGg+CiAgICAgIDxwYXRoIGQ9Ik0yMy41NDI0IDIxLjY1NzJMMTAuMzQzIDguNDU3OTFDOS44MjIzNCA3LjkzNzIxIDguOTc4MTIgNy45MzcyMSA4LjQ1NzQyIDguNDU3OTFDNy45MzY3MiA4Ljk3ODYxIDcuOTM2NzIgOS44MjI4MyA4LjQ1NzQyIDEwLjM0MzVMMjEuNjU2NyAyMy41NDI5QzIyLjE3NzQgMjQuMDYzNiAyMy4wMjE3IDI0LjA2MzYgMjMuNTQyNCAyMy41NDI5QzI0LjA2MzEgMjMuMDIyMiAyNC4wNjMxIDIyLjE3NzkgMjMuNTQyNCAyMS42NTcyWiIgZmlsbD0iI0Y4MEJGNCI+PC9wYXRoPgogICAgPC9nPgogIDwvZz4KPC9zdmc+");
  opacity: 1;
}

/* ------------------- / Modal -------------------- */
.btn {
  outline: none;
  cursor: pointer;
  min-width: 248px;
  height: 64px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(128deg, #ee3786 0%, #fbac35 100%);
  border: none;
  border-radius: 12px;
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  box-shadow: none;
  transition: all 0.35s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn:hover {
  opacity: 0.8;
}
.btn.disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-stroke {
  color: #fff;
  background: transparent;
  border: 2px solid var(--orange-color);
}
.btn-stroke:hover {
  opacity: 1;
  color: var(--pink-color);
  border: 2px solid transparent;
  background: #fff;
}

.btn-wrap {
  display: flex;
  margin-top: 40px;
}

@media (max-width: 480px) {
  .btn-wrap {
    margin-top: 32px;
  }
  .btn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
  }
}
.page-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 48px;
  gap: 32px;
}
.page-items-col {
  width: 100%;
}

.page-item {
  display: flex;
  flex-direction: column;
}
.page-item:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .page-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .page-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (max-width: 640px) {
  .page-item {
    padding: 0 12px;
  }
}
.page-item__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  padding-left: 24px;
  position: relative;
}
.page-item__title::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--pink-color);
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 0;
}
.page-item__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .page-items {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .page-items-col:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .page-items {
    display: block;
  }
}
@media (max-width: 480px) {
  .section-2 .section__wrapper {
    padding-bottom: 24px;
  }
  .page-items {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .page-item__title {
    font-size: 16px;
  }
  .section-2 .man-fly {
    width: 120px;
    height: 370px;
  }
}
.sect-anchor {
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
  .sect-anchor {
    bottom: 32px;
    font-size: 13px;
  }
}
.sect-anchor__arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/ahchor-arrow.svg") no-repeat center;
  background-size: cover;
  position: relative;
  top: 0;
  transition: top 0.3s ease-in-out;
  animation: arrowMove 1.2s infinite;
}

@keyframes arrowMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease-in-out;
}
.social__icon:hover {
  color: var(--pink-color);
}

@media (max-width: 480px) {
  .social__icon {
    width: 28px;
    height: 28px;
  }
}
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.contacts-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #fff;
  text-align: left !important;
}
.contacts-list a {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.contacts-list a:hover {
  color: var(--pink-color);
}

@media (max-width: 480px) {
  .contacts-list__item {
    font-size: 16px;
  }
}
/* ------------------- Custom Checkbox -------------------- */
.check {
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.1s ease-in-out;
  position: relative;
}
.check__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}
.check__box {
  flex-shrink: 0;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  position: absolute;
  position: relative;
  margin-right: 10px;
  transition: all 0.2s ease-in-out;
}
.check__box:hover {
  border: 1px solid var(--main-color);
}
.check__label {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.5);
  left: 30px;
}
.check__label:hover .check__box {
  border: 1px solid var(--main-color);
}
.check.disabled {
  opacity: 0.7;
}

.check__input:checked + .check__box {
  background: #16c767 url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cg%20id%3D%226544ec245ff593c3f84690fc9087dbf8%22%3E%0A%20%20%20%20%3Cpath%20id%3D%220445b5d937d516bb263a415b821229b3%22%20d%3D%22M6.20441%2012.012L2.5644%208.37197C2.34572%208.15328%202.34572%207.79871%202.5644%207.58001L3.35634%206.78805C3.57503%206.56934%203.92962%206.56934%204.14831%206.78805L6.60039%209.2401L11.8525%203.98805C12.0712%203.76936%2012.4257%203.76936%2012.6444%203.98805L13.4364%204.78001C13.6551%204.99869%2013.6551%205.35327%2013.4364%205.57197L6.99637%2012.012C6.77766%2012.2307%206.42309%2012.2307%206.20441%2012.012V12.012Z%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat center;
  background-size: 16px 16px;
  border: 1.4px solid transparent;
}

.check__input:focus + .check__box {
  outline: 1.5px solid rgba(22, 199, 103, 0.6);
}

.check__input:checked:focus + .check__box {
  outline: 1.5px solid rgba(22, 199, 103, 0.6);
}

.check__input:disabled + .check__box {
  background: #f2f4f7;
  border: 1px solid #d0d5dd;
}

.check__input:checked:disabled + .check__box {
  background: #f2f4f7 url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cg%20id%3D%22f075e4064461980275a52059641961f0%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22d22dcae9cb78b3ebc1428f57b3d95bf8%22%20d%3D%22M6.20441%2012.012L2.5644%208.37197C2.34572%208.15328%202.34572%207.79871%202.5644%207.58001L3.35634%206.78805C3.57503%206.56934%203.92962%206.56934%204.14831%206.78805L6.60039%209.2401L11.8525%203.98805C12.0712%203.76936%2012.4257%203.76936%2012.6444%203.98805L13.4364%204.78001C13.6551%204.99869%2013.6551%205.35327%2013.4364%205.57197L6.99637%2012.012C6.77766%2012.2307%206.42309%2012.2307%206.20441%2012.012V12.012Z%22%20fill%3D%22%23BFBFBF%22%3E%3C%2Fpath%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") no-repeat center;
  background-size: 16px 16px;
  border: 1px solid #d0d5dd;
}

/* ------------------- Custom RadioButton -------------------- */
.radio {
  cursor: pointer;
  display: inline-block;
  transition: all 0.1s ease-in-out;
  position: relative;
}
.radio__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}
.radio__box {
  flex-shrink: 0;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1.4px solid #d0d5dd;
  border-radius: 50%;
  position: absolute;
  margin-right: 10px;
  transition: border 0.2s ease-in-out;
  position: relative;
}
.radio__box::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.radio__box:hover {
  border: 1px solid var(--main-color);
}
.radio__label {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}
.radio__label:hover .radio__box {
  border: 1px solid var(--main-color);
}
.radio.disabled {
  opacity: 0.7;
}

.radio__input:checked + .radio__box {
  background: #fff;
  background-size: 16px 16px;
  border: 2px solid var(--main-color);
}
.radio__input:checked + .radio__box::before {
  display: block;
}

.radio__input:focus + .radio__box {
  outline: 1.5px solid rgba(67, 98, 160, 0.6);
}

.radio__input:checked:focus + .radio__box {
  outline: 1.5px solid rgba(67, 98, 160, 0.6);
}

.radio__input:disabled + .radio__box {
  cursor: default;
  background: #f2f4f7;
  border: 1.4px solid #d0d5dd;
}

.radio__input:checked:disabled + .radio__box {
  background: #f0f0f0;
  background-size: 16px 16px;
  border: 1.4px solid #d0d5dd;
}
.radio__input:checked:disabled + .radio__box::before {
  background-color: #d0d5dd;
}

.form {
  width: 100%;
}
.form__input, .form__textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  display: block;
  outline: none;
  width: 100%;
  height: 56px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: #402478;
  border-radius: 12px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.form__input:not(:last-child), .form__textarea:not(:last-child) {
  margin-bottom: 24px;
}
.form__input:focus, .form__textarea:focus {
  background: transparent;
  border: 1px solid var(--orange-color);
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form__input::placeholder, .form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 480px) {
  .form__input, .form__textarea {
    height: 48px;
    border-radius: 8px;
    padding: 0 16px;
  }
  .form__input:not(:last-child), .form__textarea:not(:last-child) {
    margin-bottom: 16px;
  }
}
.form__textarea {
  resize: none;
  height: 112px;
  padding: 16px 24px;
}
.form__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.form__group .form__input, .form__group .form__textarea {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .form__group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .form__group {
    margin-bottom: 16px;
  }
}

.form-feedback {
  justify-self: flex-end;
  width: 100%;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  padding: 32px;
}
@media (max-width: 480px) {
  .form-feedback {
    border-radius: 24px;
    padding: 24px;
  }
}
.form-feedback__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}
.form-feedback__title span {
  font-style: italic;
  font-weight: 400;
  color: var(--orange-color);
}
@media (max-width: 1024px) {
  .form-feedback__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .form-feedback__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 393px) {
  .form-feedback__title {
    font-size: 24px;
  }
}
.form-feedback__btn {
  min-width: 220px;
}
@media (max-width: 992px) {
  .form-feedback__btn {
    width: 100%;
    height: 56px;
    min-width: inherit;
  }
}
.form-feedback__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ------------------- BLOCKS -------------------- */
.footer {
  background: #1f1b5a;
  padding: 24px 0;
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__copyright {
  font-size: 14px;
  font-weight: 400;
}
.footer__link {
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.footer__link:hover {
  color: var(--pink-color);
  text-decoration: underline;
}

@media (max-width: 599px) {
  .footer {
    padding: 16px 0;
  }
  .footer__container {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}
.parallax-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.section__wrapper {
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow: hidden;
  position: relative;
  padding: clamp(2rem, 0.182rem + 9.09vw, 7rem) 0;
}
.section.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.section-1 {
  position: relative;
  transition: all 1s ease-in-out;
  overflow: hidden !important;
}
.section-1 .section__wrapper {
  padding-top: 120px;
}
.section-1__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.section-1__h1 {
  font-family: var(--font-family);
  font-size: 80px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.section-1__h1 span {
  font-style: italic;
  font-weight: 300;
}

@keyframes menPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes arrowAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1920px) {
  .section-1 .section__wrapper {
    padding-top: 112px;
  }
  .section-1__h1 {
    font-size: 72px;
  }
}
@media (max-width: 1440px) {
  .section-1 .section__wrapper {
    padding-top: 52px;
  }
}
@media (max-width: 1024px) {
  .section-1__h1 {
    font-size: 56px;
  }
}
@media (max-width: 800px) {
  .section-1 .section__wrapper {
    padding-top: 280px;
  }
  .section-1__h1 {
    font-size: 40px;
    font-weight: 600;
  }
}
@media (max-width: 680px) {
  .section-1 .section__wrapper {
    padding-top: 40px;
  }
}
@media (max-width: 480px) {
  .section-1 .section__wrapper {
    padding-top: 100px;
  }
  .section-1__h1 {
    font-size: 32px;
  }
}
@media (max-width: 360px) {
  .section-1 .section__wrapper {
    padding-top: 100px;
  }
  .section-1__h1 {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  .section-1 .section__wrapper {
    padding-top: 48px;
  }
}
.section-2 {
  overflow: hidden;
}
.section-2 .section__wrapper {
  padding-top: 90px;
  padding-bottom: 64px;
}
.section-2 .people {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.4;
  overflow: hidden;
  z-index: 0;
}
.section-2 .people img {
  position: relative;
  top: 400px;
}
.section-2__container {
  position: relative;
}
.section-2__grid {
  display: grid;
  grid-template-columns: 588px 226px 312px;
  gap: 64px;
  position: relative;
  z-index: 10;
}
.section-2__content {
  width: 100%;
}
.section-2__title {
  margin-bottom: 32px;
}
.section-2 .man-fly {
  cursor: pointer;
  width: 226px;
  height: 650px;
  position: relative;
  top: 92px;
  z-index: 100;
  transition: all 1s ease-in-out;
  position: relative;
  animation-duration: 2s;
}
.section-2 .man-fly img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-2 .about-us {
  width: 100%;
  max-width: 320px;
  position: relative;
  padding-top: 192px;
  animation-duration: 2.5s;
}
.section-2 .about-us__text span {
  color: #fff;
  font-weight: 700;
}
.section-2 .section-2__anchor {
  opacity: 0;
}
.section-2.animating .aniturn1,
.section-2.animating .aniturn2,
.section-2.animating .aniturn3,
.section-2.animating .aniturn4,
.section-2.animating .aniturn5 {
  opacity: 0;
}
.section-2.animating .section__wrapper {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
}
.section-2.animating .section-2__container {
  opacity: 0;
}

@media (max-width: 1440px) {
  .section-2__grid {
    grid-template-columns: 588px 226px 312px;
    gap: 48px;
  }
}
@media (max-width: 1200px) {
  .section-2__grid {
    display: flex;
    justify-content: space-between;
    gap: 32px;
  }
  .section-2 .about-us {
    display: none;
  }
  .section-2__content {
    width: 60%;
  }
  .section-2 .man-fly {
    right: 10%;
  }
  .section-2 .people {
    transform: scale(1.4);
  }
  .section-2 .people img {
    top: 200px;
  }
}
@media (max-width: 1024px) {
  .section-2 .section__wrapper {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .section-2 .man-fly {
    top: 0;
    right: 5%;
  }
}
@media (max-width: 800px) {
  .section-2 .people {
    transform: scale(1.7);
  }
  .section-2 .people img {
    top: 0;
  }
  .section-2__grid {
    display: block;
  }
  .section-2__content {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
  .section-2__title {
    text-align: center;
    margin-bottom: 40px;
  }
  .section-2 .man-fly {
    top: 0;
    right: 5%;
    text-align: right;
    margin-left: auto;
  }
}
@media (max-width: 640px) {
  .section-2 .man-fly {
    width: 166px;
    height: 460px;
  }
}
@media (max-width: 599px) {
  .section-2__title {
    margin-bottom: 32px;
  }
  .section-2 .section__wrapper {
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .section-2 .man-fly {
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .section-2__title {
    margin-bottom: 24px;
  }
  .section-2 .sect-anchor {
    bottom: 172px;
    left: 24px;
    transform: none;
  }
}
.section-3 {
  z-index: 0;
}
.section-3__clouds {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.section-3__grid {
  width: 50%;
  margin-left: auto;
}
.section-3__title {
  margin-bottom: 48px;
}
.section-3__smoke {
  width: 100%;
  position: absolute;
  opacity: 0.5;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transform: translate3d(0, 400px, 0);
}
.section-3 .rocket {
  cursor: pointer;
  position: absolute;
  top: 122px;
  left: 0;
}
@media (max-width: 1440px) {
  .section-3 .rocket {
    left: -130px;
  }
}
@media (max-width: 1200px) {
  .section-3 .rocket {
    left: -190px;
  }
}
@media (max-width: 1024px) {
  .section-3 .rocket {
    left: -240px;
  }
}
@media (max-width: 992px) {
  .section-3 .rocket {
    position: relative;
    top: inherit;
    left: inherit;
  }
}
.section-3.animating .aniturn1,
.section-3.animating .aniturn2,
.section-3.animating .aniturn3,
.section-3.animating .aniturn4,
.section-3.animating .aniturn5,
.section-3.animating .section-3__smoke {
  opacity: 0;
}
.section-3.animating .section__wrapper {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
}
.section-3.animating .section-3__container {
  opacity: 0;
}
.section-3.animating .rocket {
  transform: translate3d(-100vw, 100vh, 0);
}

@media (max-width: 1024px) {
  .section-3__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .section-3__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .section-3 .rocket {
    order: 2;
  }
  .section-3 .rocket img {
    position: relative;
    left: -20%;
  }
  .section-3__title {
    text-align: center;
  }
  .section-3__smoke {
    transform: scale(1.4);
    bottom: 0;
  }
  .section-3 .btn-wrap {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .section-3__smoke {
    transform: scale(2);
  }
  .section-3__title {
    margin-bottom: 24px;
  }
}
.section-4 {
  background: linear-gradient(135deg, #541893 0%, #37237a 100%);
  z-index: 0;
}
.section-4--form .section-4__descr {
  margin-bottom: 24px;
}
.section-4__grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 48px;
}
.section-4__content {
  max-width: 592px;
}
.section-4__content--center {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.section-4__title {
  margin-bottom: 24px;
}
.section-4__descr {
  font-size: 20px;
}
.section-4__contacts .social {
  width: 100%;
  justify-content: center !important;
  margin-top: 32px;
  display: none;
}
@media (max-width: 992px) {
  .section-4__contacts .social {
    display: flex;
  }
}
.section-4 .people-bg {
  position: absolute;
  bottom: -20%;
  left: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1024px) {
  .section-4__grid {
    gap: 32px;
  }
  .section-4.sect-contacts {
    height: var(--vh);
  }
}
@media (max-width: 992px) {
  .section-4__grid {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
  .section-4__content {
    text-align: center;
  }
  .section-4__content .social {
    display: none;
  }
}
@media (max-width: 800px) {
  .section-4__title {
    text-align: center;
  }
  .section-4__descr {
    text-align: center;
  }
  .section-4 .people-bg {
    transform: scale(1.4);
  }
}
@media (max-width: 480px) {
  .section-4 .people-bg {
    transform: scale(2.5);
  }
  .section-4__title {
    margin-bottom: 16px;
  }
  .section-4__descr {
    font-size: 18px;
  }
  .section-4__contacts .social {
    padding-bottom: 32px;
  }
}
@media (max-width: 393px) {
  .section-4__descr {
    font-size: 16px;
  }
}
.people-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
.people-bg img {
  opacity: 0;
  transition: opacity 1s linear;
}
.people-bg img.active {
  opacity: 1;
}
.people-bg__img {
  position: absolute;
}
.people-bg__img.fast {
  transition: none;
}

@media (max-width: 1920px) {
  .people-bg__img {
    bottom: -300px;
  }
}
@media (max-width: 1680px) {
  .people-bg__img {
    bottom: -190px;
  }
}
@media (max-width: 1440px) {
  .people-bg__img {
    bottom: -150px;
  }
}
@media (max-width: 1024px) {
  .people-bg__img {
    transform: scale(1.5);
    bottom: -100px;
  }
}
@media (max-width: 800px) {
  .people-bg__img {
    transform: scale(2);
    bottom: 0px;
  }
}
@media (max-width: 480px) {
  .people-bg__img {
    transform: scale(2);
    bottom: 100px;
  }
}
.man-wrap {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.man {
  cursor: default;
  text-decoration: none;
  width: 220px;
  position: absolute;
  bottom: -50px;
  right: 22%;
  z-index: 10;
  pointer-events: all;
}
.man img {
  display: block;
  transition: opacity 1s linear;
  text-decoration: none;
  cursor: default;
  opacity: 0;
  visibility: hidden;
}
.man img:hover {
  animation: none;
  transform: scale(1.05);
}
.man img.active {
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  animation: menPulse 2s ease-in-out infinite;
}
.man img.fast {
  transition: none;
  will-change: transform;
  backface-visibility: hidden;
}
.man__dark {
  cursor: default !important;
  animation: none !important;
  transform: none !important;
}
.man__color {
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(-2px -2px 0px #fff) drop-shadow(2px -2px 0px #fff) drop-shadow(2px 2px 0px #fff) drop-shadow(-2px 2px 0px #fff);
}
.man__text {
  flex-shrink: 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  position: absolute;
  top: 0;
  left: -250px;
  text-shadow: 0 0 40px 0 #18144d;
  animation: none;
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s ease-in-out;
}
.man__text.active {
  opacity: 1;
  visibility: visible;
}
.man__text.fast {
  transition: none;
}
.man__text-lg {
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -0.05em;
  color: var(--yellow-color);
}
.man__text-sm {
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}
.man__arrow {
  display: inline-block;
  width: 77px;
  height: 63px;
  background: url("../img/men-arrow.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  top: calc(100% + 24px);
  right: 40px;
}

@media (max-width: 1024px) {
  .man {
    transform: scale(0.9);
  }
}
@media (max-width: 800px) {
  .man {
    right: 13%;
    bottom: -100px;
    transform: scale(0.7);
  }
}
@media (max-width: 680px) {
  .man {
    width: 220px;
    bottom: -100px;
    transform: scale(0.7);
  }
}
@media (max-width: 480px) {
  .man {
    width: 50vw;
    bottom: -20vw;
    transform: scale(0.9);
    right: 5%;
  }
  .man__text {
    top: -150px;
    left: -180px;
  }
  .man__text-lg {
    font-size: 42px;
  }
  .man__text-sm {
    font-size: 24px;
  }
  .man__arrow {
    right: 70px;
  }
}
@media (max-width: 360px) {
  .man__text {
    top: -108px;
    left: -150px;
  }
  .man__arrow {
    right: 120px;
  }
}
/* ------------------- PAGES -------------------- *//*# sourceMappingURL=main.css.map */