@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.sitemap {
  margin-top: 40px;
}
.sitemap__section {
  margin-bottom: 50px;
}
.sitemap__section:last-child {
  margin-bottom: 0;
}
.sitemap__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0e0e0;
}
.sitemap__title a {
  color: rgb(91, 72, 104);
  text-decoration: none;
  transition: color 0.3s;
}
.sitemap__title a:hover {
  color: rgb(81, 53, 100);
}
@media (max-width: 767px) {
  .sitemap__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.sitemap__subsection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
@media (max-width: 767px) {
  .sitemap__subsection {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.sitemap__group {
  margin-bottom: 24px;
}
.sitemap__group:last-child {
  margin-bottom: 0;
}
.sitemap__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgb(60, 60, 60);
}
@media (max-width: 767px) {
  .sitemap__subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap__list li {
  margin-bottom: 12px;
}
.sitemap__list li:last-child {
  margin-bottom: 0;
}
.sitemap__list li a {
  color: rgb(60, 60, 60);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}
.sitemap__list li a:hover {
  color: rgb(91, 72, 104);
  text-decoration: underline;
}
.sitemap__list--nested {
  margin-top: 12px;
  margin-left: 20px;
}
.sitemap__list--nested li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}
.sitemap__list--nested li:before {
  content: "–";
  position: absolute;
  left: 0;
  color: #888;
}
.sitemap__list--nested li a {
  font-size: 14px;
  color: #666;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: rgb(60, 60, 60);
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
body.open {
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 374px) {
  .container {
    padding: 0 15px;
  }
}

.burger {
  display: none;
  position: relative;
  cursor: pointer;
  z-index: 111;
  width: 38px;
  height: 38px;
  z-index: 99;
  border-radius: 8px;
  margin: 2px 10px 0 -10px;
}
.burger.open:before {
  background: rgb(60, 60, 60);
  transform: rotate(-45deg);
  top: 16px;
  height: 2px;
}
.burger.open:after {
  background: rgb(60, 60, 60);
  top: 16px;
  transform: rotate(45deg);
  height: 2px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 9px;
  width: 20px;
  height: 2px;
  background: rgb(60, 60, 60);
  border-radius: 4px;
  transition: 0.5s;
}
.burger:after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 9px;
  width: 20px;
  height: 2px;
  background: rgb(60, 60, 60);
  border-radius: 4px;
  transition: 0.5s;
}
.burger span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 9px;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: rgb(60, 60, 60);
}
@media (max-width: 992px) {
  .burger {
    display: block;
  }
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 0px;
  background: rgb(91, 72, 104);
  opacity: 0;
  max-height: 1px;
  overflow: hidden;
  transition: 0.5s;
  transform: translateY(-10px);
}
.search-dropdown.open {
  opacity: 1;
  transform: translateY(0px);
  max-height: 100px;
  overflow: visible;
}
.search-dropdown__content {
  position: relative;
}
.search-dropdown__content form {
  width: 100%;
  max-width: 284px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .search-dropdown__content form {
    max-width: 100%;
  }
}
.search-dropdown__content input {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgb(216, 215, 213);
  color: rgb(255, 255, 255);
  font-family: "Inter";
  font-size: 14px;
  font-weight: 400;
  line-height: 21.45px;
}
.search-dropdown__content input::placeholder {
  color: #fff;
}
.search-dropdown__close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
@media (max-width: 992px) {
  .search-dropdown__close {
    right: -20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: #fff;
  transition: 0.5s;
}
.header--inner {
  background: rgb(248, 248, 248);
}
.header.sticky {
  transform: translateY(-45px);
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.1);
}

.header-top {
  background: rgb(91, 72, 104);
  position: relative;
  z-index: 13;
}
.header-top__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
}
.header-top__address {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 400;
  line-height: 110%;
}
.header-top__right ul {
  display: flex;
  align-items: center;
}
.header-top__right ul li {
  margin-left: 24px;
  position: relative;
}
.header-top__right ul li:first-child {
  margin-left: 0;
}
@media (max-width: 767px) {
  .header-top__right ul li.mobile-hide {
    display: none !important;
  }
}
.header-top__right ul li .alert-icon {
  margin-right: 5px;
  padding: 0;
  width: 16px;
  height: 16px;
  color: #fff;
  display: block;
  margin-top: -2px;
}
.header-top__right ul li ul {
  position: absolute;
  left: -20px;
  top: 100%;
  background: rgb(91, 72, 104);
  opacity: 0;
  transform: translateY(-10px);
  max-height: 1px;
  overflow: hidden;
  transition: 0.5s;
  display: block;
}
.header-top__right ul li ul li {
  margin: 0;
  display: block;
}
.header-top__right ul li ul li a {
  padding: 20px;
  display: block;
}
.header-top__right ul li:hover ul {
  opacity: 1;
  transform: translateY(0px);
  max-height: 100px;
}
@media (max-width: 767px) {
  .header-top__right ul li ul {
    display: block;
    flex-direction: column;
    left: auto;
    right: 0;
    width: auto;
    min-width: 60px;
    white-space: nowrap;
  }
  .header-top__right ul li ul li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    float: none;
  }
  .header-top__right ul li ul li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    box-sizing: border-box;
  }
  .header-top__right ul li:hover ul {
    max-height: 200px;
  }
}
.header-top__right ul li a {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 400;
  line-height: 110%;
  display: inline-flex;
  align-items: center;
  height: 45px;
  transition: 0.5s;
  cursor: pointer;
}
.header-top__right ul li a:hover {
  opacity: 0.5;
}
.header-top__right ul li a .arrow {
  position: relative;
  margin-left: 5px;
  display: inline-block;
}
.header-top__right ul li a .arrow .icon {
  display: block;
  width: 9px;
  height: 5px;
  color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.header-content__left {
  display: flex;
  align-items: center;
}
.header-content__right {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 20px;
}
.logo img {
  display: block;
  width: 75%;
  height: auto;
}

.main-menu {
  margin-right: 20px;
}
@media (max-width: 992px) {
  .main-menu__ul {
    padding-bottom: 950px;
  }
}
@media (max-width: 992px) {
  .main-menu {
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgb(240, 239, 241);
    padding: 26px 32px 20px 32px;
    overflow-y: auto;
    opacity: 0;
    max-height: 1px;
    transition: 0.5s;
    transform: translateY(-20px);
  }
}
.main-menu.open {
  display: flex;
  max-height: calc(100vh - 60px);
  opacity: 1;
  transform: translateY(0px);
}
.main-menu ul {
  display: flex;
}
@media (max-width: 992px) {
  .main-menu ul {
    flex-direction: column;
    width: 100%;
  }
}
.main-menu ul li {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .main-menu ul li {
    margin: 0 0 15px 0;
  }
}
@media (min-width: 993px) {
  .main-menu ul li:hover .submenu-dropdown {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(-10px);
  }
}
.main-menu ul li a {
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.main-menu ul li a:hover {
  border-color: rgba(60, 60, 60, 0.5);
}

.submenu-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: -40px;
}
@media (min-width: 993px) {
  .submenu-dropdown {
    opacity: 0;
    max-height: 1px;
    overflow: hidden;
    transition: 0.5s;
    transform: translateY(-20px);
  }
}
@media (max-width: 992px) {
  .submenu-dropdown {
    position: relative;
    top: 0;
    left: 0;
  }
}
.submenu-dropdown li {
  margin: 0;
}
.submenu-dropdown:before {
  content: "";
  width: 500px;
  height: 30px;
  position: absolute;
  top: -20px;
  left: 0;
}
@media (max-width: 992px) {
  .submenu-dropdown:before {
    display: none;
  }
}

.submenu {
  display: flex;
  width: 612px;
  background: rgb(240, 239, 241);
  padding: 20px;
  justify-content: space-between;
  border-top: 1px solid rgb(91, 72, 104);
}
@media (max-width: 992px) {
  .submenu {
    width: calc(100% + 64px);
    margin: 10px -32px -20px -32px;
    padding: 0 32px;
    background: transparent;
    border: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 992px) {
  .submenu__col {
    width: 100%;
    padding-top: 20px;
  }
}
.submenu__col ul {
  flex-direction: column;
}
.submenu__col ul li {
  margin: 0 0 4px 0;
}
@media (max-width: 992px) {
  .submenu__col ul li {
    margin-bottom: 10px;
  }
}
.submenu__col ul li a {
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.14px;
  text-align: left;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.submenu__col ul li a:hover {
  color: rgb(81, 53, 100);
  border-bottom: 1px solid rgb(81, 53, 100);
}
.submenu__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 600;
  line-height: 13.26px;
  letter-spacing: -0.14px;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .submenu__title {
    margin-bottom: 15px;
  }
}

.header-search {
  cursor: pointer;
}
.header-search svg {
  width: 24px;
  height: 24px;
  display: block;
  color: rgb(60, 60, 60);
  transition: 0.5s;
}
.header-search svg:hover {
  color: rgb(136, 137, 255);
}

.header-profile {
  cursor: pointer;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 374px) {
  .header-profile {
    margin-left: 8px;
  }
}
.header-profile svg {
  width: 24px;
  height: 24px;
  display: block;
  color: rgb(60, 60, 60);
  transition: 0.5s;
}
.header-profile svg:hover {
  color: rgb(136, 137, 255);
}
@media (max-width: 767px) {
  .header-profile__name {
    display: none !important;
  }
}
.header-profile.authenticated svg {
  fill: rgb(60, 60, 60);
}
.header-profile.authenticated svg path {
  fill: rgb(60, 60, 60);
  stroke: rgb(60, 60, 60);
}

.shopping-cart-btn {
  cursor: pointer;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 374px) {
  .shopping-cart-btn {
    margin-left: 8px;
  }
}
.shopping-cart-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgb(60, 60, 60);
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 700;
  line-height: 10px;
  text-align: center;
  margin-left: 4px;
}
.shopping-cart-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  color: rgb(60, 60, 60);
  transition: 0.5s;
}
.shopping-cart-btn svg:hover {
  color: rgb(136, 137, 255);
}

