@import url("./reset.css");
@import url("./fonts.css");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  font-family: "Inter";
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

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

.animation-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.dot {
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  animation-name: dot-flow-up;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.hero {
  padding-block: 60px;
  background: url("/img/hero-circle.png") no-repeat top center / contain;
}

.header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #ffffffe6;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  text-align: left;
  font-size: 60px;
  font-weight: 700;
  line-height: 140%;
  background: linear-gradient(
    90deg,
    #fff 46.28%,
    rgba(255, 255, 255, 0.2) 104.96%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: #a6aab2;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 24px;
}

.hero-form {
  padding: 20px 30px;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  border: 3px solid #0a79f7;
  background: #010203;
}

.link-common {
  margin: 0 auto 40px auto;
  display: block;
  border-radius: 48px;
  background-color: #0a7cff;
  padding: 16px 24px;
  max-width: 300px;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.4s ease;

  &:hover {
    background: radial-gradient(
        70.71% 70.71% at 50% 50%,
        rgba(0, 0, 0, 0.5) 70%,
        #0a7cff 100%
      ),
      rgba(255, 255, 255, 0.1);
    box-shadow: 1px 1px 2px 0 rgba(255, 255, 255, 0.24) inset,
      0 1px 3px 0 rgba(10, 124, 255, 0.24), 0 2px 6px 0 rgba(10, 124, 255, 0.24),
      0 4px 8px 0 rgba(10, 124, 255, 0.12),
      0 16px 32px -8px rgba(10, 124, 255, 0.48);
  }
}

.hero-link {
  margin: 0 0 40px 0;
}

.form-link {
  margin: 26px auto;
  max-width: 100%;
}

.form-info {
  display: block;
  color: #ffffffbf;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  border-radius: 48px;
  padding: 20px 8px;
  background: radial-gradient(
      70.71% 70.71% at 50% 50%,
      rgba(0, 0, 0, 0.5) 70%,
      #0a7cff 100%
    ),
    rgba(255, 255, 255, 0.1);
  box-shadow: 1px 1px 2px 0 rgba(255, 255, 255, 0.24) inset,
    0 1px 3px 0 rgba(10, 124, 255, 0.24), 0 2px 6px 0 rgba(10, 124, 255, 0.24),
    0 4px 8px 0 rgba(10, 124, 255, 0.12),
    0 16px 32px -8px rgba(10, 124, 255, 0.48);
}

.hero-counters {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.hero-counters-mob {
  display: none;
}

.hero-counter {
  display: flex;
  flex-direction: column;
  padding: 16px;
  text-align: center;
  border-radius: 48px;
  background: radial-gradient(
      70.71% 70.71% at 50% 50%,
      rgba(0, 0, 0, 0.5) 70%,
      #0a7cff 100%
    ),
    rgba(255, 255, 255, 0.1);
  box-shadow: 1px 1px 2px 0 rgba(255, 255, 255, 0.24) inset,
    0 1px 3px 0 rgba(10, 124, 255, 0.24), 0 2px 6px 0 rgba(10, 124, 255, 0.24),
    0 4px 8px 0 rgba(10, 124, 255, 0.12),
    0 16px 32px -8px rgba(10, 124, 255, 0.48);

  span:first-of-type {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px;
  }

  span:last-of-type {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 24px;
  }
}

.running-line {
  background: linear-gradient(90deg, #061930 9.97%, #010c17 102.48%);
  padding-block: 16px;
  color: #fff;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 110px;
}

.running-line-item {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.running-line-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 38px;
  align-items: center;
  animation: scroll-left 30s linear infinite;
}

.calculator {
  margin: 0 auto;
  margin-bottom: 100px;
  padding: 4px;
  overflow: hidden;
  z-index: 1;
}

.calculator-inner {
  overflow: hidden;
  padding: 60px 20px;
  border-radius: 50px;
  background: #031222;
  backdrop-filter: blur(25px);
  position: relative;
  z-index: 1;
}

.calculator-inner::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    #004df4 0%,
    #26ddff 25%,
    #004df4 50%,
    #26ddff 75%,
    #004df4 100%
  );
  animation: spin 15s linear infinite;
}

.calculator-inner::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #031222;
  border-radius: inherit;
  z-index: -2;
}

.calculator__wrapper {
  position: relative;
}

