.runda_banner {
  background: var(--bg-primary);
}

.runda_banner .swiper-slide {
  position: relative;
  margin-bottom: 140px;
}

.runda_banner .swiper-slide .runda_banner_img {
  width: 100%;
  aspect-ratio: 1920 / 780;
  min-height: 300px;
  object-fit: cover;
}

.runda_banner .swiper-slide .runda_banner_img_mobile {
  display: none;
}

.runda_banner .runda_banner_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.runda_banner .runda_banner_content .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.runda_banner .swiper-slide-active .runda_banner_content h2,
.runda_banner .swiper-slide-active .randa_banner_desc,
.runda_banner .swiper-slide-active .runda-btn-primary {
  opacity: 1;
  transform: translateY(0);
}

.runda_banner .runda_banner_content h2 {
  color: #FFF;
  text-align: center;
  text-shadow: 0 4px 4px var(--color-primary);
  font-family: var(--title-font-family);
  font-size: var(--title-size-h1);
  font-weight: 400;
  line-height: normal;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease 0.1s;
}

.randa_banner_desc {
  color: var(--color-primary);
  text-align: center;
  text-shadow: 0 4px 4px rgba(255, 255, 255, 0.20);
  font-family: var(--font-family);
  font-size: var(--title-size-h5);
  font-weight: 400;
  line-height: normal;
  margin-top: var(--text-gap-sm);
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease 0.1s;
}

.runda_banner .runda-btn-wapper {
  margin-top: var(--text-gap);
}

.runda_banner .runda-btn-primary {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.3s ease 0.1s;
}

.runda_banner .runda-btn-primary svg path {
  transition: all 0.3s ease 0.1s;
}

.runda_banner .swiper-button-prev,
.runda_banner .swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  background: transparent !important;
  border-radius: 50% !important;
  border: 1px solid #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease;
  transform: translateY(-80px);
}

.runda_banner .swiper-button-prev:after,
.runda_banner .swiper-button-next:after {
  display: block !important;
  color: #FFF;
  font-size: 16px;
  font-weight: bolder;
}

.runda_banner .swiper-button-prev:hover,
.runda_banner .swiper-button-next:hover {
  background: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
}

.runda_banner_thumbnail {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  z-index: 9;
}

.runda_banner_thumbnail_item {
  width: 16.3%;
  cursor: pointer;
}

.runda_banner_thumbnail_item img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 217/249 !important;
  object-fit: cover;
  object-position: left;
  filter: brightness(0.8);
}

.runda_banner_thumbnail_item.is-hidden {
  display: none;
}

@media screen and (max-width: 1200px) {
  .runda_banner .swiper-slide {
    margin-bottom: 100px;
  }

  .runda_banner .swiper-button-prev,
  .runda_banner .swiper-button-next {
    transform: translateY(-60px);
  }
}

@media screen and (max-width: 768px) {

  .runda_banner .swiper-slide .runda_banner_img_mobile {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .runda_banner .swiper-slide .runda_banner_img {
    display: none;
  }

  .runda_banner .swiper-slide {
    margin-bottom: 0px;
  }

  .runda_banner_thumbnail {
    display: none;
  }

  .runda_banner .swiper-button-prev,
  .runda_banner .swiper-button-next {
    width: 30px !important;
    height: 30px !important;
    transform: translateY(0px);
  }

  .runda_banner .swiper-button-prev:after,
  .runda_banner .swiper-button-next:after {
    font-size: 12px;
  }

}

@media screen and (max-width: 480px) {
  .runda_banner .runda_banner_content h2 {
    font-size: 24px;
  }

  .randa_banner_desc {
    font-size: 12px;
  }

}