@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-400.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-600.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Monserrat-700.woff2") format("woff2");
  font-weight: 700;
}
body,
html,
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #011c35;
}

.header {
  padding-block: 16px;
  background-color: #011c35;
}

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

.header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat";
  transition: color 0.4s ease;
}

.links a:hover {
  color: #9ce3ff;
}

.tab-only {
  display: none;
}

.btn {
  padding: 12px 20px;
  border-radius: 48px;
  background: linear-gradient(95deg, #ffda0f 0%, #ff5600 100%);
  text-align: center;
  color: #181530;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.btn:hover {
  background: linear-gradient(95deg, #ff5600 0%, #ffda0f 100%);
}

.hero {
  background: url("/img/hero-bg.png") no-repeat center / cover;
}

.hero-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero-title {
  color: #fff;
  text-align: center;
  font-family: "Montserrat";
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-transform: capitalize;
}

.navbar {
  display: none;
}

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

.hero-video video {
  max-width: 740px;
}

.form-wrapper {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.footer {
  border-top: 1px solid #46748e;
  background-color: #011c35;
  padding: 12px 0;
  text-align: center;
  color: #fff;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 400;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background: rgba(23, 23, 23, 0.6);
}

.modal-inner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(56, 239, 198, 0.2);
  background: #011c35;
  max-width: 500px;
}

section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.section-title {
  position: relative;
  color: #ebcda9;
  text-align: left;
  font-family: "Montserrat";
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
}

.section-title::before {
  content: "";
  position: absolute;
  background: linear-gradient(#9ce3ff, #011c35);
  width: 100%;
  height: 1px;
  top: -4px;
}

.big-margin {
  margin-bottom: 60px;
}

.small-margin {
  margin-bottom: 20px;
}

.about {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.about::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 20px;
  height: 1px;
  background-color: #ffa940;
}

.about-item {
  max-width: 225px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.about-item img {
  margin-bottom: 40px;
}

.about-title {
  color: #fff;
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.about-text {
  color: #fff;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
}

.results {
  background: url("/img/results-bg.png") no-repeat top left / cover;
}

.results-sm-image {
  display: none;
}

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

.results-text {
  max-width: 800px;
  color: #fff;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.results__table {
  margin: 0 auto;
  border-collapse: collapse;
}

.results__header {
  background-color: #ffa940;
  font-family: "Helvetica", sans-serif;
  font-size: 18px;
  line-height: 120%;
  color: #011c35;
  padding: 13px 60px;
}
.results__header th {
  padding-top: 13px;
  padding-bottom: 13px;
  border-spacing: 0;
}

.table {
  max-width: fit-content;
  display: block;
  border-collapse: collapse;
  overflow: hidden;
}

.table__row > td {
  padding-top: 24px;
  text-align: center;
  vertical-align: middle;
}
.table__user {
  text-align: left;
  padding: 0 16px;
  border-top-left-radius: 30px;
}
.table__payment {
  padding: 0 60px;
  border-top-right-radius: 30px;
}
.table__user-name {
  display: flex;
  align-items: center;
}
.table__image {
  margin-right: 14px;
}
.table__asset {
  padding: 0 40px;
}
.table__row {
  position: relative;
  color: #fff;
  text-align: center;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.table__row::after {
  position: absolute;
  content: "";
  background-color: #7b8e9c;
  width: 100%;
  left: 0;
  bottom: -8px;
  height: 1px;
}

.calculate {
  margin-top: 60px;
}

.table__direction,
.table__amount,
.table__expiry-time,
.table__open-time {
  padding: 0 30px;
  border-left: 1px solid #ffa940;
  border-right: 1px solid #ffa940;
}
.table__payment {
  border-left: 1px solid #ffa940;
}

.feedback {
  background: url("/img/section-bg-img.png") no-repeat center / cover;
}

.feedback-wrapper {
  position: relative;
  padding: 40px 0;
}

.slider {
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  position: static;
}

.user-info {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.user-info div h4 {
  margin-bottom: 12px;
}

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

.swiper-slide {
  max-width: 380px;
  width: auto;
  padding: 20px 16px;
  border-radius: 8px;
  background: #7b8e9c;
  box-shadow: 0px 4px 10px 0px rgba(4, 40, 123, 0.2);
  display: flex;
  flex-direction: column;
  max-width: 380px;
  color: #fff;
  font-family: "Montserrat";
  min-height: 350px;
  justify-content: space-between;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-button-next,
.swiper-button-prev {
  top: 100%;
  right: calc(50% - 80px);
  position: absolute;
  background: url("/img/arrow.svg") no-repeat center / cover;
  width: 40px;
  height: 40px;
  transform: rotate(270deg);
}

.swiper-button-prev {
  left: calc(50% - 80px);
  transform: rotate(90deg);
}

.user-profit div span:first-of-type {
  margin-bottom: 12px;
  display: block;
  color: #fff;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
}

.user-profit div span {
  font-size: 20px;
  font-weight: 600;
}

.results-2 {
  padding-bottom: 0;
}

.blue {
  color: #9ce3ff;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 700;
}

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

  .table {
    overflow-x: auto;
  }

  .hero-video {
    flex-direction: column;
  }

  .hero-video video {
    max-width: 100%;
  }
}

@media (max-width: 944px) {
  .hero {
    background: url("/img/hero-bg-tab.png") no-repeat center / cover;
  }

  .container {
    padding-inline: 40px;
  }

  .hidden {
    display: none;
  }

  .tab-only {
    display: block;
  }

  .navbar {
    display: flex;
    position: absolute;
    right: 0;
    top: -550px;
    max-width: 320px;
  }

  .active {
    top: 50px;
  }

  .links-navbar {
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-inline: 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: #011c35;
  }

  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .about::before {
    position: absolute;
    content: "";
    width: 100%;
    top: 20px;
    height: 1px;
    background-color: #ffa940;
  }

  .about-item {
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .about-item img {
    width: 20px;
  }

  .about::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 10px;
    left: 10px;
    background-color: #ffa940;
  }
}

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

  .hero {
    background: url("/img/hero-bg-mob.png") no-repeat center / cover;
  }

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

  .hero-video {
    gap: 20px;
  }

  .header-wrapper {
    justify-content: space-between;
  }

  .hero-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 20px;
  }

  .hero-title {
    line-height: normal;
  }

  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .big-margin {
    margin-bottom: 40px;
  }

  .results-title-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .results-sm-image {
    display: block;
    max-height: 33px;
  }

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

  .results-wrapper img {
    display: none;
  }

  .results {
    background: url("/img/results-bg.png") no-repeat center / cover;
  }

  .section-title {
    font-size: 24px;
  }
}
