.intro {
  position: relative;
  overflow: hidden;
}
.catalog__category {
    min-width: 0;
}
.catalog__category_items {
    display: flex;
    overflow: auto;
}
.product__card {
   /*  max-width: 100%; */
}
/* .swiper-slide{
 width: fit-content;
} */
.swiper-wrapper {
  align-items: stretch;
}

.swiper-scrollbar-drag {
    background: #F22701;
}
.swiper-button-next, .swiper-button-prev {
    color: #F22701;     
    font-size: 12px;
    padding: 4px 21px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #F22701;
    transition: all .2s linear;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
    transition: all .2s linear;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #fff;
     background: #F22701;
}


.swiper-slide {
  height: auto;
/*   padding: 20px;
border: 2px solid #000; */
}

.intro_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(94.42deg, rgba(0, 0, 0, 0.87) 44.68%, rgba(0, 0, 0, 0) 77.17%);
}

.intro_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.intro_bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 8% 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 8% 100%);
}

.intro_inner {
  position: relative;
  z-index: 3;
  padding: 90px 0 70px;
  font-family: "Zing Rust";
  max-width: 650px;
  text-align: center;
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

.intro_text {
  font-size: 68px;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 4px -2px #000, 4px -2px #fff;
}

.intro_button {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.intro_button span {
  font-size: 24px;
  padding: 4px 24px;
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  background: linear-gradient(114.93deg, #F11D00 5.11%, #FFAF12 94%);
}

.intro_button_clip {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.intro_button_clip::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  z-index: -1;
  background: #000;
}

#nav-line {
  display: block;
}

@media (max-width: 654px) {
  .intro_text {
    font-size: 35px;
  }

  .intro_text br {
    display: none;
  }

  .intro_button span {
    font-size: 24px;
  }

  .intro_overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .intro_bg img {
    -webkit-clip-path: none;
    clip-path: none;
  }
}

@media(max-width: 768px) {
    .swiper-wrapper {
        padding-bottom: 32px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        top: auto;
        bottom: 12px;
    }
    .swiper-button-next {
        right: 0;
    }
    .swiper-button-prev {
        left: 0;
    }
}