.page-banner {
  padding: clamp(96px, 6.8vw, 130px) 0;
  position: relative;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  color: var(--text-white);
  margin-bottom: 20px;
}

.banner-subtitle {
  color: var(--text-white);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  margin-bottom: 40px;
}

.banner-subtitle2 {
  color: var(--text-white);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  margin-bottom: 70px;
}

.banner-bg {
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: bottom;
  background-image: url(../images/banner.png);
  background-image: -webkit-image-set(url(../images/banner.webp) type("image/webp"), url(../images/banner.png) type("image/png"));
  background-image: image-set(url(../images/banner.webp) type("image/webp"), url(../images/banner.png) type("image/png"));
}

.banner-intro {
  font-weight: 300;
  font-size: 1.65rem;
  line-height: 1.3;
  color: #ededed;
}

.banner-buttons {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 1440px) {
  .banner-title {
    font-size: 40px;
  }

  .banner-subtitle {
    font-size: 28px;
  }
  
  .banner-subtitle2 {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .banner-bg {
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: bottom;
    background-image: url(../images/tablet-banner.png);
    background-image: -webkit-image-set(url(../images/tablet-banner.webp) type("image/webp"), url(../images/tablet-banner.png) type("image/png"));
    background-image: image-set(url(../images/tablet-banner.webp) type("image/webp"), url(../images/tablet-banner.png) type("image/png"));
  }
}

@media (max-width: 670px) {
  .banner-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
  }

  .banner-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
  }
  
  .banner-subtitle2 {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
  }

  .page-banner {
    padding: 50px 0 50px 0;
    position: relative;
  }
}
