@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", serif !important;
  font-size: 16px;
  font-weight: 400;
  background-color: #111111 !important;
  color: #fff !important;
}

a {
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

ul {
  margin: 0;
}

ul li {
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
}

.containers {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .containers {
    padding: 0 20px !important;
  }
}

.banner {
  background: linear-gradient(109.66deg, #9c5b4b 12.34%, #ffd0d1 110.17%), url("../img/bg.svg");
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner {
    min-height: 100vh;
    height: unset;
  }
}
.banner__img {
  background-image: url("../img/bg.svg");
  position: absolute;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  top: 100px;
}

.header {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transition: opacity 0.7s ease;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 9;
}
@media (max-width: 767px) {
  .header {
    padding: 10px 20px;
  }
}
.header__logo {
  flex: 1;
}
@media (max-width: 992px) {
  .header__logo {
    flex: 1;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo a img {
  width: 40px;
  height: 40px;
}
.header__logo a span {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__logo a span {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header__logo a span {
    font-size: 22px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 62px;
  flex: 2;
  justify-content: center;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__nav {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  color: #e5e5e5;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
}
.header__nav a:hover {
  color: #fff;
}
.header__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: end;
}
.header__nav-mobile {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #333;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: right 0.3s ease-in-out;
  z-index: 1100;
}
.header__nav-mobile.active {
  right: 0;
}
.header__nav-mobile ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.header__nav-mobile ul li {
  margin: 20px 0;
}
.header__nav-mobile ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}
.header__nav-mobile ul li a:hover {
  color: #ffcc00;
}
.header__hamburger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  display: none;
  margin: 0 0 0 20px;
  align-items: flex-end;
  right: 20px;
}
@media (max-width: 992px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger .line {
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.header__hamburger .line:nth-child(1) {
  width: 30px;
}
.header__hamburger .line:nth-child(2) {
  width: 25px;
}
.header__hamburger .line:nth-child(3) {
  width: 20px;
}
.header__hamburger.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 30px;
}
.header__hamburger.active .line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 30px;
}

.btns {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  font-size: 16px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 800;
  border-radius: 100px;
  min-width: 170px;
  overflow: hidden;
  position: relative;
}
.btns:hover .up {
  transform: translateY(-240%);
}
.btns:hover .down {
  transform: translateY(0%);
}
.btns .up {
  transform: translateY(0);
  transition: 0.4s;
}
.btns .down {
  transform: translateY(240%);
  position: absolute;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .btns {
    height: 50px;
    font-size: 16px;
    padding: 15px 20px;
  }
}
@media (max-width: 576px) {
  .btns {
    height: 50px;
    font-size: 13px;
    padding: 15px 12px;
    min-width: 100px;
  }
}

.menu-open {
  overflow: hidden;
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #111111 !important;
  cursor: pointer;
}
.btn-white a {
  color: #111111;
}

.btn-red {
  background-color: #e0191c;
  border: 1px solid #e0191c;
  color: #fff !important;
}

.btn-pink {
  background-color: #7a0041;
  border: 1px solid #7a0041;
  cursor: pointer;
  color: #fff !important;
}
@media (max-width: 1024px) {
  .btn-pink {
    border: 1px solid #ffffff;
  }
}

.btn-transperant {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff !important;
}
@media (max-width: 1024px) {
  .btn-transperant {
    background-color: #141414;
  }
}

.hero {
  height: 100vh;
  position: relative;
}
.hero__center {
  display: flex;
  align-items: center;
  height: 100vh;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__content h2 {
  font-size: 126px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 30px;
  white-space: break-spaces;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .hero__content h2 {
    font-size: 80px;
  }
}
@media (max-width: 1200px) {
  .hero__content h2 {
    font-size: 64px;
  }
}
@media (max-width: 1024px) {
  .hero__content h2 {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  .hero__content h2 {
    font-size: 60px;
  }
}
@media (max-width: 480px) {
  .hero__content h2 {
    margin: 0 0 10px;
    font-size: 50px;
  }
}
.hero__content p {
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .hero__content p {
    font-size: 18px;
  }
}
.hero__img-group {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
}
.hero__img-list img {
  position: absolute;
  width: unset;
  right: 10rem;
  top: 0;
  height: 100%;
}
.hero__button-group {
  margin: 50px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 480px) {
  .hero__button-group {
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .hero__button-group {
    margin: 30px 0;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .hero__large {
    display: none;
  }
}
.hero__mobile {
  display: none;
}
@media (max-width: 1024px) {
  .hero__mobile {
    display: block;
    position: absolute;
    bottom: 0;
    height: 60% !important;
  }
}
@media (max-width: 576px) {
  .hero__mobile {
    display: block;
    position: absolute;
    bottom: 0;
    height: auto !important;
  }
}

.marquee__part {
  flex-shrink: 0;
  padding: 0 4px;
  font-smooth: always;
}

.marquee {
  background: #e0191c;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 60px;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  margin: 0 0 20px;
}
@media (max-width: 576px) {
  .marquee {
    font-size: 44px;
  }
}

.marquee__inner {
  -webkit-font-smoothing: antialiased;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex: auto;
  flex-direction: row;
}

.video {
  overflow: hidden;
  padding: 50px 0;
}
.video__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 992px) {
  .video__section {
    flex-wrap: wrap;
    gap: 18px;
    flex-direction: column;
  }
}
.video__title {
  width: 50%;
  padding: 1rem;
}
@media (max-width: 992px) {
  .video__title {
    width: 100%;
  }
}
.video__title h2 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .video__title h2 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video__title h2 {
    font-size: 60px;
  }
}
.video__title p {
  font-size: 20px;
  font-weight: 400;
  max-width: 750px;
}
@media (max-width: 767px) {
  .video__title p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video__title p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .video__title p {
    font-size: 24px;
  }
}
.video__btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0 0;
  position: relative;
  z-index: 2;
}
.video__btn a {
  border-radius: 100px;
  font-size: 18px;
  font-weight: 800;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: black;
  background-color: #fff;
  border: 1px solid transparent;
  min-width: 184px;
}
.video__btn button {
  background-color: #2e2f2f;
  color: white;
  height: 62px;
  width: 62px;
  border-radius: 50%;
  outline: none;
  border: none;
  font-size: 20px;
}
.video__btn button:hover {
  background-color: #373838;
}
.video__player {
  width: 50%;
  min-height: 650px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
}
@media (max-width: 992px) {
  .video__player {
    width: 100%;
  }
}
.video__player .first-video {
  width: 340px;
  height: 620px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 3;
  transform-origin: bottom center;
}
.video__player .second-video {
  width: 260px;
  height: 540px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  transform: rotate(20deg);
  transform-origin: bottom center;
  opacity: 20%;
}
.video__player video {
  width: 100%;
  min-height: 100%;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  padding: 50px 0;
}
.about__section {
  background-color: #222222;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-image: url("../img/about-end.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: relative;
}
@media (max-width: 767px) {
  .about__section {
    border-radius: 40px;
  }
}
@media (min-width: 1441px) {
  .about__section {
    gap: 40px;
  }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .about__section {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .about__section {
    flex-wrap: wrap;
    background-image: none;
    gap: 0;
    flex-direction: column;
  }
}
.about__content {
  flex: 50%;
  padding: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about__content {
    flex: 80%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__content {
    flex: 80%;
  }
}
@media (max-width: 1200px) {
  .about__content {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  .about__content {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .about__content {
    flex: 100%;
    padding: 20px;
  }
}
.about__content h2 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .about__content h2 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__content h2 {
    font-size: 60px;
  }
}
.about__content p {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .about__content p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__content p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about__content p {
    font-size: 24px;
  }
}
.about__shadow {
  flex: 50%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 992px) {
  .about__shadow {
    flex: 100%;
    padding: 0 0 0 20px;
  }
}
.about__shadow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
@media (max-width: 992px) {
  .about__shadow img {
    display: block;
  }
}

.trust {
  padding: 150px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .trust {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .trust {
    padding: 80px 0;
  }
}
.trust__title {
  text-align: center;
}
.trust__title img {
  margin: 0 0 20px;
  width: 80px;
  height: 80px;
}
.trust__title h2 {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .trust__title h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .trust__title h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .trust__title h2 {
    font-size: 54px;
  }
}
.trust__title p {
  color: #9f9f9f;
  font-size: 24px;
  font-weight: 400;
}
.trust h3 {
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .trust h3 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .trust h3 {
    font-size: 60px;
  }
}
.trust p {
  font-size: 22px;
  font-weight: 400;
  color: #9f9f9f;
}
@media (max-width: 576px) {
  .trust p {
    font-size: 18px;
  }
}
.trust__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
  padding: 40px 0;
}
.trust__logo-track {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__logo-track img {
  transition: all 0.5s ease;
}
.trust__logo-track img:hover {
  transform: scale(1.08);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.why {
  padding: 50px 0;
}
.why__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (min-width: 1441px) {
  .why__content {
    gap: 30px;
  }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .why__content {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .why__content {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .why__content {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .why__content {
    flex-wrap: wrap;
  }
}
.why__img-container {
  flex: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .why__img-container {
    flex: 100%;
  }
}
.why__img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why__img-container img {
    width: 50%;
  }
}
.why__accordian {
  display: flex;
  flex-direction: column;
  flex: 50%;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .why__accordian {
    flex: 100%;
  }
}
@media (max-width: 576px) {
  .why__accordian {
    padding: 0;
  }
}
.why__accordian h3 {
  font-weight: 700;
  font-size: 100px;
  padding: 0 0 24px;
}
@media (min-width: 1441px) {
  .why__accordian h3 {
    font-size: 80px;
  }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .why__accordian h3 {
    font-size: 76px;
  }
}
@media (max-width: 1200px) {
  .why__accordian h3 {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  .why__accordian h3 {
    font-size: 56px;
  }
}
@media (max-width: 576px) {
  .why__accordian h3 {
    font-size: 48px;
  }
}
.why__tabs-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.why__tabs {
  border-bottom: 1px solid #707070;
  display: block;
}
.why__tabs:last-child {
  border-bottom: none;
}
.why__tabs h4 {
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 32px;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .why__tabs h4 {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .why__tabs h4 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .why__tabs h4 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .why__tabs h4 {
    font-size: 24px;
  }
}
.why__tabs p {
  color: #9f9f9f;
  font-size: 22px;
  font-weight: 400;
  padding: 0 0 16px;
}
@media (max-width: 576px) {
  .why__tabs p {
    font-size: 18px;
  }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .why__tabs p {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .why__tabs p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .why__tabs p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .why__tabs p {
    font-size: 16px;
  }
}

.universe {
  overflow: hidden;
  padding: 100px 0 0;
}
.universe .container {
  padding: 0;
}
.universe__title {
  text-align: center;
  margin: 0 0 100px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .universe__title {
    padding: 0 20px;
  }
}
.universe__title h3 {
  font-size: 72px;
  font-weight: 700;
  padding: 0 0 20px;
}
@media (max-width: 767px) {
  .universe__title h3 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .universe__title h3 {
    font-size: 60px;
  }
}
.universe__title p {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .universe__title p {
    font-size: 18px;
  }
}
.universe__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-image: url("../img/universe.webp");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .universe__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .universe__grid {
    display: block;
    background-image: none;
  }
}
.universe__column-left {
  display: grid;
  grid-template-columns: repeat(2, minmax(400px, 1fr));
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .universe__column-left {
    grid-template-columns: repeat(2, minmax(350px, 1fr));
  }
}
@media (max-width: 1200px) {
  .universe__column-left {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}
@media (max-width: 1024px) {
  .universe__column-left {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 768px) {
  .universe__column-left {
    grid-template-columns: repeat(1, minmax(100%, 1fr));
  }
}
.universe__column {
  padding: 90px 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(28, 28, 28, 0.4705882353);
  height: 100%;
  color: #fff;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .universe__column {
    padding: 50px;
  }
}
@media (max-width: 1200px) {
  .universe__column {
    padding: 50px;
  }
}
@media (max-width: 1024px) {
  .universe__column {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .universe__column {
    padding: 50px;
  }
}
@media (max-width: 576px) {
  .universe__column {
    padding: 40px 30px;
  }
}
.universe__text h3 {
  font-size: 73px;
  font-weight: 600;
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .universe__text h3 {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .universe__text h3 {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .universe__text h3 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .universe__text h3 {
    font-size: 18px;
  }
}
.universe__text p {
  font-size: 22px;
  font-weight: 400;
  margin: 30px 0;
}
@media (max-width: 576px) {
  .universe__text p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .universe__text p {
    font-size: 16px !important;
    margin: 10px 0 30px;
  }
}
.universe__text ul li {
  font-size: 22px;
  font-weight: 400;
  list-style-type: disc;
  color: #fff;
}
@media (max-width: 767px) {
  .universe__text ul li {
    font-size: 16px;
  }
}
.universe__item {
  padding: 90px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .universe__item {
    padding: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .universe__item {
    padding: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .universe__item {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .universe__item {
    padding: 40px 30px;
  }
}
.universe__item:hover img {
  transform: translateY(-10px);
}
.universe__item img {
  width: 60px;
  height: 60px;
  -o-object-fit: fill;
     object-fit: fill;
  transition: transform 0.3s ease;
}
.universe__item h4 {
  margin: 14px 0;
  font-weight: 600;
  font-size: 30px;
}
@media (max-width: 767px) {
  .universe__item h4 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .universe__item h4 {
    font-size: 20px;
  }
}
.universe__item p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .universe__item p {
    font-size: 16px;
  }
}
.universe__item:nth-child(1) {
  background-color: #2b2a2a;
}
.universe__item:nth-child(2) {
  background-color: transparent;
}
@media (max-width: 768px) {
  .universe__item:nth-child(2) {
    display: none;
  }
}
.universe__item:nth-child(3) {
  background-color: #141414;
}
.universe__item:nth-child(4) {
  background: rgba(43, 42, 42, 0.8);
  -webkit-backdrop-filter: blur(0.2px);
  backdrop-filter: blur(0.2px);
}
.universe__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .universe__flex {
    grid-template-columns: repeat(1, 1fr);
  }
}

.universe__item:nth-child(3) {
  grid-column: 1/-1;
  /* Span the full width */
}

.join {
  position: relative;
  overflow: hidden;
}
.join__img1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
}
@media (max-width: 767px) {
  .join__img1 {
    width: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .join__img1 {
    width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .join__img1 {
    width: 300px;
  }
}
.join__img2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-77%, -71%);
  width: 219px;
}
@media (max-width: 767px) {
  .join__img2 {
    width: 133px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .join__img2 {
    width: 133px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .join__img2 {
    width: 133px;
  }
}
.join__img2 img {
  animation: rotate 15s linear infinite;
}
.join__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
  .join__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.join__right {
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .join__right {
    gap: 0;
  }
}
@media (max-width: 991px) {
  .join__right {
    padding: 50px 0;
  }
}
.join__right-content {
  text-align: center;
  max-width: 630px;
  margin: 0 auto;
  padding: 0 10px 10px;
}
@media (max-width: 767px) {
  .join__right-content {
    padding: 0 10px 30px;
  }
}
.join__right-content h3 {
  color: #fff;
  font-size: 64px;
  font-weight: 600;
  margin: 0 0 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .join__right-content h3 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .join__right-content h3 {
    font-size: 36px;
    margin: 0 0 8px;
  }
}
@media (max-width: 767px) {
  .join__right-content h3 {
    font-size: 28px;
  }
}
.join__right-content p {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .join__right-content p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .join__right-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .join__right-content p {
    font-size: 18px;
  }
}
.join__group {
  position: relative;
  min-height: 330px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .join__group {
    min-height: 270px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .join__group {
    min-height: 200px;
  }
}
@media (max-width: 991px) {
  .join__group {
    min-height: 200px;
  }
}
.join__right-bg {
  position: absolute;
  content: "";
  background-color: #2a2a2a;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}
.join__two-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    /* Start at 0 degrees */
  }
  100% {
    transform: rotate(360deg);
    /* End at 360 degrees (one full rotation) */
  }
}
.footer__row {
  padding: 100px 0;
}
.footer__content {
  text-align: center;
}
.footer__content img {
  width: 50px;
  max-width: 50px;
}
.footer__content h2 {
  font-size: 36px;
  margin: 10px 0;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__content h2 {
    font-size: 24px;
  }
}
.footer__content p {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 767px) {
  .footer__content p {
    font-size: 18px;
  }
}
.footer__list {
  margin: 20px 0 0;
}
.footer__list ul {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.footer__list ul li a img {
  width: 30px;
  height: 30px;
  max-width: 30px;
  transition: transform 0.3s ease;
}
.footer__list ul li a img:hover {
  transform: translateY(-10px);
}
.footer__row-bottom {
  border-top: 1px solid #707070;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__row-bottom {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.footer__items {
  position: relative;
}
.footer__items p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 576px) {
  .footer__items p {
    font-size: 14px;
  }
}
.footer__items a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .footer__items a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .footer__items a {
    font-size: 16px;
  }
}
.footer__items a::after {
  content: "|";
  margin: 0 10px;
}
.footer__items a:last-child::after {
  content: "";
  display: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 30px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease-in-out;
  z-index: 10;
}
@media (max-width: 576px) {
  .sticky {
    padding: 10px 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.address {
  background: linear-gradient(113.74deg, #9c5b4b 11.79%, #ffd0d1 132.37%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .address {
    padding: 50px 0;
  }
}
.address__title {
  margin: 0 0 64px;
}
@media (max-width: 767px) {
  .address__title {
    margin: 0 0 30px;
  }
}
.address__title h2 {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 576px) {
  .address__title h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .address__title h2 {
    font-size: 60px;
  }
}
.address__box {
  background: rgba(55, 16, 16, 0.6980392157);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .address__box {
    flex-direction: column;
    gap: 20px;
  }
}
.address__box p {
  color: #fff;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  padding: 0 0 0 20px;
  word-break: break-all;
}
@media (max-width: 576px) {
  .address__box p {
    text-align: center;
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .address__box p {
    font-size: 18px;
  }
}
.address__box button {
  border-radius: 100px;
  background-color: #fff;
  padding: 18px 27px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
@media (max-width: 576px) {
  .address__box button {
    font-size: 16px;
  }
}
.address__layout {
  position: relative;
  z-index: 1;
}
.address__end {
  margin: 64px 0 0;
}
@media (max-width: 767px) {
  .address__end {
    margin: 30px 0 0;
  }
}
.address__end p {
  margin: 0;
  color: #582a25;
  font-size: 12px;
  font-weight: 400;
  max-width: 75%;
}
@media (max-width: 991px) {
  .address__end p {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .address__end p {
    font-size: 12px;
  }
}
.address__image {
  position: absolute;
  top: 50%;
  right: -15rem;
  transform: translateY(-50%);
  text-align: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .address__image img {
    width: 50%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .address__image img {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .address__image {
    top: 50%;
    left: 50%;
  }
}
@media (max-width: 991px) {
  .address__image {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .address__layout {
    max-width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 991px) {
  .address__layout {
    max-width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .hero__img-group {
    position: unset;
  }
  .hero__img-list img {
    right: unset;
    width: 100%;
    bottom: 0;
    -o-object-fit: contain;
       object-fit: contain;
    top: unset;
    height: unset;
  }
  .hero__center {
    align-items: flex-start;
  }
  .hero__content {
    padding: 6rem 0 0;
  }
  #parallax1 {
    display: none;
  }
  .hero__bg {
    background-image: url(../img/rectangle.svg);
    background-size: contain;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  .banners__content h1 {
    font-size: 40px !important;
  }
  .banners__content p {
    font-size: 18px !important;
  }
  .banners__btn a:nth-child(1) {
    min-width: unset !important;
  }
  .banners__btn a {
    height: 60px !important;
    font-size: 14px !important;
  }
  .banners {
    padding: 135px 0 0 !important;
  }
  .header__logo a span {
    font-size: 14px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero__img-group {
    position: unset;
  }
  .swiper-slide img {
    width: 300px !important;
  }
  .hero__img-list img {
    right: unset;
    width: 70%;
    bottom: 0;
    -o-object-fit: contain;
       object-fit: contain;
    top: unset;
    height: unset;
    left: 14%;
  }
  .hero__center {
    align-items: flex-start;
  }
  .hero__content {
    padding: 15rem 0 0;
  }
  #parallax1 {
    display: none;
  }
  .hero__bg {
    background-image: url(../img/rectangle.svg);
    background-size: contain;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  .banners__content h1 {
    font-size: 72px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero__img-list img {
    right: 0;
  }
  .swiper-slide img {
    width: 300px !important;
  }
  .banners__content h1 {
    font-size: 62px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .banners__content h1 {
    font-size: 72px !important;
  }
}
@media (min-width: 1440px) and (max-width: 1680px) {
  .banners__content h1 {
    font-size: 92px !important;
  }
}
.banners {
  padding: 270px 0;
  position: relative;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banners {
    padding: 220px 0 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banners {
    padding: 190px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banners {
    padding: 190px 0;
  }
}
.banners__res-image {
  display: none;
  text-align: end;
  margin: 2rem -2rem 0px 0;
}
@media (max-width: 767px) {
  .banners__res-image {
    display: block;
  }
}
.banners__image {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .banners__image {
    text-align: end;
    position: unset;
    margin: 2rem -2rem 0px 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banners__image {
    text-align: end;
    position: unset;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banners__image {
    text-align: end;
    right: -2rem;
  }
}
.banners__image img {
  width: 87%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banners__image img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .banners__image img {
    width: 87% !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banners__image img {
    width: 70%;
  }
}
.banners__content {
  position: relative;
  z-index: 2;
}
.banners__content h1 {
  color: #fff;
  font-size: 88px;
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 96px;
}
@media (max-width: 991px) {
  .banners__content h1 {
    line-height: normal;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banners__content h1 {
    line-height: 72px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banners__content h1 {
    line-height: 80px;
  }
}
.banners__content h2 {
  font-size: 64px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .banners__content h2 {
    font-size: 36px;
  }
}
.banners__content p {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}
.banners__img {
  text-align: center;
}
.banners__btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  position: relative;
  z-index: 2;
}
.banners__btn a {
  border-radius: 100px;
  font-size: 18px;
  font-weight: 800;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
}
.banners__btn a:nth-child(1) {
  background-color: #e0191c;
  border: 1px solid transparent;
  min-width: 184px;
}
.banners__btn a:nth-child(2) {
  border: 1px solid #fff;
  background-color: white;
  color: black;
}
.banners__btn a:nth-child(3) {
  border: 1px solid #fff;
  background-color: white;
  color: black;
}

@media (max-width: 767px) {
  .universe .containers {
    padding: 0 !important;
  }
}

@media (max-height: 950px) {
  .banners__image img {
    width: 70%;
  }
}
.roadmap {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .roadmap {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .roadmap {
    padding: 40px 0;
  }
}
.roadmap__title {
  margin: 0 0 50px;
}
.roadmap__title h2 {
  font-size: 64px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}
@media (max-width: 767px) {
  .roadmap__title h2 {
    font-size: 32px;
  }
}
.roadmap__title p {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .roadmap__title p {
    font-size: 18px;
  }
}

.fans {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .fans {
    padding: 40px 0;
  }
}
.fans__title {
  text-align: center;
}
.fans__title span {
  color: #fff;
  font-size: 24px;
  margin: 0;
  font-weight: 400;
  display: block;
}
@media (max-width: 767px) {
  .fans__title span {
    font-size: 16px;
  }
}
.fans__title h2 {
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 36px;
  color: #fff;
}
@media (max-width: 767px) {
  .fans__title h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fans__title h2 {
    font-size: 48px;
  }
}
.fans__row {
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .fans__row {
    margin: 30px 0 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fans__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fans__card {
  text-align: center;
  padding: 10px;
}
.fans__card:hover img {
  transform: scale(1.1);
}
.fans__card img {
  width: 120px;
  height: 120px;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .fans__card img {
    width: 80px;
    height: 80px;
  }
}
.fans__card p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 16px 0 0;
}
@media (max-width: 767px) {
  .fans__card p {
    font-size: 14px;
  }
}

.community {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .community {
    padding: 40px 0;
  }
}
.community__box {
  background-color: #222222;
  border-radius: 40px;
  position: relative;
  min-height: 632px;
  padding: 5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .community__box {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .community__box {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .community__content {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .community__content {
    padding: 20px;
  }
}
.community__content h4 {
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .community__content h4 {
    font-size: 48px;
  }
}
.community__content p {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .community__content p {
    font-size: 18px;
  }
}
.community__img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 991px) {
  .community__img {
    position: unset;
    margin: 10px 0 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .community__img {
    width: 40%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .community__img {
    width: 40%;
  }
}

#roadmap .col-12 {
  position: relative;
}

#roadmap .line {
  position: relative;
  position: absolute;
  left: 0;
  bottom: 380px;
  width: 120%;
  height: 4px;
  background: #2a2a2a;
}

#roadmap .line:before {
  position: absolute;
  left: 0;
  top: -9px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
}

#roadmap .roadmap_swiper {
  height: 480px;
}

#roadmap .roadmap_swiper .swiper-slide {
  position: relative;
  text-align: center;
}

#roadmap .roadmap_swiper .swiper-slide .date {
  font-size: 22px;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 60px;
  font-weight: 600;
}

#roadmap .roadmap_swiper .swiper-slide .period {
  position: absolute;
  left: 50%;
  top: 75px;
  width: 40px;
  height: 40px;
  margin-left: -20px;
}

#roadmap .roadmap_swiper .swiper-slide ul {
  position: relative;
  width: 250px;
  padding-top: 10px;
  margin: 0 auto;
}

#roadmap .roadmap_swiper .swiper-slide li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
  list-style: disc;
  font-weight: 400;
}

#roadmap .roadmap_swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}

#roadmap .roadmap_swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 10px;
  background-color: #fff;
}

.period img {
  width: 50px !important;
  height: 50px;
}

.videoFadeOut {
  animation: goBack 1s ease-out forwards;
}

.videoFadeIn {
  animation: goFront 1s ease-out forwards;
}

@keyframes goBack {
  0% {
    z-index: 3;
    width: 340px;
    height: 620px;
    opacity: 100;
  }
  100% {
    z-index: 1;
    transform: rotate(20deg);
    width: 260px;
    height: 540px;
    opacity: 20;
  }
}
@keyframes goFront {
  0% {
    z-index: 1;
    transform: rotate(20deg);
    width: 260px;
    height: 540px;
    opacity: 20;
  }
  100% {
    z-index: 3;
    width: 340px;
    height: 620px;
    transform: rotate(0);
    opacity: 100;
  }
}/*# sourceMappingURL=style.css.map */