body {
  --viewportWidth: calc(100vw - var(--scrollbarWidth));
}
.banner {
  width: 100%;
  max-width: var(--viewportWidth);
  position: relative;
}
.ban-extra-text {
  right: 0;
  bottom: 0;
  position: absolute;
}
.ban-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.ban-text {
  margin-left: 10%;
  margin-right: 10%;
  height: auto;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  width: 80%;
  position: absolute;
  color: white;
}
.ban-text-title {
  font-size: 32px;
  font-weight: 600;
  text-align: left;
  height: 90px;
}
.ban-text-body {
  width: auto;
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  display: flex;
}
.swiper {
  height: 100%;
}
.ban-link {
  text-decoration: none;
  color: white;
}
.ban-link:hover {
  text-decoration: none;
  color: #3fc7fc;
}
.buttons-set {
  display: flex;
  gap: 20px;
}
@media screen and (width < 800px) {
  .ban-text-title {
    font-size: 28px;
    height: auto;
  }
  .ban-text-body {
    font-size: 18px;
  }
}
