#mySwiper2 .swiper {
  position: relative;
  width: 100%;
  height: calc(var(--swiper-width) * var(--swiper-image-ratio) / 100%);
  overflow: hidden;
}

#mySwiper2 .swiper-slide {
  position: relative;
  width: var(--swiper-width);
  opacity: .5;
  transform: scale(.84);
  transition: all .3s ease-in-out;
  overflow: hidden;
  /*border-radius: 0.4285rem;*/
}

@media only screen and (max-width: 992px) {
  #mySwiper2 .swiper-slide {
    position: relative;
    width: var(--swiper-width);
    opacity: .5;
    transform: scale(1);
    transition: all .3s ease-in-out;
    overflow: hidden;
    /*border-radius: 0.4285rem;*/
  }
}

#mySwiper2 .swiper-backface-hidden .swiper-slide {
  transform: scale(.84) translateZ(0);
}

@media only screen and (max-width: 992px) {
  #mySwiper2 .swiper-backface-hidden .swiper-slide {
    transform: scale(1) translateZ(0);
  }
}

#mySwiper2 .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
}

#mySwiper2 .swiper-backface-hidden .swiper-slide.swiper-slide-active {
  transform: scale(1) translateZ(0) !important;
}

#mySwiper2 .swiper-image {
  position: relative;
  width: 100%;
  padding-top: var(--swiper-image-ratio);
}

#mySwiper2 .swiper-image .image {
  top: 0;
  left: 0;
  bottom: 0;
  width: 50vw;
  aspect-ratio: 5/3;
  object-fit: cover;
}

@media only screen and (max-width: 992px) {
  #mySwiper2 .swiper-image .image {
    /*position: absolute;*/
    top: 0;
    left: 0;
    bottom: 0;
    width: 70vw;
    height: 70vw;
    max-height: 464px;
    object-fit: cover;
    padding: 5px;
  }
}

@media only screen and (max-width: 992px) {
  #mySwiper2 .swiper {
    height: calc(var(--swiper-mobile-width) * var(--swiper-image-ratio) / 100%);
  }
}

@media only screen and (max-width: 992px) {
  #mySwiper2 .swiper-slide {
    width: var(--swiper-mobile-width);
    transform: scale(var(--swiper-mobile-inactive-scale));
  }
}

@media only screen and (max-width: 992px) {
  #mySwiper2 .swiper-backface-hidden .swiper-slide.swiper-slide {
    transform: scale(var(--swiper-mobile-inactive-scale)) translateZ(0);
  }
}

