html {
  --color-main: #EA4D37;
  --color-mainHover: #cf4735;
  --color-secondary: #051F30;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-blackAlmost: #212427;
  --color-text: #3C3C3C;
  --color-error: #FF0000;
  --color-line: #E2E3E4;
  --color-green: #398314;
  --color-greenLight: #80B566;
  --color-grayF6: #F6F6F6;
  --color-grayF7: #F7F7F7;
  --color-grayEF: #EFEFEF;
  --color-grayCC: #CCCCCC;
  --color-grayC7: #C7C7C7;
  --color-gray7B: #7B7B7B;
  --color-grayDB: #DBDBDB;
  --color-gray4D: #4D4D4D;
  --color-grayC4: #C4C4C4;
  --color-grayE6: #E6E6E6;
  --header-height: 165px;
  --header-height-scrolled: var(--header-height);
  --submenu-height: 180px;
}
@media (max-width: 1200px) {
  html {
    --header-height: 80px;
  }
}
:root {
  --cc-text: var(--color-text);
  --cc-btn-primary-bg: var(--color-main);
  --cc-btn-primary-hover-bg: var(--color-mainHover);
  --swiper-theme-color: var(--color-main);
}
body .fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.85);
}
header.header_wrapper {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border: initial;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: height 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}
header.header_wrapper.scrolled {
  background-color: var(--color-white);
  border-color: rgba(0, 0, 0, 0.2);
  --header-height: 80px;
}
header.header_wrapper.scrolled a:focus-visible {
  outline: 2px dotted var(--color-black);
}
header.header_wrapper.scrolled .header_navigation > div > ul > li > a {
  color: var(--color-black);
}
header.header_wrapper.scrolled .block_left a {
  width: initial;
  height: initial;
}
@media (min-width: 1201px) {
  header.header_wrapper.scrolled .header_logo svg {
    width: 146px;
    height: 48px;
  }
}
header.header_wrapper.scrolled .header_logo svg #Rectangle_1,
header.header_wrapper.scrolled .header_logo svg #Path_7,
header.header_wrapper.scrolled .header_logo svg #Path_8,
header.header_wrapper.scrolled .header_logo svg #Path_9,
header.header_wrapper.scrolled .header_logo svg #Path_10,
header.header_wrapper.scrolled .header_logo svg #Path_11,
header.header_wrapper.scrolled .header_logo svg #Path_12,
header.header_wrapper.scrolled .header_logo svg #Path_13,
header.header_wrapper.scrolled .header_logo svg #Path_14 {
  fill: var(--color-black);
}
header.header_wrapper.scrolled .language_switcher_wrap > button::before {
  border-color: var(--color-black);
}
header.header_wrapper.scrolled button#mobile_menu_toggle span {
  background: #000;
}
header.header_wrapper.dropdown_is_open {
  border-color: transparent;
}
header.header_wrapper.dropdown_is_open .header_dropdown_backdrop {
  opacity: 1;
  visibility: visible;
}
header.header_wrapper.dropdown_is_open a:focus-visible {
  outline: 2px dotted var(--color-black);
}
header.header_wrapper.dropdown_is_open .header_navigation > div > ul > li > a {
  color: var(--color-black);
}
header.header_wrapper.dropdown_is_open .header_logo svg #Rectangle_1,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_7,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_8,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_9,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_10,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_11,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_12,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_13,
header.header_wrapper.dropdown_is_open .header_logo svg #Path_14 {
  fill: var(--color-black);
}
header.header_wrapper.dropdown_is_open .language_switcher_wrap > button {
  color: var(--color-black);
}
header.header_wrapper.dropdown_is_open .language_switcher_wrap > button::before {
  border-color: var(--color-black);
}
header.header_wrapper.dropdown_is_open .language_switcher_wrap > button:focus-visible {
  outline-color: var(--color-black);
}
header.header_wrapper .container {
  height: 100%;
}
header.header_wrapper .block_content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header_wrapper .block_content .block_left,
header.header_wrapper .block_content .block_right {
  display: flex;
  align-items: center;
  gap: 34px;
}
header.header_wrapper a:focus-visible {
  outline: 2px solid var(--color-white);
}
header.header_wrapper .header_navigation {
  position: relative;
  z-index: 4;
}
header.header_wrapper .header_navigation > div > ul {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
header.header_wrapper .header_navigation > div > ul > li {
  position: relative;
}
header.header_wrapper .header_navigation > div > ul > li > a {
  display: block;
  padding: 6px;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--color-white);
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, text-decoration-color 0.15s ease-in-out;
}
header.header_wrapper .header_navigation > div > ul > li > a:hover,
header.header_wrapper .header_navigation > div > ul > li > a:focus-visible {
  color: var(--color-main);
}
header.header_wrapper .header_navigation > div > ul > li.current-menu-item > a,
header.header_wrapper .header_navigation > div > ul > li.current-menu-ancestor > a {
  text-decoration: underline;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children.is_dropdown_open > a {
  color: var(--color-main) !important;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu {
  position: fixed;
  z-index: 5;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: auto;
  min-width: 520px;
  max-width: calc(100vw - 60px);
  min-height: 165px;
  max-height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
  margin: 0;
  padding: 2px 0 32px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, max-content));
  justify-content: center;
  align-content: start;
  column-gap: 84px;
  row-gap: 4px;
  list-style: none;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li {
  max-width: 400px;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li > a {
  display: block;
  padding: 4px 34px 4px 2px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-black);
  position: relative;
}
@media (min-width: 1201px) {
  header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li > a {
    white-space: nowrap;
  }
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li > a:hover,
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li > a:focus-visible {
  color: var(--color-main);
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li.current-menu-item > a,
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li.current-menu-ancestor > a {
  color: var(--color-main);
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li.current-menu-item > a::before,
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li.current-menu-ancestor > a::before {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url('../../images/icons/arrow_right_white.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(0) saturate(100%) invert(39%) sepia(41%) saturate(5674%) hue-rotate(345deg) brightness(101%) contrast(84%);
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children.is_dropdown_open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
header.header_wrapper .header_logo,
header.header_wrapper .header_logo img,
header.header_wrapper .header_logo svg {
  display: block;
  width: 193px;
  height: 64px;
}
@media (max-width: 1200px) {
  header.header_wrapper .header_logo,
  header.header_wrapper .header_logo img,
  header.header_wrapper .header_logo svg {
    width: 130px;
    height: 43px;
  }
}
header.header_wrapper .language_switcher_wrap {
  position: relative;
  z-index: 5;
}
header.header_wrapper .language_switcher_wrap > button {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.25em;
  color: var(--color-white);
  margin: 0;
  padding: 2px 14px 2px 2px;
}
header.header_wrapper .language_switcher_wrap > button:focus-visible {
  outline: 2px solid var(--color-white);
}
header.header_wrapper .language_switcher_wrap > button img {
  display: block;
  width: 22px;
  height: 16px;
  position: relative;
  top: -2px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  /* For WebKit (Safari, older Chrome versions) */
  -ms-interpolation-mode: nearest-neighbor;
  /* For IE */
}
header.header_wrapper .language_switcher_wrap > button::before {
  content: '';
  position: absolute;
  transition: ease-in-out 0.25s;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 0;
  border: 1px solid var(--color-white);
  border-width: 1px 1px 0 0;
  width: 6px;
  height: 6px;
}
header.header_wrapper .language_switcher_wrap > button[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(135deg);
  top: calc(50% - 4px);
}
header.header_wrapper .language_switcher_wrap .language_switcher_popup {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  border-radius: 10px;
  border: 1px solid #FFFFFF58;
  padding: 12px 16px 12px 20px;
  box-shadow: 0 11px 15px #00000014;
  backdrop-filter: blur(26px) brightness(0.4);
  -webkit-backdrop-filter: blur(26px) brightness(0.4);
  width: 136px;
}
header.header_wrapper .language_switcher_wrap .language_switcher_popup:not([aria-hidden="false"]) {
  display: none;
}
header.header_wrapper .language_switcher_wrap .language_switcher_popup ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header.header_wrapper .language_switcher_wrap .language_switcher_popup ul a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 2px;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--color-white);
}
header.header_wrapper .language_switcher_wrap .language_switcher_popup ul a img {
  display: block;
  width: 18px;
  height: 12px;
  border-radius: 3px;
}
header.header_wrapper .language_switcher_wrap .language_switcher_popup ul a:focus-visible {
  outline: 2px solid var(--color-white);
}
header.header_wrapper .language_switcher_wrap .language_switcher_popup ul a:hover {
  text-decoration: underline;
}
header.header_wrapper .language_switcher_wrap .popup_close {
  display: block;
  cursor: pointer;
  border: initial;
  border-radius: 5px;
  outline: 2px solid transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 8px;
  right: 7px;
  width: 8px;
  height: 8px;
  background: initial;
  background-image: url('../../images/icons/menu_close.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: invert(1);
}
header.header_wrapper .language_switcher_wrap .popup_close:focus-visible {
  outline: 2px solid var(--color-black);
}
header.header_wrapper .language_switcher_wrap .wpml-ls-legacy-list-horizontal {
  border: initial;
  padding: 0;
  clear: initial;
}
.header_dropdown_backdrop {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--header-height) + var(--submenu-height, 220px) + 32px);
  background: var(--color-white);
  border-bottom: 1px solid #bdbdbd;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease-in-out, visibility 0.22s ease-in-out, height 0.25s ease-in-out;
}
.container {
  position: relative;
  z-index: 3;
}
button#mobile_menu_toggle {
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
  margin-left: auto;
  transition: initial;
  outline: 2px solid transparent;
}
button#mobile_menu_toggle span {
  background: #ffffff;
  border-radius: 15px;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
button#mobile_menu_toggle[aria-expanded="true"] > span:nth-of-type(1) {
  width: 50%;
  transform-origin: bottom;
  transform: rotatez(45deg) translate(4px, 0);
}
button#mobile_menu_toggle[aria-expanded="true"] > span:nth-of-type(2) {
  width: 100%;
  transform-origin: top;
  transform: rotatez(-45deg);
}
button#mobile_menu_toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(12px, -4px) rotatez(45deg);
}
button#mobile_menu_toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.mobile_header_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 99;
  padding: calc(var(--header-height) + 80px) 30px 50px 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: padding 0.25s ease-in-out, background-color 0.25s ease-in-out, backdrop-filter 0.25s ease-in-out, -webkit-backdrop-filter 0.25s ease-in-out;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(22px) brightness(0.5);
  -webkit-backdrop-filter: blur(22px) brightness(0.5);
}
.mobile_header_menu .mobile_navigation ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  text-align: left;
}
.mobile_header_menu .mobile_navigation ul li {
  width: 100%;
  position: relative;
  z-index: 5;
}
.mobile_header_menu .mobile_navigation ul li .sub-menu {
  margin: 16px 0 8px 0;
  padding: 0 0 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile_header_menu .mobile_navigation ul a {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25em;
  color: var(--color-white);
  padding: 6px;
  margin: 0;
}
.mobile_header_menu .mobile_navigation .child_menu_btn {
  border: initial;
  background: initial;
  width: 32px;
  height: 32px;
  background-image: url(../../images/icons/chevron-up-solid.svg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: top 54% center;
  transition: ease-in-out 0.25s;
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  transform: rotate(180deg);
  filter: invert(1);
}
.mobile_header_menu .mobile_navigation .child_menu_btn:not([aria-expanded="true"]) ~ .sub-menu {
  display: none;
}
.mobile_header_menu .mobile_navigation .child_menu_btn[aria-expanded="true"] {
  transform: rotate(0deg);
}
.mobile_header_menu .btn.btn_style_1 {
  margin: 38px auto 0 auto;
}
@media (min-width: calc(1400px + 1px)) {
  #mobile_menu_popup {
    display: none;
  }
  button#mobile_menu_toggle {
    display: none;
  }
}
@media (max-width: 1400px) {
  .header_wrapper .header_navigation,
  .header_wrapper .block_right .btn {
    display: none;
  }
}
#mobile_menu_popup {
  opacity: 0;
}
#mobile_menu_popup.hidden {
  z-index: 2;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
