/* 1.0 - Hero */
.hero {
  position: relative;
  --hero-img-width-1: 100%;
  --hero-img-width-2: 100%;
  --hero-img-width-3: 100%;
  --hero-img-aspect-ratio-1: calc(200%/3);
  --hero-img-aspect-ratio-2: 50%;
  --hero-img-aspect-ratio-3: calc(100%/3);
  --hero-img-top-1: 0;
  --hero-img-top-2: -16.6667%;
  --hero-img-top-3: -33.3334%;
  --hero-credits-color-1: #c6c6c6;
}

.hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6)) no-repeat center/cover;
}

.hero-bg img {
  position: absolute;
  top: var(--hero-img-top-1);
  left: 50%;
  width: var(--hero-img-width-1);
  transform: translateX(-50%);
  max-width: var(--hero-img-width-1);
}

.hero-credits {
  position: absolute;
  width: 100%;
  padding-right: 5px;
  color: var(--hero-credits-color-1);
  font-size: 8px;
  text-align: right;
}

.hero, .hero-bg-wrap {
  padding-top: var(--hero-img-aspect-ratio-1);
}

.hero-header {
  position: absolute;
  z-index: 0;
  bottom: 80px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  text-align: center;
  width: clamp(75vw, 600px, 50vw);
}

.hero-header h1 {
  font-size: 25px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.4), 0 2px 2px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.1);
}

.hero-text {
  padding: 10px;
}

@media (min-width: 600px) {
  .hero-header h1 {
    font-size: 30px;
  }
  .hero-text {
    overflow: auto;
    aspect-ratio: 3/2;
    padding: 20px 20px 20px 20px;
  }
  .hero-text h1, .hero-text .h1, .hero-text h2, .hero-text .h2, .hero-text h3, .hero-text .h3 {
    margin: 0;
  }
  .hero-text-wrapper {
    position: relative;
  }
  .hero-text-wrapper .hero-text {
    display: block;
    padding-bottom: 50px;
  }
  .hero-text-wrapper::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: linear-gradient(360deg, #ffffff 10px, transparent);
  }
}
@media (min-width: 768px) {
  .hero, .hero-bg-wrap {
    padding-top: var(--hero-img-aspect-ratio-2);
  }
  .hero-bg img {
    top: var(--hero-img-top-2);
    width: var(--hero-img-width-2);
    max-width: var(--hero-img-width-2);
  }
}
@media (min-width: 1050px) {
  .hero, .hero-bg-wrap {
    padding-top: var(--hero-img-aspect-ratio-3);
  }
  .hero-bg img {
    top: var(--hero-img-top-3);
    width: var(--hero-img-width-3);
    max-width: var(--hero-img-width-3);
  }
  .hero-header {
    bottom: 80px;
  }
}
.hero {
  --hero-img-top-1: 0;
  --hero-img-top-2: 0%;
  --hero-img-top-3: 0%;
}

/* Carousel Sport  */
.chipSelected {
  border: 1px solid #cad8ee;
  border-radius: 20px;
  color: #4e7dc7;
  background-color: #edf2f9;
}

#sliderSport1 {
  transition: opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