.calculator__title {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.calculator__subtitle {
  color: #a6aab2;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 34px;
}

.calculator__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.controls {
  max-width: 515px;
  width: 100%;
}

.control__wrapper:first-child {
  margin-bottom: 30px;
}

.control__name {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 50px;
}

.irs--flat .irs-line {
  height: 8px !important;
  background: linear-gradient(270deg, #66bbff 0%, #366eff 100%) !important;
  opacity: 0.25 !important;
}

.irs--flat .irs-bar {
  height: 8px !important;
  border-radius: 4px;
  background: linear-gradient(67deg, #004df4 17.5%, #26ddff 65.79%) !important;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
  display: none !important;
}

.irs--flat .irs-handle {
  cursor: pointer !important;
  top: 18px !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 4px;
  background: linear-gradient(67deg, #004df4 17.5%, #26ddff 65.79%) !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
}

.irs--flat .irs-handle i {
  display: none !important;
}

.irs--flat .irs-handle::after {
  position: absolute;
  content: "";
  top: calc(50% - 6px);
  right: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 20px;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  top: -24px !important;
  color: #fff;
  text-align: center;
  font-size: 24px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  background-color: unset !important;
  padding: 0 !important;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  display: none !important;
}

.control__range {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
}

.output {
  max-width: 480px;
  padding: 2px;
  width: 100%;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 62.054px 0 rgba(0, 0, 0, 0.25) inset;
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: linear-gradient(185deg, #ffffff80 4.18%, #ffffff1a 50.67%);
    border-radius: 50%;
  }

  &::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: -50px;
    left: 0;
    width: 280px;
    height: 280px;
    background: linear-gradient(185deg, #ffffff80 4.18%, #ffffff1a 50.67%);
    border-radius: 50%;
  }
}

.output-inner {
  position: relative;
  padding: 50px 30px;
}

.output-inner::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    #004df4 0%,
    #26ddff 25%,
    #004df4 50%,
    #26ddff 75%,
    #004df4 100%
  );
  animation: spin 15s linear infinite;
}

.output-inner::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #031222;
  border-radius: inherit;
  z-index: -1;
}

.output__title {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.output__earn {
  white-space: nowrap;
  font-weight: 700;
  font-size: 28px;
  line-height: 64px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.output__inner {
  display: flex;
  justify-content: space-between;
}

.output__subtitle {
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.output__value {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  color: #fff;
}

.running-line:hover .running-line-wrapper {
  animation-play-state: paused;
}

.container-table {
  position: relative;
  background: url(/img/table-circle.png) no-repeat center -250px / cover,
    url(/img/table-circle.png) no-repeat center 600px / cover;
  margin-bottom: 60px;
}

.container-table-title {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.container-table-subtitle {
  color: #a6aab2;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 60px;
}

.table-wrapper {
  overflow: auto;
}

.table-mobile {
  display: none;
}

.table-wrapper::-webkit-scrollbar {
  cursor: pointer;
  width: 83px;
  height: 4px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.table-wrapper::-webkit-scrollbar-thumb {
  cursor: pointer;
  width: 83px;
  height: 4px;
  border-radius: 5px;
  background: #737373;
  flex-shrink: 0;
}

table {
  padding: 10px;
  min-width: 400px;
  width: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-spacing: 0 12px;
  border-collapse: separate;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: none;
  white-space: nowrap;
}

td {
  vertical-align: middle;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  color: #ffffff;
}

td:last-child {
  border-bottom: none;
}

td:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

td:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

td img {
  vertical-align: middle;
}

.name {
  vertical-align: middle;
}

th {
  padding-bottom: 26px;
  color: #fff;
  font-weight: normal;
}

tbody tr:last-child td {
  border-bottom: none;
}

td:first-child img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  object-fit: cover;
}

.profit {
  min-width: 100px;
  max-width: 100px;
  text-align: center;
  background-color: #007bff;
  padding: 5px 10px;
  border-radius: 20px;
  border: none;
  font-weight: bold;
  display: inline-block;
  font-size: 14px;
}

td:nth-child(3) {
  border-bottom: none;
}

tbody tr {
  transition: opacity 0.5s ease-in-out;
  background: rgba(0, 0, 0, 0.25);
}

.button-w-bg {
  position: relative;
}

.button-w-bg .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-center-fig {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  animation: levitate-center 3s ease-in-out infinite;
}

@keyframes levitate-center {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -20px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.top-right-fig {
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 0;
  animation: levitate 3s infinite;
  animation-delay: 1s;
}

.top-left-fig {
  position: absolute;
  z-index: 0;
  left: 50px;
  top: 100px;
  animation: levitate 3s infinite;
}

.bottom-left-fig {
  position: absolute;
  z-index: 0;
  top: 90%;
  left: 50px;
  animation: levitate 3s infinite;
  animation-delay: 1s;
}

.bottom-right-fig {
  position: absolute;
  z-index: 0;
  top: 90%;
  right: 0;
  animation: levitate 3s infinite;
}

@keyframes levitate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.bottom-line-1 {
  position: absolute;
  top: 70%;
  left: 0;
  z-index: -1;
}

.bottom-line-2 {
  position: absolute;
  top: 70%;
  left: 0;
  z-index: -1;
}

.top-line-1 {
  position: absolute;
  top: -300px;
  right: 0;
  z-index: -1;
}

.top-line-2 {
  position: absolute;
  top: -300px;
  right: 0;
  z-index: -1;
}

.button-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.button-title,
.features-title {
  color: #f2f8f9;
  text-align: center;
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: 100px;
}

.button-subtitle,
.features-subtitle {
  color: #a6aab2;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 60px;
}

.features-title {
  margin-top: 160px;
}

.features-wrapper {
  display: flex;
  align-items: stretch;
  gap: 60px;
  padding-top: 20px;
  padding-bottom: 130px;
}

.features-imgs {
  max-width: 446px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}

.features-imgs-wrapper {
  display: flex;
  gap: 14px;
}

.features-imgs-wrapper img {
  max-width: 50%;
  width: 100%;
}

.features-text-title {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-text-subtitle {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 50px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-list li {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 132.8%;
  display: flex;
  align-items: center;
  gap: 16px;

  img {
    max-width: 16px;
    width: 100%;
  }
}

.mob-only {
  display: none;
}

.slider-title {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.slider-subtitle {
  color: #a6aab2;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 50px;
  text-align: center;
}

.slider {
  padding-bottom: 120px;
}

.swiper {
  position: relative;
  width: 100%;
}

.slide {
  background: rgba(43, 101, 150, 0.27);
  border-radius: 50px;
  padding: 2px;
  overflow: hidden;
  position: relative;
}

.slide::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    #004df4 0%,
    #26ddff 25%,
    #004df4 50%,
    #26ddff 75%,
    #004df4 100%
  );
  animation: spin 15s linear infinite;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(43, 101, 150, 0.27);
  border-radius: inherit;
  z-index: 1;
}

.slide-inner {
  display: flex;
  position: relative;
  border-radius: 50px;
  background: rgb(20, 50, 79);
  z-index: 3;
  height: 100% !important;
  width: 100% !important;
  backdrop-filter: blur(25px);
  padding: 42px;
  gap: 60px;
  max-width: 100% !important;
}

.swiper-slide {
  display: flex !important;
}

.slide-link {
  align-self: flex-start;
  text-transform: none;
  max-width: 320px;
  margin: 0 0 40px 0 !important;
  position: absolute;
  bottom: 14px;
}

.swiper-pagination {
  position: absolute;
  right: 20px !important;
  z-index: 2 !important;
  left: unset !important;
  bottom: 20px !important;
  max-width: 200px;
}

.swiper-pagination-bullet {
  background-color: #fff !important;
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet-active {
  background-color: #0d7bf8 !important;
  width: 32px !important;
  height: 12px !important;
  border-radius: 6px !important;
}

.slide-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 24px;
}

.slide-subtitle {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 40px;
}

.slide-text-text {
  margin-bottom: 40px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
}

.slider-link {
  margin: 0;
}

.cards {
  padding-bottom: 140px;
  background: url("/img/table-circle.png") no-repeat center -300px / contain;
}

.cards-title {
  color: #f2f8f9;
  text-align: center;
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 14px;
}

.cards-subtitle {
  color: #a6aab2;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 60px;
}

.link-cards {
  margin-bottom: 100px;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: hidden;
}

.card {
  position: relative;
  padding: 4px;
  max-width: 330px;
  width: 100%;
  border-radius: 30px;
  background: #00182dcc;
  backdrop-filter: blur(25px);
  z-index: 1;
  overflow: hidden;
}

.card-content {
  position: relative;
  padding: 36px;
  z-index: 2;
  background: #00182dcc;
  backdrop-filter: blur(25px);
}

.card-title {
  display: flex;
  align-items: flex-start;
  color: #fff;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.card-text {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.4;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    #004df4 0%,
    #26ddff 25%,
    #004df4 50%,
    #26ddff 75%,
    #004df4 100%
  );
  animation: spin 15s linear infinite;
}

.card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #00182dcc;
  border-radius: inherit;
  z-index: -2;
}

.card:first-of-type .card-content {
  padding-bottom: 80px;
}

.card:nth-of-type(2) .card-content {
  padding-bottom: 80px;
}

.card:last-of-type .card-content {
  padding-bottom: 100px;
}

.faq-title {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-subtitle {
  color: #a6aab2;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 60px;
}

.phone {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url("/img/phone-bg-lines.png") no-repeat center center / cover;
}

.phone::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  filter: blur(15px);
  height: 100%;
  max-width: 510px;
  background: url("/img/phone-bg-circle-1.png") no-repeat center -250px / contain;
}

.phone::after {
  content: "";
  position: absolute;
  top: calc(90% - 500px);
  z-index: -1;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 510px;
  background: url("/img/phone-bg-circle-2.png") no-repeat bottom right / contain;
}

.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-title {
  color: #f2f8f9;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 14px;
}

.phone-subtitle {
  color: #a6aab2;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 50px;
}

.phone-link {
  max-width: 230px;
  margin: 0;
}

.phone-circle {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#form {
  scroll-margin-top: 200px;
}

.slide-text {
  min-height: 380px;
}

.dt-only {
  display: block;
}

.mob-only {
  display: none;
}

.footer {
  padding-block: 40px;
  border-radius: 50px 50px 0 0;
  border-top: 5px solid rgba(0, 77, 244, 0);
  border-right: 5px solid rgba(0, 77, 244, 0);
  border-left: 5px solid rgba(0, 77, 244, 0);
  background: rgba(43, 101, 150, 0.27);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.footer::before {
  position: absolute;
  content: "";
  max-width: 500px;
  top: 0;
  left: calc(100% - 500px);
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
  background: url("/img/phone-bg-circle-1.png") no-repeat right top / cover;
}

.footer::after {
  position: absolute;
  content: "";
  max-width: 500px;
  transform: rotate(180deg);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/table-circle.png") no-repeat;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.footer-title {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 46px;
  margin-bottom: 40px;
}

.footer-title i {
  font-style: italic;
  font-weight: 700;
}

.footer-logo {
  margin: 0 auto 50px auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  max-width: 750px;
  position: relative;
  z-index: 1;
  margin-bottom: 64px;

  a {
    max-width: fit-content;
    background: radial-gradient(
        70.71% 70.71% at 50% 50%,
        rgba(0, 0, 0, 0.5) 70%,
        #0a7cff 100%
      ),
      rgba(255, 255, 255, 0.1);
    box-shadow: 1px 1px 2px 0 rgba(255, 255, 255, 0.24) inset,
      0 1px 3px 0 rgba(10, 124, 255, 0.24), 0 2px 6px 0 rgba(10, 124, 255, 0.24),
      0 4px 8px 0 rgba(10, 124, 255, 0.12),
      0 16px 32px -8px rgba(10, 124, 255, 0.48);

    &:hover {
      background-color: #0a7cff;
    }
  }
}

.footer-bottom {
  p {
    font-weight: 300;
    color: #c3c9ce;
    font-style: Italic;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
  }

  p:first-of-type {
    margin-bottom: 16px;
    text-align: left;
  }

  p:last-of-type {
    margin-bottom: 16px;
    text-align: right;
    margin-bottom: 64px;
  }
}

.footer-copyright {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 auto;
}

.footer-img {
  position: absolute;
  animation: levitate 4s infinite;
  z-index: -1;
  opacity: 0.95;
}

.footer-img-1 {
  left: 20%;
  top: 200px;
  animation-delay: 2s;
}

.footer-img-2 {
  left: calc(100% - 150px);
  top: 0;
}

.footer-img-3 {
  top: 55%;
  left: 30%;
  animation-delay: 1s;
}

.footer-img-4 {
  left: 80%;
  top: 50%;
}

.footer-img-5 {
  left: 10%;
  top: calc(90% - 150px);
}

.visible-mob {
  display: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes dot-flow-up {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh);
    opacity: 0;
  }
}

@media (max-width: 1310px) {
  .container {
    padding-inline: 20px;
  }

  .hero {
    padding-block: 40px;
  }
}

@media (max-width: 1000px) {
  .header-logo {
    justify-content: center;
    margin: 0 auto;
  }

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

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

  .hero-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-link {
    margin: 0 auto 80px auto;
  }

  .hero-counters {
    display: none;
  }

  .hero-counters-mob {
    display: flex;
  }

  .calculator__title {
    font-size: 45px;
    line-height: 45px;
  }
  .calculator__subtitle {
    line-height: 26px;
  }
  .irs--flat .irs-from,
  .irs--flat .irs-to,
  .irs--flat .irs-single {
    font-size: 20px !important;
    line-height: 28px !important;
    top: -15px !important;
  }

  .controls {
    max-width: 460px;
  }

  .calculator__wrapper {
    padding: 30px 0 0;
  }

  .calculator {
    margin: 50px 0;
  }

  .control__range span:last-child {
    margin-right: 0;
  }

  .calculator__inner {
    flex-direction: column;
    gap: 40px;
  }
  .output {
    margin: 0 auto 30px auto;
    max-width: calc(100% - 60px);
  }
  .output__inner {
    max-width: 413px;
    margin: 0 auto;
  }
  .output__subtitle.revenue {
    text-align: right;
  }
  .controls {
    max-width: calc(100% - 60px);
    margin: 0 auto;
  }
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .table-desktop {
    display: none;
  }

  .hero-form {
    padding: 10px;
  }

  .form-link {
    margin: 12px auto;
  }

  .table-mobile {
    display: block;
    padding: 10px;
    min-width: 340px;
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
  }

  .table-user-row {
    color: #ffffffe6;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    gap: 12px 6px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    border-radius: 20px;
    border: 1px solid #ffffff26;
    background: #00000040;
    margin-bottom: 10px;

    .profit {
      grid-column: 4;
      display: flex;
      justify-content: center;
      align-items: center;
      justify-self: end;
      min-width: 75px;
      max-width: 75px;
      font-size: 14px;
    }
  }

  .user-country {
    grid-column: 3;
    align-self: center;
  }

  .currency-pair {
    grid-row: 2;
    grid-column: 1;
    align-self: center;
  }

  .user-time {
    grid-row: 2;
    grid-column: 3;
    align-self: center;
  }

  .user-result {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 6px;
    grid-row: 2;
    grid-column: 4;
  }

  .table-user-user {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-column: 1 / 3;
  }

  .table-header-row {
    color: #ffffffe6;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 14px;

    &:first-of-type {
      display: grid;
      gap: 6px;
      grid-template-columns: repeat(4, 1fr);
    }

    &:last-of-type {
      display: grid;
      gap: 6px;
      grid-template-columns: repeat(4, 1fr);

      .currency {
        grid-column: 4;
      }
    }
  }

  .slide-text {
    min-height: 440px;
  }

  .slide-inner {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .phone-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 800px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-counter {
    max-width: 100%;
    width: 100%;

    span:first-of-type {
      font-size: 16px;
    }

    span:last-of-type {
      font-size: 30px;
    }
  }

  .dt-only {
    display: none;
  }

  .mob-only {
    display: block;
  }

  .link-common {
    font-size: 14px;
  }

  .calculator {
    margin: 30px 0;
    padding: 10px;
  }

  .controls {
    max-width: 100%;
  }

  .output {
    max-width: 100%;
  }

  .calculator__title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .calculator__subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .calculator__wrapper {
    padding: 28px 0 0;
  }
  .output {
    padding: 2px;
  }

  .output-inner {
    padding: 20px;
  }

  .output__title {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
  }

  .output__earn {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .output__subtitle {
    font-size: 16px;
    line-height: 16px;
  }

  .output__value {
    font-size: 20px;
    line-height: 30px;
  }

  .controls {
    padding-right: 0;
  }

  .control__name {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px;
  }

  .irs--flat .irs-from,
  .irs--flat .irs-to,
  .irs--flat .irs-single {
    line-height: 100% !important;
    top: -10px !important;
  }
  .control__range span {
    font-size: 14px;
    line-height: 14px;
  }
  .control__wrapper:first-child {
    margin-bottom: 20px;
  }

  .button-title {
    font-size: 20px;
  }

  .container-table-title {
    font-size: 20px;
  }

  .top-line-1,
  .top-line-2 {
    max-width: 50%;
    top: -100px;
  }

  .bottom-line-1,
  .bottom-line-2 {
    max-width: 50%;
    top: 100%;
  }

  .features-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .features-title {
    font-size: 20px;
  }

  .features-imgs img {
    width: 100%;
  }

  .features-imgs-wrapper img {
    max-width: calc(50% - 7px);
  }

  .features-subtitle {
    margin-bottom: 24px;
  }

  .features-text-title {
    font-size: 20px;
  }

  .features-text-subtitle {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
  }

  .features-list li {
    font-weight: 600;
    font-size: 14px;
    line-height: 133%;
    letter-spacing: 0%;
  }

  .slider-title {
    font-size: 20px;
  }

  .slider-subtitle {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
  }

  .slider {
    padding-bottom: 50px;
  }

  .slide-inner {
    flex-direction: column;
    padding: 18px 24px 40px 24px;
    align-items: center;
    gap: 24px;
  }

  .slide-img {
    margin-bottom: 20px;
  }

  .slide-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 100%;
    width: 100%;
    min-height: 650px;
  }

  .slide-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .slide-subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .slide-text-text {
    font-size: 14px;
    margin-bottom: 80px;
  }

  .slide-link {
    padding: 10px;
    align-self: center;
    max-width: 90%;
    width: 100%;
    margin: 0 0 40px 0 !important;
  }

  .cards {
    background: url("/img/table-circle.png") no-repeat center -50px / 200%;
  }

  .cards-title {
    font-size: 20px;
  }

  .cards-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .link-cards {
    margin-bottom: 50px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 14px;
  }

  .faq-title {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .faq-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .phone-title {
    font-size: 20px;
    text-align: center;
  }

  .phone-subtitle {
    font-size: 14px;
    text-align: center;
  }

  .phone-link {
    max-width: 180px !important;
  }

  .phone {
    background: url("/img/phone-bg-lines.png") no-repeat center / cover;
    background-position: 0 0;
  }

  .phone::after {
    top: 50%;
    max-width: 510px;
    background: url("/img/phone-bg-circle-2.png") no-repeat right / contain;
    transform: translateY(-50%);
  }

  .phone-link {
    max-width: 80% !important;
    margin: 0 auto;
    width: 100%;
  }

  .footer-container {
    padding-inline: 20px;
  }

  .footer-title {
    font-size: 18px;
    line-height: normal;
  }

  .footer-logo {
    margin: 0 auto 20px auto;
  }

  .footer-links {
    a {
      margin: 0 auto 20px auto;
    }
  }

  .img-phone {
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .footer::before,
  .footer::after {
    display: none;
  }

  .footer-img {
    max-width: 80px;
  }

  .footer-img-1 {
    top: 455px;
    left: 20px;
  }

  .footer-img-2 {
    left: calc(100% - 100px);
    top: 0;
  }

  .footer-img-3 {
    top: 25%;
    left: 85%;
  }

  .footer-img-4 {
    left: 80%;
    top: 50%;
  }

  .footer-img-5 {
    top: 200px;
  }
}

@media (max-width: 500px) {
  .shield {
    max-width: 70px;
  }

  .top-left-fig,
  .top-right-fig,
  .bottom-left-fig,
  .bottom-right-fig {
    max-width: 80px;
  }

  .link-common {
    max-width: 260px;
  }

  .top-left-fig {
    left: 0;
  }

  .bottom-left-fig {
    left: 0;
  }

  .img-phone {
    width: 100%;
  }

  .slide-link {
    bottom: 20px;
  }

  .swiper-pagination {
    top: 95% !important;
    left: calc(50% - 100px) !important;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    gap: 20px;

    a {
      max-width: fit-content;
      margin: 0 auto;
    }
  }

  .footer-logo {
    width: 100%;
  }

  .slide-text {
    min-height: 700px;
  }

  .visible-mob {
    display: flex;
    gap: 16px;
  }

  .visible-dt {
    display: none;
  }
}

@media (max-width: 400px) {
  .slide-img {
    width: 100%;
  }
}
