.hero {
  padding-top: 120px;
  padding-bottom: 32px;

}

.hero  .swiper,
.hero .hero__carousel__slide .wp-block-column {
  height: calc(100vh - 152px);
}

.hero__carousel__slide .wp-block-columns {
  gap: 16px !important;
}

.hero__carousel .swiper-button-prev,
.hero__carousel .swiper-button-next {
  background-color: var(--wp--preset--color--white-text);
  width: 48px;
  height: 48px;
  border-radius: 48px;
  transition: all .4s ease-in-out;
}

.hero__carousel .swiper-button-next::after,
.hero__carousel .swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 600;
}

.hero__carousel .swiper-button-prev:hover,
.hero__carousel .swiper-button-next:hover {
  background-color: var(--wp--preset--color--dark-text);

  &::after {
    color: var(--wp--preset--color--white-text);
  }
}

.hero__carousel .swiper-button-prev{
  left: 48px;
}

.hero__carousel .swiper-button-next {
  right: 48px;
}

.hero__carousel__slide__img {
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.hero__carousel .swiper-pagination {
  bottom: 32px !important;
  left: 64px;
  justify-content: flex-start !important;
  width: calc(100% - 64px);

  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #e9e9e9;
    opacity: 1 !important;
  }

  .swiper-pagination-bullet-active {
    background-color: var(--wp--preset--color--white-text) !important;
  }
}

@media only screen and (max-width: 900px) {
  .hero__carousel__slide .wp-block-columns {
    flex-direction: column-reverse;
    gap: 24px !important;
  }

  .hero__carousel .swiper-pagination {
    bottom: 96px !important;
  }

  .hero__carousel__slide .wp-block-column,
  .hero__carousel__slide .wp-block-image img {
    aspect-ratio: 9/11.5 !important;
  }

  .hero__carousel__slide .wp-block-image {
    display: none;
  }

  .hero__carousel .swiper-button-prev{
    left: 32px;
  }

  .hero__carousel .swiper-button-next {
    right: 32px;
  }
}


@media only screen and (max-width: 1110px) and (min-width: 810px) {

}

@media only screen and (max-width: 576px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 0;

    .container {
      padding-left: 24px;
      padding-right: 24px;
    }
  }

  .hero__carousel__slide .wp-block-column,
  .hero__carousel__slide .wp-block-image img {
    aspect-ratio: 9/16 !important;
  }

  .hero .swiper, .hero .hero__carousel__slide .wp-block-column {
    height: 100%;
  }

  .hero__carousel .swiper-pagination {
    left: 24px;
  }

  .hero__carousel .swiper-button-prev,
  .hero__carousel .swiper-button-next {
    background-color: var(--wp--preset--color--white-text);
    width: 48px;
    height: 48px;
    border-radius: 48px;
    transition: all .4s ease-in-out;
    margin-top: 32px;
  }

}