* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:global(.grecaptcha-badge) {
  visibility: hidden;
}
body,
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
body {
  overscroll-behavior-y: contain;
  position: relative;
  user-select: none;
}
body.keyboard-visible .main,
body.out-of-screen .main {
  height: 100dvh;
}
.main {
  height: 100vh;
  min-height: 100vh;
  width: 100vw;
}
@media (orientation: landscape) and (pointer: coarse) and (hover: none) {
  .main {
    height: auto;
  }
}
@supports (height: 100dvh) {
  .main {
    height: 100dvh;
    min-height: 100dvmin;
    width: 100dvw;
  }
  @media (orientation: landscape) and (pointer: coarse) and (hover: none) {
    .main {
      height: auto;
    }
  }
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
button,
input {
  border: none;
  outline: none;
}
:active,
:focus,
:hover {
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Inter_18pt-Regular.woff2) format('woff2');
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Inter_18pt-Medium.woff2) format('woff2');
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Inter_18pt-SemiBold.woff2) format('woff2');
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Inter_18pt-Bold.woff2) format('woff2');
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Inter_18pt-ExtraBold.woff2) format('woff2');
}
@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Inter_18pt-Black.woff2) format('woff2');
}
:root {
  --font-family: 'Inter';
  --index: calc(1vw + 1vh);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  --header-height: 4rem;
  --boost-win: linear-gradient(180deg, #e9b352, #d6803b);
}
@keyframes flyingDown {
  0% {
    transform: translateY(0);
  }
  17.87% {
    transform: translateY(16.7%);
  }
  32.25% {
    transform: translateY(0);
  }
  41.38% {
    transform: translateY(11.1%);
  }
  58.75% {
    transform: translateY(-8.3%);
  }
  71.25% {
    transform: translateY(25%);
  }
  87.5% {
    transform: translateY(8.3%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes flyingUp {
  0% {
    transform: translateY(0);
  }
  17.87% {
    transform: translateY(-16.7%);
  }
  32.25% {
    transform: translateY(0);
  }
  41.38% {
    transform: translateY(-11.1%);
  }
  58.75% {
    transform: translateY(8.3%);
  }
  71.25% {
    transform: translateY(-25%);
  }
  87.5% {
    transform: translateY(-8.3%);
  }
  to {
    transform: translateY(0);
  }
}
.flyingDown {
  animation: flyingDown 8s ease-in-out infinite;
}
.flyingUp {
  animation: flyingUp 8s ease-in-out infinite;
}
@keyframes fadeOpacity {
  0%,
  to {
    opacity: 1;
  }
  14% {
    opacity: 0.85;
  }
  28% {
    opacity: 0.5;
  }
  42% {
    opacity: 1;
  }
  56% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.75;
  }
  84% {
    opacity: 0.5;
  }
}
.fadeInPulse {
  animation: fadeOpacity 8s ease-in-out infinite;
}
html {
  font-family: var(--font-family);
}
body {
  background-color: light-dark(#fdfcfb, #000);
}
.container {
  margin-inline: 1rem;
  max-width: 1120px;
  position: relative;
}
@media (min-width: 1200px) {
  .container {
    margin-inline: auto;
  }
}
.absolute {
  position: absolute;
}
.flex {
  display: flex;
}
.flex--center {
  align-items: center;
}
.estop {
  pointer-events: none;
}
.button {
  align-items: center;
  color: #000;
  border: 1px solid #000;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-family);
  font-weight: 700;
  justify-content: center;
  padding: 8px 17px;
  position: relative;
  text-transform: uppercase;
  z-index: 5;
}
.button--yellow {
  background-color: #795f32;
  border: none;
  color: #0009;
  min-height: 44px;
  padding: 12px 32px;
  width: 100%;
}
.button--yellow:focus {
  background-color: #df8134;
}
.button--ghost {
  border: 1px solid #0f100f;
  color: #0f100f;
}
.button--ghost,
.input {
  background-color: transparent;
}
.input {
  border: 2px solid #7a7a81;
  border-radius: 8px;
  color: #fff;
  font-size: 16px !important;
  font-weight: 500;
  padding: 15px 20px;
  width: 100%;
}
.input::-moz-placeholder {
  color: #fff9;
  font-weight: 500;
}
.input::placeholder {
  color: #fff9;
  font-weight: 500;
}
.header {
  left: 0;
  padding-inline: 1rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media (min-width: 768px) {
  .header {
    padding-inline: 2rem;
    padding-top: 10px;
  }
}
.nav {
  align-items: center;
  display: flex;
  gap: 1rem;
  height: var(--header-height);
  justify-content: flex-end;
  position: relative;
}
@media (min-width: 768px) {
  .nav {
    align-items: flex-end;
  }
}
@media (min-width: 1200px) {
  .nav {
    justify-content: center;
    margin-inline: auto;
    max-width: 85vw;
  }
}
.nav__btn .button {
  font-size: 0.75rem;
}
.nav__btn .button:hover {
  background-color: #e9b352;
  border-color: #e9b352;
  color: #000;
}
.nav__inner {
  bottom: 0;
  gap: 2%;
  position: absolute;
  right: 0;
  z-index: 50;
}
.nav__title {
  color: rgba(15, 16, 15, 1);
  font-size: calc(var(--index) * 1.4);
  font-weight: 800;
  text-transform: uppercase;
}
.validForm + .button--yellow {
  background-color: #e9b352 !important;
  box-shadow: 0 0 15px #e9b35266 !important;
}
.password-wrapper {
  position: relative;
  width: 100%;
}
.password-toggle-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' fill='none' viewBox='0 0 33 33'%3E%3Cpath fill='%237A7A81' fill-rule='evenodd' d='M22.372 8.146c-1.896-.864-3.893-1.291-6.545-1.272-.71.011-1.978.116-3.21.466-4.923 1.398-8.36 4.572-10.741 9.007-.139.258-.05.427.061.636 1.296 2.455 3.013 4.558 5.252 6.21.423.312.44.496.05.839-.273.239-.527.5-.78.761-.22.226-.44.452-.672.664-.314.287-.38.502-.014.799.295.238.584.504.807.808.406.556.69.416 1.118-.014 3.208-3.232 6.43-6.451 9.65-9.67l4.392-4.392c1.73-1.733 3.461-3.466 5.202-5.189.315-.313.422-.524.02-.846a6.6 6.6 0 0 1-.944-.943c-.3-.361-.508-.298-.8.014-.302.322-.616.632-.93.943-.333.33-.667.662-.987 1.006-.293.316-.53.355-.929.173M11.027 19.503a6 6 0 0 1-.74-2.857h.002c-.01-4.52 4.772-7.512 8.767-5.485q.681.345.167.873l-.082.08a2 2 0 0 0-.183.193c-.55.709-1.12.943-2.117.718-2.52-.568-4.77 2.138-3.946 4.634.148.448.061.69-.257.969a10 10 0 0 0-.988.987c-.305.355-.44.224-.623-.112m1.949 7.5c1.138.287 2.294.397 3.536.435 1.177-.03 2.421-.116 3.636-.447 4.988-1.36 8.457-4.551 10.867-9.02.115-.212.11-.374 0-.583a19.7 19.7 0 0 0-3.526-4.793c-.273-.274-.44-.282-.715-.002a400 400 0 0 1-3.955 3.956c-.2.198-.246.4-.23.679.223 3.79-2.726 6.737-6.517 6.516-.28-.017-.481.032-.679.232q-1.27 1.29-2.561 2.56c-.28.276-.232.374.144.468' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  cursor: pointer;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.password-toggle-icon.visible {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' fill='none' viewBox='0 0 33 33'%3E%3Cpath fill='%23fff' fill-opacity='.8' d='M17.542 5.545c5.402.304 10.247 3.336 13.064 9.447.148.32.12.573-.013.883-2.552 5.94-8.323 9.68-14.822 9.397-6.512-.284-11.112-3.524-13.866-9.419-.15-.32-.12-.573.013-.883 2.486-5.786 8.1-9.472 15.624-9.425m-1.255 3.3c-3.71-.012-6.587 2.823-6.608 6.514-.022 3.745 2.821 6.63 6.546 6.642 3.711.011 6.587-2.825 6.609-6.516.021-3.745-2.822-6.63-6.547-6.64'/%3E%3Cpath fill='%23fff' fill-opacity='.8' d='M16.371 19.856c-2.25-.003-3.946-1.695-3.951-3.945-.005-2.277 1.71-3.982 3.993-3.966 2.247.015 3.928 1.722 3.919 3.976-.009 2.249-1.709 3.937-3.961 3.935'/%3E%3C/svg%3E");
}
.langSelector {
  display: block;
  position: relative;
  text-transform: uppercase;
  z-index: 50;
}
.langSelector.bg--light .selected > span {
  color: #0f100fcc;
}
.langSelector.bg--light .selected.active {
  background-color: #dedede80;
}
.langSelector.bg--light .selected-icon img {
  height: 12px;
  min-height: 12px;
  min-width: 12px;
  width: 12px;
}
.langSelector.bg--light .dropdown-list {
  background-color: #dedede80;
}
.langSelector.bg--light .dropdown-list li span,
.langSelector.bg--light .dropdown-list li.active span,
.langSelector.bg--light .dropdown-list li:hover span {
  color: #0f100fcc;
}
.langSelector .selected {
  align-items: center;
  background-color: transparent;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  padding: 8px;
  transition: all 0.25s ease-in-out;
}
.langSelector .selected > img {
  border-radius: 100%;
}
.langSelector .selected > span {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.langSelector .selected-icon {
  color: #000;
  transition: all 0.25s ease-in-out;
}
.langSelector .selected-icon img {
  height: 8px;
  min-height: 8px;
  min-width: 12px;
  width: 12px;
}
.langSelector .selected.active {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: #080b1480;
}
.langSelector .selected.active .selected-icon {
  transform: rotate(-180deg);
}
.langSelector .dropdown-list {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: #080b1480;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 8px;
  position: absolute;
  top: 2.5rem;
  transition: all 0.25s ease-in-out;
  visibility: hidden;
  width: 100%;
}
.langSelector .dropdown-list li {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 5px;
  transition: all 0.25s ease;
}
.langSelector .dropdown-list li img {
  border-radius: 50%;
}
.langSelector .dropdown-list li span {
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.25s ease;
}
.langSelector .dropdown-list li.active span,
.langSelector .dropdown-list li:hover span {
  color: #000;
}
.langSelector .dropdown-list.active {
  max-height: 260px;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.hero {
  height: 100%;
}
@media (min-width: 1200px) {
  .hero {
    padding-top: calc(var(--index) * 1);
  }
}
.hero__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero__title {
  color: #000;
  font-size: 1.06rem;
  font-weight: 800;
  padding: 0.7rem 0;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.15rem;
    padding-top: 1.9rem;
  }
}
.hero__form {
  background: #000000bf;
  border-radius: 20px;
  max-width: 586px;
  padding-inline: 1.5rem;
  padding-bottom: 2.5rem;
  padding-top: 1.5rem;
  position: relative;
  width: 100%;
  z-index: 15;
}
.timerWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1vw, 8px);
  padding-bottom: 2%;
}
.dots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: clamp(25px, 3vw, 35px);
}

.dots span {
  width: clamp(6px, 1vw, 8px);
  aspect-ratio: 1;
  background: black;
  border-radius: 50%;
}
.time {
  position: relative;
  z-index: 1;
  background: rgba(34, 34, 34, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  width: min(calc(100vw * (50 / 375)), calc(100dvh * (50 / 667)));
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: clamp(32px, 5vw, 52px);
}
@media (min-width: 768px) {
  .hero__form {
    background: rgba(0, 0, 0, 0.85);
    padding-bottom: 5rem;
    padding-top: 2rem;
  }
}
@media (min-width: 1200px) {
  .hero__form {
    z-index: 16;
    padding-bottom: 3.5rem;
  }
  .time {
    width: min(calc(100vw * (65 / 375)), calc(100dvh * (65 / 667)));
  }
}
.hero__form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.hero__form-logo img {
  height: 29px;
}
@media (min-width: 768px) {
  .hero__form-logo img {
    height: 52px;
  }
}
.hero__form-subtitle {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__form-subtitle {
    font-size: 25px;
  }
}
.hero__form-title {
  color: #fff;
  font-size: clamp(12px, 6.4vw, 2.7rem);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.75);
}
.lang-en .hero__form-title {
  font-size: clamp(12px, 5.5vw, 2.4rem);
}
.lang-kz .hero__form-title {
  font-size: clamp(12px, 6.2vw, 2.7rem);
}
.hero__form-content {
  margin-top: 2rem;
}
@media (min-width: 320px) {
  .hero__form-content {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .hero__form-content {
    margin-top: 2rem;
    margin-inline: auto;
    padding-inline: 3rem;
  }
}
.hero__form-toggle {
  align-items: center;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 12px;
  display: flex;
  gap: 4px;
  justify-content: space-between;
  padding: 4px;
}
.hero__form-toggle > div {
  align-items: center;
  background-color: transparent;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  transition: background-color 0.25s ease-in-out;
  width: 100%;
}
.hero__form-toggle > div.active,
.hero__form-toggle > div:hover {
  background-color: #404040;
}
.hero__form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 1.5rem;
}
.hero__form-button {
  margin-top: 6%;
}
.inputWrapper {
  display: flex;
  flex-direction: column;
}
.inputWrapper > div {
  width: 100%;
  height: 100%;
  position: relative;
}
.phoneIcon {
  position: absolute;
  width: min(100vw * calc(14 / 375), 100dvh * calc(14 / 667));
  height: min(100vw * calc(14 / 375), 100dvh * calc(14 / 667));
  top: 50%;
  transform: translateY(-50%);
  left: min(100vw * calc(10 / 375), 100dvh * calc(10 / 667));
  border-radius: 50%;
}
.inputWrapper input[type='tel'] {
  padding-left: min(100vw * calc(25 / 375), 100dvh * calc(25 / 667));
}

.main {
  background-color: light-dark(#fdfcfb, #000);
  background-image: url(../img/mobile-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: var(--header-height) 0;
  position: relative;
}
@media (min-width: 768px) {
  .main {
    background-image: url(../img/tablet-bg.webp);
  }
}
@media (min-width: 1200px) {
  .main {
    background-image: url(../img/desktop-bg.webp);
  }
}
.main__neon {
  animation-delay: -2s;
  height: calc(var(--index) * 9);
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: fixed;
  top: 0;
  width: calc(var(--index) * 21);
}
@media (min-width: 768px) {
  .main__neon {
    height: calc(var(--index) * 5.9);
    width: calc(var(--index) * 25.4);
  }
}
@media (min-width: 1200px) {
  .main__neon {
    height: calc(var(--index) * 13);
    width: calc(var(--index) * 14.7);
  }
}
.main__girl {
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .main__girl {
    width: calc(var(--index) * 13);
    z-index: 15;
  }
}
@media (min-width: 1200px) {
  .main__girl {
    left: 8.5rem;
    width: calc(var(--index) * 15.6);
  }
}
.main__slot {
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) {
  .main__slot {
    width: 38%;
  }
}
@media (min-width: 1200px) {
  .main__slot {
    width: calc(var(--index) * 23);
  }
}
.main__chips-0 {
  animation-delay: -1s;
  animation-duration: 18.8s;
  left: 1.2rem;
  top: 0.5rem;
}
@media (min-width: 768px) {
  .main__chips-0 {
    left: 7rem;
    top: -0.5rem;
  }
}
@media (min-width: 1200px) {
  .main__chips-0 {
    left: 0;
    top: 0;
    width: calc(var(--index) * 6.7);
  }
}
.main__chips-1 {
  animation-delay: -4s;
  animation-duration: 16.8s;
  right: 0;
  top: 11rem;
  z-index: 15;
}
@media (min-width: 768px) {
  .main__chips-1 {
    left: 0;
    right: unset;
    top: 10rem;
  }
}
@media (min-width: 1200px) {
  .main__chips-1 {
    left: calc(var(--index) * 14);
    top: 6rem;
    width: calc(var(--index) * 6.5);
  }
}
.main__chips-2 {
  animation-delay: -3s;
  animation-duration: 17.6s;
  left: 0;
  top: 15rem;
  z-index: 15;
}
@media (min-width: 768px) {
  .main__chips-2 {
    left: unset;
    right: 3%;
    top: 20%;
    z-index: 16;
    
  }
}
@media (min-width: 768px) and (orientation: landscape) {
  .main__chips-2 {
    top: 13rem;
  }
}
@media (min-width: 1200px) {
  .main__chips-2 {
    right: 6rem;
    top: 7rem;
    width: calc(var(--index) * 6.4);
  }
}
.main__chips-3 {
  animation-delay: -3.5s;
  animation-duration: 14.8s;
  bottom: -0.5rem;
  right: 3rem;
}
@media (min-width: 768px) {
  .main__chips-3 {
    animation-delay: -2.5s;
    animation-duration: 17.8s;
    bottom: 3.2rem;
    left: 20rem;
    z-index: 15;
  }
}
@media (min-width: 768px) and (orientation: landscape) {
  .main__chips-3 {
    bottom: 1rem;
    left: 30rem;
    z-index: 0;
  }
}
@media (min-width: 1200px) {
  .main__chips-3 {
    left: unset;
    right: 0;
    top: 19rem;
    width: calc(var(--index) * 5);
  }
}
.main__chips-4 {
  animation-duration: 21.8s;
}
@media (min-width: 1200px) {
  .main__chips-4 {
    bottom: 3.5rem;
    left: 5rem;
    width: calc(var(--index) * 8.7);
    z-index: 15;
  }
}
.main__chips-5 {
  animation-delay: 1.5s;
  animation-duration: 19.8s;
}
@media (min-width: 1200px) {
  .main__chips-5 {
    bottom: 5rem;
    left: 30rem;
    width: calc(var(--index) * 9.7);
    z-index: 15;
  }
}
@media (min-width: 768px) {
  .main__chips-6 {
    bottom: -1rem;
    left: 23.5rem;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .main__chips-6 {
    animation-duration: 22s;
    bottom: 0;
    left: unset;
    right: 3rem;
    width: calc(var(--index) * 13.5);
    z-index: 15;
  }
}
.main__effect-1 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
}
@media (min-width: 768px) {
  .main__effect-1 {
    display: none;
    z-index: 15;
  }
}
@media (min-width: 1200px) {
  .main__effect-1 {
    animation-delay: -3s;
    animation-duration: 12s;
    display: block;
    inset: unset;
    right: 0;
    top: 0;
    z-index: auto;
  }
}
.main__effect-2 {
  bottom: 0;
  left: 0;
  z-index: 11;
}

.main__effect-3 {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .main__effect-2 {
    height: 100%;
    opacity: 0.6;
  }
}
@media (min-width: 1200px) {
  .main__effect-2 {
    z-index: 15;
  }
  .main__effect-2 {
    animation-delay: -2s;
    animation-duration: 15s;
  }

  .main__effect-4 {
    right: 0;
    bottom: 0;
  }
  .main__cloud-1 {
    bottom: 0;
    left: 0;
    z-index: 11;
  }
  .main__cloud-2 {
    animation-delay: -1s;
    animation-duration: 15s;
    bottom: 0;
    right: 0;
    z-index: 11;
  }
}
