*,
*::before,
*::after {
  box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

html {
  font-family: sans-serif;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #fff;
}

body {
  position: relative;
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
}
body.scroll-lock {
  overflow: hidden;
  height: 100vh;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media only screen and (min-width: 991px) {
  .container {
    max-width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 1460px) {
  .container {
    max-width: 1440px;
  }
}

::-moz-selection {
  color: #fff;
  background: #965D51;
}

::selection {
  color: #fff;
  background: #965D51;
}

.m-0 {
  margin: 0 !important;
}

.bg-section {
  background: #F0EFEB !important;
}

.bg-black {
  background: #000000 !important;
}

.bg-brown {
  background: #965D51 !important;
}

.btn-base, .btn-secondary, .btn-primary, .controls-panel .btn-primary {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 50px;
  padding: 0 30px;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  border-radius: 30px;
  border: 1px solid transparent;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .btn-base, .btn-secondary, .btn-primary, .controls-panel .btn-primary {
    height: 60px;
  }
}
.btn-base span, .btn-secondary span, .btn-primary span, .controls-panel .btn-primary span {
  z-index: 2;
  position: relative;
}
.btn-primary, .controls-panel .btn-primary {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: #000000;
  color: #fff;
}
.btn-primary--section {
  background: #F0EFEB;
  border-color: #F0EFEB;
}

.btn-secondary {
  background: transparent;
  color: #000000;
  border: 1px solid #965D51;
  background: #965D51;
  color: #fff;
}
.btn-secondary:hover {
  background: transparent;
  color: #000000;
}

.header-toggle {
  position: relative;
  z-index: 9999;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none !important;
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
}
.header-toggle__icon {
  position: relative;
  height: 2rem;
  width: 3rem;
}
.header-toggle__icon span {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 3rem;
  background: #000000;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  pointer-events: none;
}
.header-toggle__icon span:nth-child(1) {
  top: 0rem;
}
.header-toggle__icon span:nth-child(2) {
  top: 0.7rem;
}
.header-toggle__icon span:nth-child(3) {
  top: 0.7rem;
}
.header-toggle__icon span:nth-child(4) {
  top: 1.5rem;
}
.header-toggle__icon.open span {
  background: #000000;
}
.header-toggle__icon.open span:nth-child(1) {
  top: 0rem;
  width: 0%;
  left: 50%;
}
.header-toggle__icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header-toggle__icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-toggle__icon.open span:nth-child(4) {
  top: 0rem;
  width: 0%;
  left: 50%;
}

.admin-bar .header {
  top: 46px;
}
@media (min-width: 767px) {
  .admin-bar .header {
    top: 32px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
.header {
  z-index: 90;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #F0EFEB;
}
.header .header-toggle {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  .header .header-toggle {
    display: none;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media only screen and (min-width: 1200px) {
  .header__container {
    height: 100px;
  }
}
.header__logo {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo img {
  display: block;
  max-width: 100%;
  height: 44px;
}
@media only screen and (min-width: 1200px) {
  .header__logo img {
    height: 58px;
  }
}
.header__logo span {
  letter-spacing: 0.4px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #000000;
  font-size: 14px;
}
@media only screen and (min-width: 1200px) {
  .header__logo span {
    font-size: 16px;
  }
}
.header__left {
  display: flex;
  align-items: center;
}
.header__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__contact-btn {
  min-width: unset;
}
@media only screen and (min-width: 1460px) {
  .header__contact-btn {
    min-width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .header__contact-btn {
    display: none;
  }
}
.header__nav {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header__nav {
    display: block !important;
  }
}

.navigation {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .navigation {
    flex-direction: row;
  }
}
.navigation > li {
  position: relative;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
}
@media (min-width: 768px) {
  .navigation > li::after {
    content: "/";
  }
  .navigation > li:last-child::after {
    content: none;
  }
}
.navigation > li > a, .navigation > li > span, .navigation > li > button {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  margin: 0;
  color: #000000;
  transition: 0.3s;
  white-space: nowrap;
}
@media only screen and (min-width: 1200px) {
  .navigation > li > a, .navigation > li > span, .navigation > li > button {
    padding: 0 20px;
  }
}
.navigation > li > a:hover, .navigation > li > span:hover, .navigation > li > button:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.navigation > li > a.current-menu-item, .navigation > li > span.current-menu-item, .navigation > li > button.current-menu-item {
  font-weight: 600;
}
.navigation > li > span, .navigation > li > button {
  cursor: default;
}
.navigation > li > span:hover, .navigation > li > button:hover {
  text-decoration: none;
  color: #000000;
}
.navigation > li.has-submenu > a,
.navigation > li.has-submenu > span,
.navigation > li.has-submenu > button {
  position: relative;
}
.navigation > li.has-submenu > a::after,
.navigation > li.has-submenu > span::after,
.navigation > li.has-submenu > button::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  top: -3px;
  position: relative;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  vertical-align: middle;
  transition: border-color 0.3s;
}
.navigation > li.has-submenu > a:hover::after,
.navigation > li.has-submenu > span:hover::after,
.navigation > li.has-submenu > button:hover::after {
  border-color: #000000;
}
.navigation > li.has-submenu > .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 188px;
  padding: 10px 0;
  background: #F0EFEB;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
}
@media (max-width: 1199px) {
  .navigation > li.has-submenu > .submenu {
    position: static;
    box-shadow: none;
    background: none;
  }
}
.navigation > li.has-submenu > .submenu li {
  padding: 0;
  margin: 0;
}
.navigation > li.has-submenu > .submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #000000;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.navigation > li.has-submenu > .submenu li a:hover {
  background: #F0EFEB;
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.navigation > li.has-submenu:hover > .submenu, .navigation > li.has-submenu:focus-within > .submenu {
  display: block;
}

.mobile-navigation-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .mobile-navigation-wrapper {
    display: none !important;
  }
}
.mobile-navigation-wrapper.open {
  display: block;
}
.mobile-navigation-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6980392157);
  z-index: -1;
}

.mobile-navigation-panel {
  background: #F0EFEB;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-navigation {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 0;
}
.mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-navigation ul > li {
  position: relative;
  margin: 10px 0;
  padding: 0;
}
.mobile-navigation ul > li.current-menu-item > a {
  color: #000000;
}
.mobile-navigation ul > li > a:not(.btn-primary) {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  line-height: 1.3333333333;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: #000000;
  transition: 0.3s;
  white-space: nowrap;
}
.mobile-navigation ul > li > a:not(.btn-primary).current-menu-item {
  color: #000000;
}
@media only screen and (min-width: 768px) {
  .mobile-navigation ul > li .btn-primary {
    display: none;
  }
}
.mobile-navigation ul > li:hover > a {
  color: #000000;
}
.mobile-navigation ul > li.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-navigation ul > li.has-submenu .submenu-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  top: -2px;
}
.mobile-navigation ul > li.has-submenu .submenu-toggle::before, .mobile-navigation ul > li.has-submenu .submenu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.mobile-navigation ul > li.has-submenu .submenu-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.mobile-navigation ul > li.has-submenu > .submenu {
  display: none;
  padding-left: 20px;
  margin-top: 8px;
}
.mobile-navigation ul > li.has-submenu > .submenu li a {
  font-size: 18px;
  padding: 6px 0;
  color: #000000;
}
.mobile-navigation ul > li.has-submenu > .submenu li a:hover {
  color: #000000;
}
.mobile-navigation ul > li.has-submenu.submenu-open > .submenu {
  display: block;
}
.mobile-navigation ul > li.has-submenu.submenu-open .submenu-toggle::after {
  opacity: 0;
}

section {
  overflow: clip;
}

b, strong {
  font-weight: 600;
}

.base-section-title, .page-contact__title, .page-header__title, .home-news__title, .home-partners__title, .home-company__title, .home-products__title, .home-nav__title {
  line-height: 1.1;
  color: #000000;
  font-size: 36px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .base-section-title, .page-contact__title, .page-header__title, .home-news__title, .home-partners__title, .home-company__title, .home-products__title, .home-nav__title {
    font-size: 42px;
  }
}
@media (min-width: 991px) {
  .base-section-title, .page-contact__title, .page-header__title, .home-news__title, .home-partners__title, .home-company__title, .home-products__title, .home-nav__title {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .base-section-title, .page-contact__title, .page-header__title, .home-news__title, .home-partners__title, .home-company__title, .home-products__title, .home-nav__title {
    font-size: 55px;
  }
}
@media (min-width: 1460px) {
  .base-section-title, .page-contact__title, .page-header__title, .home-news__title, .home-partners__title, .home-company__title, .home-products__title, .home-nav__title {
    font-size: 70px;
  }
}

.base-section-text, .basic-table, .page-common table, .page-common, .page-products__empty, .page-contact__info-col, .page-contact__texts, .form-default__text, .form-modal__text, .page-header__text, .news-card__text, .home-news__text, .home-partners__text, .home-company__texts, .product-card__infos, .product-card__text, .home-products__text, .home-nav__text, .home-intro__text, .home-intro__texts p, .base-dot-list, .page-common ul.dots-list, .page-common ul {
  line-height: 1.5;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #000000;
}
.base-section-text a, .basic-table a, .page-common a, .page-products__empty a, .page-contact__info-col a, .page-contact__texts a, .form-default__text a, .form-modal__text a, .page-header__text a, .news-card__text a, .home-news__text a, .home-partners__text a, .home-company__texts a, .product-card__infos a, .product-card__text a, .home-products__text a, .home-nav__text a, .home-intro__text a, .home-intro__texts p a, .base-dot-list a, .page-common ul.dots-list a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.base-section-text a:hover, .basic-table a:hover, .page-common a:hover, .page-products__empty a:hover, .page-contact__info-col a:hover, .page-contact__texts a:hover, .form-default__text a:hover, .form-modal__text a:hover, .page-header__text a:hover, .news-card__text a:hover, .home-news__text a:hover, .home-partners__text a:hover, .home-company__texts a:hover, .product-card__infos a:hover, .product-card__text a:hover, .home-products__text a:hover, .home-nav__text a:hover, .home-intro__text a:hover, .home-intro__texts p a:hover, .base-dot-list a:hover {
  text-decoration: none;
}

.base-dot-list, .page-common ul.dots-list, .page-common ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.base-dot-list li, .page-common ul.dots-list li, .page-common ul li {
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
}
@media (min-width: 768px) {
  .base-dot-list li, .page-common ul.dots-list li, .page-common ul li {
    padding: 0 0 0 38px;
  }
}
.base-dot-list li::before, .page-common ul.dots-list li::before, .page-common ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 2px;
  background: #000000;
}
@media (min-width: 768px) {
  .base-dot-list li::before, .page-common ul.dots-list li::before, .page-common ul li::before {
    top: 11px;
    width: 14px;
    height: 2px;
  }
}

.section-home-intro {
  height: 767px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 767px) {
  .section-home-intro {
    margin-top: 100px;
  }
}
.section-home-intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 767px) {
  .section-home-intro::after {
    background-image: url("../../images/header-bg.png");
    background-position: top right;
    background-repeat: no-repeat;
  }
}

.home-intro {
  position: relative;
  z-index: 5;
}
.home-intro__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.home-intro__button a {
  background-color: #ffffff;
  border-color: #ffffff;
}
.home-intro__button a:hover {
  border-color: #000000;
}
.home-intro__title {
  line-height: 1.2;
  color: #ffffff;
  font-size: 40px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  max-width: 765px;
  margin: 0;
}
@media (min-width: 1460px) {
  .home-intro__title {
    font-size: 54px;
  }
}
.home-intro__texts {
  width: 100%;
  max-width: 630px;
  font-size: 16px;
}
.home-intro__texts p {
  color: #ffffff;
  margin: 0;
}
.home-intro__subtitle {
  margin: 0 0 20px 0;
  line-height: 1.2;
  color: #000000;
  font-size: 22px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
@media (min-width: 500px) {
  .home-intro__subtitle {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .home-intro__subtitle {
    font-size: 28px;
  }
}
@media (min-width: 991px) {
  .home-intro__subtitle {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .home-intro__subtitle {
    font-size: 40px;
  }
}
.home-intro__subtitle a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  transition: 0.3s color;
}
@media (min-width: 991px) {
  .home-intro__subtitle a {
    text-decoration-thickness: 3px;
  }
}
.home-intro__subtitle a:hover {
  color: #965D51;
}
.home-intro__text {
  margin: 0;
}
.home-intro__cards {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  max-width: 1086px;
  margin: 0 -15px;
}
@media (min-width: 768px) {
  .home-intro__cards {
    width: 100%;
    margin: 0 auto;
  }
}
.home-intro__card {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 30px;
}
@media (max-width: 767px) {
  .home-intro__card {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .home-intro__card {
    width: 50%;
    min-height: 250px;
    padding: 0 25px;
  }
  .home-intro__card:first-child {
    align-items: flex-end;
  }
  .home-intro__card:first-child .home-intro__card-text {
    text-align: right;
  }
  .home-intro__card:first-child .home-intro__card-img {
    left: -80px;
    height: 350px;
  }
}
@media (min-width: 768px) and (min-width: 991px) {
  .home-intro__card:first-child .home-intro__card-img {
    left: -100px;
    height: 430px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1200px) {
  .home-intro__card:first-child .home-intro__card-img {
    left: -160px;
    height: 628px;
  }
}
@media (min-width: 768px) {
  .home-intro__card:last-child {
    align-items: flex-start;
  }
  .home-intro__card:last-child .home-intro__card-img {
    right: -80px;
    height: 320px;
  }
}
@media (min-width: 768px) and (min-width: 991px) {
  .home-intro__card:last-child .home-intro__card-img {
    right: -100px;
    height: 400px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1200px) {
  .home-intro__card:last-child .home-intro__card-img {
    right: -160px;
    height: 576px;
  }
}
.home-intro__card:hover .home-intro__card-text {
  text-decoration: none;
}
.home-intro__card:hover .btn-primary {
  background: #fff;
  color: #000;
}
.home-intro__card-text {
  margin: 0;
  line-height: 1.4;
  color: #fff;
  font-size: 20px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
@media (min-width: 768px) {
  .home-intro__card-text {
    max-width: 200px;
    font-size: 22px;
  }
}
@media (min-width: 991px) {
  .home-intro__card-text {
    max-width: unset;
  }
}
@media (min-width: 1200px) {
  .home-intro__card-text {
    font-size: 24px;
  }
}
.home-intro__card-button-container .btn-primary {
  border-color: #fff;
  color: #fff;
}
.home-intro__card-button-container .btn-primary:hover {
  background: #fff;
  color: #000;
}
.home-intro__card-img {
  display: none;
}
@media (min-width: 768px) {
  .home-intro__card-img {
    position: absolute;
    bottom: 0;
    display: block;
  }
}
.home-intro__video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  max-width: 100%;
}

.home-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}
@media (min-width: 991px) {
  .home-nav {
    padding: 90px 0;
  }
}
.home-nav__heading {
  width: 100%;
  max-width: 586px;
  margin: 0 auto;
  text-align: center;
}
.home-nav__title {
  margin: 0 0 16px 0;
}
.home-nav__text {
  margin: 0;
}
.home-nav__text p {
  margin: 0;
}
.home-nav__cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .home-nav__cards {
    flex-direction: row;
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
}
.home-nav__card {
  width: 100%;
}
@media (min-width: 768px) {
  .home-nav__card {
    width: 33.33%;
    padding: 0 10px;
  }
}

.home-nav-card {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 25px 15px;
  line-height: 1.2;
  color: #000000;
  font-size: 20px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .home-nav-card {
    font-size: 22px;
    min-height: 150px;
    padding: 0;
  }
}
@media (min-width: 991px) {
  .home-nav-card {
    min-height: 180px;
  }
}
@media (min-width: 1200px) {
  .home-nav-card {
    font-size: 24px;
    min-height: 230px;
  }
}
.home-nav-card:hover {
  background: #000000 !important;
  color: #fff;
}

.home-products {
  padding: 40px 0;
}
@media (min-width: 991px) {
  .home-products {
    padding: 90px 0 70px 0;
  }
}
.home-products__heading {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .home-products__heading {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}
@media (min-width: 991px) {
  .home-products__heading {
    margin: 0 0 70px 0;
  }
}
.home-products__heading-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1200px) {
  .home-products__heading-content {
    gap: 50px;
    flex-direction: row;
    align-items: center;
  }
}
.home-products__title {
  margin: 0;
}
.home-products__text {
  flex: 1;
  margin: 0;
}
.home-products__footer-button-container {
  display: flex;
  justify-content: center;
  margin: 0;
}
.home-products__slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  margin: 15px 0;
}
@media (min-width: 768px) {
  .home-products__slider-controls {
    margin: 30px 0;
  }
}
@media (min-width: 1200px) {
  .home-products__slider-controls {
    margin: 60px 0 40px 0;
  }
}
.home-products__slider-controls .home-products__btn {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
.home-products__slider-controls .home-products__btn img {
  display: block;
  width: 100%;
  height: 100%;
}
.home-products__slider-controls .home-products-slider__btn--next img {
  transform: rotate(180deg);
}
.home-products-slider {
  width: calc(100% + 30px);
  margin: 0 -15px !important;
  padding: 0;
}
.home-products-slider .slick-list {
  overflow: initial;
}
@media only screen and (min-width: 1200px) {
  .home-products-slider .slick-list {
    overflow: hidden;
  }
}
.home-products-slider .slick-list .slick-track {
  display: flex;
  flex-direction: row;
}
.home-products-slider .slick-list .slick-track .slick-slide {
  float: none;
  height: unset;
  min-height: unset;
}
.home-products-slider .slick-list .slick-track .slick-slide > div {
  height: 100%;
}
.home-products-slider .slick-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
  bottom: -52px;
}
@media (max-width: 767px) {
  .home-products-slider .slick-dots {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .home-products-slider .slick-dots {
    bottom: -82px;
  }
}
.home-products-slider .slick-dots > li {
  width: 50px;
  height: unset;
  margin: 0;
  padding: 0;
  transition: 0.3s width;
}
@media (min-width: 991px) {
  .home-products-slider .slick-dots > li {
    width: 90px;
  }
}
.home-products-slider .slick-dots > li > button {
  display: block;
  width: 100%;
  height: 3px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.2509803922);
  transition: 0.3s background;
}
.home-products-slider .slick-dots > li > button:hover {
  background: #000000;
}
.home-products-slider .slick-dots > li > button::before {
  content: none;
}
.home-products-slider .slick-dots > li.slick-active {
  width: 100px;
}
@media (min-width: 991px) {
  .home-products-slider .slick-dots > li.slick-active {
    width: 180px;
  }
}
.home-products-slider .slick-dots > li.slick-active > button {
  background: #000000;
}
.home-products-slider__item {
  padding: 0 15px;
  height: 100%;
}
.home-products-slider__item .product-card {
  background: #fff;
  min-height: 100%;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 25px;
}
@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .product-card {
    min-height: 540px;
    padding: 40px;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .product-card__left {
    flex-basis: 35%;
  }
}
.product-card__category {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}
@media (min-width: 768px) {
  .product-card__category {
    top: unset;
    bottom: 0;
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 1200px) {
  .product-card__category {
    width: 100px;
    height: 100px;
  }
}
.product-card__category img {
  display: block;
  width: 28px !important;
  height: 28px !important;
}
@media (min-width: 768px) {
  .product-card__category img {
    width: 35px !important;
    height: 35px !important;
  }
}
@media (min-width: 1200px) {
  .product-card__category img {
    width: 50px !important;
    height: 50px !important;
  }
}
.product-card__image {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
}
.product-card__image img {
  display: block;
  width: unset !important;
  height: unset !important;
  max-width: 100%;
}
.product-card__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .product-card__right {
    padding: 12px 0 0 0;
  }
}
.product-card__title {
  margin: 0 0 30px 0;
  line-height: 1.2;
  color: #000000;
  font-size: 20px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .product-card__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .product-card__title {
    font-size: 24px;
  }
}
.product-card__title a {
  color: inherit;
  text-decoration: none;
}
.product-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.product-card__text {
  margin: 0 0 30px 0;
}
.product-card__text p:last-child {
  margin: 0;
}
.product-card__infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__info-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.product-card__info-item-name {
  min-width: 50px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .product-card__info-item-name {
    min-width: 70px;
  }
}
@media only screen and (min-width: 1460px) {
  .product-card__info-item-name {
    min-width: 90px;
  }
}
.product-card__info-item-value {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  color: #fff;
}
@media (min-width: 1200px) {
  .product-card__info-item-value {
    height: 50px;
  }
}
@media only screen and (max-width: 1459px) {
  .product-card__info-item-value {
    flex: 1;
  }
}
@media only screen and (min-width: 1460px) {
  .product-card__info-item-value {
    min-width: 170px;
  }
}
.product-card__button-container {
  margin-top: 30px;
}

.home-company {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  gap: 40px;
}
@media (min-width: 768px) {
  .home-company {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .home-company {
    gap: 60px;
  }
}
@media (min-width: 991px) {
  .home-company {
    padding: 80px 0;
    gap: 100px;
  }
}
@media (min-width: 1200px) {
  .home-company {
    gap: 145px;
  }
}
.home-company__image-wrapper {
  position: relative;
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}
.home-company__image-bg {
  z-index: 1;
  position: relative;
}
.home-company__image-bg img {
  display: block;
  width: 100% !important;
  height: unset !important;
}
.home-company__image-logo {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-company__image-logo img {
  display: block;
  width: 60px !important;
  height: unset !important;
}
@media (min-width: 991px) {
  .home-company__image-logo img {
    width: 100px !important;
  }
}
@media (min-width: 1200px) {
  .home-company__image-logo img {
    width: 165px !important;
  }
}
.home-company__content {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}
.home-company__title {
  margin: 0 0 30px 0;
}
.home-company__texts p {
  margin: 0 0 30px 0;
}
.home-company__texts > *:last-child {
  margin: 0;
}
.home-company__button-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 35px;
}

.home-partners {
  padding: 40px 0;
}
@media (min-width: 991px) {
  .home-partners {
    padding: 80px 0;
  }
}
.home-partners__heading {
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
  text-align: center;
}
.home-partners__title {
  margin: 0 0 30px 0;
}
.home-partners__text {
  margin: 0;
}
.home-partners__text p {
  margin: 0;
}
.home-partners__slider {
  margin: 58px 0 0 0;
}
.home-partners__slider--centered .home-partners-slider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  row-gap: 3rem;
}
.home-partners__slider--centered-wrapped .home-partners-slider {
  flex-wrap: wrap;
}

.home-partners-slider .slick-list {
  overflow: initial !important;
}
.home-partners-slider__item {
  padding: 0 25px;
}
@media (min-width: 768px) {
  .home-partners-slider__item {
    padding: 0 50px;
  }
}

.home-partners-slider-logo {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
@media (min-width: 768px) {
  .home-partners-slider-logo {
    height: 55px;
  }
}
.home-partners-slider-logo img {
  display: block;
  width: unset !important;
  height: unset !important;
  max-height: 100%;
  max-height: 100%;
  transition: 0.3s;
}
.home-partners-slider-logo img:hover {
  transform: scale(1.1);
}

.home-news {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  gap: 40px;
}
@media (min-width: 991px) {
  .home-news {
    flex-direction: row;
    align-items: center;
    padding: 65px 0;
    gap: 65px;
  }
}
@media (min-width: 1200px) {
  .home-news {
    gap: 90px;
  }
}
@media (min-width: 1460px) {
  .home-news {
    gap: 115px;
  }
}
.home-news__left {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}
.home-news__title {
  margin: 0 0 30px 0;
}
.home-news__text {
  margin: 0;
}
.home-news__text p {
  margin: 0;
}
.home-news__button-container {
  margin: 40px 0 0 0;
}
.home-news__right {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
}
.news-list .news-card:first-child {
  border-top: none;
}

.news-card {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.5019607843);
}
@media (min-width: 480px) {
  .news-card {
    gap: 36px;
  }
}
.news-card__image {
  width: 100%;
}
@media (min-width: 480px) {
  .news-card__image {
    width: 176px;
  }
}
.news-card__image a {
  transition: 0.3s opacity;
}
.news-card__image a:hover {
  opacity: 0.8;
}
.news-card__image img {
  display: block;
  width: 100% !important;
  height: unset !important;
}
.news-card__content {
  flex: 1;
}
.news-card__date {
  margin: 0 0 8px 0;
  line-height: 1;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5019607843);
}
.news-card__title {
  margin: 0 0 8px 0;
  line-height: 1.3;
  font-size: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #000000;
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
}
.news-card__text {
  margin: 0 0 16px 0;
}
.news-card__button-arrow {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: 0.3s gap;
}
.news-card__button-arrow:hover {
  gap: 12px;
  text-decoration: none;
}

.page-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 835px;
  margin: 0 auto;
  padding: 100px 0 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .page-header {
    padding: 135px 0 60px 0;
  }
}
@media (min-width: 1200px) {
  .page-header {
    min-height: 365px;
  }
}
.page-header__title {
  margin: 0 0 20px 0;
}
.page-header__text {
  margin: 0;
}
.page-header__text p {
  margin: 0;
}

.page-news {
  padding: 40px 0;
}
@media (min-width: 1200px) {
  .page-news {
    padding: 60px 0 90px 0;
  }
}
.page-news__main-news {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page-news__main-news .news-card {
  gap: 0;
  padding: 0;
  border: none;
}
@media (min-width: 480px) {
  .page-news__main-news .news-card {
    min-height: 350px;
  }
}
.page-news__main-news .news-card__image {
  width: 100%;
  padding-top: 70%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s opacity;
}
@media (min-width: 480px) {
  .page-news__main-news .news-card__image {
    width: 50%;
    padding-top: 0;
  }
}
.page-news__main-news .news-card__image:hover {
  opacity: 0.8;
}
.page-news__main-news .news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
}
@media (min-width: 768px) {
  .page-news__main-news .news-card__content {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .page-news__main-news .news-card__content {
    padding: 50px;
  }
}
.page-news__list {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .page-news__list {
    padding-top: 25px;
  }
}
.page-news__button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .page-news__button-container {
    margin-top: 60px;
  }
}

.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.modal-wrapper.opened {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-wrappe-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7490196078);
}

.modal-window {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  max-height: calc(100vh - 40px);
}
.modal-window__button-close {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  z-index: 3;
  position: absolute;
  top: 30px;
  right: 30px;
}
.modal-window--form {
  max-width: 1000px;
}
.modal-window__form-layout {
  max-height: calc(100vh - 40px);
  background: #fff;
  overflow-y: auto;
}

.base-form-title, .form-default__title, .form-modal__title {
  margin: 0 0 16px 0;
  line-height: 1.2;
  color: #000000;
  font-size: 20px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .base-form-title, .form-default__title, .form-modal__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .base-form-title, .form-default__title, .form-modal__title {
    font-size: 24px;
  }
}

.form-modal__heading {
  padding: 35px 20px 25px 20px;
}
@media (min-width: 768px) {
  .form-modal__heading {
    padding: 50px 20px;
  }
}
.form-modal__heading-content {
  width: 100%;
  max-width: 595px;
  margin: 0 auto;
  text-align: center;
}
.form-modal__text {
  margin: 0;
}
.form-modal__text p {
  margin: 0;
}
.form-modal__content {
  padding: 25px;
}
.form-modal__product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 620px;
  margin: 0 auto 30px auto;
  line-height: 1.3;
  font-size: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #000000;
}
.form-modal__product img {
  display: block;
  width: 68px !important;
  height: unset !important;
}
.form-modal__form {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 0 20px 0;
}

.form-default__heading {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 30px auto;
  text-align: center;
}
.form-default__text {
  margin: 0;
}
.form-default__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .form-default__row {
    flex-direction: row;
    gap: 15px;
    margin: 0 0 15px;
  }
}
.form-default__field {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}
.form-default__field--email {
  display: none;
}
.form-default__field p {
  margin: 0;
}
.form-default__input, .form-default__textarea {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 25px;
  background: #F0EFEB;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  color: #000000;
  outline: none;
}
.form-default__input::placeholder, .form-default__textarea::placeholder {
  color: #000000;
}
.form-default__input:focus, .form-default__textarea:focus {
  outline-color: #000000;
  outline-style: solid;
  outline-width: 2px;
}
.form-default__input {
  height: 40px;
  padding: 0 25px;
}
@media (min-width: 768px) {
  .form-default__input {
    height: 50px;
    padding: 0 40px;
  }
}
.form-default__textarea {
  height: 100px;
  padding: 15px 25px;
  resize: none;
}
@media (min-width: 768px) {
  .form-default__textarea {
    padding: 15px 40px;
  }
}
.form-default__button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .form-default__button-container {
    margin-top: 40px;
  }
}
.form-default__button-container p {
  margin: 0;
  padding: 0 40px;
  position: relative;
}
.form-default__button-container .wpcf7-spinner {
  margin: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.wpcf7-not-valid-tip {
  font-size: 1.6rem;
  margin-top: 1rem;
  color: red;
}

.wpcf7-response-output {
  border: 0 !important;
  padding: 0 !important;
  color: red;
  margin: 3rem 0 0 0 !important;
  text-align: center;
  font-size: 1.6rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  padding: 0;
  color: #46b450;
  margin: 3rem 0 0 0;
}

.page-contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 0 40px 0;
}
@media (min-width: 991px) {
  .page-contact {
    flex-direction: row;
    padding: 125px 0 55px 0;
  }
}
.page-contact__content {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}
@media (min-width: 991px) {
  .page-contact__content {
    padding: 45px 0 0 0;
  }
}
.page-contact__title {
  margin: 0 0 20px 0;
}
.page-contact__texts {
  max-width: 500px;
  margin: 0 0 45px 0;
}
.page-contact__texts p {
  margin: 0 0 30px 0;
}
.page-contact__texts > *:last-child {
  margin: 0;
}
.page-contact__info-row {
  display: flex;
  flex-direction: column;
  margin: 0 0 45px 0;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .page-contact__info-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.page-contact__info-col p {
  margin: 0 0 20px 0;
}
.page-contact__info-col > *:last-child {
  margin: 0;
}
.page-contact__info-col h3 {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  color: #000000;
}
@media (min-width: 768px) {
  .page-contact__info-col {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
.page-contact__info-title {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  color: #000000;
}
.page-contact__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-contact__socials a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
}
.page-contact__socials a:hover img {
  filter: invert(40%) sepia(6%) saturate(4073%) hue-rotate(322deg) brightness(91%) contrast(70%);
}
.page-contact__form {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}
.page-contact .form-default {
  padding: 25px;
  background: #fff;
}
@media (min-width: 768px) {
  .page-contact .form-default {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .page-contact .form-default {
    padding: 60px;
  }
}

.page-products {
  padding: 40px 0;
}
@media (min-width: 1200px) {
  .page-products {
    padding: 75px 0 60px 0;
  }
}
.page-products__categories {
  margin: 0 0 25px 0;
}
@media (min-width: 768px) {
  .page-products__categories {
    margin: 0 0 50px 0;
  }
}
.page-products__categories-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 25px 0;
  line-height: 1.2;
  color: #000000;
  font-size: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .page-products__categories-heading {
    font-size: 20px;
  }
}
@media (min-width: 991px) {
  .page-products__categories-heading {
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  .page-products__categories-heading {
    font-size: 24px;
  }
}
.page-products__categories-heading img {
  display: block;
  width: 30px !important;
  height: 30px !important;
}
@media (min-width: 768px) {
  .page-products__categories-heading img {
    width: 50px !important;
    height: 50px !important;
  }
}
.page-products__categories-heading b, .page-products__categories-heading strong {
  font-weight: 600;
}
.page-products__subcategories-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 25px 0;
  line-height: 1.2;
  color: #000000;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .page-products__subcategories-heading {
    font-size: 18px;
  }
}
.page-products__subcategories-heading b, .page-products__subcategories-heading strong {
  font-weight: 600;
}
.page-products__categories-body {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
  margin: 0 0 15px 0;
  padding: 0 0 25px 0;
}
@media (min-width: 1460px) {
  .page-products__categories-body {
    column-gap: 60px;
  }
}
.page-products__categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-products__subcategories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 14px;
}
.page-products__categories-btn {
  min-width: unset;
}
@media (min-width: 1200px) {
  .page-products__categories-btn {
    padding: 0 35px;
  }
}
@media (min-width: 1460px) {
  .page-products__categories-btn {
    padding: 0 56px;
  }
}
.page-products__categories-btn--brown:not(.btn-secondary):hover {
  background: #965D51;
}
.page-products__categories-filters {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 16px;
}
.page-products__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  width: calc(100% + 30px);
  margin: 0 -15px;
}
@media (min-width: 768px) {
  .page-products__list {
    row-gap: 30px;
  }
}
.page-products__empty {
  text-align: center;
}
.page-products__empty p {
  margin: 0;
}
.page-products__item {
  width: 100%;
  padding: 0 15px;
}
@media (min-width: 991px) {
  .page-products__item {
    width: 50%;
  }
}
.page-products__button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .page-products__button-container {
    margin-top: 60px;
  }
}