section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

h1, .h1 {
  color: rgb(60, 60, 60);
  font-size: 42px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    margin-bottom: 30px;
  }
}
h1.mobile-show, .h1.mobile-show {
  display: none;
}
@media (max-width: 767px) {
  h1.mobile-show, .h1.mobile-show {
    display: block;
  }
}
@media (max-width: 767px) {
  h1.mobile-hide, .h1.mobile-hide {
    display: none;
  }
}

h2, .h2 {
  color: rgb(60, 60, 60);
  font-size: 34px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }
}

.manufacturer {
  margin-bottom: 30px;
  display: block;
}
.manufacturer__img {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: 0.5s;
}
@media (max-width: 566px) {
  .manufacturer__img {
    height: 100px;
  }
}
.manufacturer__img:hover {
  background: rgba(91, 72, 104, 0.05);
}
.manufacturer__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.manufacturer__name {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  text-align: center;
}
@media (max-width: 566px) {
  .manufacturer__name {
    font-size: 16px;
  }
}

.btn-center {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
}
.btn-center .btn {
  margin-bottom: 10px;
}
.btn-center .btn:last-child {
  margin-bottom: 0;
}

.btn {
  color: rgb(255, 255, 255);
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  padding: 0 40px;
  border: 0;
  background: rgb(91, 72, 104);
  transition: 0.5s;
  border-radius: 6px;
}
.btn.mobile-show {
  display: none;
}
@media (max-width: 767px) {
  .btn.mobile-show {
    display: flex;
    width: 100%;
  }
}
.btn .icon {
  margin-left: 5px;
  transition: 0.5s;
}
.btn .icon img {
  display: block;
}
.btn--padding-sm {
  padding: 0 16px;
}
.btn--padding-md {
  padding: 0 25px;
}
.btn:hover {
  background-color: rgb(81, 53, 100);
  color: #fff;
}
.btn:hover .icon {
  transform: translateX(5px);
}
@media (max-width: 566px) {
  .btn {
    width: 100%;
    padding: 0;
  }
}
.btn--border {
  border: 1px solid rgb(91, 72, 104);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  background: transparent;
  color: rgb(91, 72, 104);
}
.btn--fixed {
  width: 100%;
  max-width: 310px;
  padding: 0;
}
@media (max-width: 566px) {
  .btn--fixed {
    max-width: 100%;
  }
}
.btn--fixed-sm {
  width: 100%;
  max-width: 230px;
  padding: 0;
}
@media (max-width: 566px) {
  .btn--fixed-sm {
    max-width: 100%;
  }
}
.btn--fuild {
  width: 100%;
  padding: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-head .h2 {
  margin-bottom: 0;
}

.filter-btn-block__link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-btn {
  border-bottom: 1px solid transparent;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: center;
  color: rgb(91, 72, 104);
  margin: 10px 0;
  text-align: center;
  transition: 0.5s;
}
.clear-btn:hover {
  border-color: rgb(91, 72, 104);
}

.link-arrow a {
  display: inline-flex;
  align-items: center;
  color: rgb(91, 72, 104);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: left;
  transition: 0.5s;
  cursor: pointer;
  border-bottom: 1px solid rgb(91, 72, 104);
}
.link-arrow a:hover {
  border-color: rgb(136, 137, 255);
  color: rgb(136, 137, 255);
}
.link-arrow a:hover .icon {
  color: rgb(136, 137, 255);
}
.link-arrow .icon {
  margin-left: 4px;
  width: 20px;
  height: 20px;
  display: block;
  color: rgb(91, 72, 104);
  transition: 0.5s;
}

@media (max-width: 767px) {
  .article-item {
    margin-bottom: 24px;
  }
}
.article-item__img {
  display: block;
  height: 325px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .article-item__img {
    margin-bottom: 16px;
    height: 285px;
  }
}
.article-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 100%;
}
.article-item__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .article-item__title {
    font-size: 18px;
  }
}

