/* BANNER START */
.banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70rem;
  border-radius: 2.4rem;
  overflow: hidden;
}
@media (min-width: 991px) {
  .banner__content {
    min-height: 52rem;
    justify-content: unset;
  }
}

.banner__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.banner__image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
}

.banner__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem;
}
@media (min-width: 991px) {
  .banner__info {
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    max-width: 80rem;
    padding: 10rem;
  }
}

.banner__title {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  line-height: 120%;
  text-align: center;
}
@media (min-width: 991px) {
  .banner__title {
    font-size: 6rem;
    line-height: 100%;
    margin-bottom: 7.2rem;
    text-align: left;
  }
}

.banner__text {
  font-weight: 400;
  font-size: 1.4rem;
  text-align: center;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (min-width: 991px) {
  .banner__text {
    padding-left: 0;
    padding-right: 0;
    font-size: 3rem;
    line-height: 100%;
    text-align: left;
  }
}

.banner__action {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
@media (min-width: 991px) {
  .banner__action {
    flex-direction: row;
  }
}

.banner__action-link {
  width: 100%;
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  min-height: 6rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
@media (min-width: 991px) {
  .banner__action-link {
    width: fit-content;
  }
}

.banner__info--white {
  color: #fff;
}
.banner__info--white .banner__title {
  color: #fff;
}
.banner__info--white .banner__text {
  color: #fff;
}
.banner__info--white .banner__action-link {
  color: #fff;
}

/* BANNER END */
