.res-hero {
  width: 100%;

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

    .swiper {
      width: 100%;

      .swiper-wrapper {

        .swiper-slide {
            height: auto;
        
            .res-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;
                    }
                }
            }
        }
      }
    }
  }
}