.banner {
  height: 100vh;
  min-height: 60rem;
  max-height: 110rem;
  z-index: 15;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .banner {
    max-height: 70rem;
  }
}
@media only screen and (min-width: 768px) {
  .banner {
    background-attachment: fixed;
  }
}
.banner .layer-1 {
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .layer-1 span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.banner .layer-1 img {
  min-width: 100%;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  .banner .layer-1 img {
    object-fit: cover;
    transform: unset !important;
  }
}
.banner .layer-2 {
  pointer-events: none;
  position: absolute;
  width: auto;
  min-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  height: 20%;
  min-height: 38rem;
}
@media only screen and (min-width: 768px) {
  .banner .layer-2 {
    height: 55%;
    min-height: 48rem;
  }
}
@media only screen and (max-width: 576px) {
  .banner .layer-2 {
    display: none;
  }
}
@media (max-height: 750px) and (min-width: 576px) {
  .banner .layer-2 {
    height: 15%;
    min-height: 35rem;
  }
}
.banner .layer-2 span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .layer-2 img {
  min-width: 100%;
  width: auto;
  height: 100%;
  min-height: 28rem;
}
@media only screen and (min-width: 768px) {
  .banner .layer-2 img {
    min-height: 44rem;
  }
}
.banner .layer-mob {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.banner .layer-mob img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  height: 100%;
}
.banner__info {
  text-align: center;
  padding-top: 2%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .banner__info {
    padding-top: 10%;
  }
}
@media (max-height: 750px) and (min-width: 768px) {
  .banner__info {
    padding-top: 0;
  }
}
@media only screen and (max-width: 576px) {
  .banner__info {
    padding-top: 35%;
    z-index: 3;
  }
}
.banner__subtitle {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: bold;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .banner__subtitle {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .banner__subtitle {
    font-size: 1.4rem;
  }
}
.banner__title {
  font-size: 0;
  text-indent: 0;
  width: 100%;
}
.banner__title-wrap {
  width: 100%;
}
.banner__title img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 98.5rem;
  margin: 0 auto;
}
.banner .bttn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12.5%;
  z-index: 5;
}