/* === === === HeroSlider === === === */

.HeroSlider {
  position: relative;
}

.HeroSlider-sliding {
  position: relative;
  overflow: hidden;
  max-height: 920px;
}

.HeroSlider-sliding::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 99px;
    background-image: url('../Images/HeroSlider-wave.svg');
    background-size: cover;
  }

.HeroSlider-sliding--waveColor-blue::after {
    background-image: url('../Images/HeroSlider-waveBlue.svg');
  }

.HeroSlider-sliding--waveColor-white::after {
    background-image: url('../Images/HeroSlider-waveWhite.svg');
  }

.HeroSlider-buttons {
  position: absolute;
  z-index: 10;
  top: 50%;
  display: none;
  justify-content: space-between;
  width: 100%;
  padding: 0 28px;
  transform: translateY(-50%);
}

@media screen and (min-width: 601px) {

.HeroSlider-buttons {
    display: flex;
}
  }

.HeroSlider-buttons.is-hidden {
    display: none;
  }

.HeroSlider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 2.25rem;
  background-color: var(--clr-blue);
  color: #ffffff;
  aspect-ratio: 1 / 1;
}

.HeroSlider-button svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
  }

.HeroSlider-button:focus {
    outline: 2px solid red;
  }

.HeroSlider .IBESearch {
  width: 100%;
}

@media screen and (min-width: 1026px) {

.HeroSlider .IBESearch {
    position: absolute;
    z-index: 10;
    bottom: 130px;
}
  }
