.page_bg {
  background-image: url(../images/reg_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-collapse.show {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 220px;
}

.content_wrapper {
  padding-top: 93px;
  font-family: 'Poppins', sans-serif;
}

.baseNftSection {
  /* padding: 100px 0 150px; */
  padding: 30px 0 50px;
}

.sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}

.sectionTitle {
  color: #FFF;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}

.sectionDec {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.nftCard {
  border-radius: 33px;
  border: 2px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(196deg, #505279 0.97%, #393175 0.98%, #464578 0.99%, #1E1560 22.68%, #030104 97.04%);
  padding: 10px;
  margin: 15px auto;
}

.nftCard:has(+.nftCard) {
  margin-bottom: 30px;
}

.flex-part-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cardInfo {
  padding: 24px 15px;
}

.cardTitle {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0;
}

.cardType {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.count,
.price {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.count {
  text-align: right;
}

.cardImgOuter {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  overflow: hidden;
  padding: 67px 105px;
}

/* .imgInner{
     width: 100%;
     height: 100%;
     border-radius: 18px;
     overflow: hidden;
   }
   .imgInner img{
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
   } */
.cardImgOuter:has(>img) {
  padding: 0;
}

.cardImgOuter>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nftCrdFooter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}

.btnWhiteOutline {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  padding: 13px 30px;
  border: 2px solid #FFF;
  border-radius: 22px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.btnWhiteOutline:hover {
  color: #000;
  background-color: #FFF;
}

.primaryBtn {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  padding: 15px 30px;
  text-align: center;
  border-radius: 22px;
  background-color: #240091;
  /* background: linear-gradient(90deg, #070C48 0%, #00358C 100%); */
  /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
  display: inline-block;
}

.primaryBtn:hover {
  /* background: linear-gradient(90deg, #00358C 0%, #070C48 100%); */
  background-color: #1AA2E7;
}

.baseNftSlider {
  /* padding-top: 50px !important; */
  margin-top: 50px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  width: 42px !important;
  height: 42px !important;
  padding: 13px;
  border-radius: 50px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/images/banner/slider_arrow_right.svg');
  transition: all 0.3s ease-in-out;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  margin: 0 !important;
}

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

.swiper-button-prev {
  right: 52px !important;
  background-image: url('/images/banner/slider_arrow_left.svg');
}

.swiper-button-next:hover {
  background-image: url('/images/banner/slider_arrow_hover_right.svg');
}

.swiper-button-prev:hover {
  background-image: url('/images/banner/slider_arrow_hover_left.svg');
}

.articalCard {
  border-radius: 32px;
  background-color: #12161E;
  overflow: hidden;
}

.artical_img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.artical_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.artical_info {
  padding: 21px;
  background-color: #97989C;
}

.artical_info h3,
.artical_title {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.artical_info p,
.artical_dec {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.articalSection .baseNftSlider {
  padding-top: 90px !important;
}


.main-h1.wallet_base_title {
  color: #FFF;
  font-family: 'Segoe UI', Poppins, Geneva, Verdana, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 76px;
  letter-spacing: 15px;
  line-height: normal;
}

.main-h1.wallet_base_title span {
  display: block;
  font-weight: 600;
}

.das_bonus {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 10%;
}

.mt-10 {
  margin-top: 90px;
}

.summary-widget {
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 13, 94, 0.24);
  padding: 25px;
}
.crd-label, .crd-value {
	color: #FFF;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.summary-widget.ref-levels {
	margin-top: 30px;
}
.summary-widget.ref-levels .nft-placeholder-h1 {
	text-align: center;
}
.dasboard_sec .direct_data .direct_box {
	padding: 30px 0px;
	border-radius: 22px !important;
	border: 2px solid #1a1c42;
	background: linear-gradient(194deg, #4A4D76 0%, #0B0730 49.04%, #000 100%) !important;
}

.dasboard_sec .direct_data .level-income-table {
	max-height: 651px;
	overflow-y: auto;
	overflow-x: hidden;
}

.direct_data th{
    font-size: 14px;
}

.flex-card-data {
  gap: 15px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.09);
  background: #020920;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  color: #fff;
}


@media (max-width: 1200px) {
  .main-h1.wallet_base_title {
	font-size: 63px;
}
  .summary-widget.ref-levels {
	margin-bottom: 40px;
}
  .summary-widget {
	padding: 20px;
}
.flex-card-data {
	padding: 17px;
}
.crd-label, .crd-value {
	font-size: 17px;
}

  .das_bonus {
	padding: 20px;
}
}
@media (min-width: 768px) {
  .content_wrapper {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (min-width: 1200px) {
  .content_wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 991.98px) {
  .sectionTitle {
    font-size: 24px;
  }

  .sectionDec {
    font-weight: 400;
  }

  .cardInfo {
    padding: 16px 10px;
  }

  .cardTitle {
    font-size: 20px;
  }

  .cardImgOuter {
    aspect-ratio: 8 / 9;
  }

  .btnWhiteOutline,
  .primaryBtn {
    font-size: 14px;
    font-weight: 500;
  }

  .btnWhiteOutline {
    padding: 12px 24px;
    border: 1px solid #FFF;
    border-radius: 18px;
  }

  .primaryBtn {
    padding: 13px 24px;
  }

  /* .baseNftSection {
        padding: 80px 0 100px;
    } */
  /* .baseNftSlider {
        padding-top: 100px !important;
    } */
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
  }
}

@media (max-width: 767.98px) {
  .content_wrapper {
    padding-top: 84px;
  }
}

@media (max-width: 575.98px) {
  .sectionTitle {
    font-size: 20px;
  }

  .cardInfo {
    padding: 0 0 12px;
  }

  .cardTitle {
    font-size: 18px;
  }

  .cardImgOuter {
    aspect-ratio: 15 / 16;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: auto !important;
    bottom: 0 !important;
  }

  .swiper-button-next {
    right: 0 !important;
    left: auto !important;
  }

  .swiper-button-prev {
    right: auto !important;
    left: 0 !important;
  }

  .baseNftSlider {
    padding: 30px 0 0 !important;
    margin: 0;
  }

  .baseNftSection {
    padding: 40px 0;
  }

  .articalSection .baseNftSlider {
    padding-top: 40px !important;
  }

  .artical_info {
    padding: 16px;
  }

  .artical_info h3,
  .artical_title {
    font-size: 20px;
  }
   .main-h1.wallet_base_title {
	font-size: 45px;
}

}