@charset "UTF-8";
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
  width: auto;
  height: auto;
  overflow: inherit;
}

.lightbox.opacity_0 {
  position: inherit;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lightbox.opacity_0 * {
  display: none;
}

.lightbox_block {
  width: 100vw;
  z-index: 1;
}

.lightbox_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-height: 90vh;
}

.lightbox_body .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox_body .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lightbox_body .swiper-slide img {
  max-height: 70vh;
  max-width: 90vw;
}

.lightbox_body .swiper-slide iframe, .lightbox_body .swiper-slide video {
  display: block;
  height: 500px;
  width: 100%;
  max-height: 70vh;
  max-width: 900px;
}

.lightbox_body .swiper-pagination {
  bottom: 5vh;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.lightbox_bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 23, 33, 0.8);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lightbox-button {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 1;
  cursor: pointer;
}

.lightbox-button:hover {
  opacity: .9;
}

.lightbox-button.swiper-button-disabled {
  display: none;
}

.lightbox-button_prev {
  -webkit-transform: scale(-1);
          transform: scale(-1);
  left: 30px;
}

.lightbox-button_next {
  right: 30px;
}

.no_scroll_lightbox {
  overflow: hidden;
}

.burger_lightbox_container {
  width: 100%;
  text-align: center;
}

.burger_lightbox_circle {
  position: fixed;
  top: 20px;
  right: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  -webkit-box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
          box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
  background: #fff;
  cursor: pointer;
}

.burger_lightbox_circle:hover .burger_lightbox {
  -webkit-transform: rotate(135deg) translate(1px, -1px);
          transform: rotate(135deg) translate(1px, -1px);
  -webkit-transition: .25s ease-in;
  transition: .25s ease-in;
}

.burger_lightbox {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger_lightbox::before, .burger_lightbox::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 30px;
  background: #000;
}

.burger_lightbox--active::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 50%;
}

.burger_lightbox--active::after {
  top: 50%;
}

@media screen and (max-width: 780px) {
  .lightbox_body .swiper-slide iframe, .lightbox_body .swiper-slide video {
    max-width: 90vw;
    height: 300px;
  }
  .lightbox-button {
    width: 45px;
    height: 45px;
  }
  .lightbox-button_next {
    right: 14px;
  }
  .lightbox-button_prev {
    left: 14px;
  }
}

#toast {
  position: fixed;
  bottom: 5px;
  right: 5px;
  max-width: 300px;
  max-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 10px;
  overflow: auto;
  z-index: 1000;
}

#toast
div {
  position: relative;
  padding: 10px 20px;
  padding-bottom: 15px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}

#toast div:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  -webkit-animation: WidthTimeOut 6s;
          animation: WidthTimeOut 6s;
}

#toast
.t-ok {
  background-color: #4caf50;
}

#toast
.t-error {
  background-color: #f44336;
}

#toast
.t-danger {
  background-color: #ff9800;
  color: #000;
}

#toast
.t-info {
  background-color: #03a9f4;
}