.slide-out-right {
  -webkit-animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-out-right {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -1500px;
    opacity: 0;
  }
}
@-webkit-keyframes slide-out-right {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -1500px;
    opacity: 0;
  }
}
html {
  overflow-x: hidden;
  font-size: 100%;
}
html body {
  margin: 0;
  overflow-x: hidden;
  font-style: normal;
  font-family: "Golos Text", serif;
  font-optical-sizing: auto;
}
html.font_125 {
  font-size: 125%;
}
@media (max-width: 768px) {
  html.font_125 {
    font-size: 112.5%;
  }
}
html.font_150 {
  font-size: 150%;
}
@media (max-width: 768px) {
  html.font_150 {
    font-size: 125%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  outline: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
a:focus-visible {
  outline-color: var(--color-black);
}
button {
  display: block;
  border: initial;
  border-radius: 2px;
  background: initial;
  outline: 2px solid transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  color: var(--color-blackAlmost);
  line-height: 1.25em;
  text-decoration: initial;
  text-transform: initial;
}
button:not([disabled]) {
  cursor: pointer;
}
button:focus-visible {
  outline-color: var(--color-black);
}
input {
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  background: initial;
  border: 1px solid var(--color-line);
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"]::-moz-focus-inner {
  border: 0;
}
input[type="number"]::-ms-clear,
input[type="number"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="number"]:focus::-webkit-outer-spin-button,
input[type="number"]:focus::-webkit-inner-spin-button,
input[type="number"]:focus::-moz-focus-inner,
input[type="number"]:focus::-ms-clear,
input[type="number"]:focus::-ms-reveal {
  -webkit-appearance: none;
  appearance: none;
}
.container {
  max-width: 1500px;
  width: calc(100% - 60px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
  }
}
.container.container_medium {
  max-width: 1060px;
}
.container.container_small {
  max-width: 900px;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: "Geologica", serif;
}
h1,
.h1 {
  font-weight: 700;
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1.25em;
  color: var(--color-black);
  margin: 0 0 0.6em 0;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
h2,
.h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 1.25em;
  color: var(--color-black);
  margin: 0.8em 0 0.5em 0;
}
h2:first-child,
.h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
h3,
.h3 {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.25em;
  color: var(--color-black);
  margin: 0.8em 0 0.5em 0;
}
h3:first-child,
.h3:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h3,
  .h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
h4,
.h4 {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25em;
  color: var(--color-black);
  margin: 0.8em 0 0.5em 0;
}
h4:first-child,
.h4:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h4,
  .h4 {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
p,
.paragraph {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4em;
  color: var(--color-black);
  margin: 0 0 0.6em 0;
}
p.tag,
.paragraph.tag {
  font-weight: 600;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--color-main);
  margin: 0 0 1em 0;
}
@media (max-width: 768px) {
  p,
  .paragraph {
    font-size: 16px;
    font-size: 1rem;
  }
}
header p,
footer p {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
html.scroll-locked {
  overflow: hidden;
}
html.scroll-locked body {
  overflow: hidden;
}
.events-none {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1201px) {
  .hide_above_1200 {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .hide_below_1200 {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hide_above_768 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hide_below_768 {
    display: none !important;
  }
}
[id] {
  scroll-margin-top: 94px;
}
.btn {
  position: relative;
  transition: ease-in-out 0.25s;
  font-weight: 400;
  border-radius: 3px;
  outline: 2px solid transparent;
  border: none;
  line-height: 1.25em;
}
.btn:not([disable]) {
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--color-main);
}
.btn_style_1 {
  text-transform: uppercase;
  background: var(--color-main);
  padding: 18px 22px;
  min-width: 130px;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
}
.btn_style_1:hover {
  color: var(--color-white);
  background: var(--color-mainHover);
}
@media (max-width: 768px) {
  .btn_style_1 {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 16px 19px;
  }
}
.btn_style_2 {
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 22px;
  min-width: 130px;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--color-white);
  border-radius: 50px;
  border: 1px solid #FFFFFF58;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn_style_2:hover {
  color: var(--color-white);
  background: var(--color-mainHover);
}
@media (max-width: 768px) {
  .btn_style_2 {
    padding: 11px 18px;
  }
}
.btn_row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .btn_row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
section.section_404 {
  min-height: calc(100vh - 200px);
  padding: 52px 0 24px 0;
  display: flex;
  align-items: center;
}
section.section_404 .block_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
section.section_404 .block_content h1,
section.section_404 .block_content h2,
section.section_404 .block_content a,
section.section_404 .block_content p,
section.section_404 .block_content span {
  line-height: 1.3em;
  color: var(--color-black, black);
}
section.section_404 .error-404-title {
  font-weight: 400;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 2em 0 0.8em 0;
}
section.section_404 .error-404-text {
  display: block;
  font-weight: 600;
  font-size: 60px;
  font-size: 3.75rem;
  margin: 0 0 30px 0;
}
section.section_404 a.error-404-btn {
  background: var(--color-main, #35606e);
  padding: 10px 24px;
  transition: ease-in-out 0.18s;
  margin: 0;
  text-decoration: none;
  border: initial;
  border-radius: 6px;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-white, white);
}
section.section_404 a.error-404-btn:hover {
  background: var(--color-mainHover, #2a4c57);
}
.form_wrap {
  position: relative;
  z-index: 5;
}
.form_wrap.processing_form .form_input_wrap {
  opacity: 0.4;
}
.form_wrap:not(.processing_form) .lds-ellipsis {
  display: none;
}
.form_wrap .form_input_wrap {
  margin: 10px 0 0 0;
  transition: ease-in-out 0.25s;
}
.form_wrap .form_upper {
  margin: 0 auto 26px auto;
  text-align: center;
}
.form_wrap .form_upper h3 {
  font-weight: 600;
  font-size: 25px;
  font-size: 1.5625rem;
  margin: 0;
  color: var(--color-black);
}
.form_wrap .form_lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 24px 0 0 0;
}
.form_wrap .form_lower .checkbox {
  margin: 0;
}
.form_wrap .pb_form_input_row_double {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .form_wrap .pb_form_input_row_double {
    grid-template-columns: 1fr;
  }
}
.form_wrap .form_success_part {
  text-align: center;
  padding: 20px 0;
}
.form_wrap .form_success_part h3,
.form_wrap .form_success_part p {
  max-width: 23.75rem;
}
.form_wrap .form_success_part h3 {
  font-weight: 600;
  font-size: 25px;
  font-size: 1.5625rem;
  margin: 0 auto 12px auto;
}
.form_wrap .form_success_part p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0 auto 1em auto;
}
.form_wrap .form_success_part .btn {
  margin: 0 auto;
}
.pb_input_wrap {
  --pb_textarea_height: 180px;
  --pb_input_height: 55px;
  --pb_input_background: var(--color-white);
  --pb_input_border-radius: 5px;
  --pb_input_border-color: var(--color-grayC7);
  --pb_input_border-width: 1px;
  --pb_input_padding: 17px 25px;
  --pb_input_padding_mobile: 15px 20px;
  --pb_input_outline-color: var(--color-main);
  --pb_input_font-weight: 400;
  --pb_input_font-size: 1rem;
  --pb_input_font-color: var(--color-black);
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 0 12px 0;
}
.pb_input_wrap input:not([type="checkbox"], [type="radio"], [type="file"]),
.pb_input_wrap .nice-select {
  height: var(--pb_input_height);
}
.pb_input_wrap input:not([type="checkbox"], [type="radio"], [type="file"]),
.pb_input_wrap textarea,
.pb_input_wrap .nice-select {
  display: flex;
  width: 100%;
  border-radius: var(--pb_input_border-radius);
  background: var(--pb_input_background);
  padding: var(--pb_input_padding);
  margin: 0;
  border: 1px solid var(--pb_input_border-color);
  border-width: var(--pb_input_border-width);
  font-family: inherit;
  font-weight: var(--pb_input_font-weight);
  font-size: var(--pb_input_font-size);
  line-height: 1.2em;
  color: var(--pb_input_font-color);
  transition: border ease-in-out 0.25s;
}
.pb_input_wrap input:not([type="checkbox"], [type="radio"], [type="file"]):hover,
.pb_input_wrap textarea:hover,
.pb_input_wrap .nice-select:hover {
  border-color: var(--color-main);
}
.pb_input_wrap input:not([type="checkbox"], [type="radio"], [type="file"]):focus-visible,
.pb_input_wrap textarea:focus-visible,
.pb_input_wrap .nice-select:focus-visible {
  outline: 2px solid var(--pb_input_outline-color);
}
.pb_input_wrap input:not([type="checkbox"], [type="radio"], [type="file"]):not(:focus-visible).error,
.pb_input_wrap textarea:not(:focus-visible).error,
.pb_input_wrap .nice-select:not(:focus-visible).error {
  outline: 2px solid var(--color-error);
}
@media (max-width: 768px) {
  .pb_input_wrap input:not([type="checkbox"], [type="radio"], [type="file"]),
  .pb_input_wrap textarea,
  .pb_input_wrap .nice-select {
    padding: var(--pb_input_padding_mobile);
  }
}
.pb_input_wrap textarea {
  min-height: var(--pb_input_height);
  max-height: 660px;
  height: var(--pb_textarea_height);
  resize: vertical;
}
.pb_input_wrap .nice-select {
  width: 100%;
  height: var(--pb_input_height);
  padding: var(--pb_input_padding);
  max-width: initial;
}
@media (max-width: 768px) {
  .pb_input_wrap .nice-select {
    padding: var(--pb_input_padding_mobile);
  }
}
.pb_input_wrap .nice-select .nice-select-dropdown {
  width: 100%;
  border-radius: var(--pb_input_border-radius);
  border: 1px solid var(--pb_input_border-color);
  box-shadow: initial;
}
.pb_input_wrap .nice-select span.current {
  overflow: hidden;
  text-overflow: ellipsis;
}
.pb_input_wrap .nice-select span.current,
.pb_input_wrap .nice-select ul li.option {
  font-size: var(--pb_input_font-size);
  color: var(--color-blackAlmost);
}
.pb_input_wrap .nice-select ul li.option {
  padding-left: 25px;
}
.pb_input_wrap .nice-select ul li.option.disabled {
  color: var(--color-gray, #676767);
  font-weight: 700;
  cursor: not-allowed;
}
.pb_input_wrap .nice-select .list {
  overflow-y: auto;
  max-height: 210px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-main) var(--color-grayLight);
}
.pb_input_wrap .nice-select .list::-webkit-scrollbar {
  width: 12px;
}
.pb_input_wrap .nice-select .list::-webkit-scrollbar-track {
  background: var(--color-grayLight);
}
.pb_input_wrap .nice-select .list::-webkit-scrollbar-thumb {
  background: var(--color-main);
}
.pb_input_wrap .nice-select .list::-webkit-scrollbar-thumb:hover {
  background: var(--color-mainHover);
}
.pb_input_wrap select.error + .nice-select:not(:focus-visible) {
  outline: 2px solid var(--color-error);
}
.pb_input_wrap input:not([type="checkbox"], [type="radio"], [type="file"]).error ~ .input_error_message,
.pb_input_wrap textarea.error ~ .input_error_message,
.pb_input_wrap select.error ~ .input_error_message {
  display: block;
  height: calc(0.875rem * 1.2);
  opacity: 1;
  visibility: visible;
  margin: 7px 0 4px 0;
}
.pb_input_wrap .input_error_message {
  visibility: hidden;
  display: block;
  height: 0;
  opacity: 0;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2em;
  color: var(--color-error);
  margin: 0;
  transition: ease-in-out 0.25s;
}
.pb_input_wrap.disabled {
  cursor: not-allowed;
}
.pb_file_input label {
  width: 100%;
  height: auto;
  background: var(--color-grayEF, #EFEFEF);
  border-radius: 10px;
  padding: 18px 22px 18px 25px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.pb_file_input label:focus-visible {
  outline: 2px solid var(--pb_input_outline-color);
}
.pb_file_input label .pb_file_input_file_names {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 10px;
}
.pb_file_input label .pb_file_input_file_names p,
.pb_file_input label .pb_file_input_file_names span {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1em;
  color: var(--color-black);
  margin: 0;
  word-break: break-word;
}
.pb_file_input label .pb_file_input_file_names p.error,
.pb_file_input label .pb_file_input_file_names span.error {
  color: var(--color-error);
}
.pb_file_input label > img,
.pb_file_input label > svg {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin: 0 0 0 auto;
}
.pb_file_input input[type="file"]:focus-visible ~ label {
  outline: 2px solid var(--pb_input_outline-color);
}
div[id*="form_success"] {
  width: 100%;
  max-width: 300px;
  min-height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 32px 60px 2px rgba(10, 52, 10, 0.15);
}
div[id*="form_success"] .form_success_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.checkbox.bounce input:focus-visible {
  outline: 2px solid var(--color-black, black);
}
.checkbox {
  --CB_background: var(--color-white, white);
  --CB_border: var(--color-grayC7);
  --CB_border-hover: var(--color-grayCE);
  --CB_border-active: var(--color-main);
  --CB_tick: var(--color-white, white);
  --CB_text-size: 0.875rem;
  --CB_text-color: var(--color-gray7B, black);
  --CB_error-color: var(--color-error, red);
  position: relative;
  display: flex;
  gap: 12px;
  text-align: left;
  max-width: 320px;
  margin: 6px 0;
}
.checkbox input,
.checkbox svg {
  width: 21px;
  height: 21px;
  display: block;
  flex-shrink: 0;
}
.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  outline: none;
  background: var(--CB_background);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 var(--CB_s, 1px) var(--CB_b, var(--CB_border));
}
.checkbox input:hover {
  --CB_s: 2px;
  --CB_b: var(--CB_border-hover);
}
.checkbox input:checked {
  --CB_b: var(--CB_border-active);
}
.checkbox input.error {
  --CB_s: 2px;
  --CB_border: var(--CB_error-color);
}
.checkbox svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--CB_stroke, var(--CB_border-active));
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  transform: scale(var(--CB_scale, 1)) translateZ(0);
}
.checkbox.path input:checked {
  --CB_s: 2px;
  transition-delay: 0.4s;
}
.checkbox.path input:checked + svg {
  --CB_a: 16.1 86.12;
  --CB_o: 102.22;
}
.checkbox.path svg {
  stroke-dasharray: var(--CB_a, 86.12);
  stroke-dashoffset: var(--CB_o, 86.12);
  transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
}
.checkbox.bounce {
  --CB_stroke: var(--CB_tick);
}
.checkbox.bounce input:checked {
  --CB_s: 11px;
}
.checkbox.bounce input:checked + svg {
  animation: bounce 0.4s linear forwards 0.2s;
}
.checkbox.bounce svg {
  --CB_scale: 0;
}
.checkbox > p,
.checkbox > a {
  display: inline;
  margin: 0;
  font-size: var(--CB_text-size) !important;
  color: var(--CB_text-color);
  line-height: 21px;
}
.checkbox a {
  text-decoration: underline;
}
.checkbox a:hover {
  text-decoration: initial;
}
.checkbox.error {
  --CB_border: var(--CB_error-color);
}
.checkbox.error p,
.checkbox.error a {
  color: var(--CB_error-color);
}
.lds-ellipsis {
  --lds_color: var(--color-main, #000000);
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1 !important;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lds_color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
[class*='max_lines_'] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}
.max_lines_1 {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.max_lines_2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.max_lines_3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.max_lines_4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.max_lines_5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
.max_lines_6 {
  -webkit-line-clamp: 6;
  line-clamp: 6;
}
main.page_main {
  min-height: calc(100vh - 134px - 310px);
  padding-bottom: 1px;
}
main.single_main section:not(.single_news_upper) .container {
  max-width: 900px;
}
main.archive_main {
  background: var(--color-grayF7);
  padding-bottom: 1px;
}
main.archive_fabrics section.expanded_banner .block_content {
  max-width: 55rem;
}
main.single_fabrics_main section.expanded_banner .block_content {
  max-width: 55rem;
}
@media (min-width: 1201px) {
  main.archive_repairs section.expanded_banner {
    padding-top: calc(var(--header-height) + 12px);
  }
}
main.single_repair_main section.single_fabrics .block_upper {
  max-width: 58rem;
}
select {
  display: none;
}
section {
  position: relative;
  z-index: 5;
}
.wpml-ls-statics-footer {
  display: none !important;
}
html:root {
  --swiper-theme-color: var(--color-main);
}
.swiper_navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  --swiper-navigation-size: 25px;
}
.swiper_navigation .swiper-button-next,
.swiper_navigation .swiper-button-prev {
  position: initial;
  transform: initial;
  width: 32px;
  height: 32px;
  color: var(--color-black);
  margin: 0;
  padding: 0;
  user-select: none;
}
@media (max-width: 768px) {
  .swiper_navigation {
    margin: 32px auto 0 auto;
    justify-content: center;
  }
}
section.home_banner {
  width: 100%;
  height: 730px;
  padding: 280px 0 96px 0;
  position: relative;
  z-index: 5;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1200px) {
  section.home_banner {
    height: auto;
  }
}
@media (max-width: 768px) {
  section.home_banner {
    padding: 150px 0 50px 0;
  }
}
section.home_banner::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(40deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
}
section.home_banner a:focus-visible {
  outline: 2px solid var(--color-white);
}
section.home_banner .container {
  height: 100%;
}
section.home_banner .block_content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1200px) {
  section.home_banner .block_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  section.home_banner .block_content {
    gap: 100px;
  }
}
section.home_banner .block_left {
  max-width: 54.5rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
@media (max-width: 1200px) {
  section.home_banner .block_left {
    align-items: center;
    text-align: inherit;
  }
}
section.home_banner .block_left h1,
section.home_banner .block_left p {
  color: var(--color-white);
}
section.home_banner .block_left h1 {
  font-weight: 600;
  font-size: 55px;
  font-size: 3.4375rem;
  margin: 0 0 15px 0;
}
@media (max-width: 1200px) {
  section.home_banner .block_left h1 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
@media (max-width: 768px) {
  section.home_banner .block_left h1 {
    font-size: 30px;
    font-size: 1.875rem;
    max-width: 20rem;
  }
}
section.home_banner .block_left p {
  font-size: 18px;
  font-size: 1.125rem;
  max-width: 37.5rem;
}
@media (max-width: 768px) {
  section.home_banner .block_left p {
    font-size: 16px;
    font-size: 1rem;
    max-width: 18.75rem;
  }
}
section.home_banner .block_left .btn_row {
  margin: 18px 0 0 0;
}
section.home_banner .block_left .btn_style_1 {
  min-width: 160px;
}
section.home_banner .block_left .btn_style_2 {
  min-width: 210px;
}
section.home_banner .block_right {
  max-width: 33.625rem;
  margin: auto 0 0 0;
}
section.home_banner .text_highlighted_box {
  width: 100%;
  border: 1px solid #FFFFFF58;
  border-radius: 20px;
  opacity: 1;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  padding: 32px 40px 30px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 768px) {
  section.home_banner .text_highlighted_box {
    padding: 48px 15px 38px 26px;
    gap: 0;
    max-width: 28rem;
    text-align: left;
    align-items: baseline;
  }
}
section.home_banner .text_highlighted_box .box_left {
  flex-shrink: 0;
  width: 91px;
}
section.home_banner .text_highlighted_box .box_left img {
  display: block;
  width: 91px;
  height: 91px;
  object-fit: contain;
}
@media (max-width: 768px) {
  section.home_banner .text_highlighted_box .box_left {
    position: absolute;
    transform: translateY(-50%);
    top: 0;
    right: 15px;
    width: 80px;
    height: 80px;
  }
  section.home_banner .text_highlighted_box .box_left img {
    width: 80px;
    height: 80px;
  }
}
section.home_banner .text_highlighted_box .box_right p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-white);
  margin: 0;
  opacity: 0.9;
}
section.product_offer {
  margin: 102px 0 108px 0;
}
@media (max-width: 768px) {
  section.product_offer {
    margin: 36px 0 52px 0;
  }
}
section.product_offer .block_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (min-width: 1201px) {
  section.product_offer .block_content {
    grid-template-rows: repeat(2, 1fr);
  }
  section.product_offer .block_content > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  section.product_offer .block_content > *:nth-child(2) {
    grid-area: 1 / 3 / 2 / 4;
  }
  section.product_offer .block_content > *:nth-child(3) {
    grid-area: 1 / 4 / 3 / 5;
  }
  section.product_offer .block_content > *:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
  }
  section.product_offer .block_content > *:nth-child(5) {
    grid-area: 2 / 2 / 3 / 4;
  }
}
@media (max-width: 1200px) {
  section.product_offer .block_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  section.product_offer .block_content > *:nth-child(1) {
    grid-column: 1 / span 2;
  }
}
@media (max-width: 768px) {
  section.product_offer .block_content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  section.product_offer .block_content > *:nth-child(1) {
    order: 1;
  }
  section.product_offer .block_content > *:nth-child(2) {
    order: 2;
  }
  section.product_offer .block_content > *:nth-child(3) {
    order: 4;
  }
  section.product_offer .block_content > *:nth-child(4) {
    order: 5;
  }
  section.product_offer .block_content > *:nth-child(5) {
    order: 3;
  }
}
section.product_offer .block_content .block_box {
  background-color: #F6F6F6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 42px 36px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box {
    min-height: 335px;
  }
}
section.product_offer .block_content .block_box h2 {
  margin: 0 0 14px 0;
}
section.product_offer .block_content .block_box p,
section.product_offer .block_content .block_box li {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
}
section.product_offer .block_content .block_box ul {
  margin: 30px 0 10px 0;
  padding: 0;
  list-style: none;
}
section.product_offer .block_content .block_box ul li {
  position: relative;
  z-index: 5;
  padding: 0 0 0 24px;
  margin: 0 0 10px 0;
}
section.product_offer .block_content .block_box ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('../../images/icons/checkmark_black.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.product_offer .block_content .block_box .block_box_hover_arrow {
  position: absolute;
  z-index: 5;
  display: block;
  top: 48px;
  right: 36px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-main);
  background-image: url('../../images/icons/arrow_right_lg.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center;
  opacity: 0;
  transition: ease-in-out 0.25s;
}
@media (max-width: 1200px) {
  section.product_offer .block_content .block_box .block_box_hover_arrow {
    right: 24px;
  }
}
section.product_offer .block_content .block_box:hover .block_box_hover_arrow,
section.product_offer .block_content .block_box:focus-within .block_box_hover_arrow {
  opacity: 1;
}
section.product_offer .block_content .block_box:nth-child(1)::before,
section.product_offer .block_content .block_box:nth-child(5)::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: var(--color-black);
  opacity: 0.4;
  transition: ease-in-out 0.25s;
}
section.product_offer .block_content .block_box:nth-child(1) {
  padding-top: 132px;
  text-align: center;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(1) {
    padding-top: 70px;
  }
}
section.product_offer .block_content .block_box:nth-child(1)::after {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-image: url('../../images/product_offer_box_bg_1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: ease-in-out 0.25s;
}
section.product_offer .block_content .block_box:nth-child(1) .h2,
section.product_offer .block_content .block_box:nth-child(1) p {
  max-width: 25rem;
  color: var(--color-white);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(1) .h2,
  section.product_offer .block_content .block_box:nth-child(1) p {
    max-width: 15.25rem;
  }
}
section.product_offer .block_content .block_box:nth-child(1):hover::before {
  opacity: 0.3;
}
section.product_offer .block_content .block_box:nth-child(1):hover::after {
  transform: scale(1.06);
}
section.product_offer .block_content .block_box:nth-child(2) {
  background-color: #FFF2E5;
  padding-top: 220px;
}
section.product_offer .block_content .block_box:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -113px;
  display: block;
  width: 278px;
  height: 156px;
  background-image: url('../../images/product_offer_box_figure_2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: ease-in-out 0.25s;
}
section.product_offer .block_content .block_box:nth-child(2) .h2 {
  max-width: 216px;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(2) .h2 {
    max-width: 166px;
  }
}
section.product_offer .block_content .block_box:nth-child(2) p {
  max-width: 232px;
}
section.product_offer .block_content .block_box:nth-child(2) .block_box_hover_arrow {
  top: initial;
  bottom: 42px;
}
section.product_offer .block_content .block_box:nth-child(2):hover:after {
  right: -130px;
}
section.product_offer .block_content .block_box:nth-child(3) {
  background-color: #F6F6F6;
}
section.product_offer .block_content .block_box:nth-child(3) .h2 {
  max-width: 218px;
}
section.product_offer .block_content .block_box:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 388px;
  left: -145px;
  display: block;
  width: 413px;
  height: 259px;
  background-image: url('../../images/product_offer_box_figure_3-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(3)::before {
    top: 120px;
    left: initial;
    right: -60px;
    width: 192px;
    height: 120px;
  }
}
section.product_offer .block_content .block_box:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 630px;
  right: -116px;
  display: block;
  width: 347px;
  height: 260px;
  background-image: url('../../images/product_offer_box_figure_3-2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(3)::after {
    content: initial;
  }
}
section.product_offer .block_content .block_box:nth-child(3):hover::before {
  left: -160px;
  transform: scale(0.92);
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(3):hover::before {
    left: initial;
    right: -70px;
  }
}
section.product_offer .block_content .block_box:nth-child(3):hover::after {
  right: -130px;
  transform: scale(0.92);
}
@media (max-width: 1200px) {
  section.product_offer .block_content .block_box:nth-child(3) .block_box_hover_arrow {
    top: initial;
    bottom: 24px;
  }
}
section.product_offer .block_content .block_box:nth-child(4) {
  background-color: #EFFAEA;
  padding-top: 84px;
  text-align: center;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(4) {
    padding-top: 174px;
  }
}
section.product_offer .block_content .block_box:nth-child(4) .h2,
section.product_offer .block_content .block_box:nth-child(4) p {
  margin-left: auto;
  margin-right: auto;
}
section.product_offer .block_content .block_box:nth-child(4) p {
  max-width: 208px;
}
section.product_offer .block_content .block_box:nth-child(4) .block_box_hover_arrow {
  top: 32px;
}
@media (max-width: 1200px) {
  section.product_offer .block_content .block_box:nth-child(4) .block_box_hover_arrow {
    top: initial;
    bottom: 24px;
  }
}
section.product_offer .block_content .block_box:nth-child(4) .block_box_element {
  position: absolute;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  display: block;
  width: 224px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(4) .block_box_element {
    top: 10px;
    bottom: initial;
    width: 192px;
    height: 142px;
  }
}
section.product_offer .block_content .block_box:nth-child(4):hover {
  background-color: #E7F7DF;
}
section.product_offer .block_content .block_box:nth-child(5) {
  padding-top: 132px;
  text-align: center;
}
@media (max-width: 768px) {
  section.product_offer .block_content .block_box:nth-child(5) {
    padding-top: 78px;
  }
}
section.product_offer .block_content .block_box:nth-child(5)::after {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-image: url('../../images/product_offer_box_bg_5.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: ease-in-out 0.25s;
}
section.product_offer .block_content .block_box:nth-child(5) .h2,
section.product_offer .block_content .block_box:nth-child(5) p {
  max-width: 25rem;
  color: var(--color-white);
  margin-left: auto;
  margin-right: auto;
}
section.product_offer .block_content .block_box:nth-child(5):hover::before {
  opacity: 0.3;
}
section.product_offer .block_content .block_box:nth-child(5):hover::after {
  transform: scale(1.06);
}
section.product_row {
  background: var(--color-grayF6);
  padding: 108px 0 138px 0;
}
@media (max-width: 768px) {
  section.product_row {
    padding: 54px 0;
  }
}
section.product_row .block_upper {
  margin: 0 0 58px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.product_row .block_upper .block_left {
  display: flex;
  align-items: center;
  gap: 58px;
}
@media (max-width: 768px) {
  section.product_row .block_upper {
    justify-content: center;
    text-align: center;
    margin: 0 0 36px 0;
  }
}
section.product_row .block_upper h2 {
  margin: 0;
}
section.product_row .block_upper .btn {
  min-width: 180px;
}
section.product_row .block_content {
  display: flex;
}
section.product_row .block_lower {
  text-align: center;
  margin: 34px 0 0 0;
}
section.product_row .swiper {
  width: 100%;
  overflow: visible;
}
section.product_row .swiper .swiper-wrapper {
  align-items: initial;
}
.product_box {
  width: 360px;
  min-width: 0;
  max-width: 500px;
  height: auto;
  min-height: 340px;
  background: var(--color-white);
  box-shadow: 0px 2px 2px #0000000D;
  border-radius: 20px;
  padding: 72px 0 26px 0;
  position: relative;
  z-index: 5;
  padding-top: 0;
  --swiper-navigation-size: 16px;
}
.product_box .swiper-button-prev,
.product_box .swiper-button-next {
  display: none;
}
.product_box .product_box_image_wrap {
  width: 100%;
  height: 210px;
  height: auto;
  aspect-ratio: 4/3;
  position: relative;
  z-index: 5;
  padding: 0 0 6px 0;
}
@media (min-width: 1501px) {
  .product_box .product_box_image_wrap {
    width: 100%;
  }
}
.product_box .product_box_image_wrap .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  bottom: -8px;
}
.product_box .product_box_image_wrap .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 1;
  transition: ease-in-out 0.15s;
  margin: 0;
}
.product_box .product_box_image_wrap .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: var(--color-grayC7);
}
.product_box .swiper-button-next,
.product_box .swiper-button-prev {
  position: absolute;
  top: 22px;
  bottom: initial;
  left: initial;
  right: initial;
  transform: initial;
  width: 32px;
  height: 32px;
  color: var(--color-black);
  margin: 0;
  padding: 0;
}
.product_box .swiper-button-next.swiper-button-disabled,
.product_box .swiper-button-prev.swiper-button-disabled {
  pointer-events: initial;
  cursor: not-allowed;
}
.product_box .swiper-button-prev {
  right: 56px;
}
.product_box .swiper-button-next {
  right: 20px;
}
.product_box .product_box_image {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.product_box .product_box_image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.product_box .product_box_image.swiper .swiper-slide {
  height: 100%;
}
.product_box .product_box_categories {
  margin: 28px 0 11px 0;
  text-align: center;
}
.product_box .product_box_categories p {
  color: var(--color-gray7B);
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 auto;
}
.product_box h3 {
  width: 90%;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  margin: 10px auto 12px auto;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .product_box h3 {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 auto 10px auto;
  }
}
.product_box .product_box_subtitle {
  width: 90%;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-gray7B);
  margin: -9px auto 12px auto;
  text-align: center;
}
@media (max-width: 768px) {
  .product_box .product_box_subtitle {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.product_box .product_box_price {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.product_box .product_box_price p {
  font-size: 16px;
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
  color: var(--color-black);
}
.product_box .product_box_price p span {
  color: var(--color-green);
}
.product_box .product_box_price p span.old_price {
  color: inherit;
  text-decoration: line-through;
}
.product_box .product_box_price p.use_discount {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product_box:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: -2px;
}
.product_box .product_box_tag {
  position: absolute;
  z-index: 6;
  top: 22px;
  left: 32px;
  box-shadow: 0px 2px 2px #0000000D;
  border-radius: 20px 0px;
  background: var(--color-main);
  padding: 7px 16px;
  min-width: 66px;
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  color: var(--color-white);
  line-height: 1.25em;
}
.product_box .product_box_tag.tag_main {
  border: 1px solid var(--color-main);
  background: transparent;
  color: var(--color-main);
}
.product_box .product_box_tag.tag_discount {
  background: var(--color-main);
  color: var(--color-white);
  left: 0;
  background: yellow;
  color: var(--color-main);
  border-radius: 0;
  padding-block: 5px;
  font-weight: 600;
}
section.blog_row {
  margin: 100px 0 112px 0;
}
@media (max-width: 768px) {
  section.blog_row {
    margin: 46px 0 52px 0;
  }
}
section.blog_row .block_upper {
  margin: 0 0 58px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  section.blog_row .block_upper {
    margin: 0 0 42px 0;
    justify-content: center;
    text-align: center;
  }
}
section.blog_row .block_upper .block_left {
  display: flex;
  align-items: center;
  gap: 58px;
}
section.blog_row .block_upper h2 {
  margin: 0;
}
section.blog_row .block_upper .btn {
  min-width: 180px;
}
section.blog_row .block_content {
  display: flex;
}
section.blog_row .block_lower {
  margin: 36px auto 0 auto;
  text-align: center;
}
section.blog_row .swiper {
  width: 100%;
  padding: 3px;
}
body .container .news_box {
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 485 / 355;
  position: relative;
  z-index: 5;
  padding: 40px 42px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
}
@media (max-width: 768px) {
  body .container .news_box {
    padding: 30px 32px;
  }
}
body .container .news_box::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent linear-gradient(11deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.75;
}
body .container .news_box .news_box_bg {
  position: absolute;
  z-index: -2;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
body .container .news_box .news_box_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
body .container .news_box .news_box_categories {
  margin: 0 0 8px 0;
}
body .container .news_box .news_box_categories p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
  color: var(--color-white);
  opacity: 0.7;
}
body .container .news_box h3 {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-white);
  margin: 0;
  max-width: 14.25rem;
}
@media (max-width: 768px) {
  body .container .news_box h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
body .container .news_box .news_box_arrow {
  display: block;
  width: 21px;
  height: 10px;
  position: relative;
  transition: ease-in-out 0.25s;
  object-fit: contain;
  margin: 21px 0 0 0;
}
body .container .news_box:hover .news_box_arrow {
  transform: translateX(5px);
}
section.footer_contact_line {
  height: 134px;
  background: var(--color-main);
  position: relative;
  z-index: 5;
}
@media (max-width: 1000px) {
  section.footer_contact_line {
    height: auto;
  }
}
section.footer_contact_line .container {
  height: 100%;
}
section.footer_contact_line .block_content {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  section.footer_contact_line .block_content {
    flex-direction: column;
  }
}
section.footer_contact_line .block_left {
  display: flex;
  align-items: center;
  gap: 54px;
  width: 100%;
}
@media (min-width: 1001px) {
  section.footer_contact_line .block_left {
    max-width: calc(50% - 18px);
  }
}
@media (max-width: 1000px) {
  section.footer_contact_line .block_left {
    padding: 26px 0;
    text-align: center;
    justify-content: center;
  }
}
section.footer_contact_line h3 {
  font-weight: 500;
  font-size: 25px;
  font-size: 1.5625rem;
  color: var(--color-white);
  margin: 0;
}
@media (max-width: 1000px) {
  section.footer_contact_line h3 {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
  }
}
section.footer_contact_line .social_icon_wrap {
  display: flex;
  gap: 12px;
}
section.footer_contact_line .social_icon_wrap a,
section.footer_contact_line .social_icon_wrap svg {
  display: block;
  width: 40px;
  height: 40px;
}
@media (max-width: 1000px) {
  section.footer_contact_line .social_icon_wrap {
    position: absolute;
    z-index: 5;
    bottom: 26px;
    left: 35px;
  }
  section.footer_contact_line .social_icon_wrap a,
  section.footer_contact_line .social_icon_wrap svg {
    border-radius: 5px;
    background: var(--color-secondary);
    width: 40px;
    height: 40px;
  }
}
section.footer_contact_line .block_right img {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1009px;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1800px) {
  section.footer_contact_line .block_right img {
    max-width: 50%;
  }
}
@media (max-width: 1000px) {
  section.footer_contact_line .block_right {
    height: 190px;
  }
  section.footer_contact_line .block_right img {
    right: 0;
    left: 0;
    top: initial;
    bottom: 0;
    height: 190px;
    width: 100%;
    max-width: initial;
  }
}
section.footer_contact_line .block_map {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
section.footer_contact_line .block_map button[title="Attributions"],
section.footer_contact_line .block_map .ol-control {
  display: none;
}
@media (max-width: 1000px) {
  section.footer_contact_line .block_map {
    width: 100%;
    height: 190px;
    right: 0;
    left: 0;
    top: initial;
    bottom: 0;
    max-width: initial;
  }
}
section.page_initial {
  width: 100%;
  height: var(--header-height);
  background: var(--color-secondary);
}
section.contact_section {
  margin-block: 60px 130px;
}
@media (max-width: 768px) {
  section.contact_section {
    margin-block: 38px 60px;
  }
}
section.contact_section .block_content {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
@media (max-width: 1000px) {
  section.contact_section .block_content {
    flex-direction: column;
    gap: 20px;
  }
}
section.contact_section .block_content .block_left {
  width: 100%;
  max-width: 565px;
}
section.contact_section .block_content .block_right {
  height: initial;
  width: 100%;
  max-width: 893px;
  position: relative;
  z-index: 5;
}
section.contact_section .box {
  padding: 35px 55px 45px 53px;
  background: #F0F0F0;
  border-radius: 10px;
  position: relative;
  z-index: 5;
}
section.contact_section .box:not(:last-child) {
  margin-block-end: 22px;
}
@media (max-width: 768px) {
  section.contact_section .box:not(:last-child) {
    margin-block-end: 16px;
  }
}
@media (max-width: 768px) {
  section.contact_section .box {
    padding: 30px 20px 24px 20px;
  }
}
section.contact_section .address_row {
  display: flex;
  align-items: center;
  margin: 0 0 22px 0;
  flex-wrap: wrap;
  gap: 8px;
}
section.contact_section .address_row p {
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  section.contact_section .address_row p {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.contact_section .address_row .social_icon_wrap {
  margin: 0 0 0 auto;
}
section.contact_section h2 {
  font-weight: 600;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #000;
  margin: 0 0 22px 0;
}
@media (max-width: 768px) {
  section.contact_section h2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
section.contact_section h3 {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
  margin: 20px 0 22px 0;
}
@media (max-width: 768px) {
  section.contact_section h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.contact_section p {
  font-size: 16px;
  font-size: 1rem;
}
section.contact_section .contact_row {
  display: flex;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  section.contact_section .contact_row {
    font-size: 16px;
    font-size: 1rem;
    margin-block-end: 6px;
  }
}
section.contact_section .contact_row span {
  width: 26px;
  font-weight: 700;
  color: #EA4D37;
}
section.contact_section .requisites_wrap p {
  font-size: 16px;
  font-size: 1rem;
  color: #7B7B7B;
  margin: 0;
}
@media (min-width: 1201px) {
  section.contact_section [data-src="#contact_form_1_popup"] {
    position: absolute;
    bottom: 45px;
    right: 55px;
  }
}
@media (max-width: 1200px) {
  section.contact_section [data-src="#contact_form_1_popup"] {
    margin-top: 20px;
  }
}
section.contact_section .block_map {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
section.contact_section .block_map button[title="Attributions"],
section.contact_section .block_map .ol-control {
  display: none;
}
section.contact_section .block_map .ol-viewport {
  border-radius: 10px;
}
@media (max-width: 1000px) {
  section.contact_section .block_map {
    width: 100%;
    height: 440px;
    max-width: initial;
  }
}
section.contact_section .block_map .map_button {
  display: block;
  width: 177px;
  height: 138px;
  border-radius: 10px;
  position: absolute;
  z-index: 5;
  top: 29px;
  left: 35px;
}
@media (max-width: 768px) {
  section.contact_section .block_map .map_button {
    top: initial;
    left: initial;
    right: 20px;
    bottom: 20px;
  }
}
section.contact_section .block_map .map_button img {
  display: block;
  width: 177px;
  height: 138px;
}
@media (max-width: 768px) {
  section.contact_section .block_map .map_button {
    width: 118px;
    height: 92px;
  }
  section.contact_section .block_map .map_button img {
    width: 118px;
    height: 92px;
  }
}
#contact_form_1_popup,
#ask_question_form {
  width: 100%;
  max-width: 535px;
  margin: 50px auto;
  box-shadow: 0px 3px 70px #0000000A;
  border-radius: 20px;
  padding: 40px 54px 36px 54px;
}
section.grand_archive {
  margin: 0 0 100px 0;
  position: relative;
  z-index: 3;
}
section.grand_archive::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 400px;
  background-color: var(--color-secondary);
}
section.grand_archive .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.grand_archive .archive_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 30px;
  width: 100%;
}
@media (max-width: 1200px) {
  section.grand_archive .archive_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }
}
@media (max-width: 768px) {
  section.grand_archive .archive_content {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px 20px;
  }
}
section.grand_archive .archive_pagination {
  margin: 100px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0;
  border-radius: 100px;
  background: transparent;
}
section.grand_archive .archive_pagination .pagination_prev,
section.grand_archive .archive_pagination .pagination_next {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.grand_archive .archive_pagination .pagination_prev svg,
section.grand_archive .archive_pagination .pagination_next svg {
  display: block;
}
section.grand_archive .archive_pagination .pagination_pages {
  display: flex;
  align-items: center;
  gap: 0;
}
section.grand_archive .archive_pagination .pagination_pages a,
section.grand_archive .archive_pagination .pagination_pages .pagination_separator {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 36px;
  height: 36px;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-black);
}
section.grand_archive .archive_pagination .pagination_pages a.active,
section.grand_archive .archive_pagination .pagination_pages .pagination_separator.active {
  background: var(--color-main);
  color: var(--color-white);
}
section.grand_archive .archive_pagination .pagination_pages .pagination_separator {
  width: 20px;
}
section.grand_archive .archive_pagination a:hover {
  text-decoration: underline;
}
section.grand_archive .archive_pagination a[href="#"] {
  opacity: 0.35;
  cursor: not-allowed;
}
section.grand_archive .archive_upper_wrap {
  position: relative;
  z-index: 5;
}
section.grand_archive .archive_upper {
  width: 100%;
  padding: 54px 0 296px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  section.grand_archive .archive_upper {
    flex-direction: column;
  }
}
section.grand_archive .archive_upper h1 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0;
  color: var(--color-white);
}
@media (max-width: 768px) {
  section.grand_archive .archive_upper h1 {
    font-size: 25px;
    font-size: 1.5625rem;
    text-align: center;
  }
}
section.grand_archive .archive_upper .nice-select {
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 50px;
  min-width: 265px;
  padding-left: 32px;
  height: 51px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  section.grand_archive .archive_upper .nice-select {
    min-width: 200px;
    height: 45px;
    padding-left: 28px;
  }
}
section.grand_archive .archive_upper .nice-select span.current {
  color: var(--color-white);
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  section.grand_archive .archive_upper .nice-select span.current {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
section.grand_archive .archive_upper .nice-select.open {
  border-radius: 5px;
}
section.grand_archive .archive_upper .nice-select .nice-select-dropdown {
  width: 100%;
}
section.grand_archive .archive_highlight_wrap {
  width: 100%;
  position: relative;
  z-index: 5;
  margin: -236px 0 60px 0;
}
@media (max-width: 1200px) {
  section.grand_archive .archive_highlight_wrap {
    width: auto;
    max-width: 560px;
  }
}
section.grand_archive .archive_highlight {
  min-height: 520px;
  width: 100%;
  max-width: 1225px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  background-color: var(--color-grayF6);
  padding: 88px 48px 88px 462px;
}
@media (max-width: 1500px) {
  section.grand_archive .archive_highlight {
    max-width: initial;
    padding-left: 730px;
  }
}
@media (max-width: 1200px) {
  section.grand_archive .archive_highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 0 22px 0;
  }
}
section.grand_archive .archive_highlight .highlight_left img {
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
@media (min-width: 1201px) {
  section.grand_archive .archive_highlight .highlight_left img {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 649px;
    height: 417px;
  }
}
@media (max-width: 1200px) {
  section.grand_archive .archive_highlight .highlight_left img {
    border-radius: 20px 20px 0 0;
  }
}
section.grand_archive .archive_highlight .highlight_right {
  max-width: 32rem;
}
@media (max-width: 1200px) {
  section.grand_archive .archive_highlight .highlight_right {
    padding: 0 22px;
  }
}
section.grand_archive .archive_highlight .news_highlight_box_date {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-gray7B);
  margin: 0 0 20px 0;
}
section.grand_archive .archive_highlight .news_highlight_box_title {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: var(--color-black);
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  section.grand_archive .archive_highlight .news_highlight_box_title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.grand_archive .archive_highlight .news_highlight_box_text {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0 0 20px 0;
}
section.grand_archive .archive_highlight .news_highlight_box_btn {
  min-width: 180px;
}
section.single_news_upper {
  height: 568px;
  background: var(--color-secondary);
  padding: calc(var(--header-height) + 100px) 0 0 0;
  margin: 0 0 358px 0;
}
@media (max-width: 1200px) {
  section.single_news_upper {
    height: auto;
    padding: calc(var(--header-height) + 40px) 0 0 0;
    margin: 0 0 52px 0;
    background: initial;
  }
  section.single_news_upper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 442px;
    max-height: 100%;
    background: var(--color-secondary);
  }
}
section.single_news_upper .container {
  height: 100%;
}
section.single_news_upper .block_upper {
  display: flex;
  align-items: center;
  justify-content: start;
}
section.single_news_upper .block_upper .btn {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-white);
  margin: 0;
}
@media (max-width: 1200px) {
  section.single_news_upper .block_upper {
    margin: 0 0 28px 0;
  }
}
section.single_news_upper .block_content {
  width: 100%;
  position: relative;
  z-index: 5;
}
@media (min-width: 1201px) {
  section.single_news_upper .block_content {
    transform: translateX(-50%);
    min-height: 536px;
    bottom: 0;
    left: 50%;
  }
}
@media (max-width: 1200px) {
  section.single_news_upper .block_content {
    max-width: 650px;
    margin: 0 auto;
    background: var(--color-main);
    border-radius: 20px;
  }
}
section.single_news_upper .block_content .highlight_left {
  border-radius: inherit;
}
section.single_news_upper .block_content .highlight_left img {
  display: block;
  width: 801px;
  height: 451px;
  border-radius: 20px;
  object-fit: cover;
}
@media (min-width: 1201px) {
  section.single_news_upper .block_content .highlight_left img {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
  }
}
@media (max-width: 1500px) {
  section.single_news_upper .block_content .highlight_left img {
    width: 670px;
    height: 390px;
  }
}
@media (max-width: 1200px) {
  section.single_news_upper .block_content .highlight_left img {
    width: auto;
    height: auto;
    border-radius: inherit inherit 0 0;
  }
}
section.single_news_upper .block_content .highlight_right {
  max-width: 53.125rem;
  border-radius: 20px;
  background: var(--color-main);
  padding: 100px 100px 100px 228px;
  margin: 0 0 0 auto;
  min-height: inherit;
}
@media (max-width: 1500px) {
  section.single_news_upper .block_content .highlight_right {
    max-width: initial;
    padding-left: 730px;
  }
}
@media (max-width: 1200px) {
  section.single_news_upper .block_content .highlight_right {
    padding: 30px 44px 28px 44px;
  }
}
@media (max-width: 768px) {
  section.single_news_upper .block_content .highlight_right {
    padding: 30px 22px 28px 22px;
  }
}
section.single_news_upper .block_content .news_highlight_box_date {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-white);
  margin: 0 0 20px 0;
}
section.single_news_upper .block_content .news_highlight_box_title {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: var(--color-white);
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  section.single_news_upper .block_content .news_highlight_box_title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.single_news_upper .block_content p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-white);
  margin: 0 0 0.6em 0;
}
section.single_news_upper .block_content .news_highlight_box_btn {
  min-width: 180px;
  background: rgba(255, 255, 255, 0.15);
}
section.single_news_upper ul.social_row {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 38px 0 0 0;
  flex-wrap: wrap;
}
section.single_news_upper ul.social_row li {
  margin: 0;
  padding: 0;
}
section.single_news_upper ul.social_row a,
section.single_news_upper ul.social_row button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background: var(--color-white);
}
section.single_news_upper ul.social_row a img,
section.single_news_upper ul.social_row button img {
  display: block;
  margin: 0;
  border-radius: initial;
}
section.single_news_upper ul.social_row button {
  width: auto;
  border: 1px solid var(--color-grayDB);
  padding: 2px 19px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-gray4D);
}
section.free_text {
  margin: 42px 0;
}
@media (max-width: 768px) {
  section.free_text {
    margin: 32px 0;
  }
}
.wysiwyg_formatting h2 {
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  color: var(--color-black);
  margin: 0 0 16px 0;
}
@media (max-width: 768px) {
  .wysiwyg_formatting h2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.wysiwyg_formatting h2:not(:first-child) {
  margin-top: 32px;
}
.wysiwyg_formatting h3 {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-black);
  margin: 0 0 16px 0;
}
@media (max-width: 768px) {
  .wysiwyg_formatting h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.wysiwyg_formatting h3:not(:first-child) {
  margin-top: 32px;
}
.wysiwyg_formatting p,
.wysiwyg_formatting li {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3em;
  margin: 0 0 1em 0;
  color: var(--color-black);
}
.wysiwyg_formatting p img,
.wysiwyg_formatting li img {
  border-radius: 8px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .wysiwyg_formatting p img,
  .wysiwyg_formatting li img {
    margin: 6px 0;
  }
}
.wysiwyg_formatting p img.alignright,
.wysiwyg_formatting li img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.wysiwyg_formatting p img.alignleft,
.wysiwyg_formatting li img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.wysiwyg_formatting p img.aligncenter,
.wysiwyg_formatting li img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wysiwyg_formatting p a img.alignright,
.wysiwyg_formatting li a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.wysiwyg_formatting p a img.alignleft,
.wysiwyg_formatting li a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.wysiwyg_formatting p a img.aligncenter,
.wysiwyg_formatting li a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wysiwyg_formatting ul {
  margin: 14px 0;
  padding: 0 0 0 1.4rem;
  list-style: initial;
}
.wysiwyg_formatting ul li {
  margin: 0 0 0.2em 0;
}
.wysiwyg_formatting ul li::marker {
  color: var(--color-main);
}
section.button_row {
  margin: 42px 0 30px 0;
}
@media (max-width: 768px) {
  section.button_row {
    margin: 30px 0 26px 0;
  }
}
section.button_row .block_content {
  background: var(--color-secondary);
  border-radius: 20px;
  padding: 38px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  section.button_row .block_content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 34px 28px;
  }
}
section.button_row .block_content .block_left {
  max-width: 25rem;
}
section.button_row .block_content .block_left h3 {
  color: var(--color-white);
  margin: 0;
}
section.button_row .block_content .btn {
  min-width: 165px;
}
section.share_on_socials_row {
  margin: 70px 0;
}
section.share_on_socials_row .block_upper {
  margin: 0 0 24px 0;
  text-align: center;
}
section.share_on_socials_row .block_upper h3,
section.share_on_socials_row .block_upper p {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 auto;
}
section.share_on_socials_row ul.social_row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
section.share_on_socials_row ul.social_row li {
  margin: 0;
  padding: 0;
}
section.share_on_socials_row ul.social_row a,
section.share_on_socials_row ul.social_row button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
}
section.share_on_socials_row ul.social_row a img,
section.share_on_socials_row ul.social_row button img {
  display: block;
  margin: 0;
  border-radius: initial;
}
section.share_on_socials_row ul.social_row button {
  width: auto;
  border: 1px solid var(--color-grayDB);
  padding: 2px 19px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-gray4D);
}
section.other_news_posts {
  margin: 72px 0 88px 0;
}
@media (max-width: 768px) {
  section.other_news_posts {
    margin: 58px 0 64px 0;
  }
}
section.other_news_posts .container {
  padding: 72px 0 0 0;
  border-top: 1px solid var(--color-grayC4);
}
@media (max-width: 768px) {
  section.other_news_posts .container {
    padding: 58px 0 0 0;
  }
}
section.other_news_posts .block_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
@media (max-width: 768px) {
  section.other_news_posts .block_content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
}
body .container .news_box_simple {
  border-radius: 4px;
  width: 100%;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  body .container .news_box_simple {
    width: 100%;
    max-width: 14.25rem;
    margin: 0 auto;
  }
}
body .container .news_box_simple .news_box_categories {
  margin: 0 0 8px 0;
}
body .container .news_box_simple .news_box_categories p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
  color: var(--color-black);
  opacity: 0.7;
}
body .container .news_box_simple h3 {
  width: 100%;
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-black);
  margin: 0;
  max-width: 14.25rem;
}
@media (max-width: 768px) {
  body .container .news_box_simple h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
body .container .news_box_simple .news_box_arrow {
  display: block;
  width: 21px;
  height: 10px;
  position: relative;
  transition: ease-in-out 0.25s;
  object-fit: contain;
  margin: 16px 0 0 0;
  filter: brightness(0) saturate(100%);
}
body .container .news_box_simple:hover .news_box_arrow {
  transform: translateX(5px);
}
section.expanded_banner {
  width: 100%;
  height: auto;
  min-height: 470px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: calc(var(--header-height) + 35px) 0 48px 0;
}
@media (max-width: 768px) {
  section.expanded_banner {
    height: auto;
    min-height: 380px;
    padding: 150px 0 50px 0;
  }
}
section.expanded_banner::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(0, #000000 0%, #00000000 130%) 0% 0% no-repeat padding-box;
  opacity: 0.75;
}
section.expanded_banner .block_content {
  margin: 0 auto;
  text-align: center;
  max-width: 44rem;
}
section.expanded_banner h1,
section.expanded_banner p {
  color: var(--color-white);
}
section.expanded_banner h1 {
  font-weight: 600;
  font-size: 55px;
  font-size: 3.4375rem;
  margin: 0 auto 20px auto;
}
@media (max-width: 768px) {
  section.expanded_banner h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
section.expanded_banner p {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.expanded_banner p {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.expanded_banner p.small_title {
  font-family: "Geologica", serif;
  font-weight: 600;
  font-size: 25px;
  font-size: 1.5625rem;
  color: var(--color-white);
  margin: 0 auto 13px auto;
}
section.text_and_image {
  margin: 90px 0;
}
@media (max-width: 768px) {
  section.text_and_image {
    margin: 70px 0;
  }
}
section.text_and_image .block_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1200px) {
  section.text_and_image .block_content {
    flex-direction: column-reverse;
    justify-content: initial;
    gap: 30px;
  }
}
section.text_and_image .block_left {
  width: 100%;
  max-width: 39.375rem;
}
section.text_and_image .block_right {
  width: 100%;
  max-width: 45.5rem;
  border-radius: 20px;
}
section.text_and_image .block_right .img_wrap {
  width: 100%;
  border-radius: inherit;
}
section.text_and_image .block_right .img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
section.text_and_image .block_right .img_wrap,
section.text_and_image .block_right .video_box_wrap {
  width: 100%;
  height: 500px;
}
@media (max-width: 768px) {
  section.text_and_image .block_right .img_wrap,
  section.text_and_image .block_right .video_box_wrap {
    height: auto;
    aspect-ratio: 4/3;
  }
}
section.text_and_image h2 {
  font-weight: 600;
  font-size: 25px;
  font-size: 1.5625rem;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  section.text_and_image h2 {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
section.text_and_image p:not(.tag) {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
}
section.text_and_image .btn {
  margin-top: 20px;
}
@media (min-width: 1201px) {
  section.text_and_image.reverse .block_content {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1201px) {
  section.text_and_image.small_image .block_left {
    max-width: 40rem;
  }
  section.text_and_image.small_image .block_right {
    max-width: 14rem;
  }
  section.text_and_image.small_image .block_right .img_wrap {
    height: auto;
  }
  section.text_and_image.small_image .block_right .img_wrap img {
    border-radius: 3px;
  }
}
.video_box_wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  background: var(--color-grayE6);
  position: relative;
  z-index: 5;
}
.video_box_wrap::before {
  content: '';
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="42"><g fill="%23fff" data-name="Group 7104"><path d="m29.216 20.125-11.5-7.866a.884.884 0 0 0-1.388.732v15.732a.883.883 0 0 0 1.388.732l11.5-7.866a.885.885 0 0 0 0-1.464Zm-11.109 6.921V14.668l9.032 6.191Z" data-name="Path 35248"/><path d="M20.856 0a20.856 20.856 0 1 0 20.857 20.856A20.879 20.879 0 0 0 20.856 0Zm0 39.934a19.077 19.077 0 1 1 19.078-19.078 19.1 19.1 0 0 1-19.078 19.078Z" data-name="Path 35249"/></g></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.video_box_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
section.single_product {
  margin: 0 0 70px 0;
}
@media (max-width: 768px) {
  section.single_product {
    margin: 0 0 58px 0;
  }
}
section.single_product .section_upper_wrap,
section.single_product .section_content_wrap {
  position: relative;
  z-index: 5;
}
section.single_product .section_upper_wrap {
  width: 100%;
  height: 340px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.single_product .section_upper_wrap::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(61deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.51;
}
section.single_product .section_content_wrap {
  margin: -138px 0 0 0;
}
@media (max-width: 768px) {
  section.single_product .section_content_wrap {
    margin: 64px 0;
    background: var(--color-white);
  }
}
section.single_product .section_content {
  width: 100%;
  box-shadow: 0px 3px 70px #0000000A;
  border-radius: 5px;
  padding: 58px 96px 52px 96px;
  background: var(--color-white);
  overflow: hidden;
}
@media (max-width: 768px) {
  section.single_product .section_content {
    padding: 0;
    box-shadow: initial;
    background: initial;
  }
}
section.single_product .section_content .block_step_back {
  margin: 0 0 52px 0;
}
@media (max-width: 768px) {
  section.single_product .section_content .block_step_back {
    margin: 0 0 32px 0;
  }
}
section.single_product .section_content .block_upper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1200px) {
  section.single_product .section_content .block_upper {
    flex-direction: column;
    align-items: center;
  }
}
section.single_product .section_content .block_upper .block_left {
  width: 590px;
}
@media (max-width: 1200px) {
  section.single_product .section_content .block_upper .block_left {
    width: 100%;
    max-width: 640px;
  }
}
section.single_product .section_content .block_upper .block_right {
  width: 100%;
  max-width: 600px;
}
section.single_product .section_content .block_upper .block_right button[type="button"] {
  margin-top: 26px;
}
@media (min-width: 1201px) {
  section.single_product .section_content .block_upper .block_right {
    padding-top: 26px;
  }
}
@media (max-width: 1200px) {
  section.single_product .section_content .block_upper .block_right {
    max-width: initial;
  }
}
section.single_product .section_content .product_image_wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 769px) {
  section.single_product .section_content .product_image_wrap .f-carousel {
    --f-button-next-pos: -16px;
    --f-button-prev-pos: -16px;
  }
}
section.single_product .section_content .product_image_wrap .is-next,
section.single_product .section_content .product_image_wrap .is-prev {
  width: 32px;
  height: 32px;
  background: var(--color-main);
  border-radius: 50%;
}
section.single_product .section_content .product_image_wrap .is-next svg,
section.single_product .section_content .product_image_wrap .is-prev svg {
  stroke: var(--color-white);
  width: 20px;
  height: 20px;
}
section.single_product .section_content .product_image_wrap .product_current_image {
  display: flex;
  border: 1px solid var(--color-grayE6);
  border-radius: 5px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
section.single_product .section_content .product_image_wrap .product_current_image:not(.is-horizontal) .f-carousel__slide:not(:first-child) {
  display: none;
}
section.single_product .section_content .product_image_wrap .product_current_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}
section.single_product .section_content .product_image_wrap .product_other_images {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  --f-carousel-spacing: 10px;
  --f-carousel-slide-width: calc((100% - 30px) / 4);
}
@media (max-width: 768px) {
  section.single_product .section_content .product_image_wrap .product_other_images {
    --f-carousel-spacing: 10px;
    --f-carousel-slide-width: calc((100% - 20px) / 3);
  }
}
section.single_product .section_content .product_image_wrap .product_other_images .f-carousel__nav {
  display: none;
}
section.single_product .section_content .product_image_wrap .product_other_images img {
  display: block;
  border: 1px solid var(--color-grayE6);
  border-radius: 5px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  padding: 0;
  transition: ease-in-out 0.25s;
}
section.single_product .section_content .product_image_wrap .product_other_images .is-nav-selected img {
  border-color: #aaaaaa;
}
section.single_product .section_content .product_image_wrap .product_other_images .f-carousel__slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0;
}
section.single_product .section_content .product_image_wrap .product_other_images .f-carousel__slide.with_video::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.35);
}
section.single_product .section_content .product_image_wrap .product_other_images .f-carousel__slide.with_video::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11.133" height="12.356" viewBox="0 0 11.133 12.356"><g id="play-button-arrowhead_27223" transform="translate(-8.107)"><path id="Path_35252" data-name="Path 35252" d="M10.124.272C9.01-.367,8.107.157,8.107,1.441v9.474c0,1.285.9,1.808,2.017,1.169L18.4,7.335a1.219,1.219,0,0,0,0-2.314Z" transform="translate(0 0)" fill="%23fff"/></g></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.single_product .section_content .product_image_wrap .product_other_images .f-carousel__slide.with_video span {
  position: absolute;
  z-index: 2;
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-white);
}
section.single_product .section_content h1 {
  font-weight: 600;
  font-size: 34px;
  font-size: 2.125rem;
  color: var(--color-black);
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  section.single_product .section_content h1 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.single_product .section_content .price_per_request {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-green);
  margin: 0 0 22px 0;
}
@media (max-width: 768px) {
  section.single_product .section_content .price_per_request {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 18px 0;
  }
}
section.single_product .section_content .price_starting_from,
section.single_product .section_content .price_fixed {
  font-weight: 400;
  font-size: 22px;
  font-size: 1.375rem;
  color: var(--color-black);
  margin: 0 0 22px 0;
}
@media (max-width: 768px) {
  section.single_product .section_content .price_starting_from,
  section.single_product .section_content .price_fixed {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 18px 0;
  }
}
section.single_product .section_content .price_starting_from #price_span,
section.single_product .section_content .price_fixed #price_span,
section.single_product .section_content .price_starting_from .price_value,
section.single_product .section_content .price_fixed .price_value {
  color: var(--color-green);
}
section.single_product .section_content .price_starting_from span.old_price,
section.single_product .section_content .price_fixed span.old_price {
  color: inherit;
  text-decoration: line-through;
}
section.single_product .section_content .price_starting_from.use_discount,
section.single_product .section_content .price_fixed.use_discount {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.single_product .section_content .product_info_wrap {
  margin: 22px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.single_product .section_content .product_info_row {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.single_product .section_content .product_info_row p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2em;
  margin: 0;
}
@media (max-width: 768px) {
  section.single_product .section_content .product_info_row p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
section.single_product .section_content .product_info_row .product_info_title {
  min-width: 94px;
  font-weight: 700;
  color: var(--color-text);
}
@media (max-width: 768px) {
  section.single_product .section_content .product_info_row .product_info_title {
    min-width: 70px;
  }
}
section.single_product .section_content .product_info_row .product_info_value {
  font-weight: 400;
  color: var(--color-gray7B);
}
section.single_product .section_content .product_short_text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2em;
  margin: 0;
  color: var(--color-text);
}
section.single_product .section_content .product_short_text p,
section.single_product .section_content .product_short_text li {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
}
section.single_product .section_content .product_short_text ul {
  list-style: initial;
  padding: 0 0 0 18px;
  margin: 10px 0;
}
section.single_product .section_content .product_variation_wrap {
  width: 100%;
  max-width: 425px;
  margin: 26px 0 24px 0;
}
section.single_product .section_content .product_variation_wrap .nice-select {
  display: block;
  margin: 0;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  float: initial;
  display: flex;
  align-items: center;
  padding-left: 25px;
}
@media (max-width: 768px) {
  section.single_product .section_content .product_variation_wrap .nice-select {
    height: 48px;
    padding-left: 18px;
  }
}
section.single_product .section_content .product_variation_wrap .nice-select span.current {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-black);
  overflow: hidden;
}
@media (max-width: 768px) {
  section.single_product .section_content .product_variation_wrap .nice-select span.current {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
section.single_product .section_content .product_variation_wrap .nice-select .nice-select-dropdown {
  width: 100%;
}
section.single_product .section_content .product_variation_wrap .nice-select .nice-select-dropdown li {
  white-space: normal;
  line-height: 1.1em;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
section.single_product .section_content .block_middle {
  margin: 60px 0 0 0;
}
section.single_product .section_content .block_middle h2,
section.single_product .section_content .block_middle h3,
section.single_product .section_content .block_middle h4,
section.single_product .section_content .block_middle p,
section.single_product .section_content .block_middle li {
  color: var(--color-text);
  margin: 0 0 1em 0;
}
section.single_product .section_content .block_middle h2,
section.single_product .section_content .block_middle h3,
section.single_product .section_content .block_middle h4 {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
}
section.single_product .section_content .block_middle p {
  font-size: 16px;
  font-size: 1rem;
}
section.single_product .section_content .block_middle ul {
  list-style: initial;
  padding: 0 0 0 28px;
  margin: 4px 0 14px 0;
}
section.single_product .section_content .block_middle ul li {
  margin: 0 0 0.2em 0;
}
section.single_product .section_content .block_gallery_row {
  display: flex;
  margin: 62px auto;
  max-width: 1300px;
  --f-carousel-spacing: 20px;
}
@media (max-width: 768px) {
  section.single_product .section_content .block_gallery_row {
    --f-carousel-spacing: 8px;
  }
  section.single_product .section_content .block_gallery_row .f-carousel__viewport {
    overflow: visible;
  }
}
section.single_product .section_content .block_gallery_row .f-carousel__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-grayE6);
  border-radius: 20px;
  padding: 12px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1200px) {
  section.single_product .section_content .block_gallery_row .f-carousel__slide {
    width: 160px;
    height: 160px;
    padding: 8px;
  }
}
@media (max-width: 768px) {
  section.single_product .section_content .block_gallery_row .f-carousel__slide {
    width: 128px;
    height: 128px;
    padding: 6px;
  }
}
section.single_product .section_content .block_gallery_row .f-carousel__slide:focus-visible {
  border-color: transparent;
  outline: 2px solid var(--color-black);
  outline-offset: -2px;
}
section.single_product .section_content .block_gallery_row .f-carousel__slide::before {
  content: attr(data-caption);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-white);
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  section.single_product .section_content .block_gallery_row .f-carousel__slide::before {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.single_product .section_content .block_gallery_row .f-carousel__slide::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  backdrop-filter: blur(4px) brightness(0.6);
  -webkit-backdrop-filter: blur(4px) brightness(0.6);
  transition: ease-in-out 0.25s;
}
section.single_product .section_content .block_gallery_row .f-carousel__slide:not(:hover)::before,
section.single_product .section_content .block_gallery_row .f-carousel__slide:not(:hover)::after {
  opacity: 0;
}
section.single_product .section_content .block_gallery_row .f-carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-next,
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-prev {
  color: var(--color-black);
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-next svg,
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-prev svg {
  display: none;
}
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-next::after,
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-prev::after {
  content: initial;
}
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-next.swiper-button-disabled,
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-prev.swiper-button-disabled {
  pointer-events: initial;
  cursor: not-allowed;
}
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-prev {
  transform: translateY(-50%) translateX(-50%);
  background-image: url('../../images/icons/swiper_left_btn.svg');
  left: 0;
}
@media (max-width: 768px) {
  section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-prev {
    left: 16px;
  }
}
section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-next {
  transform: translateY(-50%) translateX(50%);
  background-image: url('../../images/icons/swiper_right_btn.svg');
  right: 0;
}
@media (max-width: 768px) {
  section.single_product .section_content .block_gallery_row .f-carousel__nav .f-button.is-next {
    right: 16px;
  }
}
.product_go_back {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-gray7B);
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .product_go_back {
    font-size: 15px;
    font-size: 0.9375rem;
    gap: 16px;
  }
}
.product_go_back img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .product_go_back img {
    width: 28px;
    height: 28px;
  }
}
section.other_products {
  margin: 52px 0 82px 0;
  overflow: hidden;
  contain: style;
}
section.other_products .block_upper {
  margin: 0 0 56px 0;
  display: flex;
  gap: 60px;
}
section.other_products .block_upper .block_left {
  display: flex;
  align-items: center;
  gap: 58px;
}
section.other_products .block_upper h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: var(--color-black);
  margin: 0;
}
@media (max-width: 768px) {
  section.other_products .block_upper h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media (min-width: 1201px) {
  section.other_products .block_upper {
    padding: 0 38px;
  }
}
section.other_products .block_content {
  display: flex;
}
section.other_products .block_content .swiper {
  width: 100%;
  overflow: visible;
}
section.other_products .block_content .swiper .swiper-wrapper {
  align-items: initial;
}
section.other_products .block_content .product_box {
  background: var(--color-white);
  box-shadow: 0px 2px 2px #0000000D;
  border: 1px solid #E5E5E5;
}
section.archive_product {
  margin: 72px 0 150px 0;
}
section.archive_product .block_upper {
  width: 100%;
  max-width: 71.875rem;
  margin: 0 auto 54px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-align: center;
}
@media (max-width: 768px) {
  section.archive_product .block_upper {
    margin: 0 auto 38px auto;
  }
}
section.archive_product .block_upper h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: var(--color-black);
  margin: 0;
}
@media (max-width: 768px) {
  section.archive_product .block_upper h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.archive_product .block_upper p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}
