.tp-hero {
  width: 100%;

  .tp-wrapper--full-width {
    padding: 0;
    margin: 0;

    .swiper {
      width: 100%;

      .swiper-button-prev,
      .swiper-button-next {
        width: 4rem;
        height: auto;

        img {
          width: 100%;
        }
      }

      .swiper-wrapper {

        .swiper-slide {
            height: auto;
        
            .tp-slide {
                width: 100%;

                img, video {
                    width: 100%;
                    display: block;
                }

                .image--mobile, .video--mobile {
                    display: block;

                    @media screen and (min-width: 768px) {
                        display: none;
                    }
                }

                .image--desktop, .video--desktop {
                    display: none;

                    @media screen and (min-width: 768px) {
                        display: block;
                    }
                }
            }
        }
      }
    }
  }
}

.tp-hero__swiper-navigation {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .tp-hero__swiper-navigation {
    right: 32px;
  }
}

@media screen and (min-width: 1024px) {
  .tp-hero__swiper-navigation {
    right: 64px;
  }
}

.tp-hero__swiper-navigation .swiper-button-prev {
  position: relative;
}

.tp-hero__swiper-navigation .swiper-button-next {
  position: relative;
}