@-webkit-keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  70% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  70% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes infinitiOpacityTransform {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes infinitiOpacityTransform {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes widthNone {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

@keyframes widthNone {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-appearance: none;
  line-height: 130%;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on;
}

body {
  overflow-anchor: none;
  font-family: 'Montserrat', sans-serif, -apple-system, BlinkMacSystemFont;
  scroll-behavior: smooth;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on;
  color: #000;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

textarea, input, select, option {
  font-family: 'Montserrat', sans-serif, -apple-system, BlinkMacSystemFont;
  border: 2px solid #D9D9D9;
  font-size: 1rem;
  -webkit-appearance: none;
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder, select::-webkit-input-placeholder, option::-webkit-input-placeholder {
  color: #1D1D1D;
}

textarea:-ms-input-placeholder, input:-ms-input-placeholder, select:-ms-input-placeholder, option:-ms-input-placeholder {
  color: #1D1D1D;
}

textarea::-ms-input-placeholder, input::-ms-input-placeholder, select::-ms-input-placeholder, option::-ms-input-placeholder {
  color: #1D1D1D;
}

textarea::placeholder, input::placeholder, select::placeholder, option::placeholder {
  color: #1D1D1D;
}

textarea:focus, input:focus, select:focus, option:focus {
  outline: none;
  border-color: #1D1D1D;
}

textarea.error-input, input.error-input, select.error-input, option.error-input {
  border-color: #E73434;
}

[type="text"],
[type="password"],
[type="search"],
[type="email"],
[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.625rem 0.8125rem;
  border-radius: 5px;
}

select {
  background: url("../img/svg/select-arrow.svg") no-repeat right 13px center/8px 8px, #fff;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

select {
  cursor: pointer;
}

option {
  font-family: Arial, Helvetica, sans-serif;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
  text-align: left;
}

table {
  width: 100%;
  color: #1D1D1D;
  font-size: 1rem;
  background: #eaebec;
  border-collapse: separate;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px #d1d1d1;
          box-shadow: 0 1px 2px #d1d1d1;
}

th {
  font-weight: bold;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  background: #1D1D1D;
  color: #fff;
}

th:first-child {
  text-align: left;
  padding-left: 20px;
}

tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

tr {
  text-align: center;
  padding-left: 20px;
}

tr td:first-child {
  text-align: left;
  padding-left: 20px;
  border-left: 0;
}

tr td {
  padding: 10px 20px;
  border-left: 1px solid #e0e0e0;
  background: #D6D6D6;
}

tr:nth-child(even) td {
  background: #fff;
}

tr:last-child td {
  border-bottom: 0;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}

tr:hover td {
  background: #c9c9c9;
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

body {
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.lib-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .lib-modal {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.lib-modal[data-modal-open] {
  max-height: inherit;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.lib-modal[data-modal-open] .lib-modal__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .lib-modal[data-modal-open] .lib-modal__content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}

.lib-modal[data-modal-open="close"] .lib-modal__content {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .lib-modal[data-modal-open="open"] .lib-modal__content {
    -webkit-transition: none;
    transition: none;
    position: fixed;
    bottom: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lib-modal[data-modal-open="close"] .lib-modal__content {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@media screen and (min-width: 768px) {
  .lib-modal.modal-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .lib-modal.modal-right .lib-modal-close {
    top: 0;
    right: auto;
    left: calc(-46px - 10px);
  }
  .lib-modal.modal-right .lib-modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 10px;
    padding: 20px;
    height: 100%;
    max-height: calc(100vh - 20px);
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.lib-modal .lib-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 41, 69, 0.5);
  z-index: 1;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.lib-modal .lib-modal-close {
  width: 46px;
  height: 46px;
  position: absolute;
  top: calc(46px / -3);
  right: calc(46px / -3);
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(1, 41, 69, 0.5);
          box-shadow: 0 0 10px rgba(1, 41, 69, 0.5);
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal-close {
    display: none;
  }
}

.lib-modal .lib-modal-close::before, .lib-modal .lib-modal-close::after {
  content: "";
  position: absolute;
  left: 22%;
  width: 60%;
  height: 2px;
  background-color: currentColor;
  border-radius: 30px;
}

.lib-modal .lib-modal-close::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 49%;
}

.lib-modal .lib-modal-close::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 49%;
}

.lib-modal .lib-modal-close:hover {
  background-color: #fafafa;
  color: #6A7A81;
}

.lib-modal .lib-modal__content-header {
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content-header {
    padding-top: 0;
  }
}

.lib-modal .lib-modal__content-header-title {
  display: block;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content-header-title {
    font-size: 24px;
  }
}

.lib-modal .lib-modal__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 500px;
  width: 100%;
  margin: 30px;
  padding: 0 20px 40px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content {
    display: block;
    margin: 0;
    margin-top: 20px;
    max-height: 90%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.lib-modal .lib-modal__content-scroll {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lib-modal.modal-right .lib-modal__content-scroll {
  max-height: inherit;
}

@media screen and (max-width: 768px) {
  .lib-modal.modal-right .lib-modal__content-scroll {
    max-height: 70vh;
    padding-bottom: 20px;
  }
}

.lib-modal .lib-modal__container {
  max-height: inherit;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__container {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}

.lib-modal .lib-modal__content-header-line {
  display: none;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content-header-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
  }
  .lib-modal .lib-modal__content-header-line::before {
    content: "";
    display: block;
    width: 10%;
    height: 5px;
    border-radius: 10px;
    background-color: #444;
  }
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.875rem 2.25rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #706056;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.btn:hover {
  background-color: #5c4f46;
}

.btn.btn-size2 {
  padding: 0.6875rem 1.1875rem;
  font-size: 1rem;
  font-weight: bold;
}

.btn.btn-size3 {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn.btn-cart {
  padding: 0.6875rem;
  border-radius: 13px 13px 23px 13px;
}

.btn.btn-cart img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .btn.btn-cart {
    padding: 0.5625rem;
    border-radius: 11px 11px 19px 11px;
  }
  .btn.btn-cart img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.btn.btn-color2 {
  background-color: #D6D6D6;
  color: #1D1D1D;
}

.btn.btn-color2:hover {
  background-color: #cecece;
}

.btn.btn-color3 {
  background-color: #1D1D1D;
  color: #fff;
}

.btn.btn-color3:hover {
  background-color: #0b0b0b;
}

.btn.btn-color4 {
  background-color: #1D1D1D;
  color: #fff;
}

.btn.btn-color4:hover {
  background-color: #0b0b0b;
}

.btn.no-btn {
  background-color: transparent;
  color: #1D1D1D;
  text-decoration: underline;
}

.btn.no-btn:hover {
  text-decoration: none;
  color: #200F06;
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.btn-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.8125rem;
  border-radius: 100%;
  background-color: #1D1D1D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 30px rgba(29, 29, 29, 0.4), 0px 0px 30px rgba(1, 41, 69, 0);
          box-shadow: 0px 0px 30px rgba(29, 29, 29, 0.4), 0px 0px 30px rgba(1, 41, 69, 0);
}

.btn-arrow img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-arrow:hover {
  background-color: #373737;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 30px rgba(1, 41, 69, 0), 0px 0px 30px rgba(29, 29, 29, 0.4);
          box-shadow: 0px 0px 30px rgba(1, 41, 69, 0), 0px 0px 30px rgba(29, 29, 29, 0.4);
}

@media screen and (max-width: 768px) {
  .btn-arrow {
    padding: 0.625rem;
  }
  .btn-arrow img {
    width: 1.1875rem;
    height: 1.1875rem;
  }
}

.btn-arrow.btn-arrow--white {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15), 0px 0px 16px rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15), 0px 0px 16px rgba(0, 0, 0, 0);
}

.btn-arrow.btn-arrow--white:hover {
  background-color: #f7f7f7;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0), 0px 0px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0), 0px 0px 16px rgba(0, 0, 0, 0.1);
}

.btn-arrow.btn-arrow--size2 {
  padding: 0.625rem;
}

.btn-arrow.btn-arrow--size2 img {
  width: 1.1875rem;
  height: 1.1875rem;
}

.btn-arrow.btn-arrow--size3 {
  padding: 0.4375rem;
}

.btn-arrow.btn-arrow--size3 img {
  width: 1.1875rem;
  height: 1.1875rem;
}

@media screen and (max-width: 768px) {
  .btn-arrow.btn-arrow--size3 {
    padding: 0.3125rem;
  }
  .btn-arrow.btn-arrow--size3 img {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.btn-arrow.btn-arrow--left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.btn-arrow.btn-arrow--left:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.form-label {
  display: block;
  position: relative;
  margin-bottom: 10px;
}

.form-label [type="radio"],
.form-label [type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.form-label span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
}

.form-label div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-label div span {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.form-label div:hover .form-label-checkbox, .form-label div:hover .form-label-radio {
  border-color: #a4a4a4;
}

.form-label div:hover .form-label-checkbox span, .form-label div:hover .form-label-radio span {
  border-color: #a4a4a4;
}

.form-label div:hover .form-label-radio span {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #a4a4a4;
}

.form-label .form-label-checkbox,
.form-label .form-label-radio {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
  border: 2px solid #D9D9D9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-label .form-label-checkbox span,
.form-label .form-label-radio span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0.3125rem;
  height: 0.3125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-label .form-label-checkbox span {
  width: 0.625rem;
  height: 0.4375rem;
  border-left: 2px solid rgba(255, 255, 255, 0);
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  -webkit-transform: rotate(-45deg) translateX(1px);
          transform: rotate(-45deg) translateX(1px);
}

.form-label .form-label-radio span {
  border-radius: 50%;
}

.form-label input:checked + .form-label-radio {
  border-color: #1D1D1D;
}

.form-label input:checked + .form-label-radio span {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #1D1D1D;
}

.form-label input:checked + .form-label-checkbox {
  border-color: #1D1D1D;
}

.form-label input:checked + .form-label-checkbox span {
  border-color: #1D1D1D;
}

.form-label .form-label-checkbox {
  border-radius: 5px;
}

.form-label .form-label-radio {
  border-radius: 50%;
}

.form-label label {
  display: block;
  margin-bottom: 0.125rem;
}

.form-label .error-message {
  color: #E73434;
}

label {
  cursor: pointer;
}

.input-img {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  position: relative;
}

.input-img > img, .input-img > svg {
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: to;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.input-img button {
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(28px + 13px);
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.input-img button img, .input-img button svg {
  display: inline-block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.input-img button:hover img, .input-img button:hover svg {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.input-img input {
  padding-left: 40px;
  line-height: normal;
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.swiper {
  overflow: hidden;
}

.swiper-pagination {
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper-pagination .swiper-pagination-bullet {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 3px;
}

.swiper-slide__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  background-color: #D6D6D6;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #706056;
}

.swiper-slide .text-color-default div, .swiper-slide .text-color-default p {
  color: #1D1D1D !important;
}

.swiper-slide .text-white div, .swiper-slide .text-white p {
  color: #fff !important;
}

.swiper-btn-prev {
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .swiper-btn-prev {
    left: 6px;
  }
}

.swiper-btn-next {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .swiper-btn-next {
    right: 6px;
  }
}

.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

/*
<!-- Слайдер -->
<div class="swiper-big" style="overflow-x: hidden; max-width: 600px;">
	<div class="swiper-wrapper">
		<a href="#" class="swiper-slide text-white">
			<div class="swiper-slide__img">
				<img src="/wp-content/uploads/2023/02/slider1.jpg" alt="">
			</div>
			<div class="swiper-slide__content">
				<div class="text-4xl sm:text-7xl font-bold my-2 sm:my-4">30%</div>
				<div class="text-xl sm:text-3xl my-2 sm:my-4 font-semibold">на ручки<br>при заказе дверей</div>
			</div>
		</a>
		<div class="swiper-slide text-color-default">
			<div class="swiper-slide__img">
				<img src="/wp-content/uploads/2022/11/nord-3-v-interere.jpg" alt="">
			</div>
			<div class="swiper-slide__content">
				<div class="text-2xl sm:text-4xl my-2 sm:my-4 font-semibold">Выбрать салон</div>
				<div class="swiper-slide__text my-2 sm:my-4">
					<p>Фирменные салоны дверей «Азимут»</p>
				</div>
				<div class="swiper-slide__btn my-3 sm:my-5">
					<button class="btn">Выбрать</button>
				</div>
			</div>
		</div>
		<div class="swiper-slide">
			<div class="swiper-slide__img">
				<img src="/wp-content/uploads/2023/02/bez-bank.jpg" alt="">
			</div>
		</div>
	</div>
	<div class="swiper-pagination swiper-pagination--big"></div>
	<div class="swiper-btn-prev">
		<span class="btn-arrow btn-arrow--white btn-arrow--left btn-arrow-size3">
			<img src="<?php echo get_stylesheet_directory_uri() . '/img/svg/arrow-right.svg'; ?>" alt="">
		</span>
	</div>
	<div class="swiper-btn-next">
		<span class=" btn-arrow btn-arrow--white btn-arrow-size3">
			<img src="<?php echo get_stylesheet_directory_uri() . '/img/svg/arrow-right.svg'; ?>" alt="">
		</span>
	</div>
</div>
<!-- Слайдер конец -->
*/
.swiper-big {
  position: relative;
  overflow: hidden;
}

.swiper-big .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 410px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .swiper-big .swiper-slide {
    height: 300px;
  }
}

.swiper-big .swiper-slide__content {
  position: relative;
  z-index: 1;
  padding: 40px 90px;
}

@media screen and (max-width: 768px) {
  .swiper-big .swiper-slide__content {
    padding: 30px 54px;
  }
}

.swiper-big img {
  border-radius: 10px;
}

.swiper-pagination--big .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .swiper-pagination--big .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
  }
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

/*

	<div class="product-features relative">
		<a href="#" class="product-image-hover">
			<div class="product-image-hover--images">
				<img class="product-image" src="/wp-content/uploads/2022/11/skandi1-dch_4.jpg" alt="">
				<img class="product-image product-hidden" src="/wp-content/uploads/2022/11/skandi1-dch_3.jpg"
					alt="">
				<img class="product-image product-hidden" src="/wp-content/uploads/2022/11/skandi1-dch_2.jpg"
					alt="">
			</div>
			<div class="product-image-hover--pagination">
				<div class="pagination-item pagination-item--active"></div>
				<div class="pagination-item"></div>
				<div class="pagination-item"></div>
			</div>
			<div class="product-image--pagination">
				<div class="pagination-item pagination-item--active"></div>
				<div class="pagination-item"></div>
				<div class="pagination-item"></div>
			</div>
			<span class="hit">Хит</span>
		</a>
		<div class="product-features-info">
			<a href="#">Романс</a>
			<div class="price-container">
				<div class="price">569 BYN</div>
				<div class="price-old">659 BYN</div>
			</div>
		</div>

		<button class="btn btn-cart absolute right-[-8px] bottom-[-8px]">
			<img src="<?php echo get_stylesheet_directory_uri() . '/img/svg/cart.svg'; ?>" alt="">
		</button>
	</div>

*/
.product-features {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 300px 1fr;
      grid-template-rows: 300px 1fr;
  background: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .product-features {
    -ms-grid-rows: 240px 1fr;
        grid-template-rows: 240px 1fr;
  }
}

.product-features .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-features .price {
  font-size: 16px;
  font-weight: bold;
  color: #1D1D1D;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .product-features .price {
    font-size: 14px;
  }
}

.product-features .price-old {
  font-size: 16px;
  font-weight: bold;
  color: #808080;
  text-decoration: line-through;
  margin-left: 6px;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .product-features .price-old {
    font-size: 14px;
  }
}

.product-features .product-features-info {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 1fr auto;
  gap: 5px;
  padding: 10px;
}

@media screen and (max-width: 1024px) {
  .product-features .product-features-info {
    gap: 3px;
  }
}

.product-features .product-features-info a {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #1D1D1D;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .product-features .product-features-info a {
    font-size: 16px;
  }
}

.product-features .product-features-info a:hover {
  color: #706056;
}

.product-features .btn-cart {
  position: absolute;
  right: -0.3125rem;
  bottom: -0.625rem;
}

.product-image-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
  padding-bottom: 0;
}

.product-image-hover:hover .product-image-hover--images {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.product-image-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
}

.product-image-hover img.no-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.product-image-hover .product-image {
  opacity: 1;
}

.product-image-hover .product-image.product-hidden {
  opacity: 0;
  width: 0;
  content-visibility: hidden;
  overflow: hidden;
}

.product-image-hover .product-image-hover--images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.product-image--pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  z-index: 1;
}

.product-image--pagination .pagination-item {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #706056;
  margin: 2px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product-image--pagination .pagination-item.pagination-item--active {
  background: #FE5B00;
}

.product-image-hover--pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .product-image-hover--pagination {
    display: none;
  }
}

.product-image-hover--pagination .pagination-item {
  width: 100%;
  height: 100%;
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.single-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  padding: 5px;
  padding-bottom: 10px;
  background: #FFFFFF;
  border: 2px solid #D6D6D6;
  border-radius: 10px;
}

.single-item .single-item-img {
  display: block;
  height: 180px;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.single-item .single-item-img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .single-item .single-item-img {
    height: 120px;
  }
}

.single-item .single-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-item .single-item-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
  gap: 5px;
}

.single-item .single-item-data {
  font-size: 14px;
  color: #9C9C9C;
}

.single-item .single-item-title {
  display: block;
  font-size: 16px;
  color: #1D1D1D;
  font-weight: 600;
}

.single-item .single-item-title:hover {
  opacity: .9;
}

@media screen and (max-width: 768px) {
  .single-item .single-item-title {
    font-size: 14px;
  }
}

.single-item .single-item-link {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: #706056;
  font-weight: 500;
}

.single-item .single-item-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .single-item .single-item-link {
    font-size: 13px;
  }
}

.single-item__style2,
.single-item__style3 {
  background: #D6D6D6;
  border-color: #1D1D1D;
}

.single-item__style2 .text_block p,
.single-item__style3 .text_block p {
  font-size: 14px;
  margin: 5px 0;
}

.single-item__style2 .text_block ul,
.single-item__style2 .text_block ol,
.single-item__style3 .text_block ul,
.single-item__style3 .text_block ol {
  margin: 5px 0;
}

.single-item__style2 .text_block li,
.single-item__style3 .text_block li {
  font-size: 14px;
  margin: 0;
}

.single-item__style2 .single-item-title,
.single-item__style3 .single-item-title {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .single-item__style2 .single-item-title,
  .single-item__style3 .single-item-title {
    font-size: 16px;
  }
}

.single-item__style3 {
  background: #FFF;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(90, 90, 90, 0.05);
          box-shadow: 0px 10px 40px 0px rgba(90, 90, 90, 0.05);
  border: none;
}

.single-item__style3 .single-item-img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.single-item__style3 .single-item-title {
  text-align: center;
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.accordion_block {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}

.accordion-item {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 0 4px #D6D6D6;
          box-shadow: inset 0 0 0 4px #D6D6D6;
  border: 1px solid #D6D6D6;
  overflow: hidden;
}

.accordion-item .accordion-body {
  background: #D6D6D6;
}

.accordion-item.accordion--open .accordion-title {
  background: #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  border-radius: 6px 6px 0 0;
}

.accordion-item.accordion--open .accordion-title .accordion-arrow img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-item.accordion--open .accordion-body {
  padding: 5px 20px;
  max-height: inherit;
}

.accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #D6D6D6;
  border-radius: 6px;
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-title:hover {
  color: #6a6a6a;
}

@media screen and (max-width: 768px) {
  .accordion-title {
    font-size: 16px;
    font-weight: 500;
  }
}

.accordion-text {
  padding: 16px 14px;
}

.accordion-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 53px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.accordion-arrow img {
  width: 32px;
  height: 32px;
  margin: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-body {
  overflow: hidden;
  height: 100%;
  max-height: 0;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.accordion-gallery .accordion-gallery-item {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  margin: 5px;
}

.accordion-gallery .accordion-gallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .accordion-gallery .accordion-gallery-item {
    width: 70px;
    height: 70px;
  }
}

.accordion-gallery .accordion-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.review {
  background: #D6D6D6;
  border: 1px solid #1D1D1D;
  padding: 16px;
  border-radius: 10px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .review {
    border-radius: 10px;
  }
}

.review-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .review-head {
    display: block;
  }
  .review-head .stars {
    margin-top: 10px;
  }
}

.review-head .review-head_left {
  margin-right: 10px;
}

.review-name {
  font-size: 17px;
  font-weight: bold;
}

.review-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #1D1D1D;
  margin-top: 8px;
}

.review-date img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

.review-body {
  margin-top: 16px;
  color: #1D1D1D;
}

.review-body a {
  font-size: 16px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #706F79;
}

.review-item .review-name {
  color: #1D1D1D;
}

a.review-item:hover {
  opacity: .9;
}

a.review-item:hover .review-name {
  text-decoration: underline;
}

.stars {
  display: -ms-inline-grid;
  display: inline-grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.stars .star {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 20px;
  height: 20px;
  background: url(../img/review/star2.svg) no-repeat center/contain;
}

.stars .star.active {
  background: url(../img/review/star.svg) no-repeat center/contain;
}

.grid_col-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(320px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .grid_col-3 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.grid_col-4 {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .grid_col-4 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.w-100 {
  width: 100%;
}

.small_container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .small_container {
    padding: 0 15px;
  }
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.sliders-two {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22.5rem;
      grid-template-columns: 1fr 22.5rem;
  gap: 1.25rem;
}

@media screen and (max-width: 768px) {
  .sliders-two {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

:root {
  --burger-height: 25px;
  --burger-width: 43px;
  --burger-line-height: 3px;
}

@media screen and (max-width: 768px) {
  :root {
    --burger-height: 20px;
    --burger-width: 32px;
  }
}

.category-blocks .product-features {
  width: 24%;
}

@media screen and (max-width: 1324px) {
  .category-blocks .product-features {
    width: 32%;
  }
}

@media screen and (max-width: 640px) {
  .category-blocks .product-features {
    width: 49%;
  }
}

@media screen and (max-width: 640px) {
  .category-blocks .price-container {
    display: block;
    text-align: center;
  }
  .category-blocks .price-old {
    margin: 0;
  }
}

.advantage-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .advantage-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    gap: 0;
  }
  .advantage-items .icon-text--item {
    margin-right: 20px;
    width: 70vw;
    max-width: 300px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.advantage-items.advantage-col-4 {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1363px) {
  .advantage-items.advantage-col-4 {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.advantage-items .advantage-number-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  scroll-snap-align: start;
  gap: 20px;
}

.advantage-items .advantage-number-item .icon-text--item {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .advantage-items .advantage-number-item .icon-text--item {
    width: 60vw;
  }
}

.advantage-items .advantage_num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.advantage-items .advantage_num span {
  position: absolute;
  right: 55%;
}

.article_img {
  height: 240px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
}

.hit-span {
  display: inline-block;
  padding: 5px 10px;
  background: #FE5B00;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: background 0.15s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.15s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, background 0.15s ease-in-out;
  transition: transform 0.2s ease-in-out, background 0.15s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.hit-span:hover {
  background: #e55200;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.formblock {
  position: relative;
}

.formblock > img {
  position: absolute;
  right: 0;
  top: -5%;
  height: 120%;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .formblock > img {
    display: none;
  }
}

.formblock .formblock-content {
  padding: 40px 100px;
  border-radius: 20px;
  overflow: hidden;
  background: #1D1D1D;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .formblock .formblock-content {
    padding: 40px 60px;
  }
}

@media screen and (max-width: 1024px) {
  .formblock .formblock-content {
    padding: 30px 20px;
  }
}

.formblock .formblock-content img {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  z-index: 0;
}

.formblock .block-left {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .formblock .block-left {
    max-width: initial;
    width: 100%;
  }
}

.formblock label {
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .formblock label {
    max-width: initial;
  }
}

.formblock-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.formblock-form button {
  position: absolute;
  top: 5px;
  right: 5px;
}

.formblock-form input {
  height: 53px;
}

@media screen and (max-width: 768px) {
  .formblock-form {
    display: block !important;
  }
  .formblock-form button {
    width: 100%;
    margin-top: 8px;
    position: initial;
  }
  .formblock-form input {
    height: initial;
  }
}

.product_section_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0;
}

@media screen and (max-width: 1024px) {
  .product_section_item {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .product_section_item {
    margin: 40px 0;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media screen and (max-width: 500px) {
  .product_section_item {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

#moreCategories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  #moreCategories {
    margin: 20px 0 60px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

#moreCategories a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #fff;
  padding: 0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0;
}

@media screen and (max-width: 768px) {
  .pagination {
    margin: 40px 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
  }
}

.pagination_container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 10px;
}

.pagination_container > span,
.pagination_container > a {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.pagination_container > span {
  background: #d9d9d9;
  border-radius: 2px;
}

.pagination_container > a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.pagination_container > a:hover {
  background: #d9d9d9;
}

.header-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90.66deg, #1d1d1d 0.23%, rgba(7, 10, 35, 0) 100%);
}

.header-bg.header-bg__full-color {
  background: #1D1D1D;
}

.header-bg .bg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.header-bg h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: normal;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .header-bg h1 {
    font-size: 1.75rem;
  }
}

.header-bg .h3 {
  color: #FFF;
}

.header-bg .container-block {
  margin-top: 90px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .header-bg .container-block {
    margin-top: 70px;
    margin-bottom: 30px;
  }
}

.header-bg .breadcrumbs {
  margin: 0;
  margin-top: 20px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .header-bg .breadcrumbs {
    margin-top: 12px;
  }
}

.header-bg .breadcrumbs a {
  color: #fff;
}

.header-bg .breadcrumbs a:hover {
  color: #fff;
  opacity: 0.7;
}

.modal-header-items__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.modal-header-items__container a:first-child {
  min-height: 80px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
}

@media screen and (max-width: 1363px) {
  .modal-header-items__container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .modal-header-items__container a:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
  }
}

@media screen and (max-width: 1024px) {
  .modal-header-items__container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .modal-header-items__container a:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

.modal-header-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  color: #1D1D1D;
}

@media screen and (max-width: 1024px) {
  .modal-header-nav-link {
    padding: 10px 5px;
  }
}

.modal-header-nav-links {
  display: -ms-grid;
  display: grid;
  margin-top: 40px;
}

.modal-header-nav-links a {
  padding: 5px 20px;
  font-weight: 500;
  font-size: 14px;
  color: #1D1D1D;
}

.modal-header-nav-links a:hover {
  opacity: 0.7;
}

.modal-header-nav-item[data-modal-menu-nav] {
  position: relative;
}

.modal-header-nav-item[data-modal-menu-nav]::after {
  content: "";
  display: block;
  width: 18px;
  height: 100%;
  background: url(../img/svg/arrow-right.svg) no-repeat center center/contain;
  position: absolute;
  right: 20px;
  top: 0;
}

@media screen and (max-width: 768px) {
  .modal-header-nav-item[data-modal-menu-nav]::after {
    display: none;
  }
}

.modal-header-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2px;
}

.modal-header-nav-item:hover {
  background: #D6D6D6;
}

@media screen and (max-width: 1024px) {
  .modal-header-nav-item {
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .modal-header-nav-item {
    padding: 0;
    padding-left: 20px;
  }
}

.modal-header-nav-item span {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  background: #D6D6D6;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal-header-nav-item span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.modal-header-nav-item span img {
  width: 20px;
  height: 20px;
}

#modal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

#modal-header.modal-header-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 999;
}

#modal-header.modal-header-active .bg {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s 0.3s ease;
  transition: all 0.5s 0.3s ease;
}

#modal-header .modal-header-left {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 360px;
  background: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(7, 10, 35, 0.1);
          box-shadow: 0px 10px 30px rgba(7, 10, 35, 0.1);
  z-index: 3;
}

@media screen and (max-width: 1024px) {
  #modal-header .modal-header-left {
    width: 280px;
  }
}

@media screen and (max-width: 768px) {
  #modal-header .modal-header-left {
    width: 100%;
  }
}

#modal-header .modal-header-left .modal-header-content {
  height: 100%;
  overflow-y: auto;
}

@media screen and (max-width: 1363px) {
  #modal-header .link-img {
    padding: 10px;
  }
}

#modal-header .modal-header-right {
  display: none;
  position: fixed;
  top: 0;
  left: 360px;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  #modal-header .modal-header-right {
    left: 280px;
  }
}

@media screen and (max-width: 768px) {
  #modal-header .modal-header-right {
    display: block;
    opacity: 0;
    left: 0;
    z-index: 3;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

#modal-header .modal-header-right.modal-menu-active {
  display: block;
}

@media screen and (max-width: 768px) {
  #modal-header .modal-header-right.modal-menu-active {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#modal-header .modal-header-right .modal-header-content {
  padding: 30px;
  height: 100%;
  overflow-y: auto;
}

#modal-header .modal-header-right .modal-header-items__container {
  display: none;
}

#modal-header .modal-header-right .modal-header-items__container.modal-menu-active {
  display: -ms-grid;
  display: grid;
}

#modal-header .modal-header-close {
  padding: 0 20px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #E9E9E9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

#modal-header .modal-header-close:hover {
  background: #F5F5F5;
}

#modal-header .bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background: rgba(29, 29, 29, 0.4);
}

#searchform {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 248px;
}

.header-block {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 70;
}

@media screen and (min-width: 1024px) {
  .header-block.header-block--active .header-bottom {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header-block.header-block--active .contacts-phones .contacts-phone {
    font-size: 16px;
  }
  .header-block.header-block--active .contacts-phones .contacts-phone img {
    width: 18px;
    height: 18px;
  }
  .header-block.header-block--active .btn {
    font-size: 16px;
    padding: 12px 24px;
  }
  .header-block.header-block--active .header-bottom .logo a {
    height: 50px;
  }
  .header-block.header-block--active #searchform {
    width: 200px;
  }
}

.header-block .contacts-phones .contacts-phone {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-block .contacts-phones .contacts-phone img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-block .header-top,
.header-block .header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 60px;
  background: #fff;
}

@media screen and (max-width: 1363px) {
  .header-block .header-top,
  .header-block .header-bottom {
    padding: 0 40px;
  }
}

@media screen and (max-width: 1024px) {
  .header-block .header-top,
  .header-block .header-bottom {
    padding: 0 20px;
  }
}

.header-block .header-top .logo,
.header-block .header-bottom .logo {
  height: 100%;
}

.header-block .header-top .logo a,
.header-block .header-bottom .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header-block .header-top .logo img,
.header-block .header-bottom .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-block .header-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1363px) {
  .header-block .header-bottom {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 1024px) {
  .header-block .header-bottom {
    height: 50px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.header-block .header-top {
  background: #1D1D1D;
  color: #fff;
  font-size: 14px;
}

.header-block .header-top nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .header-block .header-top nav {
    display: none;
  }
}

.header-block .header-top a {
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 20px;
  font-weight: 500;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header-block .header-top a:hover {
  opacity: 0.8;
}

.header-block .header-top b {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .header-block .header-top b {
    display: none;
  }
}

.header-block .header-top .contacts-phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.header-block .header-top .contacts-phones a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
}

.header-block .header-top .contacts-phones a img {
  height: 18px;
}

@media screen and (min-width: 768px) {
  .header-block .header-top .contacts-phones {
    display: none;
  }
}

.header-block .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-block .header-right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .header-block .header-right {
    display: none;
  }
}

.header-block .contacts-phones {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}

.header-block .contacts-phones .contacts-phone {
  margin: 0;
}

.header-block .search {
  margin-bottom: 0;
}

.header-block .search-button {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.header-block .search-button img {
  width: 24px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-block .search-button:hover img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.header-block .menu {
  margin-right: 20px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .header-block .menu {
    margin-right: 0;
  }
}

.header-block .menu .menu-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-block .menu:hover .burger::before {
  top: 25%;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.header-block .menu:hover .burger .burger__line {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.header-block .menu:hover .burger::after {
  top: 75%;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.header-block .menu:hover .menu-text {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.logo {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.logo:hover {
  opacity: .8;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.logo img {
  width: 95px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .logo img {
    width: 66px;
  }
}

.burger {
  width: var(--burger-width);
  height: var(--burger-height);
  position: relative;
  color: #000;
  cursor: pointer;
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - var(--burger-line-height));
}

@media screen and (min-width: 1201px) {
  .burger:hover::before {
    top: 25%;
    -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .burger:hover .burger__line {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .burger:hover::after {
    top: 75%;
    -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
}

.burger--no-active:hover::before, .burger--no-active:hover::after {
  left: 0;
}

.burger--no-active:hover::before {
  top: 0;
}

.burger--no-active:hover::after {
  top: calc(100% - var(--burger-line-height));
}

.burger--no-active:hover .burger__line {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger--active .burger__line {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.burger--active::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 50%;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.burger--active::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 50%;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.burger--active:hover::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 50%;
}

.burger--active:hover::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 50%;
}

#footer {
  padding: 12px 0;
  background-color: #1D1D1D;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

#footer .logo {
  display: inline-block;
}

#footer .logo img {
  width: 95px;
}

#footer hr {
  display: block;
  border-top: 1px solid #7A7A7A;
}

#footer #copy {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  #footer #copy {
    font-size: 13px;
  }
}

#footer .footer-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  #footer .footer-header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#footer .footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  #footer .footer-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#footer .footer-right .contacts-phones {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}

#footer .footer-right .contacts-phone {
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-right .contacts-phone img {
  -webkit-filter: contrast(10) invert(1);
          filter: contrast(10) invert(1);
}

#footer .footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

@media screen and (max-width: 1024px) {
  #footer .footer-content {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  #footer .footer-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#footer .footer-links ul li {
  margin-bottom: 0.5rem;
}

#footer .footer-links ul a {
  color: #FBFBFB;
}

#footer .footer-links ul a:hover {
  opacity: 0.8;
}

#footer .footer-links ul .show-more {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

#footer .footer-links ul .show-more:hover {
  opacity: 0.8;
}

#footer .footer-links-title {
  display: block;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

#footer a.footer-links-title:hover {
  opacity: 0.8;
}

.contacts {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  padding-right: 60px;
}

@media screen and (max-width: 768px) {
  .contacts {
    padding-right: 0;
  }
}

.maps-iframe {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.maps-iframe iframe {
  background: url(../img/svg/spiner.svg) no-repeat center center/50px, #D6D6D6;
}

@media screen and (max-width: 768px) {
  .maps-iframe {
    height: 300px;
  }
}

.contacts-phones .contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  white-space: nowrap;
  font-weight: 600;
  font-size: 18px;
  color: #1D1D1D;
  margin-bottom: 5px;
}

.contacts-phones .contacts-phone img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}

.contacts-phones .contacts-phone:hover {
  opacity: 0.8;
}

.contacts__item__title {
  font-weight: 600;
  font-size: 18px;
  color: #1D1D1D;
  margin-bottom: 5px;
}

.maps-blocks {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 320px 1fr;
      grid-template-columns: 320px 1fr;
}

@media screen and (max-width: 768px) {
  .maps-blocks {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.map-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.map-links .btn {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .map-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
  }
  .map-links .btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.dop-proposals_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .dop-proposals_container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    will-change: box-shadow;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.dop-proposals_container .img-text-center {
  margin-top: 20px;
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 220px;
}

@media screen and (max-width: 768px) {
  .dop-proposals_container .img-text-center {
    width: 70vw;
    max-width: 300px;
  }
}

.text_block h1,
.text_block h2,
.text_block h3,
.text_block h4,
.text_block h5,
.text_block h6,
.text_block .h1,
.text_block .h2,
.text_block .h3,
.text_block .h4,
.text_block .h5,
.text_block .h6 {
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}

.text_block p,
.text_block b,
.text_block strong,
.text_block i,
.text_block em,
.text_block small,
.text_block mark,
.text_block del,
.text_block ins,
.text_block sub,
.text_block sup {
  line-height: 1.3;
  margin: 20px 0;
  color: #1D1D1D;
}

.text_block a {
  color: #706056;
  font-weight: 500;
}

.text_block a:hover {
  text-decoration: underline;
}

.text_block ul,
.text_block ol {
  margin: 20px 0;
  padding-left: 20px;
  list-style: inherit;
}

.text_block ol {
  list-style: auto;
}

.text_block li {
  margin: 5px 0;
}

.tab-head-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}

.tab-title {
  padding: 10px;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
  background-color: #706056;
  color: #fff;
  cursor: pointer;
}

.tab-title.tab-title--active {
  background-color: #D6D6D6;
  color: #1D1D1D;
}

.tab-title.tab-title--active:hover {
  background-color: #D6D6D6;
  color: #1D1D1D;
}

.tab-title:hover {
  background-color: #5c4f46;
}

.tab-body {
  display: none;
}

.tab-body.tab-body--active {
  display: block;
}

.tab-block {
  margin-top: 20px;
  padding: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
          box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
  border-radius: 20px;
}

.specifications_container li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .specifications_container li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.specifications_container li .specification_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1D1D1D;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .specifications_container li .specification_name::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: #1D1D1D;
    margin-right: 15px;
    margin-top: 6px;
    border-radius: 50%;
  }
}

.specifications_container li .specification_value {
  margin-left: 5px;
}

@media screen and (max-width: 1024px) {
  .specifications_container li .specification_value {
    margin-left: 0;
    font-size: 0.875rem;
  }
}

.sendFormsCart {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}

.inner-wrapper-sticky {
  z-index: 51;
}

.choice input:checked ~ span {
  -webkit-box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
          box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
}

.choice span {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.choice span:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.choice .choice-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  color: #1D1D1D;
}

.product-info {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  width: 100%;
}

.product-page-left {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .product-page-right {
    margin-top: 20px;
  }
}

.product-page-right .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1363px) {
  .product-page-right .price-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-page-right .price {
  font-size: 24px;
  font-weight: 600;
  color: #3C3C3C;
  margin-right: 10px;
  white-space: nowrap;
}

@media screen and (max-width: 1363px) {
  .product-page-right .price {
    margin-right: 0;
  }
}

.product-page-right .price-old {
  font-size: 18px;
  font-weight: 600;
  color: #808080;
  text-decoration: line-through;
  white-space: nowrap;
}

.product-page-right .btn-open-modal {
  width: auto;
}

@media screen and (max-width: 768px) {
  .product-page-right .btn-open-modal {
    width: 100%;
  }
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border: 3px solid #706056 !important;
}

.lg-download {
  display: none !important;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
  margin: 30px 0;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs {
    margin: 20px 0;
  }
}

.breadcrumbs span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs a {
  color: #1D1D1D;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #706056;
}

.breadcrumbs .breadcrumb_last {
  font-weight: normal;
}

.product-page {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 1fr;
      grid-template-columns: 40% 1fr;
  gap: 36px;
}

@media screen and (max-width: 768px) {
  .product-page {
    display: block;
  }
}

.product-page-gallery-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
          box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
  border-radius: 20px;
}

.product-page-gallery-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}

.product-page-gallery-item img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-page-gallery-item .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 566px;
}

