.video-carousel {
  padding: 88px 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991.98px) {
  .video-carousel {
    padding: 64px 0;
  }
}
@media only screen and (min-width: 992px) {
  .video-carousel--mobile-only {
    display: none;
  }
}
.video-carousel-section .modal {
  padding: 0;
  border-radius: 10px;
}
.video-carousel-section .modal iframe {
  display: block;
  border-radius: 10px;
}
.video-carousel-section .modal .icon.icon-close path {
  fill: #fff;
}
.video-carousel.swiper {
  overflow: visible;
  width: 100%;
}
.video-carousel .swiper-wrapper {
  align-items: stretch;
  width: 100%;
}
.video-carousel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991.98px) {
  .video-carousel__header {
    justify-content: center;
  }
}
.video-carousel__title {
  margin: 0;
  font-family: var(--font-heading-family);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
.video-carousel__title > * {
  font-family: var(--font-heading-family);
  font-size: inherit;
}
@media only screen and (min-width: 1440px) {
  .video-carousel__title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .video-carousel__title {
    max-width: 50%;
  }
}
@media only screen and (max-width: 991.98px) {
  .video-carousel__title {
    text-align: center;
  }
}
.video-carousel__navigation {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
@media only screen and (max-width: 767.98px) {
  .video-carousel__navigation {
    display: none;
  }
}
.video-carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #1D1D1D;
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.video-carousel__arrow svg {
  width: 8px;
  height: auto;
}
.video-carousel__arrow--prev svg {
  transform: rotate(180deg);
}
.video-carousel__arrow:hover {
  opacity: 0.8;
}
.video-carousel__slider {
  position: relative;
  overflow: visible;
  width: 100%;
}
.video-carousel__slider .swiper-wrapper {
  align-items: stretch;
}
.video-carousel__slider .swiper-slide {
  max-width: 80%;
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 0.35;
  pointer-events: none;
}
.video-carousel__slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.video-carousel__slider .swiper-slide-prev,
.video-carousel__slider .swiper-slide-next {
  opacity: 0.65;
}
@media only screen and (max-width: 767.98px) {
  .video-carousel__slider .swiper-slide {
    width: 88%;
  }
}
.video-carousel .page-width {
  overflow: visible;
}
@media only screen and (min-width: 992px) {
  .video-carousel .page-width {
    max-width: 80%;
    padding: 0;
  }
}
.video-carousel__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.video-carousel__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #CCC;
  opacity: 1;
  transition: all 0.2s ease;
  margin: 0 !important;
}
.video-carousel__pagination .swiper-pagination-bullet-active {
  border-radius: 20px;
  width: 40px;
  background: #1D1D1D;
}
@media only screen and (max-width: 767.98px) {
  .video-carousel .page-width {
    padding: 0 12px;
  }
  .video-carousel__header {
    margin-bottom: 32px;
  }
  .video-carousel__pagination {
    margin-top: 32px;
  }
}

.video-slide {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
@media only screen and (min-width: 992px) {
  .video-slide--mobile-only {
    display: none;
  }
}
.video-slide__media {
  position: relative;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 767.98px) {
  .video-slide__media {
    aspect-ratio: 9/16;
  }
}
.video-slide__video, .video-slide__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-slide__video img, .video-slide__poster img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-slide__video {
  z-index: 2;
}
.video-slide__poster {
  z-index: 1;
  transition: opacity 0.3s ease;
}
.video-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px;
}
.video-slide__overlay-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 991.98px) {
  .video-slide__overlay-content {
    justify-content: center;
    text-align: center;
    gap: 16px;
  }
}
@media only screen and (max-width: 991.98px) {
  .video-slide__overlay {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 32px 16px;
    gap: 16px;
  }
}
.video-slide__title {
  color: #fff;
  font-size: var(--title-size, 56px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  .video-slide__title {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .video-slide__title {
    font-size: var(--title-size-mobile, 32px);
  }
}
.video-slide__text {
  color: #fff;
  font-size: var(--text-size, 18px);
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  .video-slide__text {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  .video-slide__text {
    font-size: var(--text-size-mobile, 18px);
  }
}
.video-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(17px);
          backdrop-filter: blur(17px);
  color: #111;
  cursor: pointer;
  transform-origin: bottom right;
  transition: transform 0.2s ease, background 0.2s ease;
  will-change: transform;
  backface-visibility: hidden;
}
.video-slide__cta > span {
  font-family: "T-Star", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: -2px;
}
@media (hover: hover) {
  .video-slide__cta:hover {
    transform: scale(1.05);
  }
  .video-slide__cta:hover > span {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 992px) {
  .video-slide__cta {
    position: absolute;
    bottom: 40px;
    right: 40px;
  }
}
.video-slide__cta--centered {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: 50px;
  height: 50px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}
.video-slide__cta--centered > span {
  display: none;
}
.video-slide__cta--centered svg {
  fill: #000;
  width: 40%;
  height: auto;
}
@media (hover: hover) {
  .video-slide__cta--centered:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.video-slide__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid #111;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 11px;
  line-height: 1;
  padding-left: 2px;
  background: #fff;
}
@media only screen and (max-width: 767.98px) {
  .video-slide__play-icon {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }
}
