html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

.scroll-bar::-webkit-scrollbar {
  display: none;
}

.scroll-bar {
  scrollbar-width: none;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.header {
  padding: 12px 0;
  position: fixed;
  top: 0;
  z-index: 50;
  background: #131315;
  width: 100%;
}

body {
  background: #131315;
  color: #fff;
  overflow-x: hidden;
}


section {
  overflow: hidden;
  min-height: 100%;
  position: relative;
}

.main-container {
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1280px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

/* main */
.main-content {
  padding-top: 2.5rem;
}

.img-planet {
  position: absolute;
  top: 2.5rem;
  right: -10rem;
  object-fit: contain;
  display: none;
}

/* .main-content-images {
  height: 10rem;
  width: 100vw;
} */

.phone-block {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orange-hi {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  position: absolute;
  left: 3.5rem;
  bottom: -0.25rem;
  z-index: 10;
}

.phone-mob {
  /* position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* position: relative; */
  height: 10rem;
  width: 80vw;
  object-position: center;
}

.contant-main {
  background-color: #242428;
  border-radius: 24px 24px 0 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.timer {
  display: flex;
  width: 100%;
  justify-content: space-around;
  background-color: #282B37;
  border-radius: 0.5rem;
  padding: 0.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.timer-wrap {
  width: 100%;
}

.timer-left {
  display: flex;
  margin-bottom: 0.5rem;
  justify-content: center;
  align-items: center;
}

.timer-left p {
  font-size: 14px;
  text-align: left;
}
.timer-left p:last-child {
  color: #3F4456;
  white-space: nowrap;
}

.timer-right {
  display: flex;
  align-items: center;
}

.timer-right p {
  font-size: 35px;
  color: #F66B04;
  letter-spacing: 0.07em;
  font-family: monospace;
  margin-right: 0.75rem;
}

.timer-right a {
  background-color: transparent;
  color: white;
  display: block;
  border-radius: 0.5rem;
  border: 1px solid #B270FE;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.timer-right a:hover {
  color: #F66B04;
}

.title-mob {
  display: flex;
  justify-content: center;
}

.title-mob h1 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  max-width: 34rem;
}

.title-desk {
  display: none;
}

.title-desk h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  max-width: 34rem;
}

.title-desk p {
  color: #3F4456;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
  max-width: 29rem;
}

.purpure-btn {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  transition: 0.6s;
  text-decoration: none;
  border: none;
}

.purpure-btn p {
  z-index: 10;
}

.purpure-btn svg, .purpure-btn span{
  z-index: 1;
}

.purpure-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(135, 68, 211, 0.30) 0%, rgba(52, 49, 194, 0.30) 100%);
  transition: opacity 0.6s;
  opacity: 0;
  z-index: 0;
}
.purpure-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #B270FE 0%, #4440F6 100%);
  transition: opacity 0.6s;
  z-index: 0;
}

.purpure-btn:hover::before {
  opacity: 1;
}
.purpure-btn:hover::after {
  opacity: 0;
}

.purpure-btn-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(135, 68, 211, 0.30) 0%, rgba(52, 49, 194, 0.30) 100%);
  transition: opacity 0.6s;
  opacity: 0;
  z-index: 0;
}
.purpure-btn-all:hover::before {
  opacity: 1;
}


@media (min-width: 1024px) {
  .referal-desk {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .referal-desk .referal-columns {
    width: 50%;
  }

  .referal-top-wrap .referal-top {
    flex-direction: row;
  }
  .referal-top .step-arrow {
    margin: 0 1rem;
  }
  .purpure-btn {
    width: 256px;
  }
  .download-buttons {
    margin-top: 2.5rem !important;
  }
  .title-desk p {
    font-size: 1.5rem;
  }
  .title-desk h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
  }
  .title-desk {
    align-items: flex-start;
  }
  .timer-right a{
    width: 120px;
  }
  .timer-left {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .timer-wrap {
    display: flex;
    align-items: center;
  }

  .timer {
    padding: 1rem;
  }
  .contant-main{
    order: 1;
    background-color: transparent;
    text-align: left;
    max-width: 38rem;
  }
  .main-content-images {
    display: none;
  }
  .img-planet {
    display: block;
  }
  .main-content {
    display: flex;
    align-items: center;
    height: 88vh;
  }
}

.download-buttons {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  gap: 1rem;
}

#modal-download .modal {
  text-align: left;
}

