.home {
  margin-bottom: 30px;
}
.home__container {
  padding: 0;
}

.swiper.home-slider {
  /*max-height: 252px;
  min-height: 252px;*/
  overflow: hidden;
}
.swiper.home-slider .slider-nav {
  display: none;
}

.swiper-slide.home-slide {
  display: flex;
  height: 252px;
  width: 100%;
}
.swiper-slide.home-slide picture {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.swiper-slide.home-slide img {
  /*min-height: 252px;
  height: 100%;*/
  max-width: inherit;
  /*-o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;*/
	object-fit: contain; 
}

.swiper.home-slider .slider-dots.swiper-pagination-bullets {
  position: absolute;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
}

.swiper.home-slider .swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 9px;
  --swiper-pagination-bullet-height: 9px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-color: var(--links);
  --swiper-pagination-bullet-border-radius: 9px;
  transition: width 0.12s linear;
}

.swiper.home-slider .swiper-pagination-bullet-active {
    width: 45px;
    transition: width 0.12s linear;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  z-index: 19;
  top: 50%;
  transform: translate(0, -50%);
}
.slider-nav svg * {
  transition: all 0.12s ease-out;
}
.slider-nav.arrow-prev {
  left: 22px;
  transform: translate(0, -50%) rotate(180deg);
}
.slider-nav.arrow-next {
  right: 22px;
}
.slider-nav.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  transition: all 0.12s ease-out;
}

@media screen and (min-width: 576px) {
  .swiper.home-slider .slider-nav {
    display: flex;
  }
  .swiper.home-slider .slider-nav:hover svg circle {
    fill: var(--links);
  }
  .swiper.home-slider .slider-nav:hover svg path {
    filter: invert(1);
  }
  .swiper-slide.home-slide img {
    -o-object-position: initial;
       object-position: initial;
  }
}
@media screen and (min-width: 992px) {
  .home {
    margin-bottom: 42px;
  }
  .home__container {
    padding: 0 32px;
    max-width: 100%;
  }
  .swiper.home-slider {
    max-height: 407px;
    min-height: 407px;
    border-radius: 12px;
    overflow: hidden;
  }
  .swiper-slide.home-slide {
    height: 407px;
  }
  .swiper-slide.home-slide img {
    border-radius: 12px;
  }
  .slider-nav {
    width: 50px;
    height: 50px;
  }
  .slider-nav svg {
    display: flex;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .home {
    margin-bottom: 60px;
  }
  .swiper.home-slider {
    min-height: 480px;
    max-height: 480px;
  }
  .swiper-slide.home-slide {
    height: 480px;
  }
  .slider-dots.swiper-pagination-bullets {
    padding: 18px 0 28px 0;
  }
}