@charset "UTF-8";
@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-VariableFont_wght.ttf") format("woff");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lexend";
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  overflow-x: hidden;
  padding: 50px 20px;
  background: #1A1A1A url("../images/top.webp") left top no-repeat;
}

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

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
  height: 100%;
}

button a {
  padding-top: 14px;
}

table button a {
  padding-top: 4px;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
}

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

button {
  background-color: #CAFF33;
  border-radius: 82px;
  transition: box-shadow 0.3s ease;
}
button:hover {
  box-shadow: 0 0 15px #CAFF33;
}

h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
}

h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
}

.highlight {
  color: #CAFF33;
}

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

.image-container {
  aspect-ratio: 30/20;
}

.copy-notification {
  position: fixed;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #CAFF33;
  color: black;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.copy-notification.show {
  bottom: 20px;
  opacity: 1;
}

.copy-notification::before {
  content: "✓";
  margin-right: 8px;
}

.sections {
  flex: 1;
  min-width: 0;
}

.loader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CAFF33;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  body {
    padding: 10px 10px;
  }
  .copy-notification {
    width: 90%;
    left: 5%;
    transform: none;
  }
  h2 {
    text-align: center;
    font-size: 30px;
  }
  h1 {
    font-size: 35px;
  }
}
.header {
  background-color: #1C1C1C;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 30px;
  border-radius: 100px;
  border: 1px #262626 solid;
}
.header a {
  width: 50px;
}
.header__button {
  width: 200px;
  height: 50px;
}
.header__button a {
  width: 200px;
}
.header__logo {
  width: 50px;
  height: 50px;
  align-self: center;
}

.hero {
  margin: 10rem auto 2rem auto;
  position: relative;
  overflow: hidden;
  max-width: 1600px;
}
.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .container {
  position: relative;
  z-index: 1;
  height: 800px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 120px;
}
.hero__check {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: #262626;
  width: 460px;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 300;
}
.hero__logo {
  width: 20px;
  height: 20px;
  align-self: center;
}
.hero__button {
  margin-top: 10px;
  width: 230px;
  height: 55px;
  margin-left: 8px;
}
.hero__tittle {
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 10;
  max-width: 810px;
}
.hero__bonuses {
  max-width: 550px;
  max-height: 600px;
  width: 100%;
  z-index: 10;
  background-color: #1A1A1A;
  border-radius: 10px;
  border: #262626 solid 1px;
  padding: 35px;
}
.hero__button-ex {
  margin-top: 20px;
  width: 100%;
  height: 50px;
  background-color: #22251B;
  color: #CAFF33;
}
.hero .bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.hero .bonus-item {
  position: relative;
  padding: 10px 30px 10px 50px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  background-color: #1C1C1C;
  border-radius: 10px;
  border: #262626 solid 1px;
}
.hero .bonus-item::before {
  content: "";
  position: absolute;
  left: 1%;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-image: url("../icons/sub.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.hero .bonus-value {
  align-self: flex-end;
  font-weight: 500;
}
.hero .bonuses-span {
  font-weight: 300;
}
.hero .second {
  width: 90%;
  opacity: 50%;
  margin: -10px auto;
}
.hero .third {
  width: 80%;
  opacity: 20%;
  margin: 0 auto;
}
.hero .exch {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #1C1C1C;
  border-radius: 10px;
  border: #262626 solid 1px;
}
.hero .exch .exchange-pair {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: #262626 solid 1px;
}
.hero .exch .exchange-pair img {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  margin-right: 10px;
}
.hero .exch .exchange-name, .hero .exch .exchange-rate {
  padding: 20px;
}
.hero .exch .divider {
  border-top: #262626 solid 1px;
  width: 100%;
}
@media (max-width: 1500px) {
  .hero {
    margin-top: 40px;
  }
  .hero .container {
    height: fit-content;
    justify-content: center;
  }
  .hero .hero__tittle {
    text-align: center;
  }
  .hero .hero__button {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero .hero__check {
    width: 100%;
    font-size: 14px;
  }
  .hero .hero__bonuses {
    margin: 0 auto;
    padding: 10px;
  }
  .hero .hero__container {
    height: fit-content;
  }
  .hero .container {
    gap: 60px;
  }
}

.content__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}
.content li {
  width: fit-content;
  height: fit-content;
  background-color: #1C1C1C;
  border-radius: 100px;
  border: #262626 solid 1px;
  padding: 14px 40px;
}
.content h2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 150%;
}
@media (max-width: 1200px) {
  .content h2 {
    text-align: center;
  }
  .content__list {
    gap: 20px;
    justify-content: center;
  }
  .content li {
    width: 100%;
    text-align: center;
  }
}

