/* .hero-slider {
  height: 100vh;
  height: 100dvh;
  background-image: url("../images/banner_background_logo_image.png");
  background-repeat: no-repeat;
  background-size: 100%;
} */

/* .hamburger span {
  outline: 1px solid #fff;
  transition: all 0.3s ease, outline-width 0.1s ease;
} */

.hero-slider {
  position: relative;
  overflow: hidden;

  & > img {
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
  }
}
.slide {
  position: absolute;
  left: 20%;
  width: 80%;
  height: 100%;
  display: none;
  top: 0;
}
.slide img {
  /* width: 100%; */
  position: absolute;
  height: 100%;
  display: block;

  &.last-slide {
    top: 4%;
    height: 96%;
  }
}

.title {
  font-family: "IndivisibleBold";
  font-weight: bold;
  font-size: clamp(1rem, -0.875rem + 4vw, 2.5rem);
  line-height: 1;
  position: absolute;
  top: 25%;
  right: -300px;
  padding: 10px 20px;
  border-radius: 5px;
  white-space: nowrap;
  letter-spacing: -2px;
}

.bullets {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.bullets span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dddddd;
  cursor: pointer;
  transition: background 0.3s;
}

.bullets span.active {
  background: #9c9b9b;
}

.hero-slider-mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .slide {
    left: 18%;
    width: 82%;
  }

  .title {
    letter-spacing: -1px;
  }
}

@media only screen and (max-width: 768px) {
  .title {
    font-size: clamp(0.75rem, -0.875rem + 5vw, 2rem);
    padding: 10px;
    letter-spacing: -0.3px;
  }
}

@media only screen and (max-width: 576px) {
  .both-slider-mobile-wrapper {
    overflow: hidden;
  }

  .title {
    font-size: clamp(0.75rem, -0.875rem + 4vw, 1.5rem);
    letter-spacing: -0.2px;
  }

  .hero-slider {
    display: none;
  }

  .hero-slider-mobile {
    display: block;
    position: relative;

    & > img {
      width: 100%;
      height: 100vh;
      height: 100dvh;
    }

    .mobile-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      display: none;
      top: 0;
    }
    .mobile-slide img {
      position: absolute;
      max-width: unset;
      height: 98%;
      bottom: 0;
      display: block;
      right: 0;
    }

    .mobile-title {
      font-family: "IndivisibleBold";
      font-weight: bold;
      font-size: clamp(1rem, -0.875rem + 10vw, 2.5rem);
      line-height: 1;
      position: absolute;
      top: 20%;
      right: auto;
      padding: 10px 20px;
      border-radius: 5px;
      white-space: nowrap;
      letter-spacing: -1px;
      text-align: left;
    }

    .bullets-mobile span {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
      margin: 0 4px;
      cursor: pointer;
    }
    .bullets-mobile span.active {
      background: #000;
    }
  }
}

/* @media only screen and (max-width: 576px) and (min-height: 800px) {
  .hero-slider-mobile {
    & > img {
      height: 90vh;
      height: 90dvh;
    }

    .mobile-slide img {
      top: 5%;
      height: 95%;
    }
  }
} */

@media only screen and (max-width: 400px) {
  .hero-slider-mobile {
    .mobile-title {
      font-size: clamp(1rem, -0.875rem + 10vw, 2.5rem);
    }
  }
}

@media (orientation: landscape) and (max-height: 400px) {
  .hero-slider {
    & > img {
      max-height: initial;
    }
  }
}