.subscribe {
  padding: 100px 0 90px 0;
  background: url(../images/subscribe-bg.jpg) 50% 100% no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .subscribe {
    padding: 60px 0;
  }
}
.subscribe__form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.subscribe__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 34px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .subscribe__title {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }
}
.subscribe p {
  color: rgb(60, 60, 60);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  margin-bottom: 32px;
}
.subscribe p br {
  display: none;
}
@media (max-width: 767px) {
  .subscribe p br {
    display: block;
  }
}
.subscribe__input {
  max-width: 490px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(60, 60, 60, 0.5);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .subscribe__input {
    width: calc(100% - 64px);
  }
}
.subscribe__input .icon img {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.subscribe__input input {
  width: 100%;
  padding: 12px 20px 12px 10px;
  background: transparent;
  border: 0;
  color: rgb(60, 60, 60);
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: left;
}
.subscribe__input input::placeholder {
  color: rgba(60, 60, 60, 0.5);
}
.subscribe__input button {
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  border: 0;
  cursor: pointer;
  background: transparent;
  transition: 0.5s;
}
.subscribe__input button:hover {
  color: rgb(81, 53, 100);
}

.footer {
  background: rgb(91, 72, 104);
  padding: 80px 0 32px 0;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 40px;
  }
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer-content {
    flex-wrap: wrap;
  }
}
.footer-content__left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-content__left {
    flex-direction: column;
    width: 100%;
  }
}
.footer-content__left .footer-logo img {
  display: block;
}
.footer-content__address {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  border-left: 1px solid #fff;
  margin-left: 20px;
  padding: 4px 0 4px 30px;
  position: relative;
  display: block;
}
.footer-content__address:before {
  content: "";
  width: 24px;
  height: 1px;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
  display: none;
  background: #fff;
}
@media (max-width: 767px) {
  .footer-content__address:before {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer-content__address {
    padding: 30px 0 40px 0;
    border: 0;
    text-align: center;
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .footer-content__right {
    width: 100%;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer-content__right {
    padding-top: 0;
  }
}
.footer-content__right ul {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .footer-content__right ul {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer-content__right ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    justify-items: center;
    width: 100%;
  }
}
.footer-content__right ul li {
  margin-left: 40px;
}
@media (max-width: 1180px) {
  .footer-content__right ul li {
    margin-left: 20px;
  }
}
@media (max-width: 992px) {
  .footer-content__right ul li {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .footer-content__right ul li {
    margin: 0;
    text-align: center;
  }
}
.footer-content__right ul li a {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  white-space: nowrap;
  transition: 0.5s;
}
.footer-content__right ul li a:hover {
  color: rgb(136, 137, 255);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-wrap: wrap;
    padding-top: 24px;
  }
}
.footer-bottom {
  border-top: 1px solid #fff;
}
.footer-bottom__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-bottom__left {
    justify-content: space-between;
    width: 100%;
  }
}
.footer-bottom__left a {
  color: rgb(254, 254, 254);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  margin-right: 28px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .footer-bottom__left a {
    margin-right: 0;
  }
}
.footer-bottom__left a:hover {
  color: rgb(136, 137, 255);
}

.copy {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  margin-right: 28px;
}
@media (max-width: 767px) {
  .copy {
    margin-right: 0;
    width: 100%;
    text-align: center;
    order: 2;
    padding-top: 16px;
    font-size: 12px;
  }
}

.social {
  display: flex;
}
@media (max-width: 767px) {
  .social {
    order: -1;
    justify-content: center;
    margin-bottom: 16px;
    margin-top: 8px;
    width: 100%;
  }
}
.social a {
  margin: 0 0 0 24px;
  border: 0;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .social a {
    margin: 0 10px;
  }
}
.social a .icon, .social a img {
  display: block;
  color: #fff;
  transition: 0.5s;
  width: 24px;
  height: 24px;
}
.social a .icon:hover, .social a img:hover {
  color: rgb(136, 137, 255);
}

.leave-request-block {
  display: flex;
  flex-wrap: wrap;
}
.leave-request-block__image {
  width: 50%;
  max-height: 532px;
}
@media (max-width: 767px) {
  .leave-request-block__image {
    width: 100%;
  }
}
.leave-request-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 100%;
}
.leave-request-block__content {
  width: 50%;
  background: rgb(248, 248, 248);
  padding: 118px 72px;
  max-height: 532px;
}
@media (max-width: 992px) {
  .leave-request-block__content {
    padding: 118px 32px;
  }
}
@media (max-width: 767px) {
  .leave-request-block__content {
    padding: 40px 32px;
    width: 100%;
  }
}
.leave-request-block__top {
  display: block;
  color: rgb(136, 137, 255);
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.leave-request-block__title {
  max-width: 452px;
  color: rgb(60, 60, 60);
  font-size: 40px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.4px;
  text-align: left;
  margin-bottom: 16px;
  display: block;
}
@media (max-width: 767px) {
  .leave-request-block__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.leave-request-block p {
  max-width: 452px;
  color: rgb(60, 60, 60);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .leave-request-block p {
    font-size: 16px;
    line-height: 24px;
  }
}

.main {
  padding-top: 105px;
  min-height: calc(100vh - 243px);
}
@media (max-width: 767px) {
  .main {
    min-height: auto;
  }
}
.main--inner {
  padding-top: 135px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
  color: rgb(60, 60, 60);
}
.breadcrumbs a {
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
  color: rgba(60, 60, 60, 0.5);
  transition: 0.5s;
}
.breadcrumbs a:hover {
  color: rgb(60, 60, 60);
}
.breadcrumbs .sep {
  display: block;
  margin: 0 10px;
  color: rgba(60, 60, 60, 0.5);
}

.editor-content-isolated {
  position: relative;
  z-index: 1;
  isolation: isolate;
  contain: layout style;
}
.editor-content-isolated .editor-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
}
.editor-content-isolated .editor-content-wrapper [style*="position: fixed"],
.editor-content-isolated .editor-content-wrapper [style*="position:fixed"] {
  position: relative !important;
}
.editor-content-isolated .editor-content-wrapper [style*=z-index] {
  z-index: 100 !important;
}
.editor-content-isolated .editor-content-wrapper iframe {
  position: relative !important;
  z-index: 1 !important;
  max-width: 100%;
}
.editor-content-isolated .editor-content-wrapper > *:first-child {
  margin-top: 0;
}
.editor-content-isolated .editor-content-wrapper ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.editor-content-isolated .editor-content-wrapper ul li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.editor-content-isolated .editor-content-wrapper ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}
.editor-content-isolated .editor-content-wrapper ol li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}

.content-page {
  position: relative;
  width: 100%;
}
.content-page__content {
  position: relative;
  width: 100%;
}
.content-page__content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.content-page__content ul li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.content-page__content ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}
.content-page__content ol li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}

.filter-btns {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .filter-btns {
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .filter-btns .filter-btn {
    display: flex;
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .filter-btns .filter-btn:nth-child(3):last-child {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .filter-btns.tabs {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .filter-btns.tabs .filter-btn {
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 15px;
  }
}

.filter-btn {
  margin-bottom: 10px;
  margin-right: 10px;
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 30px;
  border: 0;
  background: rgb(248, 248, 248);
  transition: 0.5s;
  border-radius: 6px;
  cursor: pointer;
}
.filter-btn.active {
  background: rgb(91, 72, 104);
  color: rgb(255, 255, 255);
}
.filter-btn:hover {
  background-color: rgb(81, 53, 100);
  color: rgb(255, 255, 255);
}

.coating-group-description {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: rgb(60, 60, 60);
}
.coating-group-description p {
  margin: 0;
}

.articles-block .article-item {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .articles-block .article-item {
    margin-bottom: 30px;
  }
}

.pages-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.pages-nav__prev svg {
  color: rgb(91, 72, 104);
  width: 20px;
  height: 20px;
  transform: rotate(-180deg);
  transition: 0.5s;
}
@media (max-width: 413px) {
  .pages-nav__prev svg {
    width: 16px;
    height: 16px;
  }
}
.pages-nav__next svg {
  color: rgb(91, 72, 104);
  width: 20px;
  height: 20px;
  transition: 0.5s;
}
@media (max-width: 413px) {
  .pages-nav__next svg {
    width: 16px;
    height: 16px;
  }
}
.pages-nav a {
  width: 46px;
  height: 46px;
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border: 0;
  background: rgb(248, 248, 248);
  transition: 0.5s;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 5px;
}
@media (max-width: 413px) {
  .pages-nav a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.pages-nav a.active {
  background: rgb(91, 72, 104);
  color: rgb(255, 255, 255);
  pointer-events: none;
}
.pages-nav a:hover {
  background-color: rgb(81, 53, 100);
  color: rgb(255, 255, 255);
}
.pages-nav a:hover svg {
  color: #fff !important;
}

.inner-section {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .inner-section {
    padding-bottom: 50px;
  }
}

.text-block {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .text-block {
    padding-bottom: 50px;
  }
}
.text-block p {
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  margin-bottom: 30px;
}
.text-block p:last-child {
  margin-bottom: 0;
}
.text-block ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .text-block ul {
    margin-bottom: 40px;
  }
}
.text-block ul li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.text-block ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .text-block ol {
    margin-bottom: 40px;
  }
}
.text-block ol li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.text-block:last-child {
  margin-bottom: 0;
}

.contacts {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .contacts {
    margin-bottom: 30px;
  }
}

.contact-item {
  padding-left: 52px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-item {
    margin-bottom: 30px;
  }
  .contact-item:last-child {
    margin-bottom: 0;
  }
}
.contact-item__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  margin-bottom: 5px;
}
.contact-item__title .icon {
  position: absolute;
  left: 0px;
  top: 0;
}
.contact-item li {
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  text-align: left;
}
@media (max-width: 767px) {
  .contact-item li span {
    display: block;
  }
}
.contact-item li a {
  color: rgb(60, 60, 60);
}
.contact-item li a:hover {
  text-decoration: underline;
}

.map iframe {
  width: 100%;
  height: 440px;
}
@media (max-width: 767px) {
  .map iframe {
    height: 300px;
  }
}

.collection-item {
  display: block;
  margin-bottom: 24px;
}
.collection-item:hover span {
  color: rgb(136, 137, 255);
}
.collection-item span {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  transition: 0.5s;
}
@media (max-width: 566px) {
  .collection-item {
    margin-bottom: 16px;
  }
}
.collection-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
}
.collection-item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3/4;
  background: #f5f5f5;
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
}
.collection-item-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.3;
  color: #999;
}
@media (max-width: 566px) {
  .collection-item-placeholder svg {
    width: 40px;
    height: 40px;
  }
}

