/**
 *  Banner
 */

.banner{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  min-height: 750px;
}

@media all and (min-width: 550px){
  .banner{
    min-height: 871px;
  }
}
@media all and (min-width: 750px){
  .banner{
    min-height: 954px;
  }
}
@media all and (min-width: 1000px){
  .banner{
    min-height: 1038px;
  }
}
@media all and (min-width: 1400px){
  .banner{
    min-height: 1121px;
  }
}
.banner__image {
  display: block;
  position: absolute;
  inset: 0;
}
.banner__cta,
.banner__anchor {
  z-index: 1;
}
.banner__image picture::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}
.banner__image article,
.banner__image picture {
  height: 100%;
}
.banner__image img {
  height: 100%;
  object-fit: cover;
}
.banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
  gap: 1.25rem;
}
.banner__text {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 915px;
}
.banner__text > * {
  margin: 0;
}
.banner__text h1 {
  font-weight: 500;
  line-height: 130%;
  text-align: center;
}
.banner__text h2 {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}
.banner__text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}
.banner__anchor {
  background-image: url(../../images/icons/arrow_down.svg);
  width: 56px;
  height: 56px;
  display: block;
}