section.archive_product .block_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px 20px;
}
@media (max-width: 1200px) {
  section.archive_product .block_content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  section.archive_product .block_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  section.archive_product .block_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.archive_product .block_content .product_box {
  box-shadow: 0px 2px 2px #0000000D;
  background: var(--color-white);
  flex-shrink: initial;
}
section.archive_product .block_content .swiper-slide {
  width: 100% !important;
}
.block_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 20px;
  margin: 0 auto 54px auto;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .block_nav {
    gap: 3px 10px;
    margin: 0 auto 36px auto;
  }
}
.block_nav button,
.block_nav a {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-black);
  padding: 12px 6px;
  border: 2px solid transparent;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .block_nav button,
  .block_nav a {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 6px 2px;
  }
}
.block_nav button.active,
.block_nav a.active {
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
section.product_categories {
  margin: 86px 0 116px 0;
}
@media (max-width: 768px) {
  section.product_categories {
    margin: 70px 0 76px 0;
  }
}
section.product_categories .block_upper {
  width: 100%;
  max-width: 33.75rem;
  margin: 0 auto 82px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  section.product_categories .block_upper {
    margin: 0 auto 70px auto;
  }
}
section.product_categories .block_upper h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: var(--color-black);
  margin: 0;
}
@media (max-width: 768px) {
  section.product_categories .block_upper h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.product_categories .block_upper p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}
