* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Blauer Extra Light */
@font-face {
  font-family: "Blauer-Nue";
  src: url("../fonts/blauer/Blauer-Nue-Extralight.otf") format("opentype");
  font-weight: 200; /* Extra Light*/
}

/* Blauer Light */
@font-face {
  font-family: "Blauer-Nue";
  src: url("../fonts/blauer/Blauer-Nue-Light.otf") format("opentype");
  font-weight: 300; /* Light*/
}

/* Blauer Regular */
@font-face {
  font-family: "Blauer-Nue";
  src: url("../fonts/blauer/Blauer-Nue-Regular.otf") format("opentype");
  font-weight: 400; /* Regular */
}

/* Blauer Medium */
@font-face {
  font-family: "Blauer-Nue";
  src: url("../fonts/blauer/Blauer-Nue-Medium.otf") format("opentype");
  font-weight: 500; /* Medium */
}

/* Blauer Bold */
@font-face {
  font-family: "Blauer-Nue";
  src: url("../fonts/blauer/Blauer-Nue-Extrabold.otf") format("opentype");
  font-weight: 700; /* Bold */
}

body {
  font-family: "Blauer-Nue";
  font-weight: 200;
  position: relative;
  background-color: #121010;
  color: #ffffff;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/img/bg-noise.png");
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.2;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* HEADER */
/* HEADER */
/* HEADER */
/* HEADER */

header {
  width: 100%;
  height: 90px;
  margin-bottom: -90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.header__container {
  width: 90%;
  max-width: 1800px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.header__logo img {
  width: 178px;
  transition: all 0.3s;
  &:hover {
    cursor: pointer;
    transform: scale(105%);
  }
}

.header__nav {
  nav {
    ul {
      display: flex;
      align-items: center;

      li {
        list-style: none;
        margin-left: 80px;
      }
    }
  }
}

.link__nav {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  text-transform: none;
  font-size: 18px;
  line-height: 18px;
  &:hover {
    color: rgb(255, 255, 255, 0.5);
  }
}

.header-btn {
  display: inline-block;
}

.header-btn button {
  display: inline-block;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  background: url("../assets/img/bg-btn.svg") no-repeat center center;
  background-size: contain;
  border: none;
  text-align: center;
  background-color: transparent;
  color: white;
  transition: transform 0.3s ease-in-out;
}

.rotated-text {
  display: inline-block;
  transform: rotate(-6deg);
}

.header-btn button:hover {
  cursor: pointer;
  transform: scale(1.1);
}

/* MENU */

.hamburger-menu {
  display: none;
  position: relative;
}

.hamburger {
  font-size: 30px;
  cursor: pointer;
  color: white;
}

.popup-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #121010;
  transition: right 0.3s ease;
  z-index: 1000;
}

.popup-menu.active {
  right: 0;
}

.popup-menu nav ul {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style: none;
  gap: 20px;

  justify-content: center;
}

.popup-menu nav ul li {
  margin: 15px 0;
}

.popup-menu nav ul li a {
  font-size: 44px;
  font-weight: 500;
  text-transform: uppercase;
}

.close-menu {
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
}

/* HERO */
/* HERO */
/* HERO */
/* HERO */

.hero {
  position: relative;
  height: 100vh;
}

.video_container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

.video_container video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
}

.content_hero {
  display: flex;
  height: 100vh;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding-bottom: 40px;
}

.text-hero {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 20%;
  width: 35%;
  font-size: 78px;
  font-weight: 400;
  line-height: 90%;
  text-transform: uppercase;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 100;
  margin-bottom: 20px;
}

.scroll-down img {
  width: 40px;
  height: 40px;
}

.controls {
  position: absolute;
  bottom: 30px;
  right: 5%;
  display: flex;
  gap: 40px;
}

.control-btn {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.control-btn:hover {
  opacity: 1;
}

/* SLIDER */
/* SLIDER */
/* SLIDER */
/* SLIDER */

.slider-section {
  position: relative;
  height: 100vh;
  min-height: 900px;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slide.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.slider-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 20px;
  margin-left: 25%;
}

.slider-content img {
  width: 600px;
  margin: auto;
  opacity: 1 !important;
}

.text-content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-content h2 {
  font-size: 110px;

  text-transform: uppercase;
  line-height: 90%;
  font-weight: 700;
}

.text-content p {
  width: 80%;
  font-size: 24px;
  font-weight: 200;
  line-height: 110%;
}

.text-content h3 {
  font-size: 54px;
  font-weight: 300;
  text-transform: uppercase;
}

.categories {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.category {
  display: block;
  width: max-content;
  height: fit-content;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 200;
  line-height: 100%;
  padding: 18px 20px;
  background-image: url("../assets/img/bg-category.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  color: white;
  transition: 0.3s ease;
  white-space: nowrap;
}

.category-1.active {
  background-image: url("../assets/img/bg-category-active.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.category-2.active {
  background-image: url("../assets/img/bg-category-active2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.category-3.active {
  background-color: #3357ff;
}

.category-4.active {
  background-color: #f1c40f;
}

.category-1-color {
  color: #1f87ff;
}

.category-2-color {
  color: #8168ee;
}

.category-3-color {
  color: #3357ff;
}

.category-4-color {
  color: #f1c40f;
}

.counter {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  letter-spacing: 6px;
}

.navigation {
  position: absolute;
  bottom: 45px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 120px;
}

.arrow {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.arrow:hover {
  background-color: #c73876;
}

.arrow-icon {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
  color: white;
}

.arrow:hover .arrow-icon {
  opacity: 1;
  color: black;
}

/* LOCATIONS */
/* LOCATIONS */
/* LOCATIONS */
/* LOCATIONS */

.locations {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 150px;
}

.locations h2 {
  font-size: 90px;
  color: #fff;
  text-transform: uppercase;
  line-height: 90%;
  font-weight: 700;
}

.locations p {
  width: 30%;
  font-size: 24px;
  font-weight: 200;
  line-height: 110%;
  text-align: center;
  margin-bottom: 18px;
}

/* MERCH */
/* MERCH */
/* MERCH */
/* MERCH */

.merch {
  padding: 100px 50px 25px 50px;
  width: 90%;
  max-width: 1800px;
  min-height: 80vh;
  margin: 0 auto;
  background-image: url("../assets/img/bg-merch.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  margin-bottom: 200px;
}

.merch-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.merch h2 {
  font-size: 110px;
  color: #fff;
  text-transform: uppercase;
  line-height: 90%;
  font-weight: 700;
}

.merch p {
  font-size: 24px;
  font-weight: 200;
  line-height: 110%;
  width: 40%;
}

.btn-shop {
  font-size: 18px;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 10px 20px;
  width: max-content;
  transition: all 0.3s;
}

.btn-shop:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

.merch__cards-container {
}

.merch__slide-content {
  margin-top: -10px;
  padding-bottom: 50px;
}

.merch__card-box {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: all 0.3s;
}

.merch__card-box:hover {
  transform: translateY(-10px) rotate(4deg);
}

.merch__card-box img {
  width: 230px;
}

.merch__card-name {
  padding-top: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
}

.controllers-swiper {
  position: absolute;
  top: 25px;
  right: 0px;
  width: 130px;
  display: flex;
  justify-content: space-between;
}

.swiper-button-next,
.swiper-button-prev {
  top: unset !important;
  right: unset !important;
  left: unset !important;
  bottom: unset !important;
  width: auto;
  position: unset !important;
  background-color: #c7387685;
  border-radius: 50%;
  padding: 25px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #c73876;
}

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

.merch__card-wrapper {
  margin-top: 100px;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
}

.swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px !important;
}

/* FOOTER*/
/* FOOTER*/
/* FOOTER*/
/* FOOTER*/

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.footer {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/img/bg-footer.png") !important;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
  pointer-events: none;
}

.footer-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  margin-bottom: -120px;
}

.svgs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.planet-img,
.nave-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.planet-img {
  width: 900px;
}

.nave-img {
  width: 900px;
  left: 50%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  z-index: 10;
}

.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.email,
.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.email p,
.phone p {
  font-size: 24px;
  color: #fff;
}

.email p:hover,
.phone p:hover {
  color: #fff;
}

.social {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s;
}
.social a:hover {
  transform: scale(1.1);
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ffffff8c;
  padding-top: 30px;
  padding-bottom: 30px;
}

.copyright p {
  text-align: center;
  font-size: 24px;
  color: #fff;
}

/* RESPONSIVE */
/* RESPONSIVE */
/* RESPONSIVE */

@media screen and (max-width: 1800px) {
  .text-hero {
    width: 45%;
  }
}

@media screen and (max-width: 1750px) {
  .merch p {
    width: 50%;
  }
}

@media screen and (max-width: 1650px) {
  .slider-content img {
    width: 500px;
  }
  .text-content h2 {
    font-size: 90px;
  }
}

@media screen and (max-width: 1600px) {
  body::before {
    display: none;
  }
}

@media screen and (max-width: 1550px) {
  .text-content h2 {
    font-size: 80px;
  }
  .locations h2 {
    font-size: 70px;
  }

  .locations p {
    width: 40%;
  }
}

@media screen and (max-width: 1400px) {
  .text-hero {
    width: 55%;
  }
  .merch p {
    width: 60%;
  }
}

@media screen and (max-width: 1350px) {
  .footer {
    margin-top: -200px;
  }

  .slider-content {
    justify-content: center;
    margin-left: 5%;
  }
  .categories {
    display: none;
    position: relative;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
  }
  .category {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 20px;
  }
  .planet-img {
    width: 700px;
  }

  .nave-img {
    width: 700px;
  }
}

@media screen and (max-width: 1200px) {
  .header__nav,
  .header-btn {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }

  .text-hero {
    width: 70%;
  }
  .merch p {
    width: 70%;
  }
}

@media screen and (max-width: 1050px) {
  .image-container {
    display: none;
  }
  .slider-content {
    margin-left: 0%;
    padding: 20px;
    flex-wrap: wrap;
  }

  .text-content {
    max-width: 80%;
    justify-content: center;
    align-items: center;
  }
  .slider-content img {
    width: 450px;
    margin: 0;
    margin-top: -100px;
  }
  .text-content h2 {
    font-size: 60px;
    text-align: center;
  }
  .text-content h3 {
    text-align: center;
    font-size: 32px;
  }
  .text-content p {
    text-align: center;
    font-size: 18px;
  }
  .navigation {
    bottom: 25px;
  }
  .counter {
    bottom: 38px;
  }
  .locations h2 {
    font-size: 60px;
  }

  .locations p {
    font-size: 18px;
    width: 50%;
  }
  .merch h2 {
    font-size: 90px;
  }

  .merch p {
    font-size: 18px;
    width: 60%;
  }
  .planet-img {
    width: 650px;
  }

  .nave-img {
    width: 650px;
  }
}

@media screen and (max-width: 940px) {
  .image-container {
    display: none;
  }
  .merch p {
    width: 80%;
  }
}

@media screen and (max-width: 760px) {
  .image-container {
    display: none;
  }
  .text-hero {
    width: 100%;
  }
  .locations {
    gap: 15px;
  }
  .locations p {
    width: 80%;
  }
  .planet-img {
    width: 600px;
  }

  .nave-img {
    width: 600px;
  }
  .info {
    justify-content: center;
    gap: 30px;
  }
  .contact {
    gap: 30px;
  }

  .text-content p {
    width: 100%;
  }
}

@media screen and (max-width: 620px) {
  .image-container {
    display: none;
  }
  .text-content {
    gap: 20px;
    max-width: 90%;
  }
  .slider-content img {
    width: 350px;
  }
  .merch {
    padding: 50px 20px 25px 20px;
  }
  .merch__card-box:hover {
    transform: translateY(0px) rotate(0deg);
  }

  .controllers-swiper {
    display: none;
  }
  .swiper {
    margin-top: -50px;
  }
  .planet-img {
    width: 580px;
  }

  .nave-img {
    width: 580px;
  }
}

@media screen and (max-width: 560px) {
  .image-container {
    display: none;
  }
  .text-hero {
    font-size: 52px;
  }
  .locations h2 {
    font-size: 50px;
  }
  .merch h2 {
    font-size: 60px;
  }
  .merch p {
    width: 90%;
  }
  .copyright p {
    font-size: 18px;
  }
  .header__logo img {
    width: 140px;
  }
}

@media screen and (max-width: 410px) {
  .image-container {
    display: none;
  }
  .slider-content img {
    width: 300px;
  }
  .planet-img {
    width: 500px;
  }

  .nave-img {
    width: 500px;
  }
}

@media screen and (max-width: 400px) {
  .image-container {
    display: none;
  }
  .text-hero {
    font-size: 55px;
  }
}

.spin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 2;
  animation: spin 100s linear infinite;
  transform-origin: center;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
}

/* WHOLESALES PAGE */

.wholesales-container {
  padding: 150px 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.wholesales-container h1 {
  font-size: 90px;
  text-transform: uppercase;
  line-height: 90%;
  font-weight: 700;
  color: #c73876;
}

.wholesales-container p {
  width: 55%;
  font-size: 24px;
  font-weight: 200;
  line-height: 124%;
  text-align: center;
  margin-bottom: 18px;
}

.mailto-link {
  text-decoration: none;
  color: #8168ee;
}

@media screen and (max-width: 1350px) {
  .wholesales-container h1 {
    font-size: 70px;
  }

  .wholesales-container p {
    width: 70%;
  }
}

@media screen and (max-width: 940px) {
  .wholesales-container p {
    width: 96%;
  }
}

@media screen and (max-width: 620px) {
  .wholesales-container {
    padding: 150px 20px;

    margin-bottom: -100px;
    gap: 35px;
  }
  .wholesales-container h1 {
    font-size: 55px;
  }
  .wholesales-container p {
    font-size: 18px;
  }
}

@media screen and (max-width: 560px) {
  .wholesales-container h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 410px) {
  .wholesales-container h1 {
    font-size: 44px;
  }
}

/* ABOUT PAGE */

.about-container {
  padding: 150px 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.about-container h1 {
  font-size: 90px;
  text-transform: uppercase;
  line-height: 90%;
  font-weight: 700;
  color: #c73876;
}

.about-container p {
  width: 55%;
  font-size: 24px;
  font-weight: 100;
  line-height: 124%;
  text-align: center;
  margin-bottom: 18px;
}

@media screen and (max-width: 1350px) {
  .about-container h1 {
    font-size: 70px;
  }

  .about-container p {
    width: 70%;
  }
}

@media screen and (max-width: 940px) {
  .about-container p {
    width: 96%;
  }
}

@media screen and (max-width: 620px) {
  .about-container {
    padding: 150px 20px;

    margin-bottom: -100px;
    gap: 35px;
  }
  .about-container h1 {
    font-size: 55px;
  }
  .about-container p {
    font-size: 18px;
  }
}

@media screen and (max-width: 560px) {
  .about-container h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 410px) {
  .about-container h1 {
    font-size: 44px;
  }
}

/* FAQS */

.faqs-container {
  padding: 150px 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.faqs-container h1 {
  font-size: 90px;
  text-transform: uppercase;
  line-height: 90%;
  font-weight: 700;
  color: #c73876;
}

.faq-container {
  width: 80%;
  margin: 20px auto;
}

.faq {
  border-top: 1px solid #ccc;
  border-image: linear-gradient(
      0deg,
      #8168ee80 50%,
      #c7387680 50%,
      #8168ee80 50%
    )
    1;
}

.faq:first-child {
  border-top: 1px solid #ccc;
}

.faq:last-child {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px;
}

.faq-title {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 15px;
  margin-bottom: 10px;
}

.faq-answer p {
  font-size: 22px;
  font-weight: 200;
  color: #838383;
  text-align: start;
  width: 90%;
}

.icon {
  font-size: 24px;
}

@media screen and (max-width: 1350px) {
  .faqs-container h1 {
    font-size: 70px;
  }
}

@media screen and (max-width: 940px) {
  .faq-container {
    width: 90%;
  }
  .faq-title {
    font-size: 18px;
  }
  .faq-answer p {
    font-size: 18px;
  }
}

@media screen and (max-width: 620px) {
  .faqs-container {
    padding: 150px 20px;

    margin-bottom: -100px;
    gap: 35px;
  }
  .faqs-container h1 {
    font-size: 55px;
  }
}

@media screen and (max-width: 560px) {
  .faqs-container h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 410px) {
  .faqs-container h1 {
    font-size: 44px;
  }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
  .faqs-container {
    padding-bottom: 31% !important;
  }
  .scroll-down {
    margin-bottom: -35px;
  }
  .text-hero {
    bottom: 7%;
  }
}
@media only screen and (max-width: 886px) and (orientation: landscape) {
  .text-hero {
    bottom: 7%;
  }
  .scroll-down {
    margin-bottom: -35px;
  }
}
@media only screen and (max-width: 1348px) and (orientation: landscape) {
  .faqs-container {
    padding-bottom: 20% !important;
  }
  .footer-content {
    height: 145vh;
  }
}

.image-container {
  position: absolute;
  object-fit: none;
  object-position: center;
  right: 4%;
}
.product-img {
  z-index: 2;
}
