/* #region Base */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  min-height: 100vh;
  background-color: #1c1c1c;
  color: var(--color-white);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-white: #fff;
  --color-green: #9fe870;
  --test: rgb(173, 235, 135);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

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

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-VariableFont_opsz_wght.ttf")
    format("truetype-variationsi");
  font-display: swap;
  font-style: normal;
  font-stretch: normal;
  font-weight: 100 900;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

.form-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  flex-grow: 1;
  flex-shrink: 0;
}

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

.container {
  max-width: 1384px;
  margin: 0 auto;
}

/* #endregion */

.header {
  max-width: 1384px;
  padding: 20px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .btn-check {
    display: none;
    background-color: var(--color-green);
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding: 8px 12px;
    transition: all 0.3s;
  }
  .btn-check:hover {
    transform: translateY(-3px);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 16px;
    span {
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
    }
  }
  .policy {
    display: flex;
    align-items: center;
    gap: 40px;
    a {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
    }
  }
}

.main {
  .video-box-1 {
    position: relative;
    #overlay-2,
    #video-3,
    #video-4 {
      display: none;
    }
    .overlay {
      position: absolute;
      z-index: 1;
      width: 100%;
      height: 100%;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.7);
      cursor: pointer;
    }
    .amount {
      color: #fefffd;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.4;
      padding: 4px 12px;
      background-color: #1c1c1c80;
      position: absolute;
      z-index: 3;
      width: max-content;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    #start-block-2 {
      display: none;
    }
    .start-block {
      position: absolute;
      z-index: 2;
      cursor: pointer;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
      .image {
        background-color: #fff;
        padding: 24px 24px 24px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 8px solid #bababa;
        border-radius: 50%;
        transition: all 0.3s;
        animation: pulse-white 1s infinite;
      }
      .image:hover {
        transform: scale(1.05);
      }
      p {
        color: #fefffd;
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        line-height: 1.1;
        text-transform: uppercase;
        span {
          color: var(--color-green);
        }
      }
      .overlay {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.2);
      }
    }
    .video-progress-container {
      display: none;
      width: 100%;
      /* max-width: 1600px; */
      height: 6px;
      background-color: rgba(255, 255, 255, 0.2);
      margin: 0 auto;
      position: relative;
      overflow: hidden;

      .video-progress-bar {
        width: 0%;
        height: 100%;
        background-color: var(--color-green);
        transition: width 0.1s linear;
      }
    }
    #video-1,
    #video-2,
    #video-3,
    #video-4 {
      width: 100%;
      /* max-width: 1600px; */
      margin: 0 auto;
    }
    #video-2 {
      display: none;
    }
  }
  .content {
    padding: 40px 0;
    display: flex;
    gap: 70px;
    h1 {
      max-width: 760px;
      font-size: 60px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      span {
        color: var(--color-green);
        white-space: nowrap;
      }
    }
    .desc {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      p {
        color: #bababa;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 24px;
        line-height: 1.3;
        span {
          font-weight: 700;
          color: var(--color-white);
        }
      }
    }
    .available {
      display: none;
      .arrows {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-bottom: 8px;
      }
      .arrows img {
        width: 64px;
        opacity: 0;
        animation: arrowDown 3s infinite ease-in-out;
      }
      .check-available {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 6px 8px 12px;
        background-color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        span {
          color: #0d0d0d;
          font-family: "Inter";
          font-size: 20px;
          font-weight: 700;
          line-height: 1.4;
          text-transform: uppercase;
        }
      }
      .check-available:hover {
        transform: translateY(-3px);
      }
    }
    .watch-video {
      display: flex;
      padding: 18px 0;
      justify-content: center;
      border: 1px solid var(--color-green);
      font-size: 20px;
    }
  }
  .hurry-up {
    display: none;
    .status-container {
      background: rgba(255, 255, 255, 0.1);
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 24px;
      margin: 0 auto 40px;
      padding: 16px;
    }
    .item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 0.4s forwards;
    }
    .icon {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background-image: url("/img/place-free.png");
      background-size: contain;
      background-repeat: no-repeat;
    }
    .status-text {
      padding: 4px 16px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(13, 13, 13, 0.3);
      color: var(--color-green);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
    }
    .item:nth-child(1) {
      animation-delay: 0.2s;
    }
    .item:nth-child(2) {
      animation-delay: 0.4s;
    }
    .item:nth-child(3) {
      animation-delay: 0.6s;
    }
    .item:nth-child(4) {
      animation-delay: 0.8s;
    }
    .item:nth-child(5) {
      animation-delay: 1s;
    }
    .item:nth-child(6) {
      animation-delay: 1.2s;
    }
    .item:nth-child(7) {
      animation-delay: 1.4s;
    }
    .item:nth-child(8) {
      animation-delay: 1.6s;
    }
    .item:nth-child(9) {
      animation-delay: 1.8s;
    }
    .item:nth-child(10) {
      animation-delay: 2s;
    }

    .item:nth-child(1) .icon {
      animation: changeIcon 0.3s forwards 3s;
    }
    .item:nth-child(2) .icon {
      animation: changeIcon 0.3s forwards 3.3s;
    }
    .item:nth-child(3) .icon {
      animation: changeIcon 0.3s forwards 3.6s;
    }
    .item:nth-child(4) .icon {
      animation: changeIcon 0.3s forwards 3.9s;
    }

    .item:nth-child(5) .icon {
      animation: changeIcon 0.3s forwards 5s;
    }
    .hurry-content {
      display: none;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .left-block {
      display: flex;
      align-items: center;
      gap: 20px;
      h2 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.1;
        span {
          color: var(--color-green);
        }
      }
    }
    .access {
      background-color: var(--color-green);
      padding: 8px 6px 8px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 550px;
      transition: all 0.3s ease;
      cursor: pointer;
      span {
        color: #0d0d0d;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
      }
    }
    .access:hover {
      transform: translateY(-3px);
    }
  }
  .final-step {
    display: none;

    padding: 70px 16px 40px;
    h2 {
      color: var(--color-green);
      text-align: center;
      font-size: 80px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }
    h3 {
      margin: 12px 0 65px;
      text-align: center;
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 100px;
      margin-bottom: 65px;
    }
    .card {
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.1);
      .img-wrapp {
        width: 112px;
        height: 112px;
        background: linear-gradient(180deg, #0d0d0d 0%, #2a2a2a 100%);
        border: 20px solid #595959;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 0 60px 0 rgba(255, 255, 255, 0.5);
      }
      .image {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 384px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }
      .image-user {
        background-image: url("/img/bg-user.png");
      }
      .image-case {
        background-image: url("/img/bg-profit.png");
      }
      .image-average {
        background-image: url("/img/bg-average.png");
      }
      .amount {
        height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      h4 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.1;
      }
      .circle {
        width: 30px;
        height: 30px;
        border: 1px solid var(--color-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        span {
          width: 16px;
          height: 16px;
          background: #fff;
          opacity: 0.3;
          border-radius: 50%;
          animation: card-dot 2s infinite;
        }
      }
      .numbers {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .number {
        color: var(--color-green);
        font-size: 30px;
        font-weight: 600;
        line-height: 1.2;
      }
    }
    .profit {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 48px 0 64px;
      .left-block {
        display: flex;
        align-items: center;
        gap: 24px;
        span {
          font-size: 36px;
          font-weight: 400;
          line-height: 1.1;
        }
      }
    }
    .calc-container {
      display: flex;
      justify-content: center;
    }

    .calc-box {
      position: relative;

      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 30px;
      display: flex;
      align-items: center;
      gap: 40px;
      border-radius: 4px;
    }

    .slider-wrapper {
      width: 300px;
    }

    .tooltip {
      position: absolute;
      top: -20px;
      left: 14px;
      border: var(--stroke-weight-1, 1px) solid
        var(--color-white-10, rgba(255, 255, 255, 0.1));
      background: var(--color-grey-11, #1c1c1c);
      padding: 3.8px 11.8px;
      white-space: nowrap;
      pointer-events: none;
    }

    .tooltip span {
      color: var(--color-green);
      font-weight: bold;
    }

    input[type="range"] {
      -webkit-appearance: none;
      width: 100%;
      background: transparent;
    }

    input[type="range"]::-webkit-slider-runnable-track {
      width: 100%;
      height: 2px;
      background: rgba(255, 255, 255, 0.2);
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      height: 16px;
      width: 16px;
      border-radius: 50%;
      background: #fff;
      cursor: pointer;
      margin-top: -7px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .result {
      width: 175px;
      color: var(--color-green);
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
    }
  }
  .timer-block {
    padding: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 40px;
    p {
      text-align: right;
      font-size: 60px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      span {
        color: var(--color-green);
      }
    }
    .timer {
      font-size: 96px;
      font-weight: 800;
      line-height: 1;
      width: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .dots {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
      justify-content: center;
      animation: dots 1s infinite;
      span {
        width: 25px;
        height: 25px;
        background-color: #fff;
        border-radius: 50%;
      }
    }
  }
  .last-step {
    display: none;
    padding: 24px 0;
    .form-block {
      margin: 40px 0 60px;
      display: flex;
      gap: 24px;
      .marquee-container {
        max-width: 800px;
      }
      .marquee-content {
        animation: scrollRight 15s linear infinite;
      }
      .content {
        flex-grow: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 860px;
        gap: 0;
        padding: 0;
        h2 {
          font-size: 60px;
          font-weight: 700;
          line-height: 1;
          text-transform: uppercase;
          span {
            color: var(--color-green);
          }
        }
        .block {
          display: flex;
          align-items: center;
          gap: 24px;
          span {
            font-size: 36px;
          }
        }
        .arrows {
          display: none;
        }
      }
    }
    .brands {
      .marquee-container {
        background-color: var(--color-green);
      }
      .marquee-content {
        gap: 175px;
      }
    }
  }
}
.footer {
  .footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 2px solid rgba(148, 148, 148, 0.3);
    a {
      display: none;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 16px;
      span {
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
      }
    }
    .copyright {
      color: #bababa;
    }
  }
  .footer-facebook {
    text-align: center;
    padding: 24px 0;
    color: #bababa;
    span {
      color: rgba(186, 186, 186, 0.4);
    }
  }
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  display: flex;
}

.marquee-content {
  display: flex;
  gap: 130px;

  white-space: nowrap;
  animation: scrollMarquee 15s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 1440px) {
  .container {
    padding: 0 10px;
  }
  .header {
    .policy {
      display: none;
    }
    .logo-wrap {
      width: 100%;
      justify-content: space-between;
    }
    .logo {
      .btn-check {
        margin-left: auto;
      }
    }
  }
  .main {
    .video-box-1 {
      .start-block {
        width: max-content;
        gap: 12px;
        p {
          font-size: 20px;
          line-height: 1.4;
        }
      }
    }
    .content {
      flex-direction: column;
      gap: 16px;
      align-items: center;
      text-align: center;
      padding: 20px 0;
      h1 {
        font-size: 36px;
        line-height: 1.1;
      }
      .desc {
        gap: 24px;
        align-items: center;
        width: 100%;
      }
      .watch-video {
        width: 100%;
        max-width: 420px;
      }
      .available {
        width: 100%;
        .arrows img {
          width: 48px;
        }
        .check-available {
          span {
            font-size: 18px;
          }
        }
      }
    }
    .hurry-up {
      .status-container {
        grid-template-columns: repeat(5, 1fr);
        width: max-content;
        padding: 12px;
      }
      .icon {
        width: 120px;
        height: 120px;
      }
      .hurry-content {
        flex-direction: column;
        width: 100%;
        gap: 24px;
      }
      .access {
        max-width: none;
      }
      .left-block {
        h2 {
          font-size: 24px;
        }
        img {
          width: 48px;
        }
      }
    }
    .final-step {
      padding: 40px 0;
      h2 {
        font-size: 36px;
        line-height: 1.1;
      }
      h3 {
        font-size: 24px;
        line-height: 1.3;
        margin: 0 0 40px;
      }
      .cards {
        display: flex;
        flex-direction: column;
        gap: 28px;
        align-items: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 36px;
      }
      .card {
        width: 100%;
        flex-direction: row;
        padding: 8px;
        .image {
          height: 120px;
          width: 120px;
        }
        .amount {
          height: 120px;
          flex-grow: 1;
        }
        h4 {
          font-size: 24px;
        }
        .img-wrapp {
          width: 64px;
          height: 64px;
          border: 6px solid #595959;
          img {
            display: block;
            width: 30px;
            height: 30px;
          }
        }
        .number {
          font-size: 24px;
        }
      }
      .profit {
        flex-direction: column;
        gap: 32px;
        width: 100%;
        padding: 24px 0 60px;
        .left-block {
          span {
            font-size: 24px;
          }
          img {
            width: 40px;
          }
        }
      }
      .calc-container {
        width: 100%;
      }
      .slider-wrapper {
        width: 100%;
      }
      .calc-box {
        flex-direction: column;
        gap: 5px;
        width: 100%;
      }
      .result {
        font-size: 30px;
      }
    }
    .timer-block {
      flex-direction: column;
      gap: 24px;
      padding: 40px 0;
      p {
        font-size: 40px;
        text-align: center;
      }
    }
    .last-step {
      .form-block {
        flex-direction: column;
        align-items: center;
        .content {
          .block {
            img {
              width: 40px;
            }
            span {
              font-size: 24px;
            }
          }
          h2 {
            font-size: 48px;
          }
          .arrows {
            display: flex;
            width: 100%;
            justify-content: space-around;
            padding: 40px 0 20px;
            img {
              width: 40px;
              opacity: 0;
              animation: arrowDown 3s infinite ease-in-out;
            }
          }
          .marquee-container {
            display: none;
          }
        }
      }
      .brands {
        .marquee-content {
          gap: 40px;
        }
      }
    }
  }
  .footer {
    .footer-header {
      a {
        display: block;
      }
    }
  }
}
@media (max-width: 800px) {
  .footer {
    .footer-header {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .header {
    .logo-wrap {
      gap: 5px;
    }
    .logo {
      gap: 5px;
      span {
        font-size: 14px;
      }
    }
    .btn-check {
      padding: 4px;
      font-size: 14px;
    }
  }

  .main {
    .video-box-1 {
      .start-block {
        p {
          font-size: 18px;
          line-height: 1.6;
        }
      }
    }
    .content {
      .desc {
        p {
          font-size: 20px;
        }
      }
      .desc > span {
        font-size: 18px;
      }
    }
    .hurry-up {
      .status-container {
        gap: 12px;
        padding: 8px;
      }
      .hurry-content {
        align-items: start;
      }
      .icon {
        width: 40px;
        height: 40px;
      }
      .status-text {
        font-size: 10px;
        padding: 2px 8px;
      }
      .access {
        padding: 2px 6px 0 12px;
        span {
          font-size: 18px;
        }
      }
    }
    .final-step {
      .card {
        .image {
          width: min-content;
        }
        .amount {
          height: 110px;
        }
      }
    }
    .timer-block {
      p {
        font-size: 36px;
      }
    }
    .last-step {
      .form-block {
        .content {
          h2 {
            font-size: 36px;
          }
          .block {
            span {
              font-size: 20px;
            }
          }
        }
      }
    }
  }
  .footer {
    .footer-header {
      flex-direction: column;
      align-items: start;
    }
    .copyright {
      font-size: 14px;
    }
    .footer-facebook {
      font-size: 12px;
    }
  }
}
@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes arrowDown {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    transform: translateY(8px);
  }

  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes changeIcon {
  to {
    background-image: url("/img/place-taken.png");
  }
}
@keyframes card-dot {
  0% {
    background: #fff;
    opacity: 0.3;
  }
  50% {
    background: var(--color-green);
    opacity: 0.7;
  }
  100% {
    background: #fff;
    opacity: 0.3;
  }
}
@keyframes dots {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
