.hero-slider .hero-slide {
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  position: relative;
}
.hero-slider .hero-slide .slide-graphics {
  position: relative;
}
.hero-slider .hero-slide .slide-graphics .overlay {
  position: absolute;
  width: 100%;
  height: 50%;
  background: #ffffff;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  left: 0;
}
@media all and (max-width: 768px) {
  .hero-slider .hero-slide .slide-graphics .overlay {
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.hero-slider .hero-slide .slide-graphics picture {
  display: block;
}
.hero-slider .hero-slide .slide-graphics picture img {
  width: 100%;
}
.hero-slider .hero-slide .slide-information {
  position: relative;
}
.hero-slider .hero-slide .slide-information[data-link] {
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .hero-slider .hero-slide .slide-information {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
  }
}
.hero-slider .hero-slide .slide-information .text-container .text-information {
  width: 100%;
}
@media all and (min-width: 768px) {
  .hero-slider .hero-slide .slide-information .text-container .text-information {
    width: 50%;
  }
}
.hero-slider .hero-slide .slide-information .left-information {
  justify-content: left;
  text-align: left;
}
@media all and (max-width: 768px) {
  .hero-slider .hero-slide .slide-information .left-information {
    justify-content: center;
    text-align: center;
  }
}
.hero-slider .hero-slide .slide-information .right-information {
  justify-content: right;
  text-align: right;
}
@media all and (max-width: 768px) {
  .hero-slider .hero-slide .slide-information .right-information {
    justify-content: center;
    text-align: center;
  }
}
.hero-slider .hero-slide .slide-information h1,
.hero-slider .hero-slide .slide-information h2,
.hero-slider .hero-slide .slide-information p {
  margin: 0;
}
.hero-slider .hero-slide .slide-information h1 {
  color: var(--white-color);
  font-weight: 300;
}
@media all and (max-width: 768px) {
  .hero-slider .hero-slide .slide-information h1 {
    color: var(--font-color);
    font-size: 42px;
    line-height: 42px;
  }
}
.hero-slider .hero-slide .slide-information h1 b,
.hero-slider .hero-slide .slide-information h1 strong {
  font-weight: 700;
}
.hero-slider .hero-slide .slide-information h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 300;
  color: var(--dark-gray);
  margin: 0;
}
@media all and (min-width: 768px) {
  .hero-slider .hero-slide .slide-information h3 {
    font-size: 32px;
    line-height: 32px;
  }
}
.hero-slider .hero-slide .slide-information h3 b,
.hero-slider .hero-slide .slide-information h3 strong {
  font-weight: 700;
}
.hero-slider .splide__arrows {
  position: absolute;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media all and (max-width: 1170px) {
  .hero-slider .splide__arrows {
    width: 100%;
  }
}
.hero-slider .splide__arrows .splide__arrow--prev {
  left: -37px;
}
@media all and (max-width: 1170px) {
  .hero-slider .splide__arrows .splide__arrow--prev {
    left: 17px;
  }
}
.hero-slider .splide__arrows .splide__arrow--next {
  right: -37px;
}
@media all and (max-width: 1170px) {
  .hero-slider .splide__arrows .splide__arrow--next {
    right: 17px;
  }
}
.hero-slider .splide__arrow {
  background-color: transparent;
  opacity: 1;
}
.hero-slider .splide__arrow svg {
  fill: var(--white-color);
  width: 40px;
  height: 40px;
}
.hero-slider .splide__pagination {
  z-index: 200;
}
