.main-banner {
  position: relative;
  background-color: #000000;
}
.main-banner .blured-bg {
  height: calc(100% + 5px);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: blur(60px);
}
.main-banner .banner-bg-desk {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .main-banner .banner-bg-desk {
    display: none;
  }
}

.banner {
  height: calc(100vh - 50px);
  height: calc(var(--vh, 1vh) * 100 - 50px);
  width: 100vw;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url("../assets/background-desktop.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  font-family: "Saira Condensed", sans-serif;
  margin-top: 50px;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
.banner.animate .characters .character {
  animation: pulse 3.75s infinite;
}
.banner.animate .characters .character:nth-child(1) {
  animation-delay: 0s;
}
.banner.animate .characters .character:nth-child(2) {
  animation-delay: 0.625s;
}
.banner.animate .characters .character:nth-child(3) {
  animation-delay: 1.25s;
}
.banner.animate .characters .character:nth-child(4) {
  animation-delay: 1.875s;
}
.banner.animate .characters .character:nth-child(5) {
  animation-delay: 2.5s;
}
.banner.animate .characters .character:nth-child(6) {
  animation-delay: 3.125s;
}
.banner.animate .select-button .btn-text {
  animation: pulse 3.75s infinite;
  animation-delay: 3.125s;
}

.text-container {
  display: flex;
  flex-direction: column;
  transform: rotate(-4deg);
  font-family: "Bangers", system-ui;
}
.text-container .title {
  color: #FF0026;
  text-align: center;
  text-overflow: ellipsis;
  text-shadow: 2px 2px 0 #0E0E0E;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-size: 84px;
  font-weight: 400;
}
.text-container .text {
  color: #FFF;
  text-align: center;
  text-shadow: 2.574px 2.574px 0 #0E0E0E;
  -webkit-text-stroke-width: 1.29px;
  -webkit-text-stroke-color: #000;
  font-size: 24px;
  font-weight: 400;
}
.text-container .subtitle {
  color: #FF0026;
  text-align: center;
  text-shadow: 2.574px 2.574px 0 #0E0E0E;
  -webkit-text-stroke-width: 1.29px;
  -webkit-text-stroke-color: #000;
  font-size: 40px;
  font-weight: 400;
}
.text-container .subtitle .white {
  color: #FFF;
}

.characters {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
  transform: rotate(-4deg);
  margin: 58px auto 38px;
}
.characters .character {
  width: 180px;
  height: 240px;
  border: 6px solid #FFF;
  cursor: pointer;
}

.select-button {
  transform: rotate(-4deg);
  text-shadow: 2px 2px 0 #0E0E0E;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
}
.select-button .btn-text {
  color: #FFF;
  text-align: center;
  font-family: "Bangers", system-ui;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.select-button .btn-text img {
  width: 22px;
  height: 33px;
  margin-left: 16px;
}

@media only screen and (max-width: 767px) {
  .banner {
    min-height: 640px;
    background-image: url("../assets/background-mobile.webp");
    background-position: center bottom;
    margin-top: 44px;
  }
  .text-container {
    transform: rotate(-5deg);
  }
  .text-container .title {
    font-size: 48px;
  }
  .text-container .text {
    font-size: 18px;
    line-height: 41.187px;
  }
  .text-container .subtitle {
    font-size: 31px;
    font-weight: 400;
    line-height: 41.187px;
  }
  .characters {
    gap: 16px;
    transform: rotate(-4.5deg);
    margin: 40px auto 16px;
    width: 100%;
    max-width: 310px;
    flex-wrap: wrap;
  }
  .characters .character {
    width: 90px;
    height: 120px;
    border: 4px solid #FFF;
  }
  .select-button {
    transform: rotate(-4.5deg);
    padding-left: 27px;
  }
  .select-button .btn-text {
    font-size: 24px;
  }
}

/*# sourceMappingURL=banner.css.map */
