/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url("https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Google Font */
  --poppins: "Poppins", sans-serif;
  --advent-pro: "Advent Pro", sans-serif;

  /* Color Palette */
  --white: #fff;
  --black: #000;
  --primary: #f24ba7;
  --secondary: #63ddf2;
  --tertiary: #ffb900;
  --body-bg: #210240;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: auto !important;
}
body {
  color: var(--white);
  font-size: 18px;
  font-family: var(--poppins);
  font-weight: 400;
  line-height: 1.65;
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-color: var(--body-bg);
  background-image: url("../imgs/body-bg-2x.png");
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--advent-pro);
}
p {
  letter-spacing: -0.03em;
}
section,
.section {
  position: relative;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
a,
button {
  outline: none;
  box-shadow: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
button {
  padding: 0;
  border: none;
  background: unset;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
ol li,
ul li {
  list-style: none;
}
img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}
*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}
*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}

.fs-1 {
  font-size: 80px !important;
  line-height: 1 !important;
}
.fs-2 {
  font-size: 64px !important;
  line-height: 1 !important;
}
.fs-3 {
  font-size: 40px !important;
  line-height: 1 !important;
}
.fs-4 {
  font-size: 32px !important;
  line-height: 1 !important;
}

.btn {
  min-width: 166px;
  height: 58px;
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  font-family: var(--advent-pro);
  padding: 15px 0px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-primary {
  background-image: url("../imgs/primary-btn-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-color: transparent !important;
}
.btn-primary:hover {
  background-color: transparent !important;
  opacity: 0.9;
  filter: grayscale(100%) sepia(100%) hue-rotate(200deg) saturate(300%);
}
.btn-borderd {
  position: relative;
}
.btn-borderd::after,
.btn-borderd::before {
  position: absolute;
  left: -5px;
  top: -5px;
  content: "";
  width: 52px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../imgs/primary-btn-border-left.svg");
}
.btn-borderd::after {
  left: auto;
  top: inherit;
  right: -5px;
  bottom: -5px;
  background-image: url("../imgs/primary-btn-border-right.svg");
}

.btn-secondary {
  background-image: url("../imgs/secondary-btn-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-color: transparent !important;
}
.btn-secondary:hover {
  background-color: transparent !important;
  opacity: 0.8;
}
.container {
  max-width: 1189px;
}
.main {
  overflow-x: hidden;
}

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */

.header-area {
  position: relative;
  z-index: 2;
  padding: 0px 0px;
  border-bottom: 1px solid #ffffff2f;
}
.header__nav {
}
.header__nav ul {
  gap: 10px;
}
.header__nav ul li a {
  transition: all 0.3s ease;
  color: #fff;
}
.header__nav ul li a:hover {
  color: var(--primary);
}

/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */

.hero--section {
  padding: 124px 0px 212px;
}
.hero__wrapper {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.hero__text-img {
  position: absolute;
  top: -320px;
  right: 0;
  transition: all 0.3s ease;
  transform: scale(0.8);
}
.hero__content {
  max-width: 609px;
  position: relative;
  z-index: 3;
}

.hero__content h1 span.text-s--sm {
  font-size: 58px;
}

.hero__content h1 span.text-s--md {
  font-size: 97px;
}

.hero__content h1 span.text-s--lg {
  font-size: 115px;
}

.hero__content h1 {
  line-height: 0.97;
  margin-bottom: 28px;
}

.hero__content p {
  margin-bottom: 30px;
  opacity: 0.8;
}
.hero__coin {
  position: absolute;
  z-index: 1;
  transform: scale(0.8);
}
.hero__coin--1 {
  left: 66px;
  top: 71px;
}
.hero__coin--2 {
  right: 0;
  top: 137px;
}
.hero__coin--3 {
  top: 48px;
  max-width: 18px;
  left: 48%;
}
.hero__coin--4 {
  bottom: 180px;
  left: 47%;
  max-width: 20px;
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 about--section Section CSS Start */
/* =============================== */

.about--section {
  padding: 0px 0px 90px;
}
.about__header {
  margin-bottom: 33px;
}
.about__header-title {
  flex: 0 0 auto;
  width: 329px;
}
.about__header-content {
  flex: 0 0 auto;
  width: 633px;
}

.card {
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  padding: 24px 24px;
  position: relative;
}
.card::before,
.card::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 97px;
  height: 130px;
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  background-image: url("../imgs/card-border-left-primary.svg");
}
.card::after {
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
  height: 100px;
  background-image: url("../imgs/card-border-right-primary.svg");
}

.card--about {
  max-width: 370px;
  min-height: 258px;
  background-image: url("../imgs/card-about-bg.svg");
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card--about .card-icon {
  max-width: 98px;
}
.card--about .card-content p {
  letter-spacing: -0.03em;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card--about .card-content h3 {
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================== */
/* :: 6.0 about--section Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 features-section Section CSS Start */
/* =============================== */
.features-section {
  padding: 30px 0px 98px;
  position: relative;
}
.features__title {
  margin-bottom: 33px;
}
.card-icon img {
  width: inherit;
  max-width: initial;
}

.card--features {
  background-image: url("../imgs/card-features-bg.svg");
  height: 220px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 24px;
}
.card.card--features::before {
  background-image: url("../imgs/card-secondary-border-left.svg");
}
.card.card--features::after {
  background-image: url("../imgs/card-secondary-border-right.svg");
}
.card--features .card-content {
  flex: 0 0 auto;
  width: 324px;
}
.card--features .card-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card--features.flex-row-reverse .card-icon {
  position: absolute;
  right: auto;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.features_play {
  background-image: url("../imgs/play-now-ng.png");
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-area: 24px;
  font-size: 32px;
  font-weight: 500;
  font-family: var(--advent-pro);
  color: var(--white);
  transition: all 0.3s ease;
  background-size: 100%;
}
.features_play span.icon svg path {
  transition: all 0.3s ease;
}
.features_play:hover span.icon svg path {
  stroke: var(--primary);
}
.features_play:hover {
  color: var(--primary);
}

/* =============================== */
/* :: 7.0 features-section Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 counter-section Section CSS Start */
/* =============================== */

.counter-section {
  background-color: #0000004d;
  backdrop-filter: blur(5px);
  padding: 40px 0px 40px;
  border: 1px solid transparent;

  border-image-source: linear-gradient(
    131.67deg,
    rgba(255, 255, 255, 0.15) 8.12%,
    rgba(255, 255, 255, 0.5) 37.98%,
    rgba(255, 255, 255, 0.15) 67.84%
  );
  border-image-slice: 1;
}
.counter__item h2 {
  font-weight: bold;
  margin-bottom: 0px;
}
.counter__item p {
  font-size: 27px;
  font-weight: 500;
  font-family: var(--advent-pro);
}

/* =============================== */
/* :: 8.0 counter-section Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Testimonial Section CSS Start */
/* =============================== */

.testimonial--section {
  padding: 70px 0px 70px;
}
.testimonial__title {
  margin-bottom: 50px;
}
.testimonial-item {
  height: 338px;
  max-width: 371px;
  background-image: url("../imgs/card-testimonial.svg");
}

.card--testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial__content p {
  color: var(--white);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial__author-img {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.testimonial__author-content {
}
.testimonial__author-content h3 {
  font-family: var(--poppins);
  font-weight: 500;
  margin-bottom: 3px;
}
.testimonial__author-content p {
  font-size: 16px;
  color: #878c91;
}
.testimonial__author {
}
.testimonial__slides.swiper {
  margin-bottom: 48px;
}

#featuresPagination.swiper-pagination,
.testimonial__wrapper .swiper-pagination {
  max-width: 580px;
  margin: 0 auto;
  bottom: -66px;
  position: absolute;
  top: inherit;
  left: 50%;
  transform: translateX(-50%);
  height: 9px;
  background: #06021340;
  border-radius: 4px;
  width: 100%;
}

#featuresPagination.swiper-pagination span,
.testimonial__wrapper .swiper-pagination span {
  background-color: #fff;
  border-radius: 4px;
}
/* =============================== */
/* :: 9.0 Testimonial Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Join Now CSS Start */
/* =============================== */

.joinNow__wrapper {
  background-image: url("../imgs/join-now-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  height: 386px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.joinNow__content h2 {
  margin-bottom: 20px;
}

.joinNow__content h3 {
  margin-bottom: 20px;
}

.joinNow__content p {
  margin-bottom: 21px;
}
.sorceBtn img {
  max-width: 120px;
}

/* =============================== */
/* :: 10.0 Join Now CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Footer Section CSS Start */
/* =============================== */

.footer__top {
  padding: 130px 0px 24px;
  border-bottom: 1px solid #ffffff5e;
}
.social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../imgs/social-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 32px;
  height: 32px;
}
.social a:hover {
  opacity: 0.9;
  transform: translateY(-4px);
}
.footer-nav ul li a {
  color: #ffffff;
}
.footer-nav ul li a:hover {
  color: var(--primary);
}
.footer-nav {
}

.copywrite-text {
  padding: 24px 0px 55px;
}
/* =============================== */
/* :: 11.0 Footer Section CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Section CSS Start */
/* =============================== */
.glowEffect {
  position: absolute;
  z-index: -1;
  transform: scale(0.8);
}
.glowEffect-about {
  position: absolute;
  right: 0;
  bottom: -70%;
}
.glowEffect-feature {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.glowEffect-counter {
  right: 0;
  top: 0;
}
.glowEffect-footer {
  left: 0;
  bottom: 0;
}
/* =============================== */
/* :: 12.0 Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Section CSS Start */
/* =============================== */

.offcanvas {
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  border-right: 1px solid #ffffff2b;
}
.offcanvas-header .btn-close {
  background-image: none;
  width: 35px;
  height: auto;
  opacity: 1;
}
.offcanvas__menu ul li a {
  display: block;
  color: #fff;
  font-size: 16px;
  padding: 12px 0px;
  text-align: center;
  text-transform: capitalize;
  border-bottom: 1px solid #ffffff2b;
}
.offcanvas__menu ul li a:hover {
  color: var(--primary);
}

.offcanvas__menu {
  margin-bottom: 40px;
}
/* =============================== */
/* :: 10.0 Section CSS End */
/* =============================== */
