* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper img {
  width: 100%;
  height: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  color: rgb(125, 122, 122);
}

.swiper-button-next::after {
  position: absolute;
  right: 30px;
}

.swiper-button-prev::after {
  position: absolute;
  left: 30px;
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
@media screen and (max-width: 468px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
