.main-banner {
  position: relative;
  margin-bottom: 32px;
}

.main-banner__video {
  width: 100%;
  height: 90vh;
  min-height: 680px;
}

.main-banner__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: -1;
}

.main-banner__text {
  position: absolute;
  top: 62px;
  right: 0;
  left: 0;
  z-index: 5;
}

.main-banner__text h1 {
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
}

.main-banner__title {
  font-family: var(--font-family-wremena);
  font-size: 44px;
  line-height: 78%;
}

.main-banner__subtitle {
  margin-top: 1rem;
  font-family: var(--font-family-manrope);
  font-size: 36px;
  line-height: 98%;
}

.main-banner__title,
.main-banner__subtitle,
.main-banner__offer {
  animation-name: show-in-up;
  animation-duration: 1000ms;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

body:has(#splash-screen) .main-banner__title,
body:has(#splash-screen) .main-banner__subtitle,
body:has(#splash-screen) .main-banner__offer,
body:has(.splash-screen-2) .main-banner__title,
body:has(.splash-screen-2) .main-banner__subtitle,
body:has(.splash-screen-2) .main-banner__offer {
  animation-play-state: paused;
}

.main-banner__subtitle {
  animation-delay: 250ms;
}

.main-banner__offer {
  animation-delay: 500ms;
}

.main-banner__controls {
  color: var(--color-white);
}

.main-banner__controls .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.video-banner__bottom {
  position: absolute;
  bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  width: 100%;
  font-size: 12px;
  color: #ffffff;
  z-index: 10;
}

.video-banner__controls {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 6px 18px;
  line-height: 1;
  border: 1px solid #ffffff;
  border-radius: 48px;
  background-color: rgba(0, 0, 0, 0.05);
}

.video-banner__controls button {
  width: 1em;
  height: 1em;
  padding: 0;
  font-size: 28px;
  color: #ffffff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s linear, color 0.2s linear;
}

.video-banner__controls button:hover {
  color: #bf9086;
}

.video-banner__controls button:hover svg {
  fill: currentColor;
}

.video-banner__controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.video-banner__controls button svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: transparent;
  transition: fill 0.2s linear;
}

.video-banner__controls button.active svg {
  fill: currentColor;
}


/*21.04.2025 start*/
.home_awards_list{
    width: 60%;
    overflow: hidden;
}
.home_awards_list .swiper-slide{
    padding-bottom: 0;
}
.home_awards_list .swiper-wrapper{
    align-items: center;
}
.banner_list .swiper-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1000px;
}
.banner_list .swiper-slide{
    width: fit-content;
}
@media (max-width: 820px){
    .banner_list .swiper-slide{
        width: auto;
        display: inline-block;
        font-size: 14px;
    }
    .home_awards_list, .awards_item img{
        width: 100%;
    }
    .home_awards_content-mob .swiper{
        overflow: hidden;
    }
    .banner_list .swiper-wrapper{
        flex-wrap: nowrap;
        gap: 0;
    }
}
/*21.04.2025 stop*/


@media (min-width: 400px) {
  .main-banner__title {
    font-size: 48px;
  }

  .main-banner__subtitle {
    font-size: 38px;
  }
}

@media (min-width: 576px) {
  .video-banner__bottom {
    font-size: 20px;
  }

  .video-banner__controls button {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .main-banner {
    margin-bottom: 106px;
  }

  .main-banner__title {
    font-size: 83px;
  }

  .main-banner__subtitle {
    font-size: 68px;
  }

  .main-banner__text {
    top: 185px;
  }
}