@media screen and (max-width: 1024px) {
  .product-page-gallery-item .swiper-slide {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .product-page-gallery-item .swiper-slide {
    height: 350px;
  }
}

.product-page-gallery {
  position: relative;
  overflow: hidden;
}

.product-page-gallery .swiper-slide-shadow-left,
.product-page-gallery .swiper-slide-shadow-right {
  background: none;
}

.product-page-gallery .swiper-pagination-bullet {
  background: #706056;
}

.product-page-gallery .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FE5B00;
}

.sub-product-page-gallery {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.sub-product-page-gallery img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sub-product-page-gallery .swiper-slide {
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  width: 25%;
  height: 100px;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .sub-product-page-gallery .swiper-slide {
    height: 80px;
  }
}

@media screen and (max-width: 768px) {
  .sub-product-page-gallery .swiper-slide {
    width: 33%;
    height: 60px;
  }
}

.sub-product-page-gallery .swiper-slide:hover {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
          box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
}

.sub-product-page-gallery .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sub-product-page-gallery .swiper-slide-thumb-active {
  -webkit-box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
          box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

.sub-product-page-gallery .swiper-slide-thumb-active:hover {
  -webkit-box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
          box-shadow: 0px 0px 0px 2px #D6D6D6, 0px 0px 0px 4px #1D1D1D;
}

.product-page-gallery-items {
  position: relative;
  overflow: hidden;
  height: 400px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
          box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
}

@media screen and (max-width: 1024px) {
  .product-page-gallery-items {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .product-page-gallery-items {
    height: 260px;
  }
}

.product-page-gallery-items .swiper-slide {
  width: 100%;
  height: 100%;
}

.product-page-gallery-items a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.product-page-gallery-items a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.product-page-gallery-items a:hover img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 40px rgba(29, 29, 29, 0.4);
          box-shadow: 0px 10px 40px rgba(29, 29, 29, 0.4);
}

.video-item.video-item--big {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .video-item.video-item--big {
    border-radius: 10px;
  }
}

.video-item.video-item--big .bg_video img {
  width: 20%;
  height: 20%;
}

.video-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-item .bg_video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 29, 29, 0.4);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video-item .bg_video img {
  width: 30%;
  height: 30%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video-item:hover .bg_video {
  background: rgba(29, 29, 29, 0.6);
}

.video-item:hover .bg_video img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.text-and-img {
  display: -ms-grid;
  display: grid;
  background: #D6D6D6;
  border-radius: 10px;
  -ms-grid-columns: 300px 1fr;
      grid-template-columns: 300px 1fr;
  border: 1px solid #1D1D1D;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .text-and-img {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.text-and-img.text-and-img--right {
  -ms-grid-columns: 1fr 300px;
      grid-template-columns: 1fr 300px;
}

@media screen and (max-width: 768px) {
  .text-and-img.text-and-img--right {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .text-and-img.text-and-img--right .text-and-img__img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}

.text-and-img__img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-and-img__img a {
  display: block;
  width: 100%;
  height: 100%;
}

.text-and-img__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-and-img__text {
  width: 100%;
  padding: 20px;
}

.text-and-img__text p {
  margin: 10px 0;
}

.works-gallery-item {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid #D6D6D6;
  border-radius: 10px;
}

.works-gallery-item--btn {
  padding: 10px;
}

.works-gallery-slider {
  position: relative;
  height: 300px;
}

.works-gallery-slider .swiper-slide {
  border-radius: 9px;
  overflow: hidden;
}

.works-gallery-slider .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.works-gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.img-text-center {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 90px 1fr;
      grid-template-rows: 90px 1fr;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .img-text-center {
    -ms-grid-rows: 60px 1fr;
        grid-template-rows: 60px 1fr;
    gap: 5px;
  }
}

.img-text-center .img-text-center--img {
  width: 90px;
  height: 90px;
  border: 4px solid #FFFFFF;
  border-radius: 100px;
  -webkit-box-shadow: 0px 0px 0px 4px #1D1D1D;
          box-shadow: 0px 0px 0px 4px #1D1D1D;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .img-text-center .img-text-center--img {
    width: 60px;
    height: 60px;
  }
}

.img-text-center .img-text-center--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .img-text-center p {
    font-size: 14px;
  }
}

a.img-text-center:hover .img-text-center--img {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

a.img-text-center:hover .img-text-center--img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

a.img-text-center:hover .img-text-center--text div {
  text-decoration: underline;
}

.icon-text--item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 60px 1fr;
      grid-template-rows: 60px 1fr;
  gap: 5px;
  padding: 0.625rem;
  border: 3px solid #1D1D1D;
  background: #D6D6D6;
  border-radius: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  scroll-snap-align: start;
}

@media screen and (max-width: 768px) {
  .icon-text--item {
    justify-items: center;
    text-align: center;
  }
}

.icon-text--item .icon-text--icon {
  width: 60px;
  height: 60px;
}

.icon-text--item .icon-text--icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-text--item.icon-text--item-center {
  justify-items: center;
  text-align: center;
}

.icon-text--item.icon-text--item-no-icon {
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
}

.hit {
  position: absolute;
  top: 0;
  left: 0;
  padding: 11px 7px;
  font-weight: bold;
  font-size: 16px;
  background: #FE5B00;
  border-radius: 10px 13px 23px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .hit {
    font-size: 14px;
    padding: 9px 5px;
  }
}

.link-img {
  display: block;
  position: relative;
  padding: 1rem;
  min-height: 140px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#1d1d1d), to(rgba(29, 29, 29, 0.1)));
  background: linear-gradient(180deg, #1d1d1d 0%, rgba(29, 29, 29, 0.1) 100%);
  border-radius: 10px;
  overflow: hidden;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .link-img {
    min-height: 80px;
  }
}

.link-img:hover {
  background-color: #1d1d1d;
}

.link-img.link-img--full-bg {
  background: linear-gradient(100.74deg, #1d1d1d 0%, rgba(29, 29, 29, 0.4) 100.09%);
}

.link-img.link-img--full-bg:hover {
  background-color: #1d1d1d;
}

p {
  font-size: 1rem;
  color: #200F06;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.link-post {
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.125rem;
  border-radius: 5px;
  padding: 0.375rem 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.link-post:hover {
  background-color: #D6D6D6;
}

.link-post img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.link-post span {
  display: block;
  font-size: 0.6875rem;
  font-weight: bold;
}

.link-post.link-post--left img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body {
  background: #E5E5E5;
  overflow-y: scroll;
  line-height: 120%;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

.frontpage-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
}

.frontpage-first > div {
  width: 100%;
  max-width: 950px;
}

.frontpage-first form {
  width: 100%;
  max-width: 470px;
}

p {
  color: #1D1D1D;
}

.frontpage-header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 24px;
  overflow: hidden;
  border-radius: 20px;
}

.frontpage-header-content {
  max-width: 356px;
}

.frontpage-header-content .h3 {
  margin-bottom: 18px;
  color: #fff;
}

.frontpage-header-content p {
  margin-bottom: 30px;
}

img.doors-img {
  width: 100%;
  max-width: 250px;
}

@media screen and (max-width: 768px) {
  img.doors-img {
    display: none;
  }
}

h1,
.h1 {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 120%;
  color: #1D1D1D;
}

h1.text-white,
.h1.text-white {
  color: #fff;
}

@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 120%;
  color: #1D1D1D;
}

@media screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 1.5rem;
  }
}