.why {
  margin-top: 100px;
}
.why h2 {
  margin-bottom: 20px;
}
.why__container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.why__text {
  font-weight: 200;
  line-height: 150%;
  grid-area: ls;
}
.why__text p {
  padding-bottom: 20px;
}
.why__card {
  background-color: #1C1C1C;
  border-radius: 10px;
  padding: 35px;
  text-align: center;
  margin-left: 20px;
  width: 100%;
}
.why__card-three {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
}
.why .big {
  font-size: 48px;
  font-weight: 500;
  line-height: 150%;
  color: #CAFF33;
}
.why__grey {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #B3B3B3;
}
.why .dashed {
  border-left: 1px dashed #262626;
}
.why__card-three {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.why__card-three .big {
  font-size: 35px;
}
.why__card-three div {
  max-width: 120px;
}
.why__claim {
  width: 320px;
  height: 55px;
  margin-top: 30px;
}
.why__table {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-area: hd;
}
@media (max-width: 1200px) {
  .why__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
    text-align: center;
  }
  .why .why__table {
    margin: 0 auto;
  }
  .why .big {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .why p {
    font-size: 16px;
  }
  .why {
    margin-top: 60px;
  }
}

.best {
  margin-top: 100px;
}
.best__block {
  font-weight: 200;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
  margin-top: 20px;
}
.best .image-container {
  max-width: 890px;
}
.best figure {
  grid-area: ls;
}
.best .text p {
  margin-bottom: 20px;
}
.best__text-side {
  max-width: 650px;
  grid-area: hd;
}
.best h3 {
  font-weight: 500;
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.best .bonus-list {
  margin-bottom: 50px;
}
.best .bonus-list__item {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  line-height: 1.5;
}
.best .bonus-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.best__promo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.best .copy {
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
  background-color: #1C1C1C;
  border-radius: 84px;
  border: #262626 solid 1px;
  align-items: center;
  padding: 12px 17px;
}
.best .copy p {
  font-weight: 400;
  font-size: 20px;
}
.best .copy .promocode {
  cursor: pointer;
  margin-left: 20px;
  background-color: #E4E4E7;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: black;
}
.best .copy .promocode p {
  font-weight: 700;
  margin-left: 10px;
}
.best .copy .promocode.copied {
  background-color: #CAFF33;
}
.best .copy .promocode.copied .clip {
  background-image: none;
}
.best .copy .clip {
  background-image: url("../icons/copy.svg");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: center;
  background-color: #CAFF33;
  border-radius: 0 19px 19px 0;
  width: 30px;
  height: 30px;
}
.best__button {
  width: 226px;
  height: 55px;
  color: black;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
}
.best__button:hover {
  background-color: #CAFF33;
}
@media (max-width: 1200px) {
  .best__block {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
    text-align: center;
  }
  .best .bonus-list {
    text-align: left;
  }
  .best .best__text-side {
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .best p {
    font-size: 16px;
  }
  .best {
    margin-top: 60px;
  }
}

.table {
  margin-top: 100px;
}
.table__container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.table__container p {
  font-weight: 200;
}
.table .table-container {
  grid-area: ls;
  overflow-x: auto;
}
.table__title {
  grid-area: hd;
}
@media (max-width: 1200px) {
  .table__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
    text-align: center;
  }
  .table .exchanges-table {
    margin: 20px auto;
  }
}

.exchanges-table {
  overflow-x: auto;
  margin: 2rem 0;
  font-family: "Lexend";
  max-width: 890px;
}
.exchanges-table table {
  width: 100%;
  border-radius: 4px;
  border: #5B5B5B 1px solid;
  border-collapse: collapse;
}
.exchanges-table table th, .exchanges-table table td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.exchanges-table table th {
  background-color: #1A1A1A;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  border-right: 1px solid #CAFF33;
}
.exchanges-table table .last {
  border-right: 1px solid #5B5B5B;
}
.exchanges-table table .bootom {
  border-bottom: 1px solid #5B5B5B;
}
.exchanges-table table .left {
  text-align: left;
}
.exchanges-table table tr {
  transition: background-color 0.3s ease;
  background-color: #3b3b3b;
}
.exchanges-table table tr:hover {
  background-color: rgba(58, 12, 163, 0.05);
}
.exchanges-table table tr td {
  font-size: 12px;
  font-weight: 300;
  border-right: 1px solid #e0e0e0;
  text-align: center;
}
.exchanges-table table tr .first {
  font-weight: 400;
  font-size: 18px;
  text-align: left;
}
.exchanges-table table .claim-btn {
  width: 88px;
  height: 25px;
  font-size: 12px;
  color: #CAFF33;
  background-color: #1A1A1A;
  opacity: 0.6;
}
.exchanges-table table .high {
  opacity: 1;
}

@media (max-width: 768px) {
  .exchanges-table table {
    min-width: 100%;
  }
  .exchanges-table table th, .exchanges-table table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  .table {
    margin-top: 60px;
  }
}
tr {
  position: relative;
}
tr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1A1A1A;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
tr:hover::after {
  opacity: 1;
}
tr:hover .claim-btn {
  opacity: 1;
}
tr:hover .first {
  color: #CAFF33;
}

.bonus {
  margin-top: 100px;
}
.bonus .container {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(#262626, #262626) padding-box, linear-gradient(95.43deg, rgba(202, 255, 51, 0.2) 0%, rgba(202, 255, 51, 0) 5.36%) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.bonus .container p {
  font-weight: 400;
  font-size: 40px;
  color: #CAFF33;
}
.bonus .container button {
  width: 250px;
  height: 55px;
}
@media (max-width: 768px) {
  .bonus .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .bonus p {
    font-size: 30px;
    text-align: center;
  }
  .bonus {
    margin-top: 60px;
  }
}

.how {
  margin-top: 100px;
}
.how p {
  margin-top: 20px;
  font-weight: 200;
}
.how__container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.how .image-container {
  aspect-ratio: 3/1;
}
.how__title {
  font-weight: 400;
  font-size: 24px;
  padding-left: 65px;
  padding-top: 10px;
}
.how__tips {
  grid-area: hd;
}
.how ol li {
  position: relative;
  padding: 20px 40px;
  margin-bottom: 40px;
  max-width: 830px;
  height: 147px;
  border-radius: 20px;
  border: 1px solid #262626;
  background: #1C1C1C;
}
.how ol {
  grid-area: ls;
  margin-top: 30px;
}
.how ol li::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 35%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
}
.how li.one::before {
  background-image: url("../icons/1.webp");
}
.how li.two::before {
  background-image: url("../icons/2.webp");
}
.how li.three::before {
  background-image: url("../icons/3.webp");
}
.how li.four::before {
  background-image: url("../icons/4.webp");
}
.how li p {
  color: #B3B3B3;
  margin-top: 25px;
}
.how button {
  width: 320px;
  height: 55px;
  margin-top: 40px;
}
.how h3 {
  font-weight: 500;
  font-size: 30px;
  color: #CAFF33;
  margin-bottom: 30px;
}
.how ul li {
  border-left: 1px solid #CAFF33;
  margin-bottom: 20px;
  padding-left: 30px;
  color: #B3B3B3;
  font-weight: 200;
}
@media (max-width: 800px) {
  .how__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
    text-align: center;
  }
  .how img {
    margin: 0 auto;
  }
  .how__title {
    text-align: left;
    padding-left: 45px;
  }
  .how ol, .how ul {
    text-align: left;
  }
  .how {
    margin-top: 60px;
  }
}

.faq {
  margin-top: 100px;
}
.faq__container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.faq__card {
  max-width: 800px;
  border-radius: 14px;
  border: #262626 solid 1px;
  padding: 20px;
}
.faq h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  padding-bottom: 10px;
}
.faq p {
  border-top: #262626 solid 1px;
  padding-top: 10px;
  font-weight: 200;
  font-size: 18px;
  line-height: 150%;
  color: #B3B3B3;
}
@media (max-width: 800px) {
  .faq__container {
    grid-template-columns: 1fr;
  }
  .faq {
    margin-top: 60px;
  }
}

