@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");
:root {
  --h1: 4rem;
  --h2: 3rem;
  --subh: 2rem;
  --tbtn: 1.25rem;
  --p1: 1.25rem;
  --p2: 1rem;
  --big_spacing: 8rem;
  --small_spacing: 4rem;
}
@media (max-width: 768px) {
  :root {
    --h1: 3.5rem;
    --h2: 2.5rem;
    --subh: 1.75rem;
    --tbtn: 1.25rem;
    --p1: 1.25rem;
    --p2: 1rem;
    --big_spacing: 6rem;
    --small_spacing: 3rem;
  }
}

html {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
@media (max-width: 7681px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1920px) {
  html {
    font-size: 0.8333vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

body {
  width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Wix Madefor Text", sans-serif;
  color: #242424;
  background-color: #FFFFFF;
}

.container {
  margin: 0 20rem;
}
@media (max-width: 768px) {
  .container {
    margin: 0 1.5rem;
  }
}
.container.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .container.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .container.no-container-mobile {
    margin: 0;
  }
}

hr {
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
  height: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #242424;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

input, textarea {
  margin: 0;
  outline: none;
  border: none;
  resize: none;
}
input:hover, textarea:hover {
  outline: none;
  border: none;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: var(--small_spacing);
}

.mt-8 {
  margin-top: var(--big_spacing);
}

.pt-3 {
  padding-top: 3rem;
}

.seo-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.button {
  border-radius: 0.5rem;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-wrap: nowrap;
  cursor: pointer;
}
.button.small {
  padding: 0.5rem 1rem;
  width: fit-content;
}
.button.small.inverse {
  background-color: #F4EBE6;
  color: #8C3400;
}
.button.small.inverse:hover {
  background-color: #8C3400;
  color: #FFFFFF;
}
.button.small.inverse:active {
  background-color: #8C3400;
  color: #FFFFFF;
}
.button.small.inverse.disabled {
  color: #E8D6CC;
  pointer-events: none;
}
.button.small.primary {
  color: #FFFFFF;
  background-color: #8C3400;
}
.button.small.primary:hover {
  background-color: #242424;
}
.button.small.primary:active {
  background-color: #8C3400;
  color: #FFFFFF;
}
.button.small.primary.disabled {
  color: #FFFFFF;
  background-color: #E8D6CC;
  pointer-events: none;
}
.button.small.add {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  gap: 0.625rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease-out;
}
.button.small.add svg {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}
.button.small.add.active {
  background-color: #F4EBE6;
  color: #8C3400;
}
.button.small.add.active svg {
  transform: rotate(45deg);
}
.button.small.add.active svg path {
  stroke: #8C3400;
}
.button.large {
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.button.large.inverse {
  background-color: #FFFFFF;
  color: #8C3400;
  outline: 1px solid #E9E9E9;
}
.button.large.inverse:hover {
  background-color: #F4EBE6;
  outline: none;
}
.button.large.inverse:active {
  background-color: #8C3400;
  color: #FFFFFF;
  outline: none;
}
.button.large.inverse.disabled {
  color: #FFFFFF;
  background-color: #E8D6CC;
  pointer-events: none;
}
.button.large.primary {
  color: #FFFFFF;
  background-color: #8C3400;
}
.button.large.primary:hover {
  background-color: #242424;
}
.button.large.primary:active {
  background-color: #8C3400;
  color: #FFFFFF;
}
.button.large.primary.disabled {
  color: #FFFFFF;
  background-color: #E8D6CC;
  pointer-events: none;
}
.button.ghost {
  padding: 0.5rem 1rem;
  color: #8C3400;
}
.button.ghost.disabled {
  color: #E8D6CC;
  pointer-events: none;
}
.button.ghost:hover {
  background-color: #F4EBE6;
}
.button.ghost:active {
  background-color: #8C3400;
  color: #FFFFFF;
}
.button.icon-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  border: 1px solid #E9E9E9;
}
.button.icon-small svg {
  width: 1.666rem;
  height: 1.666rem;
}
.button.icon-small.next svg {
  transform: rotate(180deg);
}
.button.icon-small:active {
  border: 1px solid #8C3400;
}

input,
textarea {
  padding: 1rem;
  border: 1px solid #E9E9E9;
  border-radius: 0.5rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  font-family: "Wix Madefor Text", sans-serif;
  color: #8C3400;
}
input::placeholder,
textarea::placeholder {
  color: #A7A7A7;
}
input:hover,
textarea:hover {
  border: 1px solid #D3D3D3;
}
input:focus,
textarea:focus {
  border: 1px solid #8C3400;
}
input.error,
textarea.error {
  border: 1px solid #E41300;
}
input:disabled,
textarea:disabled {
  background-color: #FFFFFF;
}

.input-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.input-block span {
  color: #FFFFFF;
  text-wrap: nowrap;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
.input-block.primary span {
  color: #242424;
}
.input-block input.error + .error-msg {
  position: absolute;
  bottom: -1.25rem;
  display: block !important;
}
.input-block .error-msg {
  display: none;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
  color: red !important;
}

.searcher-input-label {
  display: flex;
  align-items: center;
}
.searcher-input-label input {
  padding-right: 3.5rem;
  width: calc(100% - 4.5rem - 2px);
}
.searcher-input-label input:focus + .searcher-icon path {
  stroke: #8C3400;
}
.searcher-input-label .searcher-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: -2.5rem;
}
.searcher-input-label .searcher-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.searcher-input-label .searcher-icon svg path {
  stroke: #D3D3D3;
}
@media (max-width: 768px) {
  .searcher-input-label .searcher-icon svg path {
    stroke-width: 1px;
  }
}

.information-input-label {
  display: flex;
  align-items: center;
}
.information-input-label input {
  padding-right: 3.5rem;
  width: calc(100% - 4.5rem - 2px);
}
.information-input-label fieldset {
  width: 100%;
}
.information-input-label .information-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: -2.5rem;
  position: relative;
}
.information-input-label .information-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 768px) {
  .information-input-label .information-icon svg path {
    stroke-width: 1px;
  }
}
.information-input-label .information-icon .description-info {
  z-index: 10;
  position: absolute;
  display: flex;
  align-items: center;
  padding: 1rem;
  top: 100%;
  left: 0;
  width: 15.8rem;
  display: none;
  background-color: #FFFFFF;
  color: #A7A7A7;
  border-radius: 0.5rem;
  border: 1px solid #E9E9E9;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
.information-input-label .information-icon:hover .description-info {
  display: flex;
}

.custom-checkbox {
  position: relative;
  cursor: pointer;
}
.custom-checkbox::before {
  content: "";
  background-color: #FFFFFF;
  border-radius: 2px;
  top: 50%;
  left: 0.5rem;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  position: absolute;
  z-index: 1;
}
.custom-checkbox:hover::after {
  border: 1px solid #D3D3D3;
  border-radius: 2px;
}
.custom-checkbox::after {
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 2px;
  top: 50%;
  left: 0.5rem;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  position: absolute;
  z-index: 2;
}
.custom-checkbox:has(input:checked)::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  content: url("../images/icons/checked-input-checkbox.svg");
  font-size: 0.75rem;
  color: #FFFFFF;
  background: #8C3400;
  border: 1px solid #8C3400;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .social-icon {
    width: 3.333rem;
    height: 3.333rem;
  }
}
.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
@media (max-width: 768px) {
  .social-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  grid-column: span 4;
}
@media (max-width: 768px) {
  .breadcrumbs {
    grid-column: span 2;
  }
}
.breadcrumbs a {
  padding: 0.5rem 0;
  color: #A7A7A7;
  text-wrap: nowrap;
}
@media (max-width: 768px) {
  .breadcrumbs a.product-name {
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
@media (max-width: 320px) {
  .breadcrumbs a:last-of-type {
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.breadcrumbs span {
  color: #A7A7A7;
}

.accordion-item {
  cursor: pointer;
}
.accordion-item .accordion-header {
  pointer-events: none;
}
.accordion-item .accordion-body {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.3s ease-out;
}

.__select {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.__select[data-state=active] .__select__title::before {
  transform: translate(-0.188rem, -50%) rotate(-45deg);
}
.__select[data-state=active] .__select__title::after {
  transform: translate(0.188rem, -50%) rotate(45deg);
}
.__select[data-state=active] .__select__content {
  display: flex;
  opacity: 1;
  z-index: 8;
  max-height: 13rem;
  overflow-y: scroll;
}
.__select[data-state=active] .__select__content::-webkit-scrollbar {
  width: 0.188rem;
}
.__select[data-state=active] .__select__content::-webkit-scrollbar-track {
  border-radius: 100px;
}
.__select[data-state=active] .__select__content::-webkit-scrollbar-thumb {
  background-color: rgba(233, 233, 233, 0.3019607843);
  border-radius: 100px;
}
.__select[data-state=active] .__select__label + .__select__input + .__select__label {
  max-height: 2.5rem;
  border-top-width: 1px;
}

.__no__select {
  display: flex;
  align-items: center;
  height: 1.563rem;
  padding: 1rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  border: 1px solid #E9E9E9;
  border-radius: 0.5rem;
  color: #242424;
  cursor: pointer;
}

.__select__title {
  display: flex;
  align-items: center;
  height: 1.563rem;
  padding: 1rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  border: 1px solid #E9E9E9;
  border-radius: 0.5rem;
  color: #242424;
  cursor: pointer;
}
.__select__title::before, .__select__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  display: block;
  width: 0.5rem;
  height: 0.125rem;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-0.188rem, -50%) rotate(45deg);
}
@media (max-width: 768px) {
  .__select__title::before, .__select__title::after {
    height: 1px;
  }
}
.__select__title::after {
  transform: translate(0.188rem, -50%) rotate(-45deg);
}
.__select__title:hover {
  border-color: #D3D3D3;
}
.__select__title::before, .__select__title::after {
  background-color: #8C3400;
}

.__select__content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  width: calc(100% - 2px);
  background-color: #ffffff;
  border: 1px solid #E9E9E9;
  border-top: none;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.__select__input {
  display: none;
}

.__select__label {
  display: flex;
  align-items: center;
  padding: 1rem;
  color: #8C3400;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.__select__label + input + .__select__label {
  border-top: 0 solid rgba(199, 204, 209, 0.3764705882);
}
.__select__label:hover {
  background-color: #8C3400 !important;
  color: #ffffff;
}

.show-more {
  cursor: pointer;
}
.show-more .shown-info {
  max-height: 4rem;
  overflow: hidden;
}
.show-more.active .shown-info {
  max-height: none;
}

.nav-info-list {
  position: relative;
}
.nav-info-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-info-list:hover ul {
  display: flex !important;
}
.nav-info-list:hover svg {
  transform: rotate(180deg);
}
.nav-info-list svg {
  width: 1rem;
  height: 1rem;
  transition: all 0.3s ease-out;
}
@media (max-width: 768px) {
  .nav-info-list svg path {
    stroke-width: 1px;
  }
}
.nav-info-list ul {
  background-color: #FFFFFF;
  display: none !important;
  flex-direction: column;
  position: absolute;
  z-index: 10;
  padding: 0.25rem 1.5rem;
  right: 0;
  gap: 0 !important;
  border: 1px solid #E9E9E9;
  border-radius: 1.25rem;
  width: auto;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  .nav-info-list ul {
    right: auto;
    left: 0;
  }
}
.nav-info-list ul li {
  width: 100%;
  border-bottom: 1px solid #E9E9E9;
}
.nav-info-list ul li:last-of-type {
  border-bottom: none;
}
.nav-info-list ul li.current a {
  color: #8C3400;
}
.nav-info-list ul li:hover a {
  color: #7C7C7C;
}
.nav-info-list ul li a {
  padding: 1.25rem 0;
  color: #A7A7A7 !important;
}
.nav-info-list .category-list {
  width: auto !important;
  max-height: 17rem;
  overflow-y: auto;
  right: -100%;
}
@media (max-width: 768px) {
  .nav-info-list .category-list {
    display: none !important;
  }
}
.nav-info-list .category-list__button-mobile {
  display: none;
}
@media (max-width: 768px) {
  .nav-info-list .category-list__button-mobile {
    display: flex;
  }
}

.header-mobile-list {
  display: flex;
  max-height: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 49;
  transition: max-height 0.3s ease-out;
  background-color: #FFFFFF;
  top: 4.525rem;
}
.header-mobile-list .active-page {
  color: #8C3400 !important;
}
.header-mobile-list nav {
  width: 100%;
}
.header-mobile-list nav ul li {
  width: 100%;
  border-bottom: 1px solid #E9E9E9;
}
.header-mobile-list nav ul li:last-of-type {
  border-bottom: none;
}
.header-mobile-list nav ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #242424;
}

.nav-list-accordion {
  pointer-events: all;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.nav-list-accordion li {
  border-bottom: none !important;
}
.nav-list-accordion li a {
  color: #A7A7A7 !important;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  padding: 0.833rem 0;
}
.nav-list-accordion li:last-of-type a {
  padding-bottom: 1.6667rem;
}
.nav-list-accordion li:first-of-type a {
  padding-top: 1.6667rem;
}
.nav-list-accordion .accordion-content {
  border-bottom: 1px solid #E9E9E9;
}

.open-list-btn {
  border-bottom: none;
}
.open-list-btn svg {
  transition: all 0.3s ease-out;
}
.open-list-btn.show svg {
  transform: rotate(180deg);
}
.open-list-btn a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-nav-block {
  display: none;
}
@media (max-width: 768px) {
  .slider-nav-block {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}

.faq-item {
  padding: 1.5rem;
  border: 1px solid #E9E9E9;
  border-radius: 0.5rem;
}
.faq-item.span-2 {
  grid-column: span 2;
}
.faq-item .faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .faq-item .faq-item-header {
    font-size: 1.75rem;
  }
}
.faq-item .faq-item-header .accordion-btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.faq-item .faq-item-header .accordion-btn-close .line {
  content: "";
  height: 1px;
  width: 0.9rem;
  background-color: #8C3400;
  transition: all 0.3s ease-out;
}
.faq-item .faq-item-header .accordion-btn-close .line.vertical {
  position: absolute;
  transform: rotate(90deg);
}
.faq-item .faq-item-header.show .line.vertical {
  transform: rotate(0);
}
.faq-item .faq-item-content {
  padding-top: 1.5rem;
  padding-right: 2.5rem;
  color: #A7A7A7;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  .faq-item .faq-item-content {
    font-size: var(--p1);
    font-weight: 400;
    line-height: 100%;
  }
}

.modal[data-modal-state=close] {
  scale: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.02, 0.38, 1);
}

.modal[data-modal-state=open] {
  scale: 1;
  opacity: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}
.modal[data-modal-state=open] .modal-inset {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 13, 13, 0.4);
}
.modal[data-modal-state=open] .modal-content {
  scale: 1;
  opacity: 1;
}
.modal[data-modal-state=close] .modal-content {
  scale: 0;
  opacity: 0;
}

.modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: auto;
  position: relative;
}
.modal-dialog .btn-modal-close.mobile {
  display: none;
  position: absolute;
  right: 1.5rem;
  top: 2.75rem;
  width: 3rem;
  height: 3rem;
}
.modal-dialog .btn-modal-close.mobile svg {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 768px) {
  .modal-dialog .btn-modal-close.mobile {
    display: block;
  }
}
@media screen and (max-width: 768px) and (max-height: 780px) {
  .modal-dialog .btn-modal-close {
    z-index: 15;
    top: 1.5rem !important;
    right: 2.5rem !important;
  }
  .modal-dialog .btn-modal-close path {
    stroke: #D3D3D3;
  }
}

.modal-content {
  transition: all 0.3s cubic-bezier(0.34, 1.02, 0.38, 1);
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .modal-content {
    border: 0.5rem;
  }
}
.modal-content .btn-modal-close {
  position: absolute;
  right: -4.5rem;
  top: 0;
  width: 3rem;
  height: 3rem;
}
.modal-content .btn-modal-close svg {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 768px) {
  .modal-content .btn-modal-close {
    display: none;
  }
}

.modal-form .modal-content {
  max-width: 80rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 3rem;
}
@media (max-width: 768px) {
  .modal-form .modal-content {
    margin: 0 1.5rem;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.modal-form .modal-content .modal-header {
  grid-column: span 2;
}
.modal-form .modal-content .modal-header .modal-header-h2 {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.modal-form .modal-content .modal-body {
  grid-column: span 2;
}

.modal-form-block {
  gap: 1.5rem;
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .modal-form-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.modal-form-block textarea {
  width: calc(100% - 2rem - 2px);
  height: 10rem;
}
.modal-form-block textarea.height-change {
  height: 6rem;
}
.modal-form-block .input-block.textarea {
  grid-column: span 2;
}
.modal-form-block .btn-send-block {
  display: flex;
  align-items: center;
  gap: 5.75rem;
  grid-column: span 2;
}
@media (max-width: 768px) {
  .modal-form-block .btn-send-block {
    gap: 3rem;
    flex-direction: column;
    text-align: center;
  }
}
.modal-form-block .btn-send-block.pad-top {
  padding-top: 3.25rem;
}
.modal-form-block .btn-send-block .agree-policy {
  color: #A7A7A7;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}

.modal-product-order .modal-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 80rem;
  padding: 3rem;
  max-height: 90dvh;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content {
    grid-template-columns: minmax(0, 1fr);
    padding: 3rem 1.5rem;
    margin: 0 1.5rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) and (max-height: 820px) {
  .modal-product-order .modal-content {
    padding: 1.5rem;
  }
}
.modal-product-order .modal-content .modal-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-header {
    gap: 1.5rem;
  }
}
.modal-product-order .modal-content .modal-header.catalog {
  gap: 3rem;
  padding-right: 6.75rem;
}
.modal-product-order .modal-content .modal-header.catalog .modal-product-order-header {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-header.catalog {
    padding-right: 0;
  }
}
.modal-product-order .modal-content .modal-header .modal-product-order-header {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-header .modal-product-order-header {
    gap: 1.5rem;
  }
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-header-h2 {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  max-width: 25rem;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-img {
  width: 6rem;
  height: 6rem;
  aspect-ratio: 1/1;
  border: 1px solid #E9E9E9;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-img {
    border-radius: 0.5rem;
  }
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-img img {
    border-radius: 0.5rem;
  }
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-info-block .modal-product-order-cost {
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #8C3400;
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-info-block .modal-product-order-cost::before {
  content: attr(data-original-price);
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
  color: #7C7C7C;
  text-decoration: line-through;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-info-block .modal-product-order-title-block {
  display: flex;
  flex-direction: column;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-info-block .modal-product-order-title-block .modal-product-order-sub-title {
  color: #A7A7A7;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .modal-product-order-card .modal-product-order-info-block .modal-product-order-title-block .modal-product-order-sub-title span {
  color: red !important;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .product-inputs-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .product-inputs-block .input-block {
  overflow: visible;
}
.modal-product-order .modal-content .modal-header .modal-product-order-header .product-inputs-block .input-block:nth-child(1) {
  order: 2;
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  max-width: 32.625rem;
  background-color: #8C3400;
  border-radius: 0.5rem;
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add:not([data-state=active]) .modal-product-order-service-btn-stroke {
  max-height: 4rem;
  overflow: hidden;
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-title {
    font-size: 1.75rem;
  }
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-btn-stroke {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 40rem;
  transition: all 0.3s;
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-btn-stroke::-webkit-scrollbar {
  height: 0.288rem;
  width: 0.188rem;
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-btn-stroke::-webkit-scrollbar-track {
  background-color: #8C3400;
  border-radius: 100px;
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-btn-stroke::-webkit-scrollbar-thumb {
  background-color: rgba(233, 233, 233, 0.3019607843);
  border-radius: 100px;
}
.modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-btn-stroke .button {
  white-space: initial;
  text-align: left;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-header .modal-product-order-service-add .modal-product-order-service-btn-stroke {
    gap: 0.5rem;
  }
}
.modal-product-order .modal-content .modal-body {
  grid-column: span 2;
}
@media screen and (max-width: 768px) and (max-height: 820px) {
  .modal-product-order .modal-content .modal-body .btn-send-block {
    gap: 1.5rem;
  }
}
.modal-product-order .modal-content .modal-body.catalog .modal-form-block .btn-send-block {
  padding-top: 6.25rem;
}
@media (max-width: 768px) {
  .modal-product-order .modal-content .modal-body.catalog .modal-form-block .btn-send-block {
    padding-top: 0;
  }
}

.modal-stock .modal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 3rem;
  max-width: 60rem;
}
@media (max-width: 768px) {
  .modal-stock .modal-content {
    grid-template-columns: minmax(0, 1fr);
    margin: 0 1.5rem;
    padding: 1.5rem;
    padding-bottom: 3rem;
  }
}
.modal-stock .modal-content .modal-header .modal-stock-img {
  width: 24.375rem;
  height: 24.375rem;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .modal-stock .modal-content .modal-header .modal-stock-img {
    border-radius: 0.5rem;
  }
}
.modal-stock .modal-content .modal-header .modal-stock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .modal-stock .modal-content .modal-header .modal-stock-img img {
    border-radius: 0.5rem;
  }
}
.modal-stock .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: space-between;
}
.modal-stock .modal-content .modal-body .modal-stock-title-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-stock .modal-content .modal-body .modal-stock-title-block .modal-stock-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .modal-stock .modal-content .modal-body .modal-stock-title-block .modal-stock-title {
    font-size: 1.75rem;
  }
}
.modal-stock .modal-content .modal-body .modal-stock-title-block .modal-stock-sub-title {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
.modal-stock .modal-content .modal-body .modal-stock-text ul {
  list-style: outside;
  margin-left: 2rem;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
.modal-stock .modal-content .modal-body .modal-stock-btn .button {
  width: max-content;
}
@media (max-width: 768px) {
  .modal-stock .modal-content .modal-body .modal-stock-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.modal-call-back .modal-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 80rem;
  padding: 3rem;
}
@media (max-width: 768px) {
  .modal-call-back .modal-content {
    grid-template-columns: minmax(0, 1fr);
    padding: 3rem 1.5rem;
    margin: 0 1.5rem;
    gap: 3rem;
  }
}
.modal-call-back .modal-content .modal-header {
  grid-column: span 2;
}
.modal-call-back .modal-content .modal-header .modal-header-h2 {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
}
.modal-call-back .modal-content .modal-body {
  grid-column: span 2;
}

.pdf-catalog-modal .modal-content {
  max-width: 44.375rem;
  height: 100%;
  max-height: 62.5rem;
}
@media (max-width: 768px) {
  .pdf-catalog-modal .modal-content {
    max-width: none;
    aspect-ratio: 17/24;
    margin: 0 1.5rem;
    height: auto;
  }
}
.pdf-catalog-modal .modal-content .modal-body {
  height: 100%;
  overflow-y: scroll;
}
.pdf-catalog-modal .modal-content .modal-body::-webkit-scrollbar {
  width: 0.188rem;
}
.pdf-catalog-modal .modal-content .modal-body::-webkit-scrollbar-track {
  background-color: #FFFFFF;
  border-radius: 100px;
}
.pdf-catalog-modal .modal-content .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(233, 233, 233, 0.3019607843);
  border-radius: 100px;
}
@media (max-width: 768px) {
  .pdf-catalog-modal .modal-content .modal-body embed {
    height: 100%;
  }
}

.gallery-img-modal {
  padding: 1.5rem;
  max-width: 40rem;
  max-height: 55.25rem;
}
@media (max-width: 768px) {
  .gallery-img-modal {
    max-width: none;
    margin: 0 1.5rem;
  }
}
.gallery-img-modal .modal-body img {
  width: 100%;
  max-height: 55.25rem;
  object-fit: contain;
}

.gallery-img-modal-custom {
  max-width: 100%;
  background-color: transparent;
  overflow: hidden;
}
.gallery-img-modal-custom .btn-modal-close {
  right: 4.5rem;
}

.img-block-slide {
  max-width: 60rem;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}
.img-block-slide img {
  aspect-ratio: 1/1;
}

.btn-img-right {
  position: absolute;
  border-radius: 50%;
  padding: 1.25rem;
  right: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn-img-right {
    padding: 0.7rem;
    max-width: 1.2rem;
    right: 0;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-img-right svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.btn-img-left {
  background-color: rgba(255, 255, 255, 0.5);
  left: 2rem;
  position: absolute;
  border-radius: 50%;
  padding: 1.25rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn-img-left {
    padding: 0.7rem;
    max-width: 1.2rem;
    left: 0;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-img-left svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
.product-card:hover .product-img {
  border: 1px solid #D3D3D3;
}
.product-card:active .product-img {
  border: 1px solid #8C3400;
}
.product-card__info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-card .product-img {
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  border: 1px solid #E9E9E9;
}
.product-card .product-img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}
.product-card .product-card-title-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card .product-card-title-block .product-card-price {
  color: #8C3400;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
.product-card .product-card-title-block .product-card-price__new-price {
  color: #8C3400;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-decoration: line-through;
}
.product-card .product-card-title-block .product-card-title {
  color: #242424;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
.product-card .button {
  width: max-content;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  height: auto;
}
.benefit-card .benefit-card-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.benefit-card .benefit-card-info-block .benefit-card-icon {
  height: 4rem;
  width: 4rem;
}
.benefit-card .benefit-card-info-block .benefit-card-icon svg {
  height: 4rem;
  width: 4rem;
}
@media (max-width: 768px) {
  .benefit-card .benefit-card-info-block .benefit-card-icon svg path {
    stroke-width: 1px;
  }
}
.benefit-card .benefit-card-info-block .benefit-card-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .benefit-card .benefit-card-info-block .benefit-card-title {
    font-size: 1.75rem;
  }
}
.benefit-card .benefit-card-info-block .benefit-card-text {
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
  color: #A7A7A7;
}
.benefit-card .button {
  width: max-content;
  margin-left: -1rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  height: auto;
  position: relative;
}
@media (max-width: 768px) {
  .step-card.swiper-slide-active .step-counter-large {
    border: 1px solid #8C3400;
  }
}
.step-card .step-counter-block {
  position: relative;
}
.step-card .step-counter-block .line-dashed {
  position: absolute;
  content: "";
  background-image: linear-gradient(90deg, #8C3400 50%, transparent 50%);
  height: 1px;
  background-size: 2rem;
  width: calc(100% + 20px);
  top: 50%;
  left: 1.5rem;
}
@media (max-width: 520px) {
  .step-card .step-counter-block .line-dashed {
    width: calc(100% + 40px);
  }
}
.step-card .step-counter-block .step-counter-large {
  position: relative;
  z-index: 1;
}
.step-card .step-card-title-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-right: 1.25rem;
}
.step-card .step-card-title-block .step-card-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .step-card .step-card-title-block .step-card-title {
    font-size: 1.75rem;
  }
}
.step-card .step-card-title-block .step-card-text {
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
  color: #A7A7A7;
}

.step-counter-large {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  height: 3.5rem;
  width: 3.5rem;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #8C3400;
  border-radius: 0.5rem;
  border: 1px solid #E9E9E9;
}
.step-counter-large.br-accent {
  border: 1px solid #8C3400;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: auto;
}
.news-card .news-card-img {
  aspect-ratio: 15/11;
  border-radius: 0.5rem;
  height: 13.75rem;
}
@media (max-width: 768px) {
  .news-card .news-card-img {
    aspect-ratio: 3/2;
    height: 16.75rem;
  }
}
.news-card .news-card-img img {
  aspect-ratio: 15/11;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .news-card .news-card-img img {
    aspect-ratio: 3/2;
  }
}
.news-card .news-card-title-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 1.25rem;
  height: 100%;
}
.news-card .news-card-title-block .news-card-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .news-card .news-card-title-block .news-card-title {
    font-size: 1.75rem;
  }
}
.news-card .news-card-title-block .news-card-date {
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}

.news-card-alt {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
}
.news-card-alt .news-card-alt-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.news-card-alt .news-card-alt-info-block .news-card-alt-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
  color: #8C3400;
}
@media (max-width: 768px) {
  .news-card-alt .news-card-alt-info-block .news-card-alt-title {
    font-size: var(--tbtn);
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.03em;
  }
}
.news-card-alt .news-card-alt-info-block .news-card-alt-date {
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
.news-card-alt .news-card-alt-img {
  width: 12.5rem;
  height: 7.5rem;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .news-card-alt .news-card-alt-img {
    display: none;
  }
}
.news-card-alt .news-card-alt-img img {
  width: 12.5rem;
  height: 7.5rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border: 1px solid #E9E9E9;
  border-radius: 0.5rem;
  height: auto;
  background-color: #FFFFFF;
}
.testimonial-card .testimonial-card-name-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .testimonial-card .testimonial-card-name-block {
    gap: 1.25rem;
  }
}
.testimonial-card .testimonial-card-name-block .testimonial-card-img {
  height: 4rem;
  width: 4rem;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .testimonial-card .testimonial-card-name-block .testimonial-card-img {
    height: 4rem;
    width: 4rem;
  }
}
.testimonial-card .testimonial-card-name-block .testimonial-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.testimonial-card .testimonial-card-name-block .testimonial-card-name {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .testimonial-card .testimonial-card-name-block .testimonial-card-name {
    font-size: 1.75rem;
  }
}
.testimonial-card .testimonial-card-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
  height: 100%;
}
.testimonial-card .testimonial-card-info-block .testimonial-card-text {
  height: 100%;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .category-card {
    gap: 1rem;
  }
}
.category-card .category-card-img {
  aspect-ratio: 1/1;
  border: 1px solid #E9E9E9;
  border-radius: 0.5rem;
}
.category-card .category-card-img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.category-card .category-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}

.material-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 520px) {
  .material-card {
    grid-template-columns: minmax(0, 1fr);
  }
}
.material-card .material-card-img {
  margin-right: 2.25rem;
  height: 18.75rem;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .material-card .material-card-img {
    border-radius: 0.5rem;
  }
}
.material-card .material-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .material-card .material-card-img img {
    border-radius: 0.5rem;
  }
}
.material-card .material-card-info-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.material-card .material-card-info-block .material-card-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .material-card .material-card-info-block .material-card-title {
    font-size: 1.75rem;
  }
}
.material-card .material-card-info-block .material-card-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
.material-card .material-card-info-block .material-card-info ul {
  list-style: outside;
  margin-left: 2rem;
}
.material-card .material-card-info-block .material-card-btn {
  margin-left: -1rem;
}

.promo-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .promo-card {
    gap: 1rem;
  }
}
.promo-card .promo-card-img {
  border: 1px solid #E9E9E9;
  border-radius: 0.375rem;
  aspect-ratio: 1/1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .promo-card .promo-card-img {
    border-radius: 0.5rem;
  }
}
.promo-card .promo-card-img img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .promo-card .promo-card-img img {
    border-radius: 0.5rem;
  }
}
.promo-card .promo-card-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .promo-card .promo-card-info-block {
    gap: 0.5rem;
  }
}
.promo-card .promo-card-info-block .promo-card-title {
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
.promo-card .promo-card-info-block .promo-card-text {
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}

.promo-bann {
  width: 100%;
}
.promo-bann img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-img-card {
  position: relative;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .gallery-img-card img {
    border-radius: 0.5rem;
  }
}
.gallery-img-card svg {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.25rem;
  height: 2.25rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .gallery-img-card svg {
    width: 2rem;
    height: 2rem;
  }
}
.gallery-img-card::after {
  display: none;
  z-index: 1;
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #242424;
  opacity: 0.6;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  .gallery-img-card::after {
    border-radius: 0.5rem;
  }
}
.gallery-img-card:hover::after {
  display: block;
}
.gallery-img-card:hover svg {
  z-index: 5;
  display: block;
}

.filter-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  grid-column: 1;
  grid-row: span 3;
}
@media (max-width: 768px) {
  .filter-block {
    grid-column: span 2;
    grid-row: 1;
    gap: 1.5rem;
  }
}
.filter-block .link-download {
  padding-top: 0;
}
.filter-block .tags-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.filter-block .tags-block .button {
  width: 100%;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .filter-block .desktop-filters {
    display: none;
  }
}
.filter-block .desktop-filters ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-block .desktop-filters ul label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-block .desktop-filters ul span {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
.filter-block .mobile-filters {
  display: none;
}
@media (max-width: 768px) {
  .filter-block .mobile-filters {
    display: block;
    width: 100%;
  }
}
.filter-block .mobile-filters ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
}
.filter-block .mobile-filters ul .button {
  background-color: #FFFFFF;
  border: 1px solid #E9E9E9;
  color: #242424;
}
.filter-block .mobile-filters ul .button.active {
  background-color: #F4EBE6;
  color: #8C3400;
  border: 1px solid #F4EBE6;
}
.filter-block .button.ghost {
  width: max-content;
  margin-left: -1rem;
}
@media (max-width: 768px) {
  .filter-block .button.ghost {
    display: none;
  }
}
.filter-block .nav-info-list-filter {
  display: none;
}
@media (max-width: 768px) {
  .filter-block .nav-info-list-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.filter-block .nav-info-list-filter a {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
.filter-block .nav-info-list-filter a.current {
  color: #8C3400;
}
.filter-block .nav-info-list-filter .button {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  color: #8C3400;
}
.filter-block .nav-info-list-filter .button:hover {
  color: #242424;
}

.pagination-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 2/span 3;
  margin-top: 2.75rem;
}
@media (max-width: 768px) {
  .pagination-block {
    grid-column: span 2;
    margin-top: 1.5rem;
  }
}
.pagination-block .pagination-nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination-block .pagination-nav ul li {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
}
.pagination-block .pagination-nav ul li.current-page a {
  color: #8C3400;
  opacity: 1;
}
@media (max-width: 520px) {
  .pagination-block .pagination-nav ul li.mobile-non {
    display: none;
  }
}
.pagination-block .pagination-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  padding: 0;
  color: #242424;
}

.category-popup {
  position: fixed;
  bottom: -100%;
  width: calc(100% - 3rem);
  height: 34.83rem;
  padding: 1.5rem 1.5rem 0 1.5rem;
  height: 50dvh;
  overflow-y: auto;
  background-color: #FFFFFF;
  z-index: 10;
  transition: bottom 0.5s ease-in;
}
.category-popup.show {
  bottom: 0;
}
.category-popup::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 100px;
}
.category-popup::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}
.category-popup::-webkit-scrollbar-thumb {
  background-color: #E9E9E9;
  border-radius: 100px;
}
.category-popup__category-block {
  display: flex;
  flex-direction: column;
  gap: 1.67rem;
}
.category-popup__category-block li {
  color: #A7A7A7;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
.category-popup__category-block hr {
  border: 0;
  border-top: 1px solid #E9E9E9;
}
.category-popup__category-block hr:last-of-type {
  display: none;
}
.category-popup__cta {
  position: absolute;
  top: 0.5rem;
  left: 0;
  height: 1.33rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-popup__cta::after {
  content: "";
  display: flex;
  height: 0.5rem;
  width: 4rem;
  background-color: #E9E9E9;
  border-radius: 100px;
}

.title-section.h1 .title-container {
  row-gap: 1rem;
}
.title-section.h1 .title {
  font-size: var(--h1);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  grid-column: span 3;
}
.title-section.h2 .title-container {
  row-gap: 1rem;
}
.title-section.h2 .title {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  grid-column: span 2;
}
.title-section.h2 .title.span-4 {
  grid-column: span 4;
}
.title-section .title-container.gc-2s2 .breadcrumbs {
  grid-column: 2/span 2;
}
@media (max-width: 768px) {
  .title-section .title-container.gc-2s2 .breadcrumbs {
    grid-column: span 2;
  }
}
.title-section .title-container.gc-2s2 .title-block {
  grid-column: 2/span 2;
}
.title-section .title-container.gc-2s2 .title-block .title {
  grid-column: span 4;
}
@media (max-width: 768px) {
  .title-section .title-container.gc-2s2 .title-block {
    grid-column: span 2;
  }
}
.title-section .title-container .title-block {
  grid-column: span 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .title-section .title-container .title-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 320px) {
  .title-section .title-container .title-block {
    word-break: break-all;
    text-wrap: wrap;
  }
}
.title-section .title-container .title-block .title-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 4;
}
@media (max-width: 520px) {
  .title-section .title-container .title-block .title-btn {
    display: none;
  }
}
.title-section .title-container .title-block .leave-review-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: -1rem;
}
@media (max-width: 768px) {
  .title-section .title-container .title-block .leave-review-btn {
    justify-content: flex-start;
    margin-right: 0;
    margin-left: -1rem;
  }
}
.title-section .title-container .title-block .nav-info-list-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}
.title-section .title-container .title-block .nav-info-list-filter__link-to-pdf .button {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  color: #8C3400;
}
.title-section .title-container .title-block .nav-info-list-filter__link-to-pdf .button:hover {
  color: #242424;
}
@media (max-width: 768px) {
  .title-section .title-container .title-block .nav-info-list-filter {
    display: none;
  }
}
.title-section .title-container .title-block .nav-info-list-filter a {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
.title-section .title-container .title-block .nav-info-list-filter a.current {
  color: #8C3400;
}

.watch-all-mobile {
  display: none;
}
@media (max-width: 520px) {
  .watch-all-mobile {
    width: 100%;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

section .call-back-form-section .call-back-form-container {
  position: relative;
  margin: 0 17rem;
  padding: 3rem;
  border-radius: 0.5rem;
  background-color: #8C3400;
}
@media (max-width: 768px) {
  section .call-back-form-section .call-back-form-container {
    padding: 1.5rem 1.5rem 3rem;
    margin: 0;
    margin-top: 12.5833333333rem;
  }
}
@media (max-width: 520px) {
  section .call-back-form-section .call-back-form-container {
    margin-top: 9rem;
  }
}
section .call-back-form-section .call-back-form-container .call-back-form-title {
  grid-column: span 2;
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
section .call-back-form-section .call-back-form-container .call-back-form-decorate-img {
  position: absolute;
  left: -6.25rem;
  height: 100%;
}
@media (max-width: 768px) {
  section .call-back-form-section .call-back-form-container .call-back-form-decorate-img {
    height: 12rem;
    width: 100%;
    left: 0;
    top: -10rem;
  }
}
@media (max-width: 520px) {
  section .call-back-form-section .call-back-form-container .call-back-form-decorate-img {
    top: -8rem;
  }
}
section .call-back-form-section .call-back-form-container .call-back-form-decorate-img img {
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  section .call-back-form-section .call-back-form-container .call-back-form-decorate-img img {
    display: none;
  }
}
section .call-back-form-section .call-back-form-container .call-back-form-decorate-img img.mobile {
  display: none;
}
@media (max-width: 768px) {
  section .call-back-form-section .call-back-form-container .call-back-form-decorate-img img.mobile {
    display: block;
    width: 100%;
    height: 12.5833333333rem;
    object-fit: fill;
  }
}
section .call-back-form-section .call-back-form-container .call-back-form-block {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  row-gap: 1.5rem !important;
}
@media (max-width: 768px) {
  section .call-back-form-section .call-back-form-container .call-back-form-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
section .call-back-form-section .call-back-form-container .call-back-form-block .input-block.textarea {
  grid-column: span 2;
}
section .call-back-form-section .call-back-form-container .call-back-form-block textarea {
  width: calc(100% - 2rem - 2px);
  height: 8rem;
}
section .call-back-form-section .call-back-form-container .call-back-form-block .btn-send-block {
  display: flex;
  align-items: center;
  gap: 5.75rem;
  grid-column: span 2;
}
@media (max-width: 768px) {
  section .call-back-form-section .call-back-form-container .call-back-form-block .btn-send-block {
    gap: 3rem;
    flex-direction: column;
    text-align: center;
  }
}
section .call-back-form-section .call-back-form-container .call-back-form-block .btn-send-block .agree-policy {
  color: #D1AE99;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
section .call-back-form-section .call-back-form-container .call-back-form-block .btn-send-block.accent .button {
  background-color: #E8D6CC;
}
section .call-back-form-section .call-back-form-container .call-back-form-block .btn-send-block.accent .button:hover {
  background-color: #FFFFFF;
}

.pagination-section .pagination-container .pagination-block {
  grid-column: span 4;
  margin-top: 0;
}

section .product-section .product-container .product-img-sliders-block {
  grid-column: span 2;
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders {
  display: grid;
  grid-template-columns: 6.875rem 28.75rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  section .product-section .product-container .product-img-sliders-block .product-img-sliders {
    display: flex;
    flex-direction: column-reverse;
  }
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .tumbler {
  height: 22.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  section .product-section .product-container .product-img-sliders-block .product-img-sliders .tumbler {
    height: 6rem;
    width: 28.75rem;
    margin: 0 auto;
  }
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-sub-slider {
  height: 22.5rem;
}
@media (max-width: 768px) {
  section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-sub-slider {
    height: 6rem;
  }
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-sub-slider .product-img {
  max-height: 6.875rem;
  max-width: 6.875rem;
}
@media (max-width: 768px) {
  section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-sub-slider .product-img {
    max-height: 6rem;
    max-width: 6rem;
  }
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-sub-slider .product-img .img {
  border-radius: 0.5rem;
  border: 1px solid #E9E9E9;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-sub-slider .product-img .img img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-main-slider {
  height: 28.75rem;
  aspect-ratio: 1/1;
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-main-slider .img {
  aspect-ratio: 1/1;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border: 1px solid #E9E9E9;
  border-radius: 0.5rem;
}
section .product-section .product-container .product-img-sliders-block .product-img-sliders .product-main-slider .img img {
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section .product-section .product-container .product-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  grid-column: span 2;
}
section .product-section .product-container .product-info-block.service .product-price-block {
  padding-right: 11rem;
  align-items: center;
}
@media (max-width: 768px) {
  section .product-section .product-container .product-info-block.service .product-price-block {
    padding-right: 0;
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  section .product-section .product-container .product-info-block.service {
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 768px) {
  section .product-section .product-container .product-info-block {
    margin-top: 1.5rem;
  }
}
section .product-section .product-container .product-info-block .product-key-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section .product-section .product-container .product-info-block .product-key-info .product-inputs-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
section .product-section .product-container .product-info-block .product-key-info .product-inputs-block .input-block {
  overflow: visible;
}
section .product-section .product-container .product-info-block .product-key-info .product-inputs-block .input-block:nth-child(1) {
  order: 2;
}
section .product-section .product-container .product-info-block .product-key-info .button.ghost {
  color: #A7A7A7;
  padding: 0.5rem 0;
  width: max-content;
}
section .product-section .product-container .product-info-block .product-key-info .button.ghost:hover {
  color: #242424;
}
section .product-section .product-container .product-info-block .product-key-info .product-price-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.125rem;
}
section .product-section .product-container .product-info-block .product-key-info .product-price-block .product-price-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section .product-section .product-container .product-info-block .product-key-info .product-price-block .product-price-info .product-price {
  color: #8C3400;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
section .product-section .product-container .product-info-block .product-key-info .product-price-block .product-price-info .product-sub-price {
  color: #A7A7A7;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
section .product-section .product-container .product-info-block .product-key-info .product-price-block .product-price__new-price {
  color: #8C3400;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-decoration: line-through;
}
section .product-section .product-container .product-info-block .product-key-info .product-price-block .product-btn {
  display: flex;
  justify-content: flex-end;
}
section .product-section .product-container .product-info-block .product-sub-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
section .product-section .product-container .product-info-block .product-sub-info .product-sub-info-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
section .product-section .product-container .product-info-block .product-sub-info .product-sub-info-block .product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
section .product-section .product-container .product-info-block .product-sub-info .product-sub-info-block .product-info.left {
  opacity: 0.4;
}
section .product-section .product-container .product-sub-text {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
section .product-section .product-container .product-sub-text ul {
  list-style: outside;
  margin-left: 2rem;
}
section .product-section .product-container .product-sub-text a {
  color: #8C3400;
}

.cookie-notification {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.5rem;
  border-radius: 0.5rem;
  max-width: 25rem;
  border: 1px solid #E9E9E9;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 49;
  background-color: #FFFFFF;
  display: none;
}
@media (max-width: 768px) {
  .cookie-notification {
    bottom: 0;
    right: 0;
    width: calc(100vw - 3rem);
    max-width: none;
    border-radius: 0;
    border: none;
    border-top: 1px solid #E9E9E9;
  }
}
.cookie-notification .cookie-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cookie-notification .cookie-header {
    gap: 1.25rem;
  }
}
.cookie-notification .cookie-header .cookie-header-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}
.cookie-notification .cookie-header .cookie-header-block span {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .cookie-notification .cookie-header .cookie-header-block span {
    font-size: 1.75rem;
  }
}
.cookie-notification .cookie-header .cookie-header-block .warning__deny {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 768px) {
  .cookie-notification .cookie-header .cookie-header-block .warning__deny {
    width: 2rem;
    height: 2rem;
  }
}
.cookie-notification .cookie-header .cookie-header-block .warning__deny svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 768px) {
  .cookie-notification .cookie-header .cookie-header-block .warning__deny svg {
    width: 2rem;
    height: 2rem;
  }
}
.cookie-notification .cookie-header .cookie-header-info {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  color: #A7A7A7;
}
.cookie-notification .button {
  width: max-content;
}

header {
  background-color: #FFFFFF;
}
header .header-section {
  background-color: #FFFFFF;
  position: fixed;
  top: -1px;
  z-index: 49;
  width: 100%;
}
header .header-section .active-page {
  color: #8C3400 !important;
}
header .header-section .active-page svg path {
  stroke: #8C3400 !important;
}
header .header-section .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}
@media (max-width: 7681px) {
  header .header-section .header-container {
    max-width: 1921px;
    margin: 0 auto;
  }
}
@media (max-width: 1920px) {
  header .header-section .header-container {
    max-width: none;
    margin: 0 20rem;
  }
}
@media (max-width: 768px) {
  header .header-section .header-container {
    margin: 0;
    padding: 1rem 1.5rem;
  }
}
header .header-section .header-container .header-logo-nav-block {
  display: flex;
  align-items: center;
  gap: 4rem;
}
header .header-section .header-container .header-logo-nav-block .header-logo-icon {
  width: 12.5rem;
  height: 2.625rem;
}
header .header-section .header-container .header-logo-nav-block .header-logo-icon img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  header .header-section .header-container .header-logo-nav-block nav {
    display: none;
  }
}
header .header-section .header-container .header-logo-nav-block nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
header .header-section .header-container .header-logo-nav-block nav ul li.current-page a {
  color: #8C3400;
}
header .header-section .header-container .header-logo-nav-block nav ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
header .header-section .header-container .header-logo-nav-block nav ul li a svg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1rem;
  height: 1rem;
}
header .header-section .header-container .header-logo-nav-block nav ul li a svg path {
  stroke: #242424;
}
@media (max-width: 768px) {
  header .header-section .header-container .button {
    display: none;
  }
}
header .header-section .header-container .mobile-btn-block {
  display: none;
}
@media (max-width: 768px) {
  header .header-section .header-container .mobile-btn-block {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
header .header-section .header-container .mobile-btn-block button {
  width: 2rem;
  height: 2rem;
}
header .header-section .header-container .mobile-btn-block button svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
header .header-add {
  margin-top: 5.06rem;
  padding: 1.25rem 0;
  background-color: #8C3400;
}
@media (max-width: 768px) {
  header .header-add {
    padding: 1rem 0;
    margin-top: 4.625rem;
  }
}
@media (max-width: 768px) {
  header .header-add .nav-info-list {
    display: none;
  }
}
@media (max-width: 7681px) {
  header .header-add .header-add-container {
    max-width: 1921px;
    margin: 0 auto;
  }
}
@media (max-width: 1920px) {
  header .header-add .header-add-container {
    max-width: none;
    margin: 0 20rem;
  }
}
@media (max-width: 768px) {
  header .header-add .header-add-container {
    margin: 0;
    padding: 0 1.5rem;
  }
}
header .header-add .header-add-container nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  header .header-add .header-add-container nav {
    display: block;
  }
}
header .header-add .header-add-container nav li {
  list-style: none;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
header .header-add .header-add-container nav li a {
  text-wrap: nowrap;
  color: #FFFFFF;
}
header .header-add .header-add-container nav li svg path {
  stroke: #fff;
}
header .header-add .header-add-container nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  overflow-x: auto;
  width: 100%;
}
header .header-add .header-add-container nav ul::-webkit-scrollbar {
  height: 0.288rem;
  width: 0.5rem;
}
header .header-add .header-add-container nav ul::-webkit-scrollbar-track {
  background-color: #FFFFFF;
  border-radius: 100px;
  margin: 1rem 0;
}
header .header-add .header-add-container nav ul::-webkit-scrollbar-thumb {
  background-color: rgba(233, 233, 233, 0.3019607843);
  border-radius: 100px;
}
header .header-add .header-add-container nav ul li a {
  text-wrap: nowrap;
  color: #FFFFFF;
}
header .header-add .header-add-container nav .phone {
  color: white;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  header .header-add .header-add-container nav .phone {
    display: none;
  }
}
header .header-add .header-add-container .category-button-mobile {
  display: none;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  header .header-add .header-add-container .category-button-mobile {
    display: flex;
  }
}

.inset {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
}
.inset.show {
  display: block;
  background-color: #000;
  opacity: 0.4;
}
.inset.show html {
  overflow: hidden;
}

footer {
  background-color: #8C3400;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  footer {
    padding: 3rem 0;
  }
}
@media (max-width: 7681px) {
  footer .footer-container {
    max-width: 1921px;
    margin: 0 auto;
  }
}
@media (max-width: 1920px) {
  footer .footer-container {
    max-width: none;
    margin: 0 20rem;
  }
}
@media (max-width: 768px) {
  footer .footer-container {
    margin: 0 1.5rem;
  }
}
@media (max-width: 520px) {
  footer .footer-container {
    row-gap: 5rem !important;
  }
}
footer .footer-social-info-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
}
@media (max-width: 768px) {
  footer .footer-social-info-block {
    gap: 3rem;
  }
}
footer .footer-social-info-block .footer-address-text {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  padding-right: 16rem;
}
@media (max-width: 768px) {
  footer .footer-social-info-block .footer-address-text {
    padding-right: 0;
  }
}
@media (max-width: 520px) {
  footer .footer-social-info-block .footer-address-text {
    max-width: 20rem;
  }
}
footer .footer-social-info-block .footer-social-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  footer .footer-social-info-block .footer-social-block {
    gap: 1.25rem;
  }
}
@media (max-width: 520px) {
  footer .footer-nav-block {
    grid-column: span 2;
  }
}
footer .footer-nav-block ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
footer .footer-nav-block ul li a {
  color: #D1AE99;
}
@media (max-width: 768px) {
  footer .footer-nav-block ul li a {
    width: 100%;
  }
}
footer .footer-nav-block ul li.current-page a {
  color: #FFFFFF;
}
@media (max-width: 768px) {
  footer .footer-nav-block ul .nav-info-list {
    display: none;
  }
}
footer .footer-nav-block ul .nav-info-list svg path {
  stroke: #FFFFFF;
  opacity: 0.4;
}
footer .footer-nav-block ul .nav-info-list ul {
  bottom: 1rem;
}
footer .footer-nav-block ul .accordion-item {
  display: none;
}
@media (max-width: 768px) {
  footer .footer-nav-block ul .accordion-item {
    display: flex;
    flex-direction: column;
  }
}
footer .footer-nav-block ul .accordion-item .accordion-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-nav-block ul .accordion-item .accordion-header svg {
  transition: all 0.3s ease-out;
}
footer .footer-nav-block ul .accordion-item .accordion-header svg path {
  stroke: #D1AE99;
  stroke-width: 1px;
}
footer .footer-nav-block ul .accordion-item .accordion-header.show {
  color: #FFFFFF;
}
footer .footer-nav-block ul .accordion-item .accordion-header.show path {
  stroke: #FFFFFF;
}
footer .footer-nav-block ul .accordion-item .accordion-header.show svg {
  transform: rotate(180deg);
}
footer .footer-nav-block ul .accordion-item .accordion-body {
  pointer-events: all;
}
footer .footer-nav-block ul .accordion-item .accordion-body li:first-of-type {
  padding-top: 1rem;
}
footer .footer-privacy-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 520px) {
  footer .footer-privacy-block {
    grid-column: span 2;
  }
}
footer .footer-privacy-block .footer-privacy-policy-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
footer .footer-privacy-block .footer-privacy-policy-info ul li a {
  color: #D1AE99;
}
footer .footer-privacy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer-privacy-contact-info a {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  footer .footer-privacy-contact-info a {
    font-size: 1.75rem;
  }
}
footer .footer-privacy-contact-info.mobile {
  display: none;
}
@media (max-width: 768px) {
  footer .footer-privacy-contact-info {
    display: none;
  }
  footer .footer-privacy-contact-info.mobile {
    display: flex;
  }
}

@media (max-width: 7681px) {
  section {
    max-width: 1920px;
    margin: 0 auto;
  }
}
@media (max-width: 320px) {
  section {
    overflow: hidden;
  }
}
section .main-hero-section .main-hero-container {
  position: relative;
  margin-top: 2.25rem;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  section .main-hero-section .main-hero-container {
    margin: 3rem 0 0;
  }
}
section .main-hero-section .main-hero-container .main-hero-title-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  section .main-hero-section .main-hero-container .main-hero-title-block {
    grid-row: 2;
    grid-column: span 2;
    align-items: center;
  }
}
section .main-hero-section .main-hero-container .main-hero-title-block .main-hero-title {
  position: absolute;
  max-width: 30rem;
  top: 2rem;
  font-size: var(--h1);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  section .main-hero-section .main-hero-container .main-hero-title-block .main-hero-title {
    top: 0;
    left: 1.5rem;
    border-radius: 0.3rem;
  }
}
section .main-hero-section .main-hero-container .main-hero-title-block .button {
  width: max-content;
}
@media (max-width: 768px) {
  section .main-hero-section .main-hero-container .main-hero-title-block .button {
    margin-top: 1.75rem;
    margin-bottom: 2rem;
    position: absolute;
    top: 45%;
    left: 1.5rem;
  }
}
section .main-hero-section .main-hero-container .main-hero-bg {
  display: flex;
  justify-content: flex-end;
  grid-column: span 3;
  overflow: hidden;
}
@media (max-width: 768px) {
  section .main-hero-section .main-hero-container .main-hero-bg {
    padding-top: 20rem;
    justify-content: center;
  }
}
section .main-hero-section .main-hero-container .main-hero-bg img {
  width: 50rem;
  height: 36.25rem;
}
@media (max-width: 768px) {
  section .main-hero-section .main-hero-container .main-hero-bg img {
    height: 30rem;
    width: 42rem;
  }
}
section .main-work-examples-section .main-work-examples-container .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section .main-work-examples-section .main-work-examples-container .work-examples-img {
  position: relative;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  section .main-work-examples-section .main-work-examples-container .work-examples-img {
    aspect-ratio: 15/13;
  }
}
section .main-work-examples-section .main-work-examples-container .work-examples-img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  section .main-work-examples-section .main-work-examples-container .work-examples-img img {
    aspect-ratio: 15/13;
  }
}
section .main-work-examples-section__price {
  color: #8C3400;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
}
section .main-work-examples-section__name {
  color: #242424;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
section .main-faq-section .main-faq-container {
  row-gap: 1rem;
}
section .main-seo-section {
  margin-top: 7rem;
  margin-bottom: -1rem;
}
@media (max-width: 768px) {
  section .main-seo-section {
    margin-top: 6rem;
  }
}
section .main-seo-section .main-seo-container .main-seo-title {
  grid-column: span 2;
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  padding-right: 2.75rem;
}
section .main-seo-section .main-seo-container .main-seo-title h2 {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
}
section .main-seo-section .main-seo-container .main-seo-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  grid-column: span 4;
  font-size: var(--p2);
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 768px) {
  section .main-seo-section .main-seo-container .main-seo-info-block {
    grid-column: span 2;
  }
}
section .main-seo-section .main-seo-container .main-seo-info-block ul {
  list-style: inside;
}
section .catalog-local-section .catalog-local-container .catalog-local-grid {
  grid-column: 2/span 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  section .catalog-local-section .catalog-local-container .catalog-local-grid {
    margin-top: 1.5rem;
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
section .materials-section .materials-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  section .materials-section .materials-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
section .materials-section .materials-container .materials-info-block {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  grid-column: span 2;
}
@media (max-width: 768px) {
  section .materials-section .materials-container .materials-info-block {
    gap: 3rem;
    margin-top: 1.5rem;
  }
}
section .materials-section .materials-container .materials-info-block .material-card-btn {
  width: max-content;
}
section .seo-info-section .seo-info-container {
  display: grid;
}
section .seo-info-section .seo-info-container .seo-title-block {
  grid-column: 1/span 4;
  font-weight: 700;
  font-size: var(--h1);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  section .seo-info-section .seo-info-container .seo-title-block {
    font-size: 1.75rem;
    grid-column: span 2;
  }
}
section .seo-info-section .seo-info-container .seo-text-block {
  grid-column: 1/span 4;
}
section .seo-info-section .seo-info-container .seo-text-block h2 {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
section .seo-info-section .seo-info-container .seo-text-block h3 {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
section .seo-info-section .seo-info-container .seo-text-block p {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 1.25rem;
}
section .seo-info-section .seo-info-container .seo-text-block a {
  text-decoration: underline;
}
section .seo-info-section .seo-info-container .seo-text-block ul {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  margin: 1.5rem 0;
  margin-left: 2rem;
}
section .seo-info-section .seo-info-container .seo-text-block ul li {
  list-style: inside;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
section .seo-info-section .seo-info-container .seo-text-block ol {
  margin: 1.5rem 0;
  padding: 0;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  margin-left: 3.5rem;
}
section .seo-info-section .seo-info-container .seo-text-block ol li {
  list-style: decimal;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
section .seo-info-section .seo-info-container .seo-text-block a {
  color: #8C3400;
}
@media (max-width: 768px) {
  section .seo-info-section .seo-info-container .seo-text-block {
    gap: 1.5rem;
    grid-column: span 2;
  }
}
section .about-banner-section .about-banner-container .about-banner-img {
  grid-column: span 4;
  border-radius: 0.375rem;
  height: 30.625rem;
}
@media (max-width: 768px) {
  section .about-banner-section .about-banner-container .about-banner-img {
    border-radius: 0.5rem;
    grid-column: span 2;
  }
}
@media (max-width: 520px) {
  section .about-banner-section .about-banner-container .about-banner-img {
    height: auto;
    aspect-ratio: 17/12;
  }
}
section .about-banner-section .about-banner-container .about-banner-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 0.375rem;
}
@media (max-width: 768px) {
  section .about-banner-section .about-banner-container .about-banner-img img {
    border-radius: 0.5rem;
  }
}
section .about-banner-section .about-banner-container .about-banner-title {
  grid-column: span 4;
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  padding-top: 2.75rem;
  padding-bottom: 1.75rem;
}
@media (max-width: 768px) {
  section .about-banner-section .about-banner-container .about-banner-title {
    grid-column: span 2;
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
  }
}
section .about-banner-section .about-banner-container .about-banner-info {
  grid-column: span 2;
  padding-right: 2.75rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 520px) {
  section .about-banner-section .about-banner-container .about-banner-info {
    padding-right: 0;
  }
}
section .about-border-section .about-border-container .about-border-custom {
  grid-column: span 4;
  height: 0.125rem;
  background-image: linear-gradient(90deg, transparent, transparent 50%, #fff 50%, #fff 100%), linear-gradient(90deg, #8C3400, #8C3400);
  background-size: 3rem 3px, 100% 3px;
}
@media (max-width: 768px) {
  section .about-border-section .about-border-container .about-border-custom {
    margin-top: 2rem;
  }
}
section .about-points-section .about-points-container {
  row-gap: 1.5rem;
}
@media (max-width: 768px) {
  section .about-points-section .about-points-container {
    margin-top: 5rem;
    display: flex;
    width: calc(100% - 3rem);
    overflow-x: scroll;
  }
}
section .about-points-section .about-points-container .about-points-card {
  display: flex;
  gap: 1.25rem;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  padding-right: 0.813rem;
}
section .about-points-section .about-points-container .about-points-card svg {
  width: 2rem;
  height: 2rem;
}
section .about-points-section .about-points-container .about-points-card span {
  width: 18.333rem;
}
@media (max-width: 768px) {
  section .about-points-section .about-points-container .about-points-card {
    max-width: 22rem;
    width: 100%;
    gap: 1.5rem;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  section .about-images-section .about-images-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 2rem;
  }
}
section .about-images-section .about-images-container .about-images-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  grid-column: span 2;
  margin-right: 2.75rem;
}
@media (max-width: 768px) {
  section .about-images-section .about-images-container .about-images-block {
    display: flex;
    flex-direction: column;
    margin-right: 0;
    gap: 2rem;
  }
}
section .about-images-section .about-images-container .about-images-block .about-image {
  width: 17.75rem;
  height: 17.75rem;
}
@media (max-width: 768px) {
  section .about-images-section .about-images-container .about-images-block .about-image {
    width: 100%;
  }
}
section .about-images-section .about-images-container .about-images-block .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}
section .about-images-section .about-images-container .about-images-block .about-image.second {
  margin-top: 8.75rem;
}
@media (max-width: 768px) {
  section .about-images-section .about-images-container .about-images-block .about-image.second {
    margin-top: 0rem;
  }
}
section .about-images-section .about-images-container .about-images-block .about-image.third {
  grid-column: span 2;
  margin-left: 8.125rem;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  section .about-images-section .about-images-container .about-images-block .about-image.third {
    margin-top: 0;
    margin-left: 0rem;
  }
}
section .about-images-section .about-images-container .about-images-info {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 4.5rem;
  padding-top: 8.75rem;
}
@media (max-width: 768px) {
  section .about-images-section .about-images-container .about-images-info {
    padding-top: 0;
  }
}
@media (max-width: 520px) {
  section .about-images-section .about-images-container .about-images-info {
    padding-right: 0;
  }
}
section .about-images-section .about-images-container .about-images-info .about-images-info-sub-title {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  color: #8C3400;
}
section .about-images-section .about-images-container .about-images-info .about-images-info-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  section .about-images-section .about-images-container .about-images-info .about-images-info-title {
    font-size: 1.75rem;
  }
}
section .about-images-section .about-images-container .about-images-info .about-images-info-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  padding-top: 1.5rem;
}
section .about-images-section .about-images-container .about-images-info .about-images-info-text ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section .about-images-section .about-images-container .about-images-info .about-images-info-text ul li {
  display: flex;
  align-items: center;
}
section .about-images-section .about-images-container .about-images-info .about-images-info-text ul li .dot {
  border-radius: 50%;
  content: "";
  width: 0.325rem;
  height: 0.325rem;
  margin: 0 0.5rem;
  background-color: #242424;
}
section .about-images-section .about-images-container .about-images-info .about-images-info-sub-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  padding-bottom: 1.5rem;
}
section .about-invite-section .about-invite-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  section .about-invite-section .about-invite-container {
    padding: 8rem 0;
  }
}
section .about-invite-section .about-invite-container .about-invite-title {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
}
section .about-invite-section .about-invite-container .about-invite-info-block {
  display: flex;
  align-items: center;
}
section .about-invite-section .about-invite-container .about-invite-info-block a {
  color: #8C3400;
  font-size: var(--tbtn);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03em;
  padding-right: 3rem;
}
@media (max-width: 320px) {
  section .about-invite-section .about-invite-container .about-invite-info-block a {
    padding-right: 0.5rem;
  }
}
section .gallery-section .gallery-container .gallery-grid {
  grid-column: 2/span 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  section .gallery-section .gallery-container .gallery-grid {
    margin-top: 1.5rem;
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  section .reviews-section .reviews-container {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  section .faq-section .faq-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
section .faq-section .faq-container .faq-grid {
  grid-column: 2/span 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  section .faq-section .faq-container .faq-grid {
    margin-top: 1.5rem;
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
section .articles-section .articles-container .articles-grid {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 768px) {
  section .articles-section .articles-container .articles-grid {
    margin-top: 1.5rem;
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
section .article-local-section .article-local-container .article-local-info-block {
  grid-column: 2/span 2;
  display: flex;
  flex-direction: column;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 768px) {
  section .article-local-section .article-local-container .article-local-info-block {
    grid-column: span 2;
  }
}
section .article-local-section .article-local-container .article-local-info-block .article-local-banner {
  aspect-ratio: 9/5;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  section .article-local-section .article-local-container .article-local-info-block .article-local-banner {
    aspect-ratio: 17/12;
  }
}
section .article-local-section .article-local-container .article-local-info-block .article-local-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
section .article-local-section .article-local-container .article-local-info-block p {
  margin-top: 1.5rem;
}
section .article-local-section .article-local-container .article-local-info-block h2 {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  section .article-local-section .article-local-container .article-local-info-block h2 {
    font-size: 1.75rem;
  }
}
section .article-local-section .article-local-container .article-local-info-block ul {
  margin-top: 1rem;
  list-style: outside;
  margin-left: 2rem;
}
section .article-local-section .article-local-container .article-local-info-block a {
  color: #8C3400;
}
section .other-articles-section .other-articles-container .other-articles-info-block {
  grid-column: 2/span 2;
}
@media (max-width: 768px) {
  section .other-articles-section .other-articles-container .other-articles-info-block {
    grid-column: span 2;
  }
}
section .other-articles-section .other-articles-container .other-articles-info-block .other-articles-info-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  section .other-articles-section .other-articles-container .other-articles-info-block .other-articles-info-title {
    font-size: 1.75rem;
  }
}
section .other-articles-section .other-articles-container .other-articles-info-block .news-card-alt:nth-of-type(1) {
  border-bottom: 1px solid #E9E9E9;
}
section .other-articles-section .other-articles-container .other-articles-info-block .news-card-alt:last-of-type {
  border-top: 1px solid #E9E9E9;
}
@media (max-width: 768px) {
  section .contacts-section .contacts-container {
    row-gap: 3rem;
  }
}
section .contacts-section .contacts-container .contacts-address {
  grid-column: span 2;
  font-size: var(--h2);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
  padding-right: 15rem;
}
@media (max-width: 768px) {
  section .contacts-section .contacts-container .contacts-address {
    padding-right: 0;
    max-width: 20rem;
  }
}
section .contacts-section .contacts-container .contacts-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
section .contacts-section .contacts-container .contacts-info-block a {
  color: #8C3400;
}
@media (max-width: 768px) {
  section .contacts-section .contacts-container .contacts-info-block {
    font-size: 1.75rem;
  }
}
section .contacts-section .contacts-container .contacts-social-block {
  display: flex;
  gap: 1rem;
}
@media (max-width: 520px) {
  section .contacts-section .contacts-container .contacts-social-block {
    grid-column: span 2;
  }
}
section .contacts-section .contacts-container .contacts-social-block a {
  background-color: rgba(0, 0, 0, 0.05);
}
section .sitemap-section .sitemap-container .site-map-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
section .sitemap-section .sitemap-container .site-map-info-block .open-full-site-map-list {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
  display: flex;
  opacity: 0.2;
}
section .sitemap-section .sitemap-container .site-map-info-block.dinamic a {
  display: none;
  opacity: 0.4;
}
section .sitemap-section .sitemap-container .site-map-info-block.dinamic a:first-of-type {
  opacity: 1;
}
section .sitemap-section .sitemap-container .site-map-info-block.dinamic a:nth-child(-n+4) {
  display: block;
}
section .sitemap-section .sitemap-container .site-map-info-block.dinamic.active a {
  display: block !important;
}
@media (max-width: 768px) {
  section .sitemap-section .sitemap-container .site-map-info-block:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
}
section .privacy-policy-section .privacy-policy-container .privacy-policy-info-block {
  grid-column: 2/span 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  section .privacy-policy-section .privacy-policy-container .privacy-policy-info-block {
    grid-column: span 2;
  }
}
section .privacy-policy-section .privacy-policy-container .privacy-policy-info-block .privacy-policy-title {
  font-size: var(--subh);
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  section .privacy-policy-section .privacy-policy-container .privacy-policy-info-block .privacy-policy-title {
    font-size: 1.75rem;
  }
}
section .privacy-policy-section .privacy-policy-container .privacy-policy-info-block .privacy-policy-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
section .technical-page-section .technical-page-container {
  height: calc(100dvh - 15.833rem);
}
@media (max-width: 768px) {
  section .technical-page-section .technical-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.25rem;
  }
}
section .technical-page-section .technical-page-container .technical-page-info-block {
  max-width: 21.25rem;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
section .technical-page-section .technical-page-container .technical-page-info-block .technical-page-title {
  font-size: var(--h1);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03em;
}
section .technical-page-section .technical-page-container .technical-page-info-block .technical-page-text {
  font-size: var(--p1);
  font-weight: 400;
  line-height: 100%;
}
section .technical-page-section .technical-page-container .technical-page-info-block .button {
  width: max-content;
}
@media (max-width: 768px) {
  section .technical-page-section .technical-page-container .technical-page-info-block .button {
    display: none;
  }
}
section .technical-page-section .technical-page-container .techical-page-img-block {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  grid-column: span 2;
}
section .technical-page-section .technical-page-container .techical-page-img-block .techical-page-img {
  height: 28.75rem;
  width: 26.25rem;
}
section .technical-page-section .technical-page-container .techical-page-img-block .techical-page-img img {
  height: 28.75rem;
  width: 26.25rem;
}
section .technical-page-section .technical-page-container .button.mobile {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media (max-width: 768px) {
  section .technical-page-section .technical-page-container .button.mobile {
    display: flex;
  }
}
section .stocks-section__info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section .contacts-map {
  width: 100%;
  height: 21.875rem;
}
@media (max-width: 768px) {
  section .contacts-map {
    height: 100%;
    aspect-ratio: 34/15;
  }
}
section .link-download {
  padding-top: 3rem;
  display: flex;
  width: fit-content;
}
section .download-file-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 8.3125rem;
  width: 19.0625rem;
  border: 0.0625rem solid color-mix(in srgb, #FFFFFF 100%, #1C1917 10%);
  border-radius: 0.75rem;
}
section .download-file-button img {
  width: 2.875rem;
  height: 2.875rem;
}
section .download-file-button__text {
  padding-top: 0.375rem;
  font-weight: 700;
  color: #1C1917;
  font-size: 1rem;
}
section .download-file-button__desc {
  font-weight: 400;
  font-size: 0.75rem;
}

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