#bannerBanner2 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#banner-imgBanner2,
#banner-imgBannerNoButtons {
  height: 350px;
  width: 100vw;
  object-position: top;
  object-fit: cover;
  position: relative;
  text-align: center;
}

#overlayBanner2 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}

#overlayTextBanner2 {
  position: absolute;
  top: 10%;
  left: -2%;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: Left;
  text-align: right;
  padding: 0px;
  color: var(--background-color);
  font-family: "NeutraText-BookAlt", Sans-serif;
  font-size: 62px;
  font-weight: 600;
  text-shadow: 0px 0px 10px #000000;
  width: 45%;
}

#button-groupBanner2 {
  display: flex;
  gap: 150px;
}

#btnBanner2 {
  display: inline-block;
  padding: 10px 20px;
  transition: transform 0.2s ease;
}

#btnBanner2 img {
  height: 140px;
}

#btnBanner2:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #button-groupBanner2 {
    flex-direction: column;
  }

  #btnBanner2 {
    width: 100%;
    text-align: center;
    padding: 0px;
  }

  #btnBanner2 img {
    height: 130px;
  }
  #overlayBanner2 {
    top: 5%;
  }
  #button-groupBanner2 {
    gap: 10px;
  }
  #overlayTextBanner2 {
    top: 5%;
    text-align: center;
    padding: 0px;
    font-size: 41px;
    width: 100%;
  }

  #banner-imgBanner2 {
    height: 120px !important;
    width: 100%;
  }

  #banner-imgBannerNoButtons {
    width: 100%;
    height: auto;
  }
}