section.product_categories .block_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 21px;
}
@media (max-width: 1200px) {
  section.product_categories .block_content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  section.product_categories .block_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  section.product_categories .block_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.product_categories .block_lower {
  margin: 44px 0 0 0;
}
.box_content {
  width: 100%;
  height: auto;
  aspect-ratio: 362/317;
  border-radius: 20px;
  position: relative;
  z-index: 5;
  padding: 42px 40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .box_content {
    padding: 28px 24px;
    aspect-ratio: initial;
    height: 240px;
  }
}
.box_content::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent linear-gradient(9deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.6;
}
.box_content .box_categories {
  margin: 0 0 14px 0;
}
.box_content .box_categories p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
  color: var(--color-white);
  opacity: 0.7;
}
.box_content h3 {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-white);
  margin: 0;
}
.box_content .box_arrow {
  display: block;
  width: 21px;
  height: 10px;
  position: relative;
  transition: ease-in-out 0.25s;
  object-fit: contain;
  margin: 21px 0 0 0;
}
.box_content:hover .box_arrow {
  transform: translateX(5px);
}
.available_in_our_shop {
  width: 100%;
  height: 370px;
  border-radius: 20px;
  background: #EFFAEA;
  padding: 98px 540px 98px 116px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1200px) {
  .available_in_our_shop {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 54px 48px 78px 48px;
  }
}
.available_in_our_shop h3 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0 0 10px 0;
  color: var(--color-black);
}
@media (max-width: 768px) {
  .available_in_our_shop h3 {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
.available_in_our_shop p {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-text);
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .available_in_our_shop p {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 18px 0;
  }
}
.available_in_our_shop .block_element {
  display: block;
  object-fit: contain;
}
@media (min-width: 1201px) {
  .available_in_our_shop .block_element {
    position: absolute;
    top: 50%;
    right: 140px;
    transform: translateY(-50%);
  }
}
@media (max-width: 1200px) {
  .available_in_our_shop .block_element {
    margin: 0 auto 64px auto;
    width: 220px;
    order: -1;
  }
}
section.single_fabrics {
  margin: 74px 0 98px 0;
}
section.single_fabrics .container {
  position: relative;
  z-index: 5;
}
section.single_fabrics .block_upper {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto 82px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  section.single_fabrics .block_upper {
    margin: 0 auto 48px auto;
  }
}
section.single_fabrics .block_upper h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: var(--color-black);
  margin: 0;
}
@media (max-width: 768px) {
  section.single_fabrics .block_upper h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.single_fabrics .block_upper p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}