.manufacturer-inner__head {
  display: flex;
  margin-bottom: 100px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .manufacturer-inner__head {
    margin-bottom: 50px;
    flex-direction: column;
  }
}
.manufacturer-inner__logo {
  width: 266px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(225, 227, 229);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .manufacturer-inner__logo {
    margin-bottom: 30px;
    width: 100%;
  }
}
@media (max-width: 566px) {
  .manufacturer-inner__logo {
    height: 100px;
  }
}
.manufacturer-inner__logo img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: content;
  mix-blend-mode: multiply;
}
.manufacturer-inner__about {
  width: calc(100% - 306px);
}
@media (max-width: 767px) {
  .manufacturer-inner__about {
    width: 100%;
  }
}
.manufacturer-inner__about p {
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.14px;
  text-align: left;
  margin-bottom: 15px;
}
.manufacturer-inner__about ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.manufacturer-inner__about ul li {
  margin-bottom: 8px;
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.14px;
  text-align: left;
}
.manufacturer-inner__about ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}
.manufacturer-inner__about ol li {
  margin-bottom: 8px;
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.14px;
  text-align: left;
}

.manufacturer-item {
  margin-bottom: 30px;
}
.manufacturer-item__city {
  color: rgb(60, 60, 60);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  display: block;
  margin-bottom: 20px;
}
.manufacturer-item__content {
  padding: 24px 20px 30px 20px;
  border: 1px solid rgb(225, 227, 229);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
}
.manufacturer-item__content:hover {
  border-color: rgb(91, 72, 104);
}
.manufacturer-item__name {
  color: rgb(60, 60, 60);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  margin-bottom: 20px;
}
.manufacturer-item__logo {
  display: block;
  margin-bottom: 20px;
}
.manufacturer-item__logo img {
  height: 60px;
  width: 100%;
  object-fit: contain;
}
.manufacturer-item__contact {
  display: block;
  margin-bottom: 20px;
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}
.manufacturer-item__contact a {
  color: rgb(60, 60, 60);
}
.manufacturer-item__contact a:hover {
  text-decoration: underline;
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .page-head {
    justify-content: center;
    margin-bottom: 30px;
  }
}
.page-head h1, .page-head .h1 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page-head h1, .page-head .h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .page-head .btn {
    display: none;
  }
}

.catalog {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .catalog {
    flex-direction: column;
  }
}
.catalog__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgb(225, 227, 229);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .catalog__title {
    height: 46px;
    border: 1px solid rgb(91, 72, 104);
    border-radius: 6px;
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgb(91, 72, 104);
  }
}
@media (max-width: 767px) {
  .catalog__title.open {
    background: rgb(91, 72, 104);
    color: #fff;
  }
  .catalog__title.open .icon-filter {
    display: none;
  }
  .catalog__title.open .icon-close {
    display: block !important;
  }
}
.catalog__title .icon {
  display: none;
  margin-right: 12px;
  width: 25px;
  height: 25px;
  color: rgb(91, 72, 104);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .catalog__title .icon {
    display: block;
  }
}
.catalog__title .icon.icon-close {
  display: none;
}
.catalog__filter {
  width: 260px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .catalog__filter {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .catalog__filter {
    width: 100%;
    position: relative;
  }
}
.catalog__content-sticky {
  position: sticky;
  top: 0;
}
.catalog__content {
  width: calc(100% - 290px);
}
@media (max-width: 992px) {
  .catalog__content {
    width: calc(100% - 250px);
  }
}
@media (max-width: 767px) {
  .catalog__content {
    width: 100%;
  }
}
.catalog__filter-content {
  transition: 0.5s;
}
@media (max-width: 767px) {
  .catalog__filter-content {
    background-color: rgb(248, 248, 248);
    opacity: 0;
    max-height: 1px;
    overflow: hidden;
    padding-top: 30px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .catalog__filter-content .filter-btn-block .btn {
    margin-bottom: 0px !important;
  }
  .catalog__filter-content .filter-btn-block .btn:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .catalog__filter-content .filter-btn-block__btn {
    position: fixed;
    background: rgb(248, 248, 248);
    padding: 10px 30px 10px 30px;
    width: calc(100% - 60px);
    bottom: 20px;
    left: 30px;
    z-index: 99;
    box-shadow: 0px 8px 16px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: 0.5s;
  }
}
@media (max-width: 767px) {
  .catalog__filter-content .filter-btn-block__btn.show {
    opacity: 1;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .catalog__filter-content.last-position .filter-btn-block__btn {
    position: relative;
    padding: 0;
    box-shadow: none;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}
.catalog__filter-content.open {
  opacity: 1;
  max-height: 20000px;
  overflow: visible;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.filter-btn-block .btn {
  margin-bottom: 10px;
}
.filter-btn-block .btn:last-child {
  margin-bottom: 0;
}

.filter-block {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgb(225, 227, 229);
}
.filter-block--last {
  border-bottom: 0;
}
.filter-block__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 600;
  line-height: 13.26px;
  letter-spacing: -0.14px;
  text-align: left;
  margin-bottom: 20px;
}
.filter-block__content--scroll {
  max-height: 150px;
  overflow-y: auto;
}

.checkbox {
  display: block;
  margin-bottom: 10px;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox input:checked + label:before {
  background: rgb(91, 72, 104);
  border-color: rgb(91, 72, 104);
}
.checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 1px;
  width: 14px;
  height: 14px;
  background: url(../images/check.svg) 50% 50% no-repeat;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 2px solid rgb(225, 227, 229);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -3px;
}

.mCSB_draggerContainer:before {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 6px;
  background: rgba(91, 72, 104, 0.1);
  border-radius: 6px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 3px;
  background: rgb(91, 72, 104);
  border-radius: 6px;
}

.mCSB_draggerRail {
  display: none;
}

.main-slider {
  width: calc(100% + 120px);
  margin: 0 -60px;
}
@media (max-width: 1280px) {
  .main-slider {
    width: 100%;
    margin: 0;
  }
}

.slide-content {
  height: 600px;
  width: 100%;
  background: transparent;
  padding-left: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1280px) {
  .slide-content {
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .slide-content {
    flex-direction: column;
    padding-left: 0;
    height: auto;
    display: flex;
    background: transparent;
  }
}
.slide-content__info {
  position: relative;
  z-index: 9;
  max-width: 630px;
}
@media (max-width: 767px) {
  .slide-content__info {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .slide-content__info h1, .slide-content__info .h1 {
    padding: 0 30px;
  }
}
.slide-content__info small {
  color: rgb(60, 60, 60);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-align: left;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .slide-content__info small {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .slide-content__info .btn {
    width: 100%;
  }
}
.slide-content__image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .slide-content__image {
    display: none;
  }
}
.slide-content__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 9;
}
.slide-content__image-mobile {
  display: none;
  position: relative;
  right: 0;
  width: 100%;
  order: -2;
  background: rgb(248, 248, 248);
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .slide-content__image-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
  }
}
.slide-content__image-mobile img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.swiper-button-prev:before, .swiper-button-prev:after {
  display: none;
}
.swiper-button-prev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255, 255, 255) url(../images/arrow-slider.svg) 50% 50% no-repeat;
  opacity: 1;
  transform: rotate(-180deg);
  margin-left: 50px;
}
@media (max-width: 1280px) {
  .swiper-button-prev {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    top: 165px;
  }
}

.swiper-button-next:before, .swiper-button-next:after {
  display: none;
}
.swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255, 255, 255) url(../images/arrow-slider.svg) 50% 50% no-repeat;
  opacity: 1;
  margin-right: 50px;
}
@media (max-width: 1280px) {
  .swiper-button-next {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    top: 165px;
  }
}

