/*
Theme Name: Alpen Well
Author: TeamPRO
Author URI: https://teampro.by/
*/
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
* {
  font-family: Inter, sans-serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --Green-dark: #1e513b;
  --Green-light: #e9fdeb;
  --Red: #d70911;
  --Gray-3: #343a40;
  --Gray-2: #868e96;
  --Gray-1: #e6ecef;
  --Gray-0: #f3f5f7;
  --Black: #212529;
  --White: #ffffff;
  --Base: #f8f4f1;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--Green-dark, #1e513b);
  border-radius: 40px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-horizontal {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb:horizontal {
  background: var(--Green-dark, #1e513b);
  border-radius: 40px;
}
::-webkit-scrollbar-track:horizontal {
  background: rgba(0, 0, 0, 0);
}
body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
  overflow-x: hidden;
}
main:not(#main) {
  flex: 1 0 auto;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  main:not(#main) {
    margin-top: 88px;
  }
}
@media (max-width: 767px) {
  main:not(#main) {
    margin-top: 68px;
  }
}
.container {
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1699px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1700px) and (max-width: 1919px) {
  .container {
    padding-left: calc(40px + (100vw - 1700px) * 0.5);
    padding-right: calc(40px + (100vw - 1700px) * 0.5);
  }
}
@media screen and (min-width: 1920px) {
  .container {
    padding-left: 150px;
    padding-right: 150px;
  }
}
h1 {
  color: var(--Black, #212529);
  font-size: 34px;
  font-weight: 600;
  line-height: 120%;
}
h2 {
  color: var(--Black, #212529);
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
}
.link_absolute {
  position: relative;
}
.link_absolute > a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
a {
  text-decoration: none;
  display: block;
}
.link {
  text-decoration: none;
  display: block;
  text-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.link::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: currentColor;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1025px) {
  .link:hover {
    color: var(--Green-dark, #1e513b);
  }
  .link:hover::after {
    opacity: 1;
  }
}
.btn-arrow {
  display: grid;
  grid-template-columns: auto 24px;
  gap: 10px;
  align-items: center;
  transition: all 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--Green-dark, #1e513b);
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.btn-arrow_arrow {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 6px;
  transition: all 0.3s ease-in-out;
}
.btn-arrow_arrow svg path {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .btn-arrow {
    font-size: 12px;
  }
}
.padding_all {
  padding: 60px 0;
  margin: 0 !important;
}
.gap_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bg_section {
  background: var(--Gray-0, #f3f5f7);
}
.title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.title p {
  color: var(--Gray-3, #343a40);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1024px) {
  .padding_all {
    padding: 40px 0;
  }
  .gap_main {
    gap: 20px;
  }
  .title {
    gap: 5px;
  }
  .title p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .padding_all {
    padding: 30px 0;
  }
}
.swiper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.swiper-slide {
  height: auto;
}
.swiper-pagination-bullet {
  margin: 0 4px;
  background: var(--Gray-1, #e6ecef);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--Green-dark, #1e513b);
}
.swiper-pagination {
  position: static !important;
  transform: none !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
@media (max-width: 1024px) {
  .swiper {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .swiper {
    overflow: visible;
  }
}
.breadcrumbs {
  padding: 40px 0 0;
}
.breadcrumbs_list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.breadcrumbs_list li {
  color: var(--Gray-2, #868e96);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}
.breadcrumbs_list li a {
  color: var(--Black, #212529);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: inline;
  text-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.breadcrumbs_list li::after {
  content: '/';
  margin: 0 10px;
}
.breadcrumbs_list li:last-child::after {
  content: '';
  margin: 0;
}
@media (min-width: 1025px) {
  .breadcrumbs_list li a:hover::after {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .breadcrumbs {
    padding: 20px 0 0;
  }
  .breadcrumbs_list li::after {
    margin: 0 5px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs_list li,
  .breadcrumbs_list li a {
    font-size: 12px;
  }
}
.header {
  width: 100%;
  height: 100px;
  transition: box-shadow 0.3s ease-in-out;
  background: var(--White, #fff);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
}
.header__hamburger {
  display: none;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header__logo {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 60px;
}
.header__logo svg {
  height: 100%;
}
.header__logo_img {
  width: 70px;
  height: 100%;
}
.header__logo_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__logo_title {
  color: var(--Red, #d70911);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}
.header .header__menu ul,
.header__menu {
  display: flex;
  gap: 60px;
  align-items: center;
}
.header__menu ul {
  list-style-type: none;
}
.header__menu ul li a {
  padding: 20px 0;
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header__menu ul li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: var(--Green-dark, #1e513b);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.header__where {
  position: relative;
}
.header__where::after {
  pointer-events: none;
  content: '';
  position: absolute;
  width: 100%;
  height: 40px;
}
.header__where_hover {
  cursor: pointer;
  display: grid;
  grid-template-columns: 24px auto;
  gap: 5px;
  align-items: center;
  padding: 20px 0;
}
.header__where_hover_icon {
  width: 100%;
  height: 24px;
}
.header__where_hover_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__where_hover_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.header__where_down {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  border-radius: 0 0 10px 10px;
  background: var(--Gray-0, #f3f5f7);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding-bottom: 10px;
  top: 82px;
  transition: all 0.3s ease-in-out;
}
.header__where_down_item {
  padding: 15px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--Gray-1, #e6ecef);
  transition: all 0.3s ease-in-out;
}
.header__where_down_item_icon {
  width: 100%;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.header__where_down_item_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__where_down_item_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 60px;
}
.header__contact svg {
  height: 100%;
}
.header__contact a {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
@media (min-width: 1025px) {
  .header__menu ul li a:hover {
    color: var(--Green-dark, #1e513b);
  }
  .header__where_down_item:hover {
    background: var(--Green-light, #e9fdeb);
  }
  .header__where_down_item:hover .header__where_down_item_text {
    color: var(--Green-dark, #1e513b);
  }
  .header__where:hover::after {
    pointer-events: auto;
  }
  .header__where:hover .header__where_down {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 1399px) {
  .header .header__menu ul,
  .header__contact,
  .header__logo,
  .header__menu {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .header {
    height: 88px;
  }
  .header__contact,
  .header__menu {
    display: none;
  }
  .header__logo_img {
    width: 56px;
  }
  .header__logo {
    gap: 10px;
  }
  .header__logo_title {
    font-size: 16px;
  }
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: var(--Green-dark, #1e513b);
    box-shadow:
      0 1px 3px 0 rgba(0, 0, 0, 0.1),
      0 1px 2px -1px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  .header__hamburger svg {
    overflow: visible;
  }
  .header__hamburger .line {
    transform-box: fill-box;
    transform-origin: center;
    transition:
      transform 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      opacity 0.3s ease,
      fill 0.3s ease;
  }
  .header__hamburger.active .line-top {
    transform: translateY(-3.94px) rotate(45deg);
  }
  .header__hamburger.active .line-bottom {
    transform: translateY(3.94px) rotate(-45deg);
  }
  .header__logo {
    height: 48px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 68px;
  }
  .header__logo_img {
    width: 46px;
  }
  .header__logo {
    height: 40px;
    gap: 5px;
  }
}
.footer {
  background: var(--Green-dark, #1e513b);
  padding: 60px 0 40px;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer__card {
  border-radius: 20px;
  background: #10432d;
  padding: 20px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
}
.footer__card_img {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--White, #fff);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.footer__card_img img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__card_info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__card_title {
  color: var(--White, #fff);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.footer__card_text {
  color: var(--White, #fff);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.footer__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--Green-light, #e9fdeb);
  border-radius: 10px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
}
.footer__links a,
.footer__social a {
  color: var(--White, #fff) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-wrap: wrap;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__info p {
  color: var(--White, #fff);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.footer__logo {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  align-items: center;
}
.footer__logo_img {
  height: 40px;
  width: auto;
}
.footer__logo_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__logo_text {
  color: var(--White, #fff);
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__mobile {
  display: none;
}
.teampro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--White, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
.teampro a {
  color: var(--White, #fff) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 1399px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer__card {
    grid-template-columns: 32px 1fr;
  }
  .footer__card_img {
    height: 32px;
  }
  .footer__card_img img {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer__top {
    gap: 10px;
  }
  .footer__card {
    border-radius: 15px;
    gap: 10px;
  }
  .footer__card_title {
    font-size: 14px;
  }
  .footer__wrapper {
    gap: 20px;
  }
  .footer__links {
    max-width: 200px;
  }
  .footer__logo_text {
    font-size: 14px;
  }
  .footer__links a,
  .footer__social a {
    font-size: 14px;
  }
  .teampro {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 30px 0 20px;
  }
  .footer__card_text {
    font-size: 12px;
  }
  .footer__bottom {
    display: none;
  }
  .footer__mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer__mobile p {
    color: var(--White, #fff);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
  }
  .footer__mobile a {
    color: var(--White, #fff) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    text-wrap: wrap;
    text-align: center;
    margin: 0 auto;
  }
  .footer__mobile_top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .footer__logo {
    gap: 10px;
  }
  .teampro {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
}
.banner {
  height: 550px;
  position: relative;
}
.banner__bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner__bg_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner__wrapper {
  height: 100%;
}
.banner__wrapper {
  height: 100%;
}
.banner__wrapper .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.banner__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  width: 600px;
}
.banner__info_descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--Gray-3, #343a40);
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}
.banner__info_descr h1,
.banner__info_descr > p {
  max-width: 370px;
}
.banner__info_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
.banner__info_list_item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  align-items: center;
}
.banner__info_list_item_icon {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--White, #fff);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.banner__info_list_item_icon img {
  width: 28px;
  height: 28px;
}
.banner__info_list_item_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}
.banner__info_btn {
  border-radius: 10px;
  background: var(--Green-dark, #1e513b);
  padding: 0 25px;
  height: 54px;
  display: grid;
  grid-template-columns: auto 24px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  color: var(--White, #fff);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.banner__info_btn_icon {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 6px;
  transition: all 0.3s ease-in-out;
}
.banner__links {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.banner__link {
  border-radius: 10px 10px 0 0;
  background: var(--White, #fff);
  box-shadow:
    0 -10px 15px -3px rgba(0, 0, 0, 0.1),
    0 -4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 20px 15px 30px;
  min-width: 240px;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  height: -moz-fit-content;
  height: fit-content;
}
.banner__link_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.banner__link_icon {
  width: 100%;
  height: 24px;
}
.banner__link_icon svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .banner__info_btn:hover {
    background: #093220;
  }
  .banner__info_btn:hover .banner__info_btn_icon {
    padding-right: 0;
    padding-left: 6px;
  }
  .banner__link:hover {
    background: var(--Green-light, #e9fdeb);
    padding: 20px 15px 40px;
  }
  .banner__link:hover .banner__link_text {
    color: var(--Green-dark, #1e513b);
  }
}
@media (max-width: 1024px) {
  .banner {
    height: 400px;
  }
  .banner__info {
    gap: 20px;
    width: 450px;
    max-width: 450px;
  }
  .banner__info_descr {
    font-size: 16px;
  }
  .banner__info_list {
    row-gap: 10px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .banner__info_list_item_text {
    font-size: 14px;
  }
  .banner__info_btn {
    font-size: 14px;
  }
  .banner__link {
    min-width: 200px;
    gap: 5px;
  }
  .banner__link_text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .banner__bg {
    position: relative;
    height: 150px;
  }
  .banner {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .banner__links {
    max-width: 420px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .banner__link {
    min-width: auto;
    padding: 10px;
    gap: 4px;
  }
  .banner__link_text {
    font-size: 12px;
  }
  .banner__bg .container {
    padding: 0 13px;
  }
  .banner__info {
    width: auto;
    align-items: center;
  }
  .banner__info_descr {
    gap: 10px;
  }
  .banner__info_descr p {
    text-align: center;
  }
  .banner__info_descr h1 {
    text-align: center;
  }
  .banner__info_list {
    row-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .banner__info_list_item {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
  .banner__info_list_item_icon {
    height: 40px;
  }
  .banner__info_list_item_icon img {
    width: 20px;
    height: 20px;
  }
  .banner__info_list_item_text {
    font-size: 12px;
  }
}
.popular {
  overflow: hidden;
}
.product__card {
  border-radius: 20px;
  background: var(--Base, #f8f4f1);
  padding: 20px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.product__card_img {
  height: 220px;
  min-height: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__card_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  height: 100%;
}
.product__card_info_wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.product__card_title {
  color: var(--Black, #212529);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
.product__card_descr {
  color: var(--Gray-3, #343a40);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.product__card_btn {
  height: 36px;
  padding: 0 15px;
  border-radius: 5px;
  border: 1.352px solid var(--Gray-2, #868e96);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Black, #212529);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .product__card:hover .product__card_btn {
    border: 1.352px solid var(--Green-dark, #1e513b);
    background: var(--Green-dark, #1e513b);
    color: var(--White, #fff);
  }
}
@media (max-width: 1024px) {
  .product__card {
    border-radius: 10px;
    gap: 10px;
  }
  .product__card_info {
    gap: 10px;
  }
  .product__card_title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .popular .swiper-slide {
    width: 229px;
  }
  .product__card_img {
    min-height: 150px;
    height: 150px;
  }
  .product__card_descr {
    font-size: 12px;
  }
}
.selection__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.selection__item {
  border-radius: 20px;
  border: 1px solid var(--Gray-1, #e6ecef);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.selection__item_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.selection__item_icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--White, #fff);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.selection__item_icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}
.selection__item_title {
  color: var(--Black, #212529);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  transition: all 0.3s ease-in-out;
}
.selection__item_descr {
  color: #4a5565;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .selection__item:hover {
    border: 1px solid var(--Gray-1, #e6ecef);
    background: var(--Green-dark, #1e513b);
  }
  .selection__item:hover .btn-arrow,
  .selection__item:hover .selection__item_descr,
  .selection__item:hover .selection__item_title {
    color: var(--White, #fff);
  }
  .selection__item:hover .btn-arrow_arrow {
    padding-right: 0;
    padding-left: 6px;
  }
  .selection__item:hover .btn-arrow_arrow svg path {
    fill: var(--White, #fff);
  }
}
@media (max-width: 1024px) {
  .selection__content {
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
    gap: 20px;
  }
  .selection__item {
    border-radius: 10px;
    gap: 5px;
  }
  .selection__item_wrapper {
    gap: 5px;
  }
  .selection__item_title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .selection__item {
    padding: 10px;
  }
  .selection__item,
  .selection__item_wrapper {
    gap: 10px;
  }
  .selection__item_descr {
    font-size: 12px;
  }
}
.how__content {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  gap: 10px;
  align-items: center;
}
.how__item {
  border-radius: 20px;
  background: var(--Base, #f8f4f1);
  padding: 20px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  align-items: center;
  height: fit-content;
}
.how__item_left {
  display: grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto;
}
.how__item_numb {
  border-radius: 100%;
  background: var(--Green-dark, #1e513b);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 30px;
  max-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--White, #fff);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}
.how__item_img {
  height: 150px;
  max-height: 150px;
  min-height: 150px;
  width: 100%;
}
.how__item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.how__item_right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how__item_title {
  color: var(--Black, #212529);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}
.how__item_text {
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1399px) {
  .how__arrow {
    display: none;
  }
  .how__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .how__item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 1024px) {
  .how__item {
    border-radius: 10px;
    gap: 10px;
  }
  .how__item_right {
    gap: 5px;
  }
  .how__item_title {
    font-size: 16px;
  }
  .how__item_text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .how__content {
    flex-direction: column;
    gap: 5px;
  }
  .how__item {
    width: 100%;
    max-width: 450px;
    padding: 20px 10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 85px 1fr;
  }
  .how__item_right {
    gap: 0;
  }
  .how__item_img img {
    height: auto;
  }
  .how__item_img {
    height: 100%;
    display: flex;
    align-items: center;
    min-height: auto;
  }
}
.news {
  overflow: hidden;
}
.news__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news__card_img {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
}
.news__card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.news__card_text {
  color: var(--Black, #212529);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .news__card:hover .news__card_text {
    color: var(--Green-dark, #1e513b);
  }
  .news__card:hover .news__card_img img {
    transform: scale(1.1);
  }
}
@media (max-width: 1024px) {
  .news__card {
    gap: 10px;
  }
  .news__card_text {
    font-size: 14px;
  }
}
.where__content {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.where__item {
  width: 400px;
  border-radius: 20px;
  border: 1px solid var(--Gray-1, #e6ecef);
  padding: 20px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}
.where__item_img {
  width: 100%;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
}
.where__item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.where__item_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.where__item_descr {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.where__item_title {
  color: var(--Black, #212529);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  transition: all 0.3s ease-in-out;
}
.where__item_text {
  color: #4a5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .where__item:hover {
    border: 1px solid var(--Gray-1, #e6ecef);
    background: var(--Green-dark, #1e513b);
  }
  .where__item:hover .btn-arrow,
  .where__item:hover .where__item_text,
  .where__item:hover .where__item_title {
    color: var(--White, #fff);
  }
  .where__item:hover .btn-arrow_arrow {
    padding-right: 0;
    padding-left: 6px;
  }
  .where__item:hover .btn-arrow_arrow svg path {
    fill: var(--White, #fff);
  }
}
@media (max-width: 1399px) {
  .where__content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .where__item {
    width: calc((100% - 20px) / 2);
    max-width: 400px;
  }
  .where__item {
    border-radius: 10px;
    gap: 10px;
  }
  .where__item_info {
    gap: 5px;
  }
  .where__item_title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .where__content {
    flex-direction: column;
    gap: 10px;
  }
  .where__item {
    width: 100%;
  }
  .where__item_text {
    font-size: 12px;
  }
}
.mobile-menu {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-menu {
    display: block;
    position: fixed;
    width: 100vw;
    height: calc(100vh - 88px);
    margin-top: 88px;
    z-index: 10000;
    pointer-events: none;
  }
  .mobile-menu_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
  }
  .mobile-menu_wrapper {
    background: var(--Base, #f8f4f1);
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 250px;
    justify-self: flex-end;
    padding: 20px 0 0 0;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: -100%;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
  }
  .mobile-menu_list {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .mobile-menu_list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    list-style-type: none;
  }
  .mobile-menu_list a {
    padding: 20px 0;
    color: var(--Black, #212529);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
  }
  .mobile-menu_where {
    padding: 20px 20px 120px;
    border-radius: 30px 30px 0 0;
    background: #f0e7e0;
    box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu_where_top {
    display: grid;
    grid-template-columns: 24px auto;
    align-items: center;
    gap: 5px;
  }
  .mobile-menu_where_top_icon {
    width: 100%;
    height: 24px;
  }
  .mobile-menu_where_top_icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .mobile-menu_where_top_text {
    padding: 20px 0;
    color: var(--Black, #212529);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
  }
  .mobile-menu_where_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-menu_where_list_item {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--Green-dark, #1e513b);
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: center;
  }
  .mobile-menu_where_list_item_icon {
    width: 100%;
    height: 20px;
  }
  .mobile-menu_where_list_item_icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .mobile-menu_where_list_item_text {
    color: var(--Black, #212529);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
  .mobile-menu.active {
    pointer-events: initial;
  }
  .mobile-menu.active .mobile-menu_bg {
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: initial;
  }
  .mobile-menu.active .mobile-menu_wrapper {
    right: 0;
  }
}
@media (max-width: 767px) {
  .mobile-menu_wrapper {
    width: 100%;
    padding: 40px 0 0 0;
  }
  .mobile-menu {
    height: calc(100vh - 68px);
    margin-top: 68px;
  }
  .mobile-menu_list a,
  .mobile-menu_where_top_text {
    padding: 10px 0;
  }
  .mobile-menu_list,
  .mobile-menu_list ul {
    gap: 20px;
  }
  .mobile-menu_where_list_item_text {
    font-size: 14px;
  }
}
.page_title {
  padding: 40px 0 60px;
}
.page_title__wrapper {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.page_title__wrapper strong {
  color: var(--Green-dark, #1e513b);
  font-weight: 600;
  line-height: 150%;
}
@media (max-width: 1024px) {
  .page_title {
    padding: 20px 0 40px;
  }
  .page_title__wrapper {
    gap: 5px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .page_title {
    padding: 20px 0 30px;
  }
  .page_title__wrapper {
    font-size: 14px;
  }
}
.about__wrapper {
  border-radius: 20px;
  background: var(--Gray-0, #f3f5f7);
  overflow: hidden;
  padding-left: 60px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: center;
  min-height: 620px;
}
.about__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--Green-dark, #1e513b);
  overflow: hidden;
}
.about__item_icon {
  height: 100%;
  width: 100%;
  background: var(--Green-dark, #1e513b);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__item_info {
  padding: 20px 20px 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about__item_info_title {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.about__item_info_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.about__right {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.about__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center right;
  object-position: center right;
}
@media (max-width: 1699px) {
  .about__wrapper {
    padding-left: 40px;
  }
}
@media (max-width: 1399px) {
  .about__wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding-left: 0;
  }
  .about__right {
    height: 400px;
  }
  .about__left {
    padding: 0 40px 40px;
  }
}
@media (max-width: 1024px) {
  .about__right {
    height: 250px;
    border-radius: 10px;
  }
  .about__wrapper {
    gap: 20px;
    border-radius: 10px;
  }
  .about__left {
    padding: 0 20px 20px;
    gap: 10px;
  }
  .about__item_info {
    padding: 10px 10px 10px 16px;
  }
  .about__item_info_text,
  .about__item_info_title {
    font-size: 14px;
  }
}
.contact__wrapper {
  border-radius: 20px;
  border: 1px solid var(--Gray-1, #e6ecef);
  display: grid;
  grid-template-columns: 1fr 800px;
  gap: 40px;
  overflow: hidden;
  align-items: center;
}
.contact__info {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.contact__info h2 {
  text-align: left;
}
.contact__info a {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-wrap: wrap;
}
.contact__map {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 440px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1699px) {
  .contact__info {
    padding-left: 40px;
  }
}
@media (max-width: 1399px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
  .contact__info {
    padding: 40px 40px 0;
    align-items: center;
  }
  .contact__map {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .contact__map,
  .contact__wrapper {
    border-radius: 10px;
  }
  .contact__wrapper {
    gap: 20px;
  }
  .contact__info {
    padding: 20px 20px 0;
    font-size: 14px;
  }
  .contact__info a {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .contact__map {
    height: 200px;
  }
}
.blog {
  padding: 40px 0 60px;
}
.blog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog__catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.blog__content {
  display: grid;
  grid-template-columns: minmax(auto, 800px) 1fr;
  gap: 40px;
  position: relative;
}
.blog__img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  left: 0;
  top: 120px;
}
.blog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog__descr {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.blog__descr h1,
.blog__descr h2,
.blog__descr h3,
.blog__descr h4,
.blog__descr h5,
.blog__descr h6 {
  color: var(--Black, #212529);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  text-align: left;
}
.blog__descr_block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog__descr strong {
  font-weight: 600;
}
.blog__descr ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: square;
}
.blog__descr ul li {
  margin-left: 18px;
  color: var(--Gray-3, #343a40);
}
.blog__descr ul li::marker {
  color: #d70911;
}
.blog__descr a {
  display: inline;
  white-space: wrap;
  color: var(--Green-dark, #1e513b);
  text-decoration: underline;
}
.blog__links {
  display: flex;
  justify-content: space-between;
}
.blog__links_link {
  max-width: 197px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog__links_link_name {
  color: var(--Gray-3, #343a40);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
.blog__links_link_title {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.blog__links_link_btn {
  color: var(--Green-dark, #1e513b);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}
.blog__links_link_next {
  text-align: right;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .blog__descr a:hover {
    text-decoration: none;
    color: #093220;
  }
  .blog__links_link:hover .blog__links_link_btn::after {
    opacity: 1;
  }
}
@media (max-width: 1699px) {
  .blog__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1399px) {
  .blog__catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .blog {
    padding: 20px 0 40px;
  }
  .blog__wrapper {
    gap: 20px;
  }
  .blog__catalog {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog__content {
    grid-template-columns: 1fr;
  }
  .blog__img {
    position: static;
    border-radius: 10px;
  }
  .blog__descr {
    gap: 20px;
  }
  .blog__descr_block {
    gap: 10px;
  }
  .blog__descr h1,
  .blog__descr h2,
  .blog__descr h3,
  .blog__descr h4,
  .blog__descr h5,
  .blog__descr h6 {
    font-size: 16px;
  }
  .blog__descr {
    font-size: 14px;
  }
  .blog__links_link_title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .blog {
    padding: 20px 0 30px;
  }
  .blog__catalog {
    grid-template-columns: 1fr;
  }
  .blog__img {
    height: 220px;
  }
  .blog__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .blog__links_link_name {
    font-size: 10px;
  }
  .blog__links_link_btn {
    font-size: 12px;
  }
}
.product {
  margin: 40px 0 60px;
}
.product__wrapper {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 40px;
}
.product__info {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__title_sub {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}
.product__title_descr {
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.product__facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.product__facts_item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  align-items: center;
}
.product__facts_item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 100%;
  background: var(--White, #fff);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.product__facts_item_icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__facts_item_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}
.product__banner {
  border-width: 0 0 0 4px;
  border-style: solid;
  border-radius: 10px;
  padding: 20px 20px 20px 30px;
  max-width: 600px;
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.product__banner strong {
  font-weight: 600;
}
.product__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__list_item {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: center;
}
.product__list_item_marker {
  width: 100%;
  height: 8px;
  border-radius: 2px;
}
.product__list_item_text {
  display: flex;
  align-items: center;
  gap: 2px;
}
.product__list_item_text p {
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.product__list_item_text p:first-child {
  color: var(--Black, #212529);
  font-weight: 600;
  line-height: 150%;
}
.product__where {
  max-width: 605px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  border: 1px solid var(--Gray-1, #e6ecef);
  background: #ecffef;
}
.product__where_mob {
  display: none !important;
}
.product__where_top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__where_top p {
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.product__where_title {
  color: var(--Gray-3, #343a40);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}
.product__where_btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product__where_apteka {
  height: 54px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 25px;
  border-radius: 10px;
  border: 1px solid var(--Gray-2, #868e96);
  background: var(--White, #fff);
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}
.product__where_btn {
  position: relative;
}
.product__where_btn_links {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.product__where_btn_link {
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  border-radius: 10px;
  background: var(--Green-dark, #1e513b);
  color: var(--White, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}
.product__where_btn_hover {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 10px;
  height: 54px;
  align-items: center;
  padding: 0 25px;
  border-radius: 10px;
  background: var(--Green-dark, #1e513b);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.product__where_btn_hover_text {
  color: var(--White, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.product__where_btn_hover_icon {
  width: 24px;
  height: 24px;
}
.product__where_btn_hover_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__where_btn.active .product__where_btn_hover {
  opacity: 0;
  pointer-events: none;
}
.product__where_btn.active .product__where_btn_links {
  opacity: 1;
  pointer-events: auto;
}
.product-when {
  margin: 60px 0;
}
.product-when__wrapper {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  border-radius: 20px;
  min-height: 440px;
  align-items: center;
}
.product-when__left {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-when__title h2 {
  color: var(--Black, #212529);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-align: left;
}
.product-when__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.product-when__right {
  width: 100%;
  min-height: 440px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  align-items: flex-end;
}
.product-when__rev {
  border-radius: 20px;
  background: hsla(0, 0%, 100%, 0.9);
  padding: 15px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 20px;
}
.product-when__rev_icon {
  width: 100%;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-when__rev_descr {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-when__rev_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.product-when__rev_name {
  color: var(--Black, #212529);
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}
.product-for {
  margin: 60px 0;
}
.product-for__wrapper {
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 4fr;
  gap: 20px;
}
.product-for__cards {
  overflow: hidden;
}
.product-for__cards .swiper {
  display: block;
}
.product-for__cards .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-for__cards_item {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-rows: 250px 1fr;
}
.product-for__cards_item_img {
  height: 100%;
  width: 100%;
}
.product-for__cards_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-for__cards_item_text {
  padding: 20px 0;
  color: var(--White, #fff);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-for__descr {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-for__descr h2 {
  color: var(--Black, #212529);
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  text-align: left;
}
.product-for__descr_text {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-tabs {
  margin: 60px 0;
}
.product-tabs__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.product-tabs__war {
  color: var(--Gray-2, #868e96);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.product-tabs__tabs {
  border-radius: 20px;
  border: 1px solid var(--Gray-1, #e6ecef);
  width: 100%;
}
.product-tabs__tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--Gray-1, #e6ecef);
}
.product-tabs__tab_item {
  border-left: 1px solid var(--Gray-1, #e6ecef);
}
.product-tabs__tab_item p {
  padding: 16px 20px;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}
.product-tabs__tab_item:not(.active) {
  cursor: pointer;
}
.product-tabs__tab_item:not(.active) p {
  border-bottom: 1px solid rgba(0, 0, 0, 0) !important;
  color: var(--Gray-2, #868e96) !important;
}
.product-tabs__tab_item:first-child {
  border-left: none;
}
.product-tabs__content_item {
  padding: 20px 30px 30px;
  display: none;
}
.product-tabs__content_item.active {
  display: grid;
}
.product-tabs__descr {
  grid-template-columns: 500px 200px 1fr;
  gap: 20px;
}
.product-tabs__descr_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.product-tabs__descr_info strong {
  font-weight: 600;
}
.product-tabs__descr_img {
  width: 100%;
  height: 100%;
}
.product-tabs__descr_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-tabs__descr_facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 20px;
}
.product-tabs__descr_item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
}
.product-tabs__descr_item_icon {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--White, #fff);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.product-tabs__descr_item_icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-tabs__descr_item_title {
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.product-tabs__descr_item_descr {
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.product-tabs__dose {
  grid-template-columns: 500px 250px 1fr;
}
.product-tabs__dose .product-tabs__descr_info {
  gap: 20px;
}
.product-tabs__dose .product-tabs__descr_img img {
  object-position: center bottom;
}
.product-tabs__active {
  grid-template-columns: 36% 25% 36%;
  gap: 20px;
  justify-content: space-between;
}
.product-tabs__active-2col {
  grid-template-columns: 1fr 400px;
}
.product-tabs__active.active {
  display: grid;
}
.product-tabs__active_table {
  width: auto;
  overflow-x: scroll;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-tabs__active_table table {
  width: 100%;
  border-spacing: 0;
  border-top: 1px solid var(--Gray-1, #e6ecef);
  border-left: 1px solid var(--Gray-1, #e6ecef);
}
.product-tabs__active_table table tr td {
  padding: 10px 10px;
  border-right: 1px solid var(--Gray-1, #e6ecef);
  border-bottom: 1px solid var(--Gray-1, #e6ecef);
  color: var(--Black, #212529);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.product-tabs__active_table table tr td strong {
  color: var(--Green-dark, #1e513b);
  text-align: center;
  font-weight: 600;
  line-height: 120%;
}
.product-tabs__active_table_descr {
  color: var(--Gray-2, #868e96);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-tabs__active_img {
  width: 100%;
  display: flex;
  align-items: center;
}
.product-tabs__active_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-tabs__active_table::-webkit-scrollbar,
.product__vitamins::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.product-tabs__active_table::-webkit-scrollbar-thumb,
.product__vitamins::-webkit-scrollbar-thumb {
  background: #595951;
  border-radius: 40px;
}
.product-tabs__active_table::-webkit-scrollbar-track,
.product__vitamins::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.product-tabs__active_table::-webkit-scrollbar-horizontal,
.product__vitamins::-webkit-scrollbar-horizontal {
  width: 8px;
  height: 8px;
}
.product-tabs__active_table::-webkit-scrollbar-thumb:horizontal,
.product__vitamins::-webkit-scrollbar-thumb:horizontal {
  background: #595951;
  border-radius: 40px;
}
.product-tabs__active_table::-webkit-scrollbar-track:horizontal,
.product__vitamins::-webkit-scrollbar-track:horizontal {
  background: rgba(0, 0, 0, 0);
}
@media (min-width: 1024px) {
  .product__where_btn_link:hover {
    background: #093220;
  }
  .product__where_apteka:hover {
    background: #093220;
    border: 1px solid #093220;
    color: #fff;
  }
}
.sliders {
  display: flex;
  gap: 0;
  width: 100%;
  aspect-ratio: 0.98;
  gap: 20px;
  position: sticky;
  top: 120px;
}
.thumbs-col {
  flex-shrink: 0;
  width: 80px;
  margin: 0 -2px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.thumbs-swiper {
  width: 100%;
  flex: 1;
  overflow: hidden;
}
.thumbs-swiper .swiper-slide {
  height: auto !important;
  cursor: pointer;
}
.thumbs-swiper .swiper-slide .ph,
.thumbs-swiper .swiper-slide img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--Gray-1, #e6ecef);
  transition: border-color 0.2s;
  display: block;
}
.thumbs-swiper .swiper-slide.thumb-active img {
  border: 2px solid var(--Gray-2, #868e96);
}
.thumb-nav-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 48px;
  width: 48px;
  border: 1px solid var(--Gray-2, #868e96);
  background: var(--White, #fff);
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.thumb-nav-btn svg {
  width: 24px;
  height: 24px;
}
.thumb-nav-btn svg path {
  transition: all 0.3s ease-in-out;
}
.thumb-nav-btn.t-up {
  top: 0;
}
.thumb-nav-btn.t-dn {
  bottom: 0;
}
@media (min-width: 1024px) {
  .thumbs-col:hover .thumb-nav-btn {
    opacity: 1;
  }
  .thumb-nav-btn:hover {
    background: #093220;
    border: 1px solid #093220;
  }
  .thumb-nav-btn:hover svg path {
    fill: var(--White, #fff);
  }
}
.main-col {
  flex: 1;
  min-width: 0;
  position: relative;
}
.main-col .swiper-pagination {
  display: none;
}
.main-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.main-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.main-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
  border: 1px solid var(--Gray-2, #868e96);
  background: var(--White, #fff);
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s;
}
.main-nav-btn svg {
  width: 24px;
  height: 24px;
}
.main-nav-btn svg path {
  transition: all 0.3s ease-in-out;
}
.main-nav-btn.m-prev {
  left: 10px;
}
.main-nav-btn.m-next {
  right: 10px;
}
@media (min-width: 1024px) {
  .main-col:hover .main-nav-btn {
    opacity: 1;
  }
  .main-nav-btn:hover {
    background: #093220;
    border: 1px solid #093220;
  }
  .main-nav-btn:hover svg path {
    fill: var(--White, #fff);
  }
}
@media (max-width: 1450px) {
  .product-tabs__descr {
    grid-template-columns: 1fr 150px 1fr;
  }
  .product-tabs__descr_facts {
    grid-template-columns: 1fr;
  }
  .product-tabs__active {
    gap: 10px;
  }
  .product-tabs__active {
    grid-template-columns: 36% 25% 36%;
  }
  .product-tabs__active-2col {
    grid-template-columns: 1fr 200px;
  }
  .product-tabs__active_img {
    width: 100%;
  }
  .product-tabs__active_img img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 1399px) {
  .product__wrapper {
    grid-template-columns: 42.3% 1fr;
  }
  .sliders {
    aspect-ratio: 1.05;
  }
  .product__facts_item_text {
    word-break: break-word;
  }
  .product__where_btns {
    grid-template-columns: 1fr;
  }
  .product__where_apteka,
  .product__where_btn {
    width: -moz-fit-content;
    width: fit-content;
  }
  .product-when__wrapper {
    grid-template-columns: 1fr 350px;
  }
  .product-when__left {
    padding-left: 20px;
  }
  .product-when__left .about__item_info {
    padding: 20px 20px 20px 26px;
  }
  .product-for__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-for__descr {
    max-width: 700px;
    gap: 10px;
    justify-self: center;
  }
  .product-for__descr h2 {
    text-align: center;
  }
  .product-for__descr_text {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .thumbs-col {
    display: none;
  }
  .main-col {
    margin-left: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .sliders {
    max-width: 100%;
    aspect-ratio: 0.75;
    max-height: 818px;
    position: relative;
    top: 0;
  }
  .product__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .main-col .swiper-pagination {
    display: flex;
  }
  .main-nav-btn {
    display: none;
  }
  .product {
    margin: 20px 0 40px;
    overflow: hidden;
  }
  .product__title_sub {
    font-size: 16px;
  }
  .product__title_descr {
    font-size: 14px;
  }
  .product__facts {
    gap: 10px;
  }
  .product__facts_item_text {
    font-size: 14px;
  }
  .product__banner {
    font-size: 14px;
    min-height: 82px;
    border-radius: 5px;
  }
  .product__list {
    gap: 5px;
  }
  .product__list_item_text p {
    font-size: 14px;
  }
  .product__where {
    gap: 10px;
  }
  .product__where_top {
    gap: 5px;
  }
  .product__where_title {
    font-size: 16px;
  }
  .product__where_apteka,
  .product__where_btn_hover_text,
  .product__where_btn_link,
  .product__where_top p {
    font-size: 14px;
  }
  .product__where_btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .product__facts {
    grid-template-columns: 1fr;
  }
  .product-when {
    margin: 40px 0;
  }
  .product-when__wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    border-radius: 10px;
  }
  .product-when__right {
    min-height: 350px;
    padding: 20px;
    border-radius: 10px;
  }
  .product-when__rev {
    width: 100%;
    border-radius: 10px;
    gap: 10px;
  }
  .product-when__rev_text {
    font-size: 14px;
  }
  .product-when__left {
    padding-left: 0;
    width: 100%;
    padding: 0 20px 20px;
  }
  .product-when__title h2 {
    font-size: 20px;
  }
  .product-when__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-when__left .about__item {
    width: calc((100% - 15px) / 2);
  }
  .product-for {
    margin: 40px 0;
  }
  .product-for__wrapper {
    border-radius: 10px;
    padding: 20px;
  }
  .product-for__descr h2 {
    font-size: 24px;
  }
  .product-for__descr_text {
    font-size: 14px;
    gap: 5px;
  }
  .product-for__cards_item {
    grid-template-rows: 230px 1fr;
  }
  .product-for__cards_item_text {
    padding: 10px 0 20px;
    font-size: 16px;
  }
  .product-tabs__descr {
    grid-template-rows: repeat(2, fit-content(100%));
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.25fr);
  }
  .product-tabs__descr_facts {
    grid-column: 1/3;
    gap: 10px;
  }
  .product-tabs__war {
    text-align: left;
  }
  .product-tabs__descr_info {
    gap: 5px;
    font-size: 14px;
  }
  .product-tabs__descr_item {
    gap: 5px;
  }
  .product-tabs__descr_item_descr,
  .product-tabs__descr_item_title {
    font-size: 14px;
  }
  .product-tabs__descr_img img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .product-tabs__active {
    grid-template-columns: 1fr;
  }
  .product-tabs__active_img {
    display: none;
  }
  .product-tabs__active_table::-webkit-scrollbar,
  .product__vitamins::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .product-tabs__active_table::-webkit-scrollbar-horizontal,
  .product__vitamins::-webkit-scrollbar-horizontal {
    width: 2px;
    height: 2px;
  }
}
@media (max-width: 767px) {
  .sliders {
    aspect-ratio: auto;
    max-height: none;
  }
  .main-swiper {
    overflow: visible;
  }
  .main-swiper .swiper-slide {
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  .main-nav-btn {
    display: none;
  }
  .product {
    margin: 20px 0 30px;
  }
  .product__title {
    gap: 5px;
  }
  .product__where_descr {
    display: none;
  }
  .product__where_mob {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
  }
  .product__where_mob .product__where_btn {
    width: 100%;
    border-radius: 30px 30px 0 0;
    background: #f0e7e0;
    padding: 20px;
  }
  .product__where_mob .product__where_btn_hover {
    justify-content: center;
    height: 44px;
    transition: none;
  }
  .product__where_mob .product__where_btn_hover_text {
    font-size: 16px;
  }
  .product__where_mob .product__where_btn_links {
    padding: 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    justify-content: space-between;
    width: 100%;
  }
  .product__where_mob .product__where_btn_link {
    height: 44px;
    padding: 0 15px;
    justify-content: center;
  }
  .product-when {
    margin: 30px 0;
  }
  .product-when__right {
    min-height: 250px;
    padding: 10px;
  }
  .product-when__rev {
    padding: 10px;
  }
  .product-when__rev_name,
  .product-when__rev_text {
    font-size: 12px;
  }
  .product-when__items {
    gap: 5px;
  }
  .product-when__left .about__item {
    width: 100%;
  }
  .product-when__title h2 {
    font-size: 18px;
  }
  .product-for {
    margin: 30px 0;
    overflow: hidden;
  }
  .product-for__cards .swiper {
    display: flex;
  }
  .product-for__cards .swiper-wrapper {
    display: flex;
    gap: 0;
  }
  .product-for__cards .swiper-slide,
  .product-for__cards_item {
    width: 280px;
  }
  .product-for__wrapper {
    padding: 0;
  }
  .product-for__descr {
    padding: 20px 20px 0 20px;
  }
  .product-for__cards {
    padding: 0 0 20px;
  }
  .product-for__cards_item {
    grid-template-rows: 230px 1fr;
  }
  .product-for__wrapper {
    gap: 20px;
  }
  .product-for__descr h2 {
    font-size: 20px;
  }
  .product-tabs__descr {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .product-tabs__descr_facts {
    grid-column: 1;
  }
  .product-tabs__tabs {
    border: none;
    border-radius: 0;
  }
  .product-tabs__tab {
    grid-template-columns: 1fr;
    border: 1px solid var(--Gray-1, #e6ecef);
  }
  .product-tabs__tab_item {
    border-left: none;
    border-bottom: 1px solid var(--Gray-1, #e6ecef);
    display: flex;
    justify-content: center;
  }
  .product-tabs__tab_item:last-child {
    border-bottom: none;
  }
  .product-tabs__tab_item p {
    font-size: 12px;
  }
  .product-tabs__content_item {
    padding: 20px 0 0;
  }
  .product-tabs__descr_img {
    height: 150px;
  }
  .product-tabs__descr_img img {
    -o-object-fit: contain;
    object-fit: contain;
  }
  .product-tabs__wrapper {
    gap: 20px;
  }
  .product-tabs__war {
    font-size: 12px;
    line-height: 120%;
  }
  .product-tabs__dose .product-tabs__descr_img {
    height: 251px;
  }
  .product-tabs {
    overflow: hidden;
  }
  .product-tabs .container {
    overflow: visible;
  }
  .product-tabs__active_table {
    padding: 0 20px;
    margin: 0 -20px;
    width: 100vw;
  }
  .product-tabs__active_table_descr {
    font-size: 10px;
  }
  .product-tabs__active_table table tr td {
    font-size: 12px;
  }
}
.catalog-title {
  margin: 40px 0;
}
.catalog-title__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog-title__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-title__title p {
  color: var(--Gray-3, #343a40);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.catalog-title__facts {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.catalog-title__facts_item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 15px;
  align-items: center;
}
.catalog-title__facts_item_icon {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--White, #fff);
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.catalog-title__facts_item_icon svg {
  width: 28px;
  height: 28px;
}
.catalog-title__facts_item_text {
  color: var(--Black, #212529);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}
.catalog {
  margin: 40px 0 60px;
}
.catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.catalog__content .products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
}
.catalog__links {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--Gray-1, #e6ecef);
  max-width: 1433px;
}
.catalog__links_item {
  height: 64px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--Gray-1, #e6ecef);
  border-bottom: 0;
  width: 240px;
  transition: all 0.3s ease-in-out;
}
.catalog__links_item_icon {
  width: 100%;
  height: 24px;
}
.catalog__links_item_icon svg {
  height: 100%;
  width: 100%;
}
.catalog__links_item_text {
  color: var(--Black, #212529);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}
.catalog__links_item.active {
  background: var(--Green-light, #e9fdeb);
  border: none;
}
.catalog__links_item.active .catalog__links_item_text {
  color: var(--Green-dark, #1e513b);
}
.products-found {
  color: var(--Black, #212529);
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width: 1024px) {
  .catalog__links_item:not(.active):hover {
    background: var(--Base, #f8f4f1);
  }
  .catalog__links_item:not(.active):hover .catalog__links_item_text {
    color: var(--Green-dark, #1e513b);
  }
}
@media (max-width: 1399px) {
  .catalog__content .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .catalog-title {
    margin: 20px 0;
  }
  .catalog-title__wrapper {
    gap: 10px;
  }
  .catalog-title__title {
    gap: 5px;
  }
  .catalog-title__title p {
    font-size: 14px;
  }
  .catalog-title__facts {
    gap: 20px;
  }
  .catalog {
    margin: 20px 0 40px;
  }
  .catalog__links {
    width: 100%;
    gap: 10px;
  }
  .catalog__links_item {
    gap: 5px;
  }
  .catalog__wrapper {
    gap: 20px;
  }
  .catalog__content .products {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .catalog-title__facts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .catalog-title {
    margin: 20px 0 30px;
  }
  .catalog-title__facts_item {
    grid-template-columns: 48px 1fr;
    gap: 5px;
  }
  .catalog-title__facts_item_icon {
    height: 48px;
  }
  .catalog-title__facts_item_text {
    font-size: 12px;
  }
  .catalog__links {
    overflow-y: scroll;
    padding: 0 20px;
    margin: 0 -20px;
    width: 100vw;
  }
  .catalog__links::-webkit-scrollbar {
    display: none;
  }
  .catalog__links_item {
    width: auto;
  }
  .catalog__links_item_text {
    white-space: nowrap;
    font-size: 12px;
  }
  .catalog {
    margin: 30px 0;
  }
  .catalog__content .products {
    grid-template-columns: 1fr 1fr;
  }
}

.error {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 60px;
}

.error__wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 40px;
}
.error__title {
  color: var(--Green-dark, #1e513b);
  text-align: center;
  font-size: 200px;
  font-weight: 800;
  line-height: 100%;
}
.error__descr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--Gray-3, #343a40);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

@media (max-width: 1023px) {
  .error {
    padding: 20px 0 40px;
  }
  .error__wrapper {
    gap: 20px;
    max-width: 468px;
  }
  .error__descr {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .error__title {
    font-size: 100px;
  }
}
