.products {
  margin: 1.875rem 0 2.8125rem;
}
.products__top {
  max-width: 35.625rem;
  margin: 0 auto;
  text-align: center;
}
.products__title {
  margin-bottom: 1rem;
}
.products__text {
  line-height: normal;
}
.products__text > * {
  color: var(--text);
  font-family: var(--font-inter);
  font-size: max(1.0625rem, 13px);
  line-height: normal;
}
.products__text > * a {
  color: var(--link);
  text-decoration: underline;
  -webkit-transition: color var(--hover-transition);
  transition: color var(--hover-transition);
}
@media (min-width: 992px) {
  .products__text > * a:hover {
    color: var(--secondary);
  }
}
.products__container {
  position: relative;
}
.products__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.products__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.products__item {
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  width: 100%;
}
.products__item-img {
  position: relative;
  width: 100%;
}
.products__item-img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 80%;
}
.products__item-img > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
}
.products__item-content {
  padding: 0.375rem 1.03125rem 0.875rem 0.96875rem;
  border-radius: 0 0 1.25rem 1.25rem;
  background-color: var(--white);
  -webkit-box-shadow: 4px 4px 12px 1px rgba(0, 4, 54, 0.32);
  box-shadow: 4px 4px 12px 1px rgba(0, 4, 54, 0.32);
  height: 100%;
}
.products__item-name {
  margin-bottom: 0.5rem;
}
.products__item-name > * {
  color: var(--secondary);
  font-size: 10px;
  font-weight: 600;
  line-height: max(1.5rem, 12px);
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
}
.products__item-title {
  margin-bottom: 0.5rem;
}
.products__item-title > * {
  color: #1C1B1F;
  font-size: max(0.875rem, 12px);
  font-weight: 600;
  line-height: max(1.5rem, 12px);
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
}
.products__item-text > * {
  font-size: max(0.875rem, 12px);
  line-height: max(1.25rem, 12px);
  letter-spacing: 0.015625rem;
}
.products .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
}
.products .swiper-slide > * {
  height: 100%;
}
@media (min-width: 769px) {
  .products .swiper {
    padding: 0 15px 20px;
    margin: 0 -15px -20px;
  }
  .products__container {
    padding: 4.375rem 0 3.125rem;
  }
}
@media (max-width: 768px) {
  .products {
    margin: 50px 0;
  }
  .products__container {
    padding-top: 75px;
    margin-top: 16px;
    padding-bottom: 27px;
  }
  .products__item-img {
    max-height: 300px;
  }
  .products .swiper {
    margin: 0 -15px 0;
    width: calc(100% + 30px);
    padding-bottom: 30px;
    height: auto;
  }
  .products .swiper-slide {
    padding: 0 9px;
  }
}