.swiper-pagination-bullets {
  bottom: 78px !important;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .swiper-pagination-bullets {
    bottom: auto !important;
    top: 317px !important;
  }
}

.swiper-pagination-bullet-active {
  background: rgb(60, 60, 60);
  border-radius: 8px;
  transition: 0.5s;
}

.excellence {
  padding: 35px 50px;
  border-radius: 2px;
  box-shadow: 0px 16.84px 70.18px 0px rgba(22, 25, 50, 0.07);
  background: rgb(255, 255, 255);
  position: relative;
  z-index: 12;
  margin-top: -54px;
}
@media (max-width: 767px) {
  .excellence {
    margin-top: 0;
    padding: 35px 30px 0px 50px;
  }
}

.excellence-item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .excellence-item {
    margin-bottom: 35px;
  }
}
.excellence-item__icon {
  display: block;
}
.excellence-item__icon img {
  display: block;
  margin-right: 10px;
}
.excellence-item__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.excellence-item p {
  color: rgb(154, 156, 170);
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
}

.filter-slider__reverse {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
}
.filter-slider__reverse a {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.filter-slider__reverse img {
  display: block;
}
.filter-slider__inputs {
  display: flex;
  padding-top: 20px;
  align-items: center;
  color: rgb(91, 72, 104);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: -0.14px;
  text-align: left;
}
.filter-slider__inputs span {
  margin-right: 5px;
}
.filter-slider .noUi-base {
  border: 0;
  border-radius: 0;
}
.filter-slider .noUi-connects {
  border-radius: 0;
}
.filter-slider .noUi-target {
  background: rgba(81, 90, 90, 0.08);
  border-radius: 0px;
  border: none;
  box-shadow: none;
}
.filter-slider .noUi-connect {
  background: rgb(91, 72, 104);
  height: 6px;
}
.filter-slider .noUi-horizontal {
  height: 6px;
}
.filter-slider .noUi-handle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(91, 72, 104);
  border: none;
  box-shadow: none;
  right: -7.5px;
  top: -5px;
}
.filter-slider .noUi-handle:active {
  background: rgb(91, 72, 104);
}
.filter-slider .noUi-handle:before, .filter-slider .noUi-handle:after {
  content: "";
  display: none;
}

.product-item {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.product-item:hover .product-item__image::after {
  opacity: 1;
}
.product-item__info {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 9;
}
.product-item__category {
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  background: rgb(136, 137, 255);
  margin-bottom: 8px;
  height: 24px;
  padding: 0 24px;
  color: rgb(254, 254, 254);
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}
.product-item__status {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 14px;
  border-radius: 6px;
  background: rgb(91, 72, 104);
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}
.product-item__favorites {
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  box-shadow: 0px 8px 16px -8px rgba(15, 15, 15, 0.12);
  background: rgb(255, 255, 255);
  transition: 0.5s;
}
.product-item__favorites.active .icon, .product-item__favorites:hover .icon {
  color: #b81414;
}
.product-item__favorites .icon {
  display: block;
  width: 20px;
  height: 20px;
  color: rgb(60, 60, 60);
  transition: 0.5s;
}
.product-item__image {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  background: transparent;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .product-item__image {
    aspect-ratio: 3/4;
  }
}
.product-item__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(91, 72, 104, 0.1);
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
.product-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-item__content {
  padding-top: 12px;
}
.product-item__name {
  display: block;
  margin-bottom: 4px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.product-item__name a {
  color: rgb(60, 60, 60);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
}
.product-item__name a:hover {
  border-color: rgb(60, 60, 60);
}
.product-item__cost {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgb(60, 60, 60);
}
.product-item__cost span {
  color: rgba(60, 60, 60, 0.5);
  margin-left: 8px;
  text-decoration: line-through;
}

.swiper-scrollbar {
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .swiper-scrollbar {
    width: calc(100% - 40px) !important;
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .swiper-scrollbar {
    display: none;
  }
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  border-radius: 8px;
  height: 5px;
  background: rgb(248, 248, 248);
}

.swiper-scrollbar-drag {
  border-radius: 8px;
  height: 5px;
  background: rgb(91, 72, 104);
}

.manufacturer-slider {
  margin-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .manufacturer-slider {
    margin-bottom: 50px;
  }
}
.manufacturer-slider .swiper-slide {
  width: 266px;
}
.manufacturer-slider .swiper-slide .manufacturer {
  width: 100%;
}
.manufacturer-slider .swiper-slide .manufacturer__name {
  display: none;
}
@media (max-width: 767px) {
  .manufacturer-slider .swiper-slide .manufacturer__name {
    display: block;
  }
}
@media (max-width: 767px) {
  .manufacturer-slider .swiper-slide {
    width: calc(50% - 7px);
    margin-bottom: 0px;
  }
}
.manufacturer-slider .swiper {
  overflow: visible;
}
@media (max-width: 767px) {
  .manufacturer-slider .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.collection-slider {
  margin-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .collection-slider {
    margin-bottom: 50px;
  }
}
.collection-slider .swiper-slide {
  width: 262px;
}
@media (max-width: 767px) {
  .collection-slider .swiper-slide {
    width: 150px;
  }
}
.collection-slider .swiper-slide a {
  height: 350px;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .collection-slider .swiper-slide a {
    height: 200px;
  }
}
.collection-slider .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .collection-slider .swiper-slide {
    height: calc(50% - 8px) !important;
    margin-top: 0 !important;
    margin-bottom: 16px;
  }
}
.collection-slider .swiper-slide.collection-slide--hidden {
  display: none !important;
}
.collection-slider .swiper {
  overflow: visible;
  padding-bottom: 30px;
}
.collection-slider .swiper-wrapper {
  flex-direction: row;
}
.collection-slider__show-more {
  display: block;
  margin: 20px auto 0;
}
@media (max-width: 767px) {
  .collection-slider__show-more {
    width: 100%;
    margin-top: 10px;
  }
}

.search-results__text {
  font-size: 14px;
  color: rgb(60, 60, 60);
  margin-bottom: 30px;
}
.search-results__input form {
  width: 100%;
  max-width: 284px;
}
@media (max-width: 767px) {
  .search-results__input form {
    max-width: 100%;
  }
}
.search-results__input input {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(60, 60, 60, 0.5);
  color: rgb(60, 60, 60);
  font-family: "Inter";
  font-size: 14px;
  font-weight: 400;
  line-height: 21.45px;
}
.search-results__input input::placeholder {
  color: rgba(60, 60, 60, 0.5);
}

.product-title-mobile {
  display: none;
}
@media (max-width: 767px) {
  .product-title-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
  }
  .product-title-mobile .h1 {
    margin: 0;
    flex: 1;
  }
  .product-title-mobile .product-favorite-btn {
    flex-shrink: 0;
  }
}

.product-favorite-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.2s ease;
  padding: 0;
}
.product-favorite-btn:hover {
  color: #e74c3c;
}
.product-favorite-btn.active {
  color: #e74c3c;
}

.product-title-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-title-desktop .h1 {
  display: inline;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.product-title-desktop .product-favorite-btn {
  flex-shrink: 0;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .product-title-desktop {
    display: none !important;
  }
}

.product-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-card__left {
  width: 530px;
}
@media (max-width: 992px) {
  .product-card__left {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .product-card__left {
    width: 100%;
    margin-bottom: 0;
  }
}
.product-card__left-sticky {
  position: static;
}
.product-card__right {
  width: calc(100% - 580px);
}
@media (max-width: 992px) {
  .product-card__right {
    width: calc(100% - 430px);
  }
}
@media (max-width: 767px) {
  .product-card__right {
    width: 100%;
  }
}

.product-card__rating {
  display: flex;
  margin-bottom: 15px;
}
.product-card__rating span {
  margin-right: 3px;
}
.product-card h1, .product-card .h2 {
  margin-bottom: 20px;
}
.product-card p {
  font-size: 15px;
  line-height: 130%;
  color: rgb(60, 60, 60);
  margin-bottom: 20px;
}
.product-card__cost {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}
.product-card__cost-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-card__cost-value {
  font-size: 24px;
  color: rgb(60, 60, 60);
  font-weight: 500;
}
.product-card__cost-old {
  font-size: 16px;
  color: rgba(60, 60, 60, 0.5);
  text-decoration: line-through;
}
.product-card__cost-label {
  font-size: 12px;
  color: rgba(60, 60, 60, 0.5);
  margin-top: 2px;
}
.product-card__cost-divider {
  width: 1px;
  height: 40px;
  background: rgba(60, 60, 60, 0.2);
  align-self: center;
}
.product-card__title {
  display: block;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  color: rgb(60, 60, 60);
  text-align: left;
}
@media (max-width: 992px) {
  .product-card__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.product-card__content-item {
  margin-bottom: 50px;
  text-align: left;
}
.product-card__content-item ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .product-card__content-item ul {
    margin-bottom: 40px;
  }
}
.product-card__content-item ul li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
}
.product-card__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 12px;
  flex-wrap: wrap;
}

.doc-download-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 28px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .doc-download-grid {
    gap: 14px 20px;
    margin-bottom: 30px;
  }
}
.doc-download-grid .doc-download {
  margin-bottom: 0;
  flex: 0 1 auto;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 567px) {
  .doc-download-grid .doc-download {
    flex: 0 0 100%;
  }
}