h3,
.h3 {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 120%;
  color: #1D1D1D;
}

@media screen and (max-width: 768px) {
  h3,
  .h3 {
    font-size: 1.25rem;
  }
}

h4,
.h4 {
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 120%;
  color: #1D1D1D;
}

@media screen and (max-width: 768px) {
  h4,
  .h4 {
    font-size: 1.125rem;
  }
}

.text-color-default {
  color: #1D1D1D;
}

.text-color-red {
  color: #FE5B00;
}

.container-block {
  width: 100%;
  max-width: 1500px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .container-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-block.container-block--small {
  max-width: 900px;
}

.bg-standart2 {
  background: #FE5B00;
}

.lg-sub-html {
  display: none;
}

.link-post-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .link-post-block {
    padding-bottom: 40px;
  }
}

.single-page .breadcrumbs {
  margin: 0;
  padding: 20px 0;
}

@media screen and (min-width: 1024px) {
  .single-page .link-post-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 75px;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #D6D6D6;
  }
  .single-page .link-post-btn:hover {
    background-color: #1D1D1D;
  }
  .single-page .link-post-btn:hover .link-post {
    background: none;
  }
  .single-page .link-post-btn .link-post {
    background: none;
  }
  .single-page .link-post-btn.link-post-btn--left {
    left: 0;
    right: auto;
  }
  .single-page .link-post {
    padding: 0.375rem 0.375rem;
  }
  .single-page .link-post span {
    font-size: 0.625rem;
    font-weight: 800;
  }
}

@media screen and (min-width: 1364px) {
  .single-page .link-post-btn {
    width: 100px;
  }
}

.single-page .text_block {
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .single-page .text_block {
    padding-bottom: 40px;
  }
}

.bg-color {
  background-color: #D6D6D6;
}

.bg-color .pagination {
  margin-bottom: 0;
}

#content {
  min-height: 50vh;
}

#toast {
  position: fixed;
  bottom: 5px;
  right: 5px;
  max-width: 300px;
  max-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 10px;
  overflow: auto;
  z-index: 10000;
}

#toast div {
  position: relative;
  padding: 10px 20px;
  padding-bottom: 15px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}

#toast div:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  -webkit-animation: WidthTimeOut 6s;
          animation: WidthTimeOut 6s;
}

#toast .t-ok {
  background-color: #4caf50;
}

#toast .t-error {
  background-color: #f44336;
}

#toast .t-danger {
  background-color: #ff9800;
  color: #000;
}

#toast .t-info {
  background-color: #03a9f4;
}

@-webkit-keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #toast {
    bottom: 65px !important;
  }
}
/*# sourceMappingURL=main.css.map */