#modal-download .modal .step {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

#modal-download .download-button {
  margin-top: 24px;
}

#modal-download .modal .step-number {
  background: #3F4456;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block;
  width: 2.5rem !important;
  border-radius: 0.375rem;
  margin-right: 1.25rem;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}


@media (min-width: 1280px) {
  .main-content {
    padding-top: 0;
  }
}

@media (min-width:720px) {
  .title-desk {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
  }
  .title-mob {
    display: none;
  }
  .phone-mob {
    height: 20rem;
  }
  .orange-hi {
    width: 10rem;
    height: 10rem;
  }

  .main-content-images {
    height: 20rem;
  }
  .main-content {
    height: 100%;
    padding-top: 7rem;
  }
  .download-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  #modal-download .modal {
    width: 600px;
  }

  #modal-download .modal h2 {
    font-size: 24px;
  }
}

/* @media (max-height: 620px) {
  .download-buttons {
    grid-template-columns: repeat(2, 1fr);
  } */

/* } */


/* SECTION TWO COMENTS */
.comments-section {
  padding: 2.5rem 1rem;
}

@media (min-width: 1280px) {
  .comments-section {
    padding: 5rem 1rem;
  }
}

.text-block {
  text-align: center;
  margin-bottom: 2rem;
}

.text-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.text-block p {
  margin: 0;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .text-block p {
    font-size: 1.125rem;
  }

  .comments-scroll {
    overflow: unset;
  }

  .comments-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.comments-scroll {
  overflow-x: auto;
}

.comments-wrapper {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
}

.comment-card {
  flex: 0 0 auto;
  width: 18rem;
  padding: 1rem;
  border: 1px solid #242428;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #242428;
  position: relative;
}

.comment-card::before {
  background: linear-gradient(90deg, transparent, #4440f6 50%, transparent);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.user-info {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.user-info .avatar {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  margin-right: 0.5rem;
}

.user-info .name {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  color: #666;
}

.user-info .star-img {
  margin-top: 0.25rem;
  object-fit: contain;
  width: 110px;
}
.section-download-btns .main-container {
  max-width: 900px;
}

@media (min-width: 1024px) {
  .section-download-btns {
    padding: 80px 0;
  }
}
@media (min-width: 1280px) {
  .benefits-cards-container {
    display: flex;
    gap: 24px;
  }

}

/* REFERAL SECTION */

.referal-section {
  padding: 40px 0;
}

.referal-wrap {
  border-radius: 40px;
  background: linear-gradient(180deg, #210762 0%, #2E0062 100%);
  padding: 16px;
  position: relative;
}
.referal-wrap .img-mob {
  display: block;
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 3rem;
}
.referal-wrap .img-desk {
  display: none;
  left: 0;
  top: 3rem;
  position: absolute;
  object-fit: contain;
}

.referal-wrap .title {
  text-align: center;
  font-size: 24px;
}
.referal-wrap .subtitle {
  text-align: center;
  color: #B8A2EE;
  margin: 1rem 0;
}
.referal-top-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.referal-top {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #19044d99;
  border-radius: 24px;
  justify-content: center;
}
.referal-wrap .title-popup {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  width: max-content;

  background: var(--Gradient-Dark-Purple, linear-gradient(90deg, #511694 0, #211f98 100%));
  border-radius: 0 0 16px 16px;
  padding: 4px 8px 8px 14px;
  text-align: center;
}

.referal-wrap .title-popup p {
  font-size: 18px;
  font-weight: 700;
}
.referal-wrap .title-popup svg:first-child {
  position: absolute;
  top: 0;
  left: -12.5px
}

.referal-wrap .title-popup svg:last-child {
  position: absolute;
  top: 0;
  right: -12.5px
}

.referal-step {
  text-align: center;
  width: 220px;
  padding: 1.5rem;
  background: linear-gradient(90deg, #18044d, #18044d);
  border: 2px solid #b270fe;
  border-radius: 24px;
}
.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.step-arrow svg:last-child {
  display: none;
}
.referal-wrap .icon img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}
.referal-col {
  position: relative;
}
.referal-columns {
  position: relative;
  padding: 3.5rem 16px 1rem 16px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  background: #19044d99;
  border-radius: 24px;
}
.referal-wrap .desc {
  color: #B8A2EE;
}
.referal-wrap .desc-list .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgb(184 162 238);
}

.referal-wrap .desc-list .item svg{
  margin-right: 8px;
}

.referal-wrap .join-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.referal-wrap .join-subtitle {
  text-align: center;
  color: #B8A2EE;
  margin-top: 1rem;
}
.referal-wrap .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.referal-wrap .box-img {
  position: relative;
  bottom: -1rem;
  width: 176px;
  height: 160px;
}

.referal-bottom {
  padding: 16px;
  border: 2px solid #b270fe;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  background: #19044d99;
  border-radius: 24px;
}

.referal-bottom .box {
  position: relative;
  bottom: -1.5rem;
  width: 11rem;
  object-fit: contain;
  left: 50%;
  transform: translate(-50%);
}

.ref-btn {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  transition: 0.6s;
  text-decoration: none;
  z-index: 50;
  border: none;
  background: linear-gradient(90deg, #B270FE 0%, #4440F6 100%);
}

@media (min-width: 1024px) {
  .download-button.custom-link {
    align-items: center;
    flex-direction: column;
    height: 104px;
    justify-content: flex-end;
    padding: 24px 16px;
    width: 195px;
  }
  .download-button.custom-link span {
    margin: 0;
  }
  .custom-link svg {
    top: 22px;
  }
  .download-button.custom-link > svg:last-of-type {
    margin-right: 0;
  }
  .referal-bottom .box {
    position: absolute;
    right: 1.5rem;
    height: 10rem;
    left: unset;
    transform: unset;
  }

  .referal-bottom {
    margin-top: 40px;
    padding: 36px;
  }
  .step-arrow svg:last-child {
    display: block;
  }
  .step-arrow svg:first-child {
    display: none;
  }
  .referal-wrap .img-mob {
    display: none;
  }
  .referal-wrap .img-desk {
    display: block;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 0;
    object-fit: contain;
  }
  .referal-columns {
    flex-direction: row;
  }
  .referal-col {
    flex: 1;
  }
  .referal-wrap .box-img {
    position: absolute;
    right: 1.5rem;
    bottom: 0;
  }
}


/* DOWNLOAD BTN */

.section-download-btns {
  text-align: center;
  padding-top: 40px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.heading {
  font-size: 1.5rem;
  margin: 0;
  margin-bottom: 0.5rem;
}

.subtext {
  color: #9ca3af; /* Tailwind gray-400 */
  font-size: 1.25rem;
  margin: 0;
  margin-bottom: 0.5rem;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}

@media (min-width: 1024px) {
  .heading {
    font-size: 1.875rem;
  }

  .subtext {
    font-size: 1.5rem;
  }

  .button-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .blue-circle {
    display: none;
  }
}

.custom-link:hover span {
  background: var(--Gradient-Purple, linear-gradient(90deg, #B270FE 0%, #4440F6 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-link {
  transition: 0.4s;
  cursor: pointer;
  position: relative;
}

.custom-link span {
  margin-left: 2.25rem;
}

.custom-link svg {
  position: absolute;
  transition: .6s;
}

.custom-link:hover > svg:first-of-type {
 opacity: 0;
}

.custom-link > svg:last-of-type {
  opacity: 0;
  margin-right: 10px;
}
.custom-link:hover > svg:last-of-type {
  opacity: 1;
}

.download-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  color: #9ca3af;
  background-color: #323238;
  border: 1px solid #323238;
  text-decoration: none;
  z-index: 10;
  transition: background 0.3s, border-color 0.3s;
}

.download-button:hover {
  background-color: #131315;
  border-color: #B270FE;
}



/* slider */

.section-benefits {
  text-align: center;
  padding: 40px 0;
}

.section-benefits h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.benefits-cards-container .card {
  text-align: center;
  border-radius: 1rem;
  background-color: #242428;
  padding: 24px;
  position: relative;
  margin-bottom: 24px;
}

.benefits-cards-container .card img {
  width: 60px;
  height: 60px;
}

.benefits-cards-container .card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefits-cards-container .card p {
  font-size: 16px;
  color: #9CA0AF;
}

/* footer */
.footer {
  background-color: #242428;
  padding: 24px 0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

@media (min-width: 1024px) {

  .section-benefits h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  .footer {
    background-color: #131315;
    padding: 40px 0;
  }
  .footer .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .main {
    padding-top: 20px;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .footer-left {
    align-items: flex-start;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-icon {
  width: 24px;
  height: 24px;
}

.logo-text {
  margin-left: 12px;
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.footer-info {
  margin-top: 24px;
  font-size: 12px;
  color: #9CA0AF;
}

.contact-label {
  font-size: 14px;
}

.contact-link {
  color: #F7910E;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.footer-payment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .footer-payment {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0;
  }
}

.payment-item {
  background-color: #323238;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.payment-item img {
  width: 98px;
}

.payment-item img:first-child {
  width: 110px;
}

.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}












/* modal */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modal {
    background: #323238;
    width: 340px;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    position: relative;
  }

  .modal h2 {
    font-size: 18px;
    margin-bottom: 20px;
    /* color: #fff; */
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }

  .toggle-btn {
    padding: 10px 20px;
    border: 1px solid #B270FE;
    cursor: pointer;
    color: white;
    background: transparent;
    width: 100%;
    margin-bottom: 20px;
  }
  .toggle-btn:first-child {
    border-radius: 5px 0 0 5px;
  }
  .toggle-btn:last-child {
    border-radius: 0 5px 5px 0;
  }
  .toggle-btn.active {
    background: #B270FE;
    color: white;
  }

  .input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .submit-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #B270FE;
    color: white;
    cursor: pointer;
  }

  .submit-btn-active {
    width: 240px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #B270FE;
    color: white;
    cursor: pointer;
    text-decoration: none;
  }

  .submit-btn:disabled {
    background-color: #888;
    cursor: not-allowed;
  }

  .show {
    display: flex;
  }

  .wrpap-topggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #modal-active img {
    width: 100px;
  }

  .ios-btn {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 1.5rem;
    border: none;
    border-radius: 24px;
    font-weight: 600;
    position: absolute;
    font-size: 18px;
    top: 12%;
    left: 28%;
    cursor: pointer;
  }
  .ios-btn img {
    width: 20px;
    margin-right: 10px;
  }

  .ios-btn span {
    position: relative;
    top: 2px;
  }

  @media (min-width: 760px) {
    .ios-btn {
      width: 9rem;
      height: 4rem;
    }
  }

  @media (min-width: 1000px) {
    .ios-btn {
      width: 12rem;
      height: 5rem;
    }
  }


/* baner top */

.fixed-top-el {
  position: fixed;
  top: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #B270FE 0%, #4440F6 100%);
  border-radius: 24px;
  width: 90%;
  padding: 0.5rem;
  z-index: 30;
  transition: all 1s;
}


.close-btn-banner {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
}

.close-btn-banner.no-active {
  display: none;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner-box {
  /* background: #fff; */
  border-radius: 24px;
  color: #fff;
  /* padding: 1rem 2rem; */
  /* display: flex;
  align-items: center; */
  gap: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.banner-icon {
  position: absolute;
  width: 56px;
  object-fit: contain;
  bottom: -0.5rem;
  left: -2rem;
  display: none;
}

@media (min-width: 1024px) {
  .banner-icon {
    display: block;
  }
}

.banner-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.banner-sub {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.banner-sub p {
  text-align: left;
}

.badge {
  position: relative;
  display: flex;
}

.badge-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

.small-baner {
  display: none;
  align-items: center;
  justify-content: center;
}

.small-baner.join-btn {
  width: 125px;
}

.small-baner.active {
  display: flex;
}

.banner-content.no-active {
  display: none;
}

.join-btn {
  background: #fff;
  border-radius: 12px;
  color: #b270fe;
  padding: 12px 24px;
  text-decoration: none;
  width: 100%;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .fixed-top-el {
    width: 100%;
    border-radius: 0;
  }
  .close-btn-banner {
    display: none;
  }
  .banner-content {
    flex-direction: row;
    justify-content: center;
  }
  .join-btn {
    width: 240px;
  }
  .banner-box {
    display: flex;
    align-items: center;
    margin: 0;
    background: #fff;
    color: #000;
    padding: 5px 16px;
    margin-right: 40px;
  }
  .banner-sub {
    margin: 0;
  }
}
