.home-products {
  background: #fff;
  padding: 51px 24px 82px;
}

.home-products__top {
  width: min(904px, 100%);
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 24px;
}

.home-products__heading {
  color: var(--home-products-heading-color, #00576a);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
}

.home-products__nav {
  width: 62px;
  height: 62px;
  border: 1px solid #00576a;
  border-radius: 50%;
  background: transparent;
  color: #00576a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.home-products__nav svg {
  width: 38px;
  height: 20px;
}

.home-products__slider {
  width: min(980px, 100%);
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.home-products__slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.home-products__slider .slick-track {
  display: flex;
  align-items: stretch;
}

.home-products__slider .slick-slide {
  height: auto;
}

.home-products__slider .slick-slide > div {
  height: 100%;
}

.home-products__item {
  height: 100%;
  padding: 0 33px;
  display: grid !important;
  grid-template-rows: 220px 64px;
  align-items: end;
  gap: 18px;
  text-align: center;
}

.home-products__image {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 220px;
  text-decoration: none !important;
}

.home-products__image img {
  display: block;
  max-width: 100%;
  max-height: 205px;
  object-fit: contain;
}

.home-products__title {
  min-height: 64px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.home-products__title a {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-products__title a,
.home-products__title a:hover,
.home-products__title a:focus {
  color: #00576a !important;
  text-decoration: none !important;
}

@media (max-width: 991px) {
  .home-products__top {
    margin-bottom: 46px;
  }

  .home-products__slider {
    max-width: 520px;
  }

  .home-products__item {
    padding: 0 24px;
    grid-template-rows: 210px 58px;
  }

  .home-products__image {
    height: 210px;
  }

  .home-products__image img {
    max-height: 198px;
  }
}

@media (max-width: 575px) {
  .home-products {
    padding: 38px 16px 52px;
  }

  .home-products__top {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 14px;
    margin-bottom: 34px;
  }

  .home-products__heading {
    font-size: 30px;
  }

  .home-products__nav {
    width: 44px;
    height: 44px;
  }

  .home-products__nav svg {
    width: 28px;
  }

  .home-products__slider {
    max-width: 320px;
  }

  .home-products__item {
    padding: 0 18px;
    grid-template-rows: 196px 56px;
  }

  .home-products__image {
    height: 196px;
  }

  .home-products__image img {
    max-height: 186px;
  }

  .home-products__title {
    min-height: 56px;
    font-size: 20px;
  }
}
