@charset "UTF-8";
body {
  padding: 0;
  margin: 0;
  font-family: "poppins";
  color: white;
  background-color: #02040e;
}

html {
  scroll-behavior: smooth;
  /* Enable smooth scrolling behavior */
}

a {
  text-decoration: none;
  color: unset;
}

.container {
  display: flex;
  flex-direction: row;
  padding: 40px;
}

.sidebar {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid #333;
}

.logo {
  max-width: 100px;
}

.access-title {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 900;
}

.feature-box {
  background-color: #1f2739;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-box i {
  margin-right: 10px;
  color: #ffb347;
}

.main-content {
  flex: 2;
  padding-left: 40px;
}

.header-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  color: #999;
}

.main-heading {
  font-size: 50px;
  font-weight: 700;
  margin-top: 0px;
}

.plans {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.plan {
  background-color: #111728;
  border: 1px solid #212d4d;
  border-radius: 10px;
  padding: 0;
  width: 350px;
}

.elite {
  border: 1px solid rgba(129, 85, 54, 0.8431372549);
}
.elite .price {
  color: #ffbb00;
}

.cvr {
  background-color: #1a2031;
  padding: 20px;
  border-radius: 10px;
}

.plan h2 {
  font-size: 1.7rem;
  padding: 0;
  margin: 0;
  font-weight: 700;
  margin-bottom: 0px;
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.price span {
  color: #888;
  font-size: 1rem;
  margin-right: 5px;
}

.savings {
  background-color: #ffb347;
  color: #000;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.features {
  margin-top: 15px;
  line-height: 1.6;
  padding: 0 20px;
}

.features li {
  list-style: none;
  margin-bottom: 8px;
}

.features li::before {
  content: "✓";
  color: #fbbf24;
  font-weight: bold;
  margin-right: 8px;
}

.button-group {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  background-color: #1a2031;
  border: 1px solid #444;
  padding: 10px 15px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  margin: 5px 0;
  cursor: pointer;
  width: calc(80% - 10px);
}

.button:hover {
  background-color: #374151;
}

.button.crypto {
  background-color: #047857;
}

.button.wire {
  background-color: #6b21a8;
}

.button2 {
  font-size: 18px;
  display: inline-block;
  border: 3px solid rgb(194, 157, 64);
  color: white;
  font-weight: normal;
  border-radius: 7px;
  font-family: unset;
  background-color: rgba(68, 61, 0, 0.589);
  padding: 10px 15px;
  margin: 20px 0 10px 0;
  width: calc(80% - 10px);
  text-align: center;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  background: linear-gradient(100.33deg, rgba(255, 207, 35, 0.2) 5.1%, rgba(255, 141, 58, 0.2) 83.56%);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mobile {
  display: none;
}

footer {
  padding: 10px;
  border-top: 1px solid rgba(68, 68, 68, 0.4196078431);
  text-align: center;
  margin: 60px 0 0 0;
}

@media only screen and (max-width: 820px) {
  .container {
    display: none;
  }
  .mobile {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .mobile .img {
    position: relative;
    display: inline-block;
    margin-top: 50px;
  }
  .mobile .img img {
    display: block;
    margin: auto;
    width: 100px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .mobile .img::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 217, 0, 0.342), rgba(168, 113, 11, 0.39), rgba(255, 217, 0, 0.342));
    filter: blur(50px);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  .mobile .p2 {
    font-weight: 700;
    text-align: center;
    font-size: 40px;
  }
  .mobile .plans {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
  }
  .mobile .plan {
    background-color: #111728;
    border: 1px solid #212d4d;
    border-radius: 10px;
    padding: 0;
    width: 330px;
    padding-bottom: 100px;
    position: relative;
  }
  .mobile .plan h2 {
    font-size: 18px;
  }
  .mobile .plan .button-group {
    position: absolute;
    bottom: 10px;
  }
  .mobile .plan .cvr {
    padding: 30px;
  }
  .mobile .plan .features {
    padding: 0 30px;
  }
  .mobile .plan .button i {
    font-size: 20px;
    margin-right: 10px;
  }
}/*# sourceMappingURL=payment.css.map */