.doc-download {
  display: inline-flex;
  align-items: center;
  margin-bottom: 50px;
  max-width: 100%;
  min-width: 0;
}
.doc-download a {
  font-size: 14px;
  color: rgb(91, 72, 104);
  font-weight: 500;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}
.doc-download a:hover {
  text-decoration: none;
}
.doc-download .icon {
  margin-right: 14px;
  display: block;
  flex-shrink: 0;
}
.doc-download .icon img {
  display: block;
}

.product-card__title-sm {
  display: block;
  font-size: 20px;
  color: rgb(60, 60, 60);
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .product-card__title-sm {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.product-card__title-sm--description p {
  margin-bottom: 0;
}
.product-card__colors {
  display: flex;
  flex-wrap: wrap;
}

.color-item {
  display: block;
  position: relative;
  height: 48px;
  width: calc(25% - 9px);
  margin-right: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(60, 60, 60, 0.1);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 566px) {
  .color-item {
    width: calc(33.3333333333% - 10px);
    margin-right: 14px;
  }
}
.color-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.color-item:nth-child(4n+4) {
  margin-right: 0;
}
@media (max-width: 566px) {
  .color-item:nth-child(4n+4) {
    margin-right: 13px;
  }
}
@media (max-width: 566px) {
  .color-item:nth-child(3n+3) {
    margin-right: 0;
  }
}
.color-item.selected, .color-item.checked {
  border: 2px solid rgb(91, 72, 104);
}
.color-item__loupe {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgb(91, 72, 104);
  transition: 0.5s;
}
.color-item__loupe:hover {
  background: rgb(64.6306818182, 51.1363636364, 73.8636363636);
}
.color-item__loupe img {
  display: block;
  width: 12px;
  height: 12px;
}
.color-item__img {
  display: block;
  width: 100%;
  height: 100%;
}
.color-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.color-item__price {
  position: absolute;
  bottom: 2px;
  left: 2px;
  font-size: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1px 4px;
  border-radius: 2px;
  color: #333;
}
.color-item__new {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 2px;
  background-color: rgb(136, 137, 255);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
}

.product-card__selection {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.product-card__selection--double {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
.product-card__selection--double span {
  margin-bottom: 0;
}
.product-card__selection span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(91, 72, 104);
  border-radius: 4px;
  padding: 15px 30px;
  margin-bottom: 10px;
  color: rgb(91, 72, 104);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
  width: 100%;
}
@media (max-width: 566px) {
  .product-card__selection span {
    padding: 15px;
  }
}
.product-card__selection span.half {
  width: calc(50% - 5px);
}
@media (max-width: 767px) {
  .product-card__selection span.half {
    width: 100%;
  }
}
.product-card__selection span:hover {
  background: rgb(91, 72, 104);
  color: #fff;
}
.product-card__selection span.checked {
  background: rgb(91, 72, 104);
  color: #fff;
}

.product-slider {
  display: flex;
  justify-content: space-between;
  height: 580px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .product-slider {
    height: 520px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.product-slider .swiper {
  width: 100%;
}
.product-slider .swiper-slide {
  background-size: cover;
  background-position: center;
}
.product-slider .product-main-slider {
  height: 100%;
  width: calc(100% - 106px);
  margin: 0;
}
@media (max-width: 992px) {
  .product-slider .product-main-slider {
    width: 100%;
    height: 430px;
    margin-bottom: 15px;
    order: -2;
  }
}
@media (max-width: 767px) {
  .product-slider .product-main-slider {
    width: calc(100% + 64px);
    margin: 0 -32px 15px -32px;
  }
}
@media (max-width: 374px) {
  .product-slider .product-main-slider {
    width: calc(100% + 30px);
    margin: 0 -15px 15px -15px;
  }
}
.product-slider .product-main-slider-nav {
  height: 100%;
  margin: 0;
  width: 76px;
}
@media (max-width: 992px) {
  .product-slider .product-main-slider-nav {
    width: 100%;
    height: 70px;
  }
}
.product-slider .product-main-slider-nav .swiper-slide {
  width: 76px;
  height: 100%;
  opacity: 0.4;
}
.product-slider .product-main-slider-nav .swiper-slide-thumb-active {
  opacity: 1;
}
.product-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parameters {
  padding-left: 106px;
}
@media (max-width: 767px) {
  .parameters.mobile-hide {
    display: none !important;
  }
}
.parameters.mobile-show {
  display: none;
}
@media (max-width: 767px) {
  .parameters.mobile-show {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .parameters .product-card__title-sm {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .parameters {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .parameters {
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
}
.parameters .parameters-slider {
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .parameters .parameters-slider {
    overflow: hidden;
  }
}
.parameters .parameters-slider .swiper {
  padding-bottom: 20px;
  overflow: visible;
}
@media (max-width: 767px) {
  .parameters .parameters-slider .swiper {
    padding-bottom: 10px;
    overflow: hidden;
  }
}
.parameters .parameters-slider .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: row;
}
@media (max-width: 767px) {
  .parameters .parameters-slider .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    transform: none !important;
    width: 100% !important;
    padding: 0;
  }
}
.parameters .parameters-slider .swiper-scrollbar {
  bottom: 0;
}
@media (max-width: 767px) {
  .parameters .parameters-slider .swiper-scrollbar {
    display: none;
  }
}
.parameters .parameters-slider .swiper-slide {
  width: calc(33.3333333333% - 10px);
  margin: 0 15px 65px 0;
}
@media (max-width: 992px) {
  .parameters .parameters-slider .swiper-slide {
    margin-right: 9px;
    width: calc(33.3333333333% - 6px);
  }
}
@media (max-width: 767px) {
  .parameters .parameters-slider .swiper-slide {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    min-width: 0;
    overflow: hidden;
  }
  .parameters .parameters-slider .swiper-slide.hidden-feature {
    display: none !important;
  }
}
.parameters .parameters-slider .swiper-slide:nth-child(3n+3) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .parameters .parameters-slider .swiper-slide .parameter-item {
    display: block !important;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-align: left;
  }
}

.parameter-item {
  position: relative;
}
.parameter-item__image {
  display: flex;
  justify-content: center;
  height: 130px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .parameter-item__image {
    height: 100px;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
  }
  .parameter-item__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
.parameter-item__image img {
  display: block;
  object-fit: cover;
  border: 1px solid rgb(60, 60, 60);
}
.parameter-item__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: rgb(60, 60, 60);
  text-align: left;
}
@media (max-width: 767px) {
  .parameter-item__title {
    font-size: 8px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
  }
}
.parameter-item--option:before {
  content: "Опция";
  position: absolute;
  top: -25px;
  left: 0;
  display: flex;
  align-items: center;
  height: 25px;
  background: rgb(136, 137, 255);
  font-size: 15px;
  color: #fff;
  padding: 0 8px;
}

.parameters-show-all {
  display: none;
}
@media (max-width: 767px) {
  .parameters-show-all {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background: none;
    border: none;
    color: rgb(60, 60, 60);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
  }
}

.fancybox-caption {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  max-height: none !important;
}

.box-slider {
  margin-bottom: 100px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .box-slider {
    margin-bottom: 50px;
  }
}
.box-slider .swiper {
  padding-bottom: 20px;
  overflow: visible;
}
@media (max-width: 767px) {
  .box-slider .swiper {
    padding-bottom: 10px;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .box-slider .swiper-wrapper {
    display: grid !important;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: calc(50vw - 25px);
    gap: 10px 10px;
    transform: none !important;
    width: max-content !important;
  }
}
.box-slider .swiper-slide {
  width: 262px;
  flex-shrink: 0;
}
.box-slider .swiper-slide .manufacturer {
  width: 100%;
}
.box-slider .swiper-slide .manufacturer__name {
  display: none;
}
@media (max-width: 767px) {
  .box-slider .swiper-slide .manufacturer__name {
    display: block;
  }
}
@media (max-width: 767px) {
  .box-slider .swiper-slide {
    width: 100% !important;
    margin: 0 !important;
  }
}
.box-slider .swiper-scrollbar {
  bottom: 0;
}
@media (max-width: 767px) {
  .box-slider .swiper-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .box-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-right: -15px;
    padding-right: 15px;
  }
}

.about-product p {
  font-size: 15px;
  line-height: 130%;
  margin-bottom: 40px;
  color: rgb(91, 72, 104);
}
.about-product blockquote {
  position: relative;
  padding-left: 126px;
}
@media (max-width: 767px) {
  .about-product blockquote {
    padding-left: 80px;
  }
}
.about-product blockquote p {
  margin-bottom: 20px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .about-product blockquote p {
    font-size: 16px;
  }
}
.about-product blockquote p strong {
  font-weight: 600;
}
.about-product blockquote p:last-child {
  margin-bottom: 0;
}
.about-product blockquote:before {
  content: "";
  background: url(../images/quote2.svg) 0 0 no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .about-product blockquote:before {
    width: 50px;
    height: 50px;
    background-size: 50px;
  }
}

.comments-block {
  padding: 60px 0;
  background: rgb(248, 248, 248);
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .comments-block {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .comments-block .link-arrow {
    display: none;
  }
}
@media (max-width: 767px) {
  .comments-block .section-head {
    justify-content: center;
  }
}

.comments-description {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 160%;
  color: rgb(60, 60, 60);
}

.comments {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.comment-item {
  width: calc(50% - 9px);
  border-radius: 2px;
  box-shadow: 0px 6px 30px 0px rgba(39, 35, 67, 0.08);
  background: rgb(255, 255, 255);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  max-height: 1px;
  opacity: 0;
  transition: 0.5s;
  overflow: hidden;
  margin-bottom: 0;
}
.comment-item.show {
  display: flex;
  max-height: 800px;
  opacity: 1;
  padding: 30px 94px 30px 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .comment-item {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .comment-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.comment-item:before {
  content: "";
  width: 72px;
  height: 58px;
  background: url(../images/quote.svg) 0 0 no-repeat;
  position: absolute;
  bottom: 30px;
  right: 94px;
}
@media (max-width: 992px) {
  .comment-item:before {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .comment-item:before {
    bottom: 20px;
    right: 20px;
  }
}
.comment-item blockquote {
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  padding-left: 18px;
  border-left: 1px solid rgb(136, 137, 255);
  margin-bottom: 20px;
}
.comment-item__user {
  display: flex;
  align-items: center;
}
.comment-item__avatar {
  display: block;
  margin-right: 10px;
}
.comment-item__avatar img {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-item__name {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 500;
  line-height: 140%;
  text-align: left;
  text-transform: capitalize;
}
.comment-item__position {
  display: block;
  color: rgba(60, 60, 60, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  text-transform: capitalize;
}

.hidden {
  display: none;
}

.modal {
  width: 100%;
  max-width: 420px;
  border-radius: 2px;
  box-shadow: 0px 6px 30px 0px rgba(39, 35, 67, 0.08);
  background: rgb(255, 255, 255);
  padding: 30px 40px;
}
@media (max-width: 767px) {
  .modal {
    max-width: 90%;
    padding: 25px 20px;
  }
}
.modal__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  text-align: left;
  border-bottom: 1px solid rgb(225, 227, 229);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
.modal__subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666;
}

.checkbox {
  margin-bottom: 20px;
}
.checkbox label:before {
  border-radius: 4px;
}

.form-group {
  margin-bottom: 12px;
  width: 100%;
}
.form-group input {
  height: 46px;
  border: 1px solid rgb(91, 72, 104);
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: left;
  padding: 0 20px;
  background: transparent;
  width: 100%;
}
.form-group input::placeholder {
  color: rgb(91, 72, 104);
}
.form-group textarea {
  height: 100px;
  border: 1px solid rgb(91, 72, 104);
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: left;
  padding: 15px 20px;
  background: transparent;
  width: 100%;
  min-height: 100px;
  resize: vertical;
}
.form-group textarea::placeholder {
  color: rgb(91, 72, 104);
}

.captcha {
  margin-bottom: 20px;
}

.blog-way {
  padding: 35px 50px;
  border-radius: 2px;
  box-shadow: 0px 16.84px 70.18px 0px rgba(22, 25, 50, 0.07);
  background: rgb(255, 255, 255);
  position: relative;
  z-index: 12;
  margin-top: -54px;
}
@media (max-width: 992px) {
  .blog-way {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .blog-way {
    margin-top: 0;
    padding: 35px 30px 0px 50px;
  }
}

.way-item {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .way-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .way-item {
    margin-bottom: 35px;
  }
}
.way-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(91, 72, 104);
  margin-right: 10px;
  color: rgb(91, 72, 104);
  font-size: 22px;
  font-weight: 500;
  line-height: 110%;
  text-align: center;
}
.way-item__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
  text-align: left;
}
.way-item__text {
  color: rgb(154, 156, 170);
  font-size: 12px;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
}

.blog-main p {
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  margin-bottom: 20px;
}
.blog-main p:last-child {
  margin-bottom: 0;
}
.blog-main ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.blog-main ul li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
}
.blog-main__image img {
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
  .table {
    width: calc(100% + 64px);
    margin: 0 -32px 15px -32px;
    padding-left: 32px;
    overflow-x: auto;
    padding-right: 32px;
    padding-bottom: 10px;
  }
}
@media (max-width: 374px) {
  .table {
    width: calc(100% + 30px);
    margin: 0 -15px 15px -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.table table {
  border: 1px solid rgb(248, 248, 248);
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .table table {
    min-width: 800px;
  }
}
.table table th {
  background: rgb(91, 72, 104);
  padding: 24px 20px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  text-align: left;
  width: 25%;
  border: 1px solid rgb(248, 248, 248);
}
.table table td {
  background: #fff;
  padding: 20px;
  font-size: 15px;
  color: rgb(60, 60, 60);
  font-weight: 500;
  text-align: left;
  width: 25%;
  border: 1px solid rgb(248, 248, 248);
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  user-select: none;
}
.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-select--dark .custom-select-trigger {
  background: rgb(81, 90, 90);
  height: 65px;
  font-size: 16px;
  padding: 0 25px;
  color: rgba(245, 245, 245, 0.65);
  line-height: 65px;
}
.custom-select--dark .custom-select-trigger:after {
  background: url(../images/select-arrow-white.svg) 50% 50% no-repeat;
}
.custom-select--dark .custom-options {
  background: rgb(81, 90, 90);
}
.custom-select--dark .custom-options .custom-option {
  color: rgba(245, 245, 245, 0.65);
  font-size: 16px;
  padding: 10px 25px;
}

.custom-select-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 30px 0 20px;
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  line-height: 40px;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid rgb(91, 72, 104);
}
@media (max-width: 767px) {
  .custom-select-trigger {
    font-size: 16px;
  }
}
.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 15px;
  background: url(../images/arrow-select.svg) 50% 50% no-repeat;
  transition: 0.5s;
}

.custom-select.opened .custom-select-trigger:after {
  transform: rotate(180deg);
}
.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 15px 0;
  box-sizing: border-box;
  background: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(91, 72, 104);
}

.option-hover:before {
  background: rgb(91, 72, 104);
  color: #fff;
}

.custom-option {
  position: relative;
  display: block;
  padding: 5px 20px;
  border-bottom: 1px solid rgb(248, 248, 248);
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.custom-option:hover {
  background: rgb(91, 72, 104);
  color: #fff;
}

.custom-option.selection {
  background: rgb(91, 72, 104);
  color: #fff;
}

.manufacturer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
.manufacturer-head .row {
  width: 100%;
}
.manufacturer-head h2, .manufacturer-head .h2 {
  margin-bottom: 0;
}
.manufacturer-head__select {
  width: calc(100% + 4px);
  transform: translateX(20px);
}
@media (max-width: 1180px) {
  .manufacturer-head__select {
    width: calc(100% + 6px);
    transform: translateX(18px);
  }
}
@media (max-width: 767px) {
  .manufacturer-head__select {
    padding-top: 30px;
    width: calc(100% + 24px);
    transform: translateX(0);
  }
}
.manufacturer-head__title {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.cost-die {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(91, 72, 104);
  z-index: 100;
  opacity: 0;
  max-height: 1px;
  overflow: hidden;
  transform: translateY(80px);
  transition: 0.5s;
}
.cost-die.show {
  opacity: 1;
  max-height: 80px;
  transform: translateY(0px);
}
@media (max-width: 767px) {
  .cost-die__main .mobile-hide {
    display: none !important;
  }
}
.cost-die__details {
  display: none;
}
.cost-die__details.active {
  display: block;
}
@media (min-width: 768px) {
  .cost-die__details .mobile-show {
    display: none !important;
  }
}
.cost-die__details-row .cost-die__item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cost-die__details-row .cost-die__item:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}
.cost-die__details-row .cost-die__item .cost-die__label,
.cost-die__details-row .cost-die__item .cost-die__name,
.cost-die__details-row .cost-die__item .cost-die__price,
.cost-die__details-row .cost-die__item .cost-die__price-vat {
  color: #fff !important;
}
.cost-die__details-row .cost-die__item .cost-die__label {
  opacity: 0.7;
}
.cost-die__details-row .cost-die__item .cost-die__price-vat {
  opacity: 0.7;
}
.cost-die__content {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cost-die__product {
  display: flex;
  align-items: center;
}
.cost-die__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  background: rgb(248, 248, 248);
}
.cost-die__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cost-die__name {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.cost-die__cost {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.product-card__doors {
  margin-bottom: 50px;
}
.product-card__doors-slider {
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .product-card__doors-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-right: -15px;
    padding-right: 15px;
  }
}
.product-card__doors-slider .swiper {
  padding-bottom: 20px;
  overflow: visible;
}
@media (max-width: 767px) {
  .product-card__doors-slider .swiper {
    padding-bottom: 10px;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .product-card__doors-slider .swiper-wrapper {
    display: grid !important;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: calc(50vw - 25px);
    gap: 10px 10px;
    transform: none !important;
    width: max-content !important;
  }
}
.product-card__doors-slider .swiper-slide {
  width: 140px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .product-card__doors-slider .swiper-slide {
    width: 100% !important;
    margin: 0 !important;
  }
}
.product-card__doors-slider .swiper-scrollbar {
  bottom: 0;
}
@media (max-width: 767px) {
  .product-card__doors-slider .swiper-scrollbar {
    display: none;
  }
}
.product-card__doors-content {
  display: flex;
  flex-wrap: wrap;
}

.door-item {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .door-item {
    display: block;
    width: 100%;
  }
}
.door-item__loupe {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(91, 72, 104);
  transition: 0.5s;
  z-index: 2;
}
.door-item__loupe:hover {
  background: rgb(81, 53, 100);
}
.door-item__loupe img {
  display: block;
  width: 12px;
  height: 12px;
}
.door-item span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: rgb(60, 60, 60);
  text-align: center;
}
.door-item.checked .door-item__img {
  border-color: rgb(91, 72, 104);
}
.door-item__img {
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  background: rgb(248, 248, 248);
  margin-bottom: 5px;
  border: 1px solid transparent;
  transition: 0.5s;
  position: relative;
}
@media (max-width: 767px) {
  .door-item__img {
    width: 100%;
    height: 140px;
  }
}
.door-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.parameters--in-right {
  margin-bottom: 40px;
}
.parameters--in-right .parameters-slider .swiper-slide {
  width: auto;
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-modal.active {
  opacity: 1;
  visibility: visible;
}
.contact-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.contact-modal__content {
  position: relative;
  background: #fff;
  border-radius: 2px;
  max-width: 420px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px 40px;
  box-shadow: 0px 6px 30px 0px rgba(39, 35, 67, 0.08);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .contact-modal__content {
    max-width: 90%;
    padding: 25px 20px;
  }
}
.contact-modal.active .contact-modal__content {
  transform: translateY(0);
}
.contact-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  z-index: 2;
}
.contact-modal__close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}
.contact-modal__close .icon {
  width: 20px;
  height: 20px;
  fill: #333;
}
.contact-modal__title {
  display: block;
  color: rgb(60, 60, 60);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  text-align: left;
  border-bottom: 1px solid rgb(225, 227, 229);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contact-modal__title {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
.contact-modal__subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666;
}

.contact-form__group {
  margin-bottom: 12px;
  width: 100%;
}
.contact-form__label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  height: 46px;
  border: 1px solid rgb(91, 72, 104);
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  color: rgb(91, 72, 104);
  font-family: "Inter";
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: left;
  padding: 0 20px;
  background: transparent;
  transition: border-color 0.2s ease;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: rgb(91, 72, 104);
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: rgb(81, 53, 100);
}
.contact-form__textarea {
  height: 100px;
  padding: 15px 20px;
  min-height: 100px;
  resize: vertical;
}
.contact-form__message {
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}
.contact-form__message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact-form__message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.contact-form__submit {
  width: 100%;
  padding: 0 40px;
  height: 46px;
  background: rgb(91, 72, 104);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.4px;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-form__submit:hover {
  background: rgb(81, 53, 100);
  color: #fff;
}
.contact-form__submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .contact-modal__content {
    padding: 32px 24px;
    max-width: 95%;
  }
  .contact-modal__title {
    font-size: 20px;
  }
}
.product-seo-text__content ul,
.catalog-seo-text__content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.product-seo-text__content ul li,
.catalog-seo-text__content ul li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.product-seo-text__content ol,
.catalog-seo-text__content ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}
.product-seo-text__content ol li,
.catalog-seo-text__content ol li {
  margin-bottom: 10px;
  color: rgb(60, 60, 60);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