section.single_fabrics .block_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px calc(100px / 3);
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  section.single_fabrics .block_content {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 900px) {
  section.single_fabrics .block_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.fabric_box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 20px;
  box-shadow: 0px 2px 2px #0000000D;
  border: 1px solid #E2E2E2;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 5;
}
.fabric_box:focus-visible {
  border-color: transparent;
  outline: 2px solid var(--color-black);
  outline-offset: -2px;
}
.fabric_box::before {
  content: attr(data-caption);
  width: 88%;
  word-break: break-word;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-white);
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  .fabric_box::before {
    font-size: 16px;
    font-size: 1rem;
  }
}
.fabric_box::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  backdrop-filter: blur(4px) brightness(0.6);
  -webkit-backdrop-filter: blur(4px) brightness(0.6);
  transition: ease-in-out 0.25s;
}
.fabric_box:not(:hover)::before,
.fabric_box:not(:hover)::after {
  opacity: 0;
}
.fabric_box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
section.universal_archive {
  margin: 72px 0 112px 0;
}
@media (max-width: 768px) {
  section.universal_archive {
    margin: 60px 0 72px 0;
  }
}
section.universal_archive .block_upper {
  width: 100%;
  max-width: 33.875rem;
  margin: 0 auto 82px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  section.universal_archive .block_upper {
    margin: 0 auto 70px auto;
  }
}
section.universal_archive .block_upper h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  color: var(--color-black);
  margin: 0;
}
@media (max-width: 768px) {
  section.universal_archive .block_upper h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.universal_archive .block_upper p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}