.start {
  margin-top: 100px;
}
.start__container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.start p {
  padding-top: 10px;
  font-weight: 200;
  font-size: 18px;
  line-height: 150%;
}
.start button {
  width: 320px;
  height: 55px;
  margin: 0 auto;
}
.start__text {
  grid-area: ls;
}
.start__button {
  grid-area: hd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 800px) {
  .start__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
    text-align: center;
  }
  .start {
    margin-top: 60px;
  }
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  border: 1px solid #262626;
  border-radius: 100px;
  padding: 16px 30px;
}
.footer p {
  color: #B3B3B3;
  font-weight: 300;
}
.footer__logo {
  width: 55px;
  height: 55px;
}
.footer a {
  width: 55px;
}
.footer nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.footer nav a {
  width: fit-content;
}
@media (max-width: 800px) {
  .footer {
    flex-direction: column;
    gap: 10px;
  }
  .footer nav {
    flex-direction: column;
    gap: 10px;
  }
}

.privacy .privacy.container {
  margin-top: 100px;
}
.privacy .privacy.container a {
  color: #CAFF33;
  text-decoration: underline;
  display: unset;
}
.privacy .privacy.container li {
  list-style: disc;
  margin-left: 25px;
}
.privacy h1 {
  font-size: 48px;
  color: #CAFF33;
}
.privacy h2 {
  font-size: 40px;
}

@media (max-width: 1008px) {
  .privacy .privacy.container {
    margin-top: 40px;
  }
  .privacy h1 {
    font-size: 34px;
    text-align: center;
  }
  .privacy h2 {
    margin-top: 10px;
    font-size: 30px;
  }
}

/*# sourceMappingURL=main.css.map */