.base-config-card-checkbox, .checkbox-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.base-config-card-checkbox input, .checkbox-item input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.base-config-card-checkbox-ico, .checkbox-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #000;
  background: transparent;
}
.base-config-card-checkbox-ico img, .checkbox-item__icon img {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.base-config-card-checkbox-text, .checkbox-item__text {
  color: #000000;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

.checkbox-item input:checked + .checkbox-item__icon img {
  opacity: 1;
}
.checkbox-item input:checked ~ .ccheckbox-item__text {
  color: #000000;
  text-decoration: none;
}
.checkbox-item:hover .checkbox-item__icon img {
  opacity: 0.3;
}
.checkbox-item:hover .checkbox-item__text {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.page-common {
  padding: 40px 0;
}
@media only screen and (min-width: 991px) {
  .page-common {
    padding: 60px 0;
  }
}
.page-common__container {
  width: 100%;
  max-width: 87rem;
  margin: 0 auto;
}
.page-common h2 {
  margin: 0 0 30px 0;
  line-height: 1.2;
  color: #000000;
  font-size: 30px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .page-common h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .page-common h2 {
    font-size: 34px;
  }
}
.page-common h3 {
  position: relative;
  margin: 0 0 20px 0;
  line-height: 1.2;
  color: #000000;
  font-size: 20px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .page-common h3 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .page-common h3 {
    font-size: 24px;
  }
}
.page-common p {
  margin: 0 0 3rem 0;
}
.page-common img {
  max-width: 100%;
}
.page-common .common-gallery,
.page-common .controls-panel {
  margin: 3rem 0;
}
.page-common .wide-image {
  margin: 4rem auto;
}
.page-common ul.dots-list, .page-common ul {
  margin: 0 0 30px 0;
}
.page-common ol.numbered-list, .page-common ol {
  text-align: left !important;
  width: 100%;
  margin: 4rem 0;
  padding: 0;
  list-style: none;
  counter-reset: ol-counter;
}
.page-common ol.numbered-list li, .page-common ol li {
  position: relative;
  margin: 0 0 4rem 0;
  padding: 0 0 0 6rem;
  counter-increment: ol-counter;
}
.page-common ol.numbered-list li::before, .page-common ol li::before {
  content: counter(ol-counter) ".";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 4rem;
  height: 4rem;
  padding: 0 0 0 0.5rem;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 16px;
  background: #000000;
}
.page-common table {
  margin: 0 0 3rem 0 !important;
}

.wide-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.wide-image img {
  display: block;
  width: 100%;
}

.controls-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.common-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.common-gallery__item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  width: calc(50% - 0.6rem);
  transition: 0.3s;
}
@media (min-width: 768px) {
  .common-gallery__item {
    width: calc(50% - 0.6rem);
  }
}
@media (min-width: 991px) {
  .common-gallery__item {
    width: calc(33.33% - 0.8rem);
  }
}
.common-gallery__item:hover {
  opacity: 0.8;
}
.common-gallery__item img {
  display: block;
  width: 100%;
}

.accordion-panel {
  margin: 30px 0 30px 0;
}
.accordion-panel__item {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}
.accordion-panel__header {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  line-height: 1.375;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 15px 0;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}
@media only screen and (min-width: 768px) {
  .accordion-panel__header {
    line-height: 1.75;
  }
}
.accordion-panel__header svg, .accordion-panel__header img {
  flex-shrink: 0;
}
.accordion-panel__header.opened svg, .accordion-panel__header.opened img {
  transform: rotate(180deg);
}
.accordion-panel__header--first {
  padding: 0 0 15px 0;
}
.accordion-panel__texts {
  padding: 0 0 2.4rem 0;
}
.accordion-panel__texts p {
  margin: 0 0 3rem 0;
}
.accordion-panel__texts > *:last-child {
  margin: 0;
}

.basic-table, .page-common table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: #F0EFEB;
}
.basic-table thead tr, .page-common table thead tr {
  height: 40px;
  background: #000000;
}
@media (min-width: 768px) {
  .basic-table thead tr, .page-common table thead tr {
    height: 50px;
  }
}
.basic-table thead tr td, .page-common table thead tr td, .basic-table thead tr th, .page-common table thead tr th {
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 5px;
}
@media (min-width: 768px) {
  .basic-table thead tr td, .page-common table thead tr td, .basic-table thead tr th, .page-common table thead tr th {
    font-size: 18px;
    padding: 0 10px;
  }
}
.basic-table thead tr td:first-child, .page-common table thead tr td:first-child, .basic-table thead tr th:first-child, .page-common table thead tr th:first-child {
  padding-left: 10px;
  border-left: none;
}
@media (min-width: 768px) {
  .basic-table thead tr td:first-child, .page-common table thead tr td:first-child, .basic-table thead tr th:first-child, .page-common table thead tr th:first-child {
    padding-left: 20px;
  }
}
.basic-table thead tr td:last-child, .page-common table thead tr td:last-child, .basic-table thead tr th:last-child, .page-common table thead tr th:last-child {
  padding-right: 10px;
}
@media (min-width: 768px) {
  .basic-table thead tr td:last-child, .page-common table thead tr td:last-child, .basic-table thead tr th:last-child, .page-common table thead tr th:last-child {
    padding-right: 20px;
  }
}
.basic-table tbody tr, .page-common table tbody tr {
  height: 40px;
}
@media (min-width: 768px) {
  .basic-table tbody tr, .page-common table tbody tr {
    height: 50px;
  }
}
.basic-table tbody tr:nth-child(2n), .page-common table tbody tr:nth-child(2n) {
  background: #f8f8f8;
}
.basic-table tbody tr td, .page-common table tbody tr td {
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 5px;
}
@media (min-width: 768px) {
  .basic-table tbody tr td, .page-common table tbody tr td {
    font-size: 16px;
    padding: 0 10px;
  }
}
.basic-table tbody tr td:first-child, .page-common table tbody tr td:first-child {
  padding-left: 10px;
  border-left: none;
}
@media (min-width: 768px) {
  .basic-table tbody tr td:first-child, .page-common table tbody tr td:first-child {
    padding-left: 20px;
  }
}
.basic-table tbody tr td:last-child, .page-common table tbody tr td:last-child {
  padding-right: 10px;
}
@media (min-width: 768px) {
  .basic-table tbody tr td:last-child, .page-common table tbody tr td:last-child {
    padding-right: 20px;
  }
}
.basic-table tbody tr:last-child td, .page-common table tbody tr:last-child td {
  border-bottom: none;
}

.loader {
  display: none;
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #000000 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #000000);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
  margin: auto 3rem auto 0;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.hidden {
  display: none !important;
}

.section-product-list .product-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0 0;
  padding: 0;
  gap: 0;
}
@media (min-width: 991px) {
  .section-product-list .product-list {
    flex-direction: row;
    gap: 0;
    min-height: 420px;
  }
}
.section-product-list .product-list__video-wrapper {
  flex: 1 1 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: 486px;
  background: #222;
  overflow: hidden;
}
.section-product-list .product-list__video-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.section-product-list .product-list__video-bg video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.9/1;
  filter: brightness(0.6);
}
.section-product-list .product-list__video-bg .product-list__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 38, 36, 0.44);
  z-index: 2;
}
.section-product-list .product-list__video-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-product-list .product-list__video-logo img {
  width: 165px;
  height: auto;
  display: block;
}
.section-product-list .product-list__categories {
  flex: 1 1 56%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 90px;
  gap: 0;
  background: none;
  padding: 0 0 0 0;
}
@media (max-width: 1199px) {
  .section-product-list .product-list__categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .section-product-list .product-list__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .section-product-list .product-list__categories {
    grid-template-columns: 1fr;
  }
}
.section-product-list .product-list__category {
  background: #a06f61;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  border-radius: 0;
  border: 1px solid #fff;
  transition: background 0.18s, color 0.18s;
  padding: 0 10px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.section-product-list .product-list__category:hover, .section-product-list .product-list__category:focus {
  background: #8d594b;
  color: #fff;
  text-decoration: none;
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  color: #000000;
  margin-bottom: 20px;
}
.page-breadcrumbs > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-breadcrumbs > span > span:not(:last-child) a {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.page-breadcrumbs > span > span:not(:last-child) a:hover, .page-breadcrumbs > span > span:not(:last-child) a:focus {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-breadcrumbs > span > span {
  margin: 0 1rem;
}
.page-breadcrumbs > span > .breadcrumb_last {
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
}
@media only screen and (min-width: 991px) {
  .footer__content {
    padding: 65px 0;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo img {
  display: block;
  max-width: 100%;
  height: 58px;
}
@media only screen and (min-width: 1200px) {
  .footer__logo img {
    height: 58px;
  }
}
.footer__logo span {
  letter-spacing: 0.4px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #000000;
  font-size: 16px;
}
.footer__text {
  line-height: 1.5;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #000000;
  text-align: center;
}
.footer__text a {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.footer__text a:hover {
  text-decoration: none;
}
.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer__contacts {
    flex-direction: row;
  }
}
.footer__contacts-item {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 255px;
  height: 40px;
  padding: 0 30px;
  font-size: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  background: #000000;
  color: #fff;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .footer__contacts-item {
    height: 50px;
  }
}
.footer__contacts-item span {
  z-index: 2;
  position: relative;
}
.footer__contacts-item:hover {
  background: #965D51;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}
@media (min-width: 1200px) {
  .footer__bottom {
    flex-direction: row;
  }
}
@media (max-width: 1199px) {
  .footer__nav {
    order: 1;
  }
}
.footer__copy {
  line-height: 1.2;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #333333;
}
@media (max-width: 1199px) {
  .footer__copy {
    order: 2;
  }
}
.footer__developed {
  display: flex;
  flex-direction: row;
  gap: 8px;
  line-height: 1.2;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #333333;
}
.footer__developed img {
  display: block;
  width: 101px !important;
  height: 16px !important;
}
@media (max-width: 1199px) {
  .footer__developed {
    order: 3;
  }
}

/*# sourceMappingURL=main.css.map */
