.tp-hero {
  width: 100%;

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

    .swiper {
      width: 100%;

      .swiper-wrapper {

        .swiper-slide {
        
            .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;
                    }
                }
            }
          
        }
      }

      .swiper-pagination {
        .swiper-pagination-bullet-active {
          background: #FD5100;
        }
      }

      
    }
  }
}