section.universal_archive.type_fabrics .block_content,
section.universal_archive.type_repairs .block_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 25px;
}
@media (max-width: 900px) {
  section.universal_archive.type_fabrics .block_content,
  section.universal_archive.type_repairs .block_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  section.universal_archive.type_fabrics .block_content,
  section.universal_archive.type_repairs .block_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.universal_archive.type_components .block_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 21px;
}
section.universal_archive.type_components .block_content .news_box {
  aspect-ratio: 362/317;
}
@media (max-width: 1200px) {
  section.universal_archive.type_components .block_content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  section.universal_archive.type_components .block_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  section.universal_archive.type_components .block_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.two_side_banner {
  padding: calc(var(--header-height) + 42px) 0 36px 0;
  min-height: 360px;
  height: auto;
  background: var(--color-secondary);
}
section.two_side_banner .block_content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1200px) {
  section.two_side_banner .block_content {
    flex-direction: column;
    justify-content: initial;
  }
}
section.two_side_banner .block_content .block_left {
  max-width: 40rem;
}
section.two_side_banner .block_content .block_right {
  width: 100%;
  max-width: 43.5rem;
}
@media (min-width: 1201px) {
  section.two_side_banner .block_content .block_right {
    text-align: right;
  }
}
section.two_side_banner .block_content .block_right p {
  font-size: 16px;
  font-size: 1rem;
}
section.two_side_banner .block_content h1,
section.two_side_banner .block_content p {
  color: var(--color-white);
  margin: 0;
}
body.page-template-page-text_page section.expanded_banner {
  min-height: 340px;
}
@media (max-width: 1200px) {
  body.page-template-page-text_page section.expanded_banner {
    min-height: 280px;
  }
}
@media (max-width: 768px) {
  body.page-template-page-text_page section.expanded_banner {
    min-height: 240px;
  }
}
section.expanded_banner + section.text_page_sect {
  margin-top: -140px;
}
@media (max-width: 768px) {
  section.expanded_banner + section.text_page_sect {
    margin-top: -100px;
  }
}
section.text_page_sect {
  margin: 0 0 128px 0;
}
@media (max-width: 768px) {
  section.text_page_sect {
    margin: 0 0 68px 0;
  }
}
section.text_page_sect .container {
  box-shadow: 0px 3px 70px #0000000A;
  border-radius: 5px;
  background: var(--color-white);
  padding: 74px 96px 48px 96px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  section.text_page_sect .container {
    padding: 52px 32px 48px 32px;
  }
}
section.text_page_sect .container > * {
  max-width: 56.25rem;
}
section.text_page_sect .container h1 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0 0 40px 0;
}
@media (max-width: 768px) {
  section.text_page_sect .container h1 {
    font-size: 28px;
    font-size: 1.75rem;
    margin: 0 0 32px 0;
  }
}
section.text_page_sect .container h2 {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 30px 0 16px 0;
}
@media (max-width: 768px) {
  section.text_page_sect .container h2 {
    font-size: 19px;
    font-size: 1.1875rem;
    margin: 26px 0 12px 0;
  }
}
section.text_page_sect .container h3 {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 28px 0 16px 0;
}
section.text_page_sect .container p {
  margin: 0 0 1em 0;
}
section.text_page_sect .container .page_last_modified {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-gray7B);
  margin: 0;
}
@media (min-width: 1201px) {
  section.text_page_sect .container .page_last_modified {
    position: absolute;
    top: 88px;
    right: 92px;
  }
}
@media (max-width: 1200px) {
  section.text_page_sect .container .page_last_modified {
    margin: 28px 0 0 auto;
    text-align: right;
  }
}
section.simple_image_row {
  margin: 20px 0;
}
section.simple_image_row .block_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
section.simple_image_row .block_content img {
  display: block;
  border-radius: 4px;
}
section.faq {
  margin: 62px 0 112px 0;
}
section.faq .block_upper {
  margin: 0 0 58px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  section.faq .block_upper {
    margin: 0 0 42px 0;
    justify-content: center;
    text-align: center;
  }
}
section.faq .block_upper h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
}
@media (max-width: 768px) {
  section.faq .block_upper h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.pb_faq_wrap {
  display: flex;
  flex-direction: column;
}
.accordion_box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.accordion_box:not(:last-child) {
  border-bottom: 1px solid #C1C1C1;
}
.accordion_box .accordion_btn {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2em;
  color: var(--color-black);
  padding: 26px 20px 26px 0;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}
.accordion_box .accordion_btn::before,
.accordion_box .accordion_btn::after {
  content: '';
  position: absolute;
  background-color: var(--color-black);
  transition: transform 0.2s ease;
}
.accordion_box .accordion_btn::before {
  width: 2px;
  height: 14px;
  top: 50%;
  right: calc(14px / 2);
  transform: translateY(-50%) translateX(50%) scaleY(1);
}
.accordion_box .accordion_btn::after {
  width: 14px;
  height: 2px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.accordion_box .accordion_btn[aria-expanded="true"] {
  color: var(--color-main);
}
.accordion_box .accordion_btn[aria-expanded="true"]::before {
  transform: translateY(-50%) translateX(50%) scaleY(0);
}
.accordion_box .accordion_btn[aria-expanded="true"]::before,
.accordion_box .accordion_btn[aria-expanded="true"]::after {
  background-color: var(--color-main);
}
.accordion_box .accordion_content {
  padding: 4px 0 18px 0;
}
.accordion_box .accordion_content p {
  margin: 0 0 20px 0;
}
.accordion_box .accordion_content ul {
  margin: 14px 0;
  padding: 0 0 0 1.4rem;
  list-style: initial;
}
.accordion_box .accordion_content ul li {
  margin: 0 0 0.3em 0;
  color: var(--color-black);
}
.accordion_box .accordion_content ul li::marker {
  color: var(--color-main);
}
.accordion_box .accordion_content li {
  font-size: 17px;
  font-size: 1.0625rem;
}
@media (max-width: 768px) {
  .accordion_box .accordion_content li {
    font-size: 16px;
    font-size: 1rem;
  }
}
body.post-type-archive-for_objects {
  background: var(--color-grayF7);
}
section.sofa_object_archive {
  margin: 0 0 160px 0;
  padding: 64px 0 0 0;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  section.sofa_object_archive {
    margin: 0 0 92px 0;
    padding: 48px 0 0 0;
  }
}
section.sofa_object_archive::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  background: var(--color-white);
}
section.sofa_object_archive .block_upper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 92px 0;
}
@media (min-width: 1201px) {
  section.sofa_object_archive .block_upper .block_right {
    text-align: right;
  }
}
@media (max-width: 1200px) {
  section.sofa_object_archive .block_upper {
    flex-direction: column;
    margin: 0 0 60px 0;
  }
}
section.sofa_object_archive .block_upper h2,
section.sofa_object_archive .block_upper p {
  margin: 0;
}
section.sofa_object_archive .block_upper h2 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  max-width: 33.75rem;
}
@media (max-width: 768px) {
  section.sofa_object_archive .block_upper h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.sofa_object_archive .block_upper p {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-text);
  max-width: 44.0625rem;
}
section.sofa_object_archive .block_gallery {
  margin: 0 0 98px 0;
  position: relative;
  z-index: 5;
  --swiper-navigation-size: 42px;
}
section.sofa_object_archive .block_gallery .swiper-button-next,
section.sofa_object_archive .block_gallery .swiper-button-prev {
  color: var(--color-black);
  margin: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
section.sofa_object_archive .block_gallery .swiper-button-next::after,
section.sofa_object_archive .block_gallery .swiper-button-prev::after {
  content: initial;
}
section.sofa_object_archive .block_gallery .swiper-button-next.swiper-button-disabled,
section.sofa_object_archive .block_gallery .swiper-button-prev.swiper-button-disabled {
  pointer-events: initial;
  cursor: not-allowed;
}
section.sofa_object_archive .block_gallery .swiper-button-prev {
  transform: translateY(-50%) translateX(-50%);
  background-image: url('../../images/icons/swiper_left_btn.svg');
  left: 0;
}
@media (max-width: 768px) {
  section.sofa_object_archive .block_gallery .swiper-button-prev {
    left: 16px;
  }
}
section.sofa_object_archive .block_gallery .swiper-button-next {
  transform: translateY(-50%) translateX(50%);
  background-image: url('../../images/icons/swiper_right_btn.svg');
  right: 0;
}
@media (max-width: 768px) {
  section.sofa_object_archive .block_gallery .swiper-button-next {
    right: 16px;
  }
}
section.sofa_object_archive .block_gallery .swiper-slide {
  margin: auto;
}
section.sofa_object_archive .block_gallery .swiper-slide img {
  height: 348px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
@media (min-width: 1201px) {
  section.sofa_object_archive .block_gallery .swiper-slide:nth-child(even) img {
    height: 294px;
  }
}
@media (max-width: 1200px) {
  section.sofa_object_archive .block_gallery .swiper {
    overflow: visible;
  }
}
section.sofa_object_archive .block_content_title {
  margin: 0 0 74px 0;
  text-align: center;
}
section.sofa_object_archive .block_content_title h2,
section.sofa_object_archive .block_content_title h3 {
  font-weight: 600;
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0;
}
@media (max-width: 768px) {
  section.sofa_object_archive .block_content_title h2,
  section.sofa_object_archive .block_content_title h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
section.sofa_object_archive .block_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 20px;
}
@media (max-width: 1500px) {
  section.sofa_object_archive .block_content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  section.sofa_object_archive .block_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  section.sofa_object_archive .block_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
body.single-fabrics .fabric_box {
  background-size: cover;
}
.btn_back {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-gray7B);
  position: absolute;
  top: -44px;
  left: 0;
}
.btn_back img {
  display: block;
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .btn_back img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .btn_back {
    gap: 12px;
    font-size: 14px;
    font-size: 0.875rem;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
  }
}
body .product_video .fancybox__content {
  padding: 0;
}
@media (min-width: 1024px) {
  html[lang=ru-RU] section.contact_section h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
footer.footer_wrapper {
  height: 310px;
  background: var(--color-secondary);
  padding: 68px 0 34px 0;
}
@media (max-width: 1200px) {
  footer.footer_wrapper {
    height: auto;
    padding: 52px 0 50px 0;
  }
}
footer.footer_wrapper a:focus-visible {
  outline: 2px solid var(--color-white);
}
footer.footer_wrapper .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
footer.footer_wrapper .block_content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .block_content {
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
  }
}
footer.footer_wrapper .block_col {
  max-width: 220px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .block_col {
    max-width: 300px;
  }
}
footer.footer_wrapper .block_col h3,
footer.footer_wrapper .block_col p,
footer.footer_wrapper .block_col a {
  color: var(--color-white);
}
footer.footer_wrapper .block_col h3 {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 18px 0;
}
footer.footer_wrapper .block_col p,
footer.footer_wrapper .block_col a {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  opacity: 0.9;
  margin: 0 0 0.7em 0;
}
footer.footer_wrapper .block_col p span,
footer.footer_wrapper .block_col a span {
  font-weight: 700;
  color: var(--color-main);
  padding-right: 8px;
}
footer.footer_wrapper .block_col a:hover {
  text-decoration: underline;
}
footer.footer_wrapper .footer_nav_col {
  max-width: initial;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_nav_col {
    max-width: 420px;
  }
  footer.footer_wrapper .footer_nav_col nav ul.menu {
    column-gap: 36px;
  }
  footer.footer_wrapper .footer_nav_col nav ul.menu a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 1200px) {
  footer.footer_wrapper .block_col.block_col_content_1 {
    order: 2;
  }
  footer.footer_wrapper .block_col.block_col_content_2 {
    order: 1;
    margin-top: 8px;
  }
  footer.footer_wrapper .block_col.block_col_content_2 .contact_row {
    display: flex;
    gap: 12px;
  }
  footer.footer_wrapper .block_col.block_col_content_2 .contact_row p span {
    display: none;
  }
}
footer.footer_wrapper .footer_logo,
footer.footer_wrapper .footer_logo img,
footer.footer_wrapper .footer_logo svg {
  display: block;
  width: 193px;
  height: 64px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_logo,
  footer.footer_wrapper .footer_logo img,
  footer.footer_wrapper .footer_logo svg {
    width: 127px;
    height: 42px;
  }
}
footer.footer_wrapper .social_wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 0 0;
}
footer.footer_wrapper .social_wrap img,
footer.footer_wrapper .social_wrap svg {
  display: block;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .social_wrap {
    order: 3;
    margin: 0;
    gap: 28px;
  }
}
footer.footer_wrapper nav.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer.footer_wrapper nav.footer_nav ul {
  columns: 2;
  column-gap: 150px;
}
footer.footer_wrapper nav.footer_nav a {
  padding: 2px 0;
}
footer.footer_wrapper .block_lower {
  display: flex;
  align-items: center;
  gap: 95px;
  margin: auto 0 0 0;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .block_lower {
    flex-direction: column;
    gap: 36px;
    margin: 30px 0 0 0;
  }
}
footer.footer_wrapper .block_lower .block_left {
  flex-grow: 1;
  width: auto;
  height: 1px;
  background: #FFFFFF;
  opacity: 0.34;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .block_lower .block_left {
    width: 100%;
  }
}
footer.footer_wrapper .block_lower .block_right {
  display: flex;
  align-items: center;
  gap: 34px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .block_lower .block_right {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }
}
footer.footer_wrapper .block_lower .block_right .page_link_row {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .block_lower .block_right .page_link_row {
    gap: 12px;
  }
}
footer.footer_wrapper .block_lower a,
footer.footer_wrapper .block_lower p {
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-grayCC);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 17px;
}
footer.footer_wrapper .block_lower a img,
footer.footer_wrapper .block_lower p img {
  display: block;
}
