

/* Start:/local/templates/s1/styles/main.css?177895413285928*/
/* Flex utilities */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-inline-block {
  display: inline-block;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-start {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: end;
}

.align-stretch {
  align-items: stretch;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.border {
  border: 1px solid gray;
}

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

:root {
  --white: #fefefe;
  --blk: #070322;
  --gray: #1f1f1f;
  --gray-light: #8c8c8c;
  --blk-bg-text: #0d0d0d;
  --gray-bg: #f6f6f6;
  --ohra-btn: #b9916c;
  --price-line: #ccc;
  --font-family: "Raleway", sans-serif;
  --second-family: "Forum", sans-serif;
  --third-family: "Futura PT", sans-serif;
  --font3: "Inter", sans-serif;
}

html,
body {
  height: 100%;
  font-size: 100%; /* 16px */
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum", "tnum";
  font-style: normal;
  background: var(--white);
  color: #000;
}
body.modal-open {
  overflow: hidden;
}
body::-moz-selection {
  background-color: var(--ohra-btn);
  color: var(--white);
}
body::selection {
  background-color: var(--ohra-btn);
  color: var(--white);
}

address {
  font-style: normal;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Remove link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset images */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Reset form elements */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

.main-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 576px) {
  .main-container {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .back-link {
    display: block;
  }
}

.fade-in-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: 1s;
}
.fade-in-up.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@font-face {
  font-family: "Raleway";
  src: url("/local/templates/s1/fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("/local/templates/s1/fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("/local/templates/s1/fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Forum";
  src: url("/local/templates/s1/fonts/Forum.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("/local/templates/s1/fonts/FuturaPT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("/local/templates/s1/fonts/FuturaPT-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/local/templates/s1/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.section-title {
  white-space: nowrap;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 72px;
  line-height: 90%;
  color: var(--blk);
}
@media (max-width: 768px) {
  .section-title {
    width: 100%;
    text-align: center;
    font-size: 56px;
    line-height: 100%;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 40px;
  }
}

.header {
  width: 100%;
  background-color: var(--white);
  padding: 10px 0 2px;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .header {
    border-bottom: 1px solid var(--blk);
    padding: 0;
  }
}
.header.header--scrolled {
  background-color: var(--white);
  position: fixed;
  top: -100%;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}
.header.active {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.header-top {
  position: relative;
  padding: 11px 0 22px;
  gap: 20px;
  border-bottom: 1px solid var(--blk);
}
@media (max-width: 768px) {
  .header-top {
    padding: 15px 0;
    border: 0;
  }
}
@media (max-width: 768px) {
  .header-top .header-contact {
    display: none;
  }
}
.header-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 992px) {
  .header-logo {
    position: static;
    transform: translate(0);
  }
}
@media (max-width: 450px) {
  .header-logo {
    width: 84px;
    height: 48px;
  }
}
.header-location {
  gap: 10px;
  white-space: nowrap;
}
@media (max-width: 450px) {
  .header-location {
    display: none;
  }
}
.header-location__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
.header-contact {
  -moz-column-gap: 30px;
       column-gap: 30px;
  white-space: nowrap;
}
.header-contact__item-link {
  gap: 12px;
}
.header-contact__item-link:hover .header-contact__item-text {
  color: var(--ohra-btn);
}
.header-contact__item-link:hover svg path {
  fill: #b9916c;
}
.header-contact__item-link svg path {
  transition: 0.3s;
}
.header-contact__item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--blk);
  transition: 0.3s;
}
.header-contact__item-phone-number {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .header-contact__item-phone-number {
    font-size: 18px;
  }
}
.header-contact__item-phone-number:hover {
  color: var(--ohra-btn);
}
.header-contact__item .call-btn {
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: right;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .header-contact__item .call-btn {
    font-size: 18px;
    text-align: center;
  }
}
.header-contact__item .call-btn:hover {
  color: var(--ohra-btn);
}
@media (max-width: 768px) {
  .header-nav {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: end;
    align-items: start;
    background-color: transparent;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    visibility: hidden;
    transition: 0.3s;
  }
  .header-nav.show {
    background-color: rgba(31, 31, 31, 0.3137254902);
    visibility: visible;
  }
  .header-nav.show .header-nav__in {
    transform: translateX(0);
  }
}
.header-nav__in {
  padding-top: 20px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header-nav__in {
    max-height: 100vh;
    overflow: auto;
    max-width: 460px;
    width: 100%;
    background: var(--white);
    border-radius: 0 0 5px 5px;
    padding: 30px 20px 20px;
    transform: translateX(100%);
  }
}
@media (max-width: 450px) {
  .header-nav__in {
    max-width: 100%;
    padding: 30px 10px 20px;
  }
}
.header-nav__list {
  gap: 40px;
}
@media (max-width: 768px) {
  .header-nav__list {
    gap: 20px;
    flex-direction: column;
    align-items: start;
    margin-bottom: 80px;
  }
}
@media (max-width: 450px) {
  .header-nav__list {
    align-items: center;
  }
}
.header-nav__item--dropdown {
  position: relative;
}
.header-nav__item--dropdown:hover .header-nav__dropdown {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1200px) {
  .header-nav__item--dropdown:last-child .header-nav__dropdown {
    left: auto;
    right: 0;
  }
}
@media (max-width: 768px) {
  .header-nav__item--dropdown {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .header-nav__item--dropdown {
    align-items: center;
  }
}
.header-nav__btn {
  gap: 5px;
  padding-bottom: 2px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
.header-nav__btn .arrow-icon {
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header-nav__btn.active .arrow-icon {
    transform: rotate(-180deg);
  }
}
@media (max-width: 450px) {
  .header-nav__btn {
    font-size: 18px;
  }
}
.header-nav__btn svg {
  transition: 0.3s;
}
.header-nav__btn svg path {
  transition: 0.3s;
}
.header-nav__btn:hover {
  color: var(--ohra-btn);
}
.header-nav__btn:hover svg {
  transform: rotate(-180deg);
}
@media (max-width: 768px) {
  .header-nav__btn:hover svg {
    transform: rotate(0);
  }
}
.header-nav__btn:hover svg path {
  fill: var(--ohra-btn);
}
.header-nav__dropdown {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--blk);
  border-radius: 3px;
  padding: 10px;
  gap: 10px;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 25px);
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header-nav__dropdown {
    height: 0;
    overflow: hidden;
    position: static;
    color: var(--blk);
    opacity: 1;
    visibility: visible;
    border: 0;
    padding: 0;
  }
}
.header-nav__dropdown.align-right {
  left: auto;
  right: 0;
}
.header-nav__link {
  display: block;
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 450px) {
  .header-nav__link {
    display: block;
    text-align: center;
  }
}
.header-nav__link:hover {
  color: var(--ohra-btn);
}
.header-nav__link--main {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 768px) {
  .header-nav__mobile-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 450px) {
  .header-nav__mobile-head {
    flex-direction: column;
    gap: 0;
  }
  .header-nav__mobile-head .header-close {
    width: 100%;
  }
  .header-nav__mobile-head .close-btn {
    order: 1;
  }
  .header-nav__mobile-head .header-logo {
    order: 2;
    margin-bottom: 25px;
    margin-top: -15px;
  }
  .header-nav__mobile-head .header-contact {
    order: 3;
  }
}
.header-nav__mobile-head .header-location, .header-nav__mobile-bottom .header-location {
  display: flex;
}
@media (max-width: 768px) {
  .header-nav__mobile-head, .header-nav__mobile-bottom {
    display: flex;
    gap: 35px;
  }
}
@media (max-width: 450px) {
  .header-nav__mobile-head, .header-nav__mobile-bottom {
    gap: 15px;
  }
  .header-nav__mobile-bottom {
    flex-direction: column-reverse;
  }
}
@media (max-width: 450px) {
  .header-nav .close-btn svg {
    width: 28px;
    height: 28px;
  }
}
.header .burger-wrapper {
  width: 160px;
}
@media (max-width: 768px) {
  .header .burger-wrapper {
    display: flex;
    justify-content: end;
  }
}
.header .burger-wrapper .burger-btn {
  cursor: pointer;
}
.header .burger-wrapper .burger-btn:hover svg path {
  stroke: var(--ohra-btn);
}
@media (max-width: 450px) {
  .header .burger-wrapper .burger-btn svg {
    max-width: 40px;
  }
}
.header .burger-wrapper .burger-btn svg path {
  transition: 0.3s;
}

.footer {
  background: var(--blk);
  padding: 60px 0 20px;
}
.footer__container {
  gap: 20px;
  margin-bottom: 22px;
}
@media (max-width: 1100px) {
  .footer__container {
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 1100px) {
  .footer__col--left {
    width: 100%;
    order: 1;
  }
}
.footer__logo {
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .footer__logo {
    display: flex;
    justify-content: center;
  }
}
.footer__docs {
  gap: 2px;
}
@media (max-width: 1100px) {
  .footer__docs {
    display: none;
  }
}
.footer__docs-link {
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--gray-light);
}
@media (max-width: 1100px) {
  .footer-mobile__docs {
    width: 100%;
    display: flex;
    align-items: center;
    order: 4;
  }
}
@media (max-width: 1100px) {
  .footer__col--menu {
    width: calc(50% - 10px);
    order: 3;
  }
}
@media (max-width: 750px) {
  .footer__col--menu {
    width: 100%;
  }
  .footer__col--menu:nth-child(3) {
    margin-top: -4px;
  }
}
@media (max-width: 576px) {
  .footer__col--menu:nth-child(3) {
    margin-top: -10px;
  }
}
.footer__menu {
  gap: 16px;
}
@media (max-width: 576px) {
  .footer__menu {
    gap: 10px;
  }
}
.footer__menu-link {
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  transition: 0.3s;
  position: relative;
}
@media (max-width: 576px) {
  .footer__menu-link {
    white-space: wrap;
    line-height: 100%;
  }
}
@media (max-width: 1100px) {
  .footer__col--contacts {
    width: 100%;
    align-items: center;
    order: 2;
    margin-bottom: 40px;
  }
}
.footer__social {
  gap: 10px;
  margin-bottom: 10px;
}
.footer__phone {
  margin-bottom: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  text-align: right;
  color: var(--white);
}
.footer__email {
  margin-bottom: 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: right;
  color: var(--white);
}
.footer__company {
  max-width: 333px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: right;
  color: var(--white);
}
@media (max-width: 1100px) {
  .footer__company {
    text-align: center;
  }
}
.footer__copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: right;
  color: var(--gray-light);
}
@media (max-width: 1100px) {
  .footer__copyright {
    text-align: center;
  }
}

.button {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 10px 20px;
  background: var(--ohra-btn);
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 21px;
  color: var(--white);
  transition: 0.3s;
}
.button.button-blk {
  background: var(--blk);
  border: 2px solid var(--blk);
}
.button.button-blk:hover {
  background: transparent;
  color: var(--blk);
}
.button:hover {
  background: #7f634a;
}

.catalog-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.checkbox-input:checked + .form-checkbox svg {
  opacity: 1;
}

.form-checkbox {
  border: 1px solid transparent;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.form-checkbox.checkbox-brown {
  border-color: var(--ohra-btn);
}
.form-checkbox.checkbox-blk {
  border-color: var(--blk);
}
.form-checkbox svg {
  opacity: 0;
}

.modal {
  width: 100%;
  height: 100vh;
  align-items: start;
  overflow: auto;
  background-color: rgba(31, 31, 31, 0);
  padding: 50px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.modal.show {
  background-color: rgba(31, 31, 31, 0.5);
  visibility: visible;
  opacity: 1;
}
.modal.show .modal-content {
  transform: translateY(0);
}
.modal-content {
  max-width: 507px;
  background: var(--white);
  border-radius: 5px;
  padding: 20px;
  transform: translateY(50px);
  transition: 0.3s;
  margin: auto 0;
}
@media (max-width: 576px) {
  .modal-content {
    padding: 15px 10px;
  }
}
.modal-content .close-modal {
  margin-bottom: 12px;
}
.modal-content .close-modal .close-btn {
  cursor: pointer;
}
.modal-content .close-modal .close-btn:hover svg path {
  fill: var(--ohra-btn);
}
.modal-content .close-modal .close-btn svg path {
  transition: 0.3s;
}
.modal-head {
  max-width: 400px;
  margin: 0 auto;
  gap: 20px;
  margin-bottom: 40px;
}
.modal-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--blk);
}
.modal-description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--blk);
}
.modal .modal-form {
  max-width: 300px;
  margin: 0 auto;
  gap: 20px;
}
.modal .modal-form .form-control .form-input {
  height: 60px;
  border: 2px solid var(--ohra-btn);
  border-radius: 5px;
  padding: 19px 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray);
}
.modal .modal-form .form-control .form-input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-light);
}
.modal .modal-form .form-control .form-input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-light);
}
.modal .modal-form .form-control #phone {
  padding-left: 65px !important;
}
.modal__checkbox {
  gap: 10px;
}
.modal__checkbox-text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--blk);
}
.modal__checkbox-text .form__link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--ohra-btn);
}
.modal .iti {
  display: block !important;
}
.modal .iti__selected-country {
  padding-left: 20px;
}
.modal .iti__flag {
  transform: scale(1.3);
}

.section-head {
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-head {
    margin-bottom: 60px;
  }
}
.section-head .line-solid {
  width: 100%;
  border-radius: 3px;
  height: 2px;
  background: var(--blk);
}
@media (max-width: 768px) {
  .section-head .line-solid {
    display: none;
  }
}

.idea {
  background: var(--blk);
  padding: 60px 0 50px;
}
@media (max-width: 576px) {
  .idea {
    padding: 40px 0 60px;
  }
}
.idea__content {
  gap: 20px;
}
@media (max-width: 992px) {
  .idea__content {
    flex-direction: column;
  }
}
.idea__preview {
  max-width: 1113px;
  position: relative;
  margin-top: 30px;
  padding: 8px 40px 0;
}
@media (max-width: 1200px) {
  .idea__preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .idea__preview {
    display: flex;
    padding: 0;
  }
}
.idea__preview::after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .idea__preview::after {
    display: none;
  }
}
.idea__preview-item {
  position: relative;
  z-index: 2;
  left: -70px;
}
@media (max-width: 1500px) {
  .idea__preview-item {
    left: 0;
  }
}
.idea__preview-item:nth-child(1) {
  transform: rotate(-17deg);
  z-index: 3;
}
@media (max-width: 576px) {
  .idea__preview-item:nth-child(1) {
    min-width: 127px;
    max-width: 40%;
    left: 25px;
  }
}
.idea__preview-item:nth-child(2) {
  max-width: 260px;
  margin-top: 40px;
  padding: 11px 30px;
  border: 2px solid var(--white);
  border-radius: 5px;
  transform: rotate(15deg);
}
@media (max-width: 576px) {
  .idea__preview-item:nth-child(2) {
    min-width: 166px;
    padding: 10px;
    margin-top: -10px;
    left: auto;
    right: 30px;
  }
}
.idea__preview-img {
  margin: 0 auto;
  max-width: 100%;
}
.idea__catalog-info {
  max-width: 118px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--white);
}
@media (max-width: 992px) {
  .idea__catalog-info {
    margin-left: 0;
  }
}
.idea__catalog-link {
  gap: 10px;
  float: inline-end;
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--white);
  transition: 0.3s;
}
.idea__catalog-link::after {
  content: "";
  width: 86px;
  height: 0;
  border-radius: 3px;
  border-bottom: 1px solid var(--white);
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .idea__catalog-link {
    margin-right: 0;
  }
}
.idea__catalog-link svg path {
  transition: 0.3s;
}
.idea__catalog-link:hover {
  color: var(--ohra-btn);
}
.idea__catalog-link:hover::after {
  border-color: var(--ohra-btn);
}
.idea__catalog-link:hover svg path {
  stroke: var(--ohra-btn);
}
.idea__form-block {
  max-width: 547px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .idea__form-block {
    max-width: 600px;
    margin-top: 40px;
  }
}
.idea__form {
  gap: 20px;
}
@media (max-width: 576px) {
  .idea__form {
    flex-direction: column;
  }
}
.idea__title {
  margin-bottom: 40px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 72px;
  line-height: 90%;
  color: var(--white);
}
@media (max-width: 992px) {
  .idea__title {
    display: none;
  }
}
@media (max-width: 576px) {
  .idea__title {
    font-size: 40px;
    line-height: 100%;
  }
}
@media (max-width: 992px) {
  .idea-mobile__title {
    display: block;
    margin-bottom: 50px;
    text-align: center;
  }
}
.idea__form-row {
  gap: 20px;
}
@media (max-width: 576px) {
  .idea__form-row {
    flex-direction: column;
  }
}
.idea__input, .idea__textarea {
  width: 100%;
  background: var(--blk);
  border: 2px solid var(--white);
  border-radius: 5px;
  height: 60px;
  padding: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}
.idea__input::-moz-placeholder, .idea__textarea::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-light);
}
.idea__input::placeholder, .idea__textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-light);
}
.idea__textarea {
  height: 100%;
  min-height: 180px;
  resize: none;
}
.idea__select {
  position: relative;
}
.idea__select-btn {
  height: 60px;
  gap: 5px;
  padding: 20px;
  background: var(--blk);
  border: 2px solid var(--white);
  border-radius: 5px;
  cursor: pointer;
}
.idea__select-btn .arrow-icon {
  transition: 0.3s;
}
.idea__select-btn .arrow-icon.selected {
  transform: rotate(-180deg);
}
.idea__select-value {
  display: block;
  min-width: 185px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  color: var(--gray-light);
}
.idea__select-value.selected {
  color: var(--white);
}
.idea__select-menu {
  min-width: 100%;
  background: var(--blk);
  border: 2px solid var(--white);
  border-radius: 5px;
  padding: 10px 20px;
  gap: 10px;
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.idea__select-menu.show {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 2px);
}
.idea__select-option {
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  transition: 0.3s;
}
.idea__select-option:hover {
  color: var(--ohra-btn);
}
.idea__select-option.selected {
  color: var(--ohra-btn);
}
.idea__button {
  height: 60px;
}
.idea__agree-wrap {
  margin-top: -10px;
}
.idea__checkbox {
  gap: 10px;
}
@media (max-width: 576px) {
  .idea__checkbox {
    justify-content: center;
  }
}
.idea__checkbox-text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--white);
}
.idea__checkbox-text .form__link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--ohra-btn);
}

.recently-viewed {
  padding: 200px 0;
}
@media (max-width: 576px) {
  .recently-viewed {
    padding: 120px 0;
  }
}
.recently-viewed__slider {
  position: relative;
}
.recently-viewed__slider .swiper-slide {
  height: 100% !important;
  cursor: grab;
}
.recently-viewed__slider .swiper-slide:active {
  cursor: grabbing;
}
.recently-viewed__slider .swiper-slide__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recently-viewed__nav {
  width: 28px;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 2;
  transition: 0.3s;
}
.recently-viewed__nav:hover {
  background-color: var(--price-line);
}
.recently-viewed__nav--prev {
  left: 0;
}
.recently-viewed__nav--next {
  right: 0;
}

.return__text {
  max-width: calc(50% - 10px);
}
@media (max-width: 992px) {
  .return__text {
    max-width: 100%;
  }
}
.return__text--primary {
  margin-bottom: 40px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
.return__text--secondary {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}

.home-page .header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .home-page .header {
    border-color: var(--white);
  }
}
.home-page .header.header--scrolled {
  background-color: var(--white);
  position: fixed;
  top: -100%;
  opacity: 0;
  visibility: hidden;
}
.home-page .header.header--scrolled .header-top {
  border-color: var(--blk);
}
.home-page .header.header--scrolled .header-location__text {
  color: var(--blk);
}
.home-page .header.header--scrolled .header-contact {
  -moz-column-gap: 30px;
       column-gap: 30px;
  white-space: nowrap;
}
.home-page .header.header--scrolled .header-contact__item-text {
  color: var(--blk);
}
.home-page .header.header--scrolled .header-contact__item-text:hover {
  color: var(--ohra-btn);
}
.home-page .header.header--scrolled .header-contact__item-phone-number {
  color: var(--blk);
}
.home-page .header.header--scrolled .header-contact__item-phone-number:hover {
  color: var(--ohra-btn);
}
.home-page .header.header--scrolled .header-contact__item .call-btn {
  color: var(--blk);
}
.home-page .header.header--scrolled .header-contact__item .call-btn:hover {
  color: var(--ohra-btn);
}
.home-page .header.header--scrolled .header-nav__btn {
  color: var(--blk);
}
.home-page .header.header--scrolled .header-nav__btn:hover {
  color: var(--ohra-btn);
}
.home-page .header.header--scrolled .header-nav__link {
  color: var(--blk);
}
.home-page .header.header--scrolled .header-nav__link:hover {
  color: var(--ohra-btn);
}
.home-page .header.header--scrolled .header-nav__link--main {
  color: var(--blk);
}
.home-page .header.header--scrolled .header-nav__link--main:hover {
  color: var(--ohra-btn);
}
.home-page .header.active {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.home-page .header-top {
  border-color: var(--white);
}
.home-page .header-location__text {
  color: var(--white);
}
.home-page .header-contact {
  -moz-column-gap: 30px;
       column-gap: 30px;
  white-space: nowrap;
}
.home-page .header-contact__item-text {
  color: var(--white);
}
@media (max-width: 768px) {
  .home-page .header-contact__item-text {
    color: var(--blk);
  }
}
.home-page .header-contact__item-phone-number {
  color: var(--white);
}
@media (max-width: 768px) {
  .home-page .header-contact__item-phone-number {
    color: var(--blk);
  }
}
.home-page .header-contact__item-phone-number:hover {
  color: var(--ohra-btn);
}
.home-page .header-contact__item .call-btn {
  color: var(--white);
}
@media (max-width: 768px) {
  .home-page .header-contact__item .call-btn {
    color: var(--blk);
  }
}
.home-page .header-contact__item .call-btn:hover {
  color: var(--ohra-btn);
}
.home-page .header-nav__btn {
  color: var(--white);
}
@media (max-width: 768px) {
  .home-page .header-nav__btn {
    color: var(--blk);
  }
  .home-page .header-nav__btn svg path {
    fill: var(--blk);
  }
}
.home-page .header-nav__btn:hover {
  color: var(--ohra-btn);
}
.home-page .header-nav__link {
  color: var(--blk);
}
.home-page .header-nav__link:hover {
  color: var(--ohra-btn);
}
.home-page .header-nav__link--main {
  color: var(--white);
}
@media (max-width: 768px) {
  .home-page .header-nav__link--main {
    color: var(--blk);
  }
}
.home-page .header-nav__link--main:hover {
  color: var(--ohra-btn);
}
@media (max-width: 768px) {
  .home-page .header-nav .header-location__text {
    color: var(--blk);
  }
}
@media (max-width: 450px) {
  .home-page .header-nav .header-location__text {
    text-wrap: auto;
  }
}
.home-block {
  background: var(--blk);
  overflow: hidden;
}
.home-block .main-container {
  min-height: 100vh;
  padding: 270px 20px 170px;
  position: relative;
}
@media (max-width: 1700px) {
  .home-block .main-container {
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .home-block .main-container {
    flex-direction: column;
    gap: 120px;
  }
}
@media (max-width: 576px) {
  .home-block .main-container {
    padding: 160px 20px 80px;
  }
}
.home-block__title {
  position: absolute;
  right: 0;
  bottom: 190px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: min(260px, 13vw);
  text-transform: uppercase;
  color: #0d0829;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .home-block__title {
    width: auto;
    overflow: hidden;
    font-size: 189px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
  }
  .home-block__title:first-child span:last-child {
    display: none;
  }
}
@media (max-width: 576px) {
  .home-block__title {
    display: none;
  }
}
.home-block__title.active {
  opacity: 1;
  visibility: visible;
}
.home-block__content {
  max-width: 30%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .home-block__content {
    max-width: 100%;
  }
}
.home-block__content-title {
  margin-bottom: 40px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 88px;
  line-height: 90%;
  color: var(--white);
}
@media (max-width: 1700px) {
  .home-block__content-title {
    font-size: 70px;
  }
}
@media (max-width: 1200px) {
  .home-block__content-title {
    font-size: 88px;
  }
}
@media (max-width: 768px) {
  .home-block__content-title {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .home-block__content-title {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
.home-block__content-subtitle {
  margin-bottom: 60px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--white);
}
@media (max-width: 768px) {
  .home-block__content-subtitle {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .home-block__content-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.home-block__content-btn {
  max-width: 405px;
}
@media (max-width: 768px) {
  .home-block__content-btn {
    margin: 0 auto;
  }
}
.home-block .product-info {
  max-width: 260px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 10px 20px;
  position: absolute;
  top: 30px;
  left: calc(100% + 20px);
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .home-block .product-info {
    position: static;
  }
}
@media (max-width: 576px) {
  .home-block .product-info {
    max-width: 100%;
    width: 100%;
  }
}
.home-block .product-info:hover {
  background: rgba(255, 255, 255, 0.07);
}
.home-block .product-info__title {
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
}
.home-block .product-info__descrition {
  margin-bottom: 35px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
.home-block .product-info__link {
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  transition: 0.3s;
}
.home-block .product-info__link svg path {
  transition: 0.3s;
}
.home-block .product-info__link:hover {
  color: var(--ohra-btn);
}
.home-block .product-info__link:hover svg path {
  stroke: var(--ohra-btn);
}
.home-block .home-swiper {
  overflow: hidden;
  gap: 20px;
}
@media (max-width: 1200px) {
  .home-block .home-swiper {
    max-width: 100%;
    flex-direction: column;
    overflow: visible;
  }
}
@media (max-width: 576px) {
  .home-block .home-swiper {
    flex-direction: row;
    align-items: start;
    position: relative;
  }
}
.home-block .home-swiper .main-swiper {
  max-width: 546px;
  overflow: visible;
  transition-delay: 0.5s;
}
@media (max-width: 1700px) {
  .home-block .home-swiper .main-swiper {
    max-width: 420px;
  }
}
@media (max-width: 1200px) {
  .home-block .home-swiper .main-swiper {
    max-width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    transition-delay: 0s;
  }
}
@media (max-width: 576px) {
  .home-block .home-swiper .main-swiper {
    margin-right: -148px;
  }
}
.home-block .home-swiper .main-swiper .swiper-slide {
  position: relative;
  opacity: 0 !important;
}
@media (max-width: 1200px) {
  .home-block .home-swiper .main-swiper .swiper-slide__in {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .home-block .home-swiper .main-swiper .swiper-slide__in {
    flex-direction: column;
    gap: 30px;
    align-items: start;
  }
  .home-block .home-swiper .main-swiper .swiper-slide__in .slider-img {
    min-height: 260px;
    max-width: calc(100% - 148px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.home-block .home-swiper .main-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.home-block .home-swiper .small-swiper {
  max-width: 520px;
  transition-delay: 1s;
  transform: translateY(100px);
}
.home-block .home-swiper .small-swiper.show {
  transform: translateY(0);
}
@media (max-width: 1200px) {
  .home-block .home-swiper .small-swiper {
    margin: 0 auto;
    transition-delay: 0s;
  }
}
@media (max-width: 576px) {
  .home-block .home-swiper .small-swiper {
    width: 80px;
    min-width: 80px;
    height: 260px;
  }
}
.home-block .home-swiper .small-swiper .swiper-slide {
  cursor: pointer;
}
.home-block .home-swiper .small-swiper .swiper-slide:active {
  cursor: grabbing;
}
.home-block .home-swiper .small-swiper .slider-img {
  max-width: 160px;
  width: 100%;
}
@media (max-width: 576px) {
  .home-block .home-swiper .small-swiper .slider-img {
    width: auto;
    height: 100%;
  }
}
.home-block .swiper-pagination {
  bottom: 130px;
}
@media (max-width: 576px) {
  .home-block .swiper-pagination {
    display: none;
  }
}
.home-block .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--gray-light);
}
.home-block .swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: var(--white);
}
.home-block .swiper-pagination-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  z-index: 100;
}
@media (max-width: 576px) {
  .home-block .swiper-pagination-mobile {
    flex-direction: column;
    width: 28px;
    min-width: 28px;
    min-height: 100%;
    position: relative;
    top: 85px;
    left: 0;
  }
}

.catalog-categories {
  padding-top: 120px;
}
@media (max-width: 576px) {
  .catalog-categories {
    padding-top: 80px;
  }
}
.catalog-categories__list {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 80px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .catalog-categories__list {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    row-gap: 50px;
  }
}
@media (max-width: 768px) {
  .catalog-categories__list {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .catalog-categories__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
    margin-bottom: 60px;
  }
}
.catalog-categories__item {
  height: 302px;
  background: var(--gray-bg);
  border-radius: 5px;
  padding: 0 20px 40px;
  gap: 20px;
}
@media (max-width: 768px) {
  .catalog-categories__item:nth-child(1) {
    order: 1;
  }
  .catalog-categories__item:nth-child(2) {
    order: 3;
  }
  .catalog-categories__item:nth-child(3) {
    order: 4;
  }
  .catalog-categories__item:nth-child(4) {
    order: 2;
  }
  .catalog-categories__item:nth-child(5) {
    order: 5;
  }
}
@media (max-width: 576px) {
  .catalog-categories__item {
    padding-bottom: 10px;
  }
}
.catalog-categories__item.catalog-card--large {
  height: auto;
  padding-bottom: 0;
  position: relative;
}
@media (max-width: 576px) {
  .catalog-categories__item.catalog-card--large {
    grid-column: span 1;
  }
}
.catalog-categories__item.catalog-card--large .catalog-categories__img {
  margin-bottom: 0;
}
.catalog-categories__item.catalog-card--large .catalog-categories__text {
  display: block;
  width: 174px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-bg);
  padding: 6px 20px;
  border-radius: 5px;
  z-index: 2;
}
.catalog-categories__img {
  margin-bottom: 20px;
}
.catalog-categories__img img {
  max-width: 100%;
}
.catalog-categories__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--blk);
}
.catalog-categories__more {
  margin: 0 auto;
  padding: 19px 84px;
}

.works-block {
  padding-top: 200px;
}
@media (max-width: 576px) {
  .works-block {
    padding-top: 120px;
  }
}
.works-block .swiper {
  padding-bottom: 80px;
}
.works-block .swiper-slide {
  cursor: grab;
}
.works-block .swiper-slide:active {
  cursor: grabbing;
}
.works-block .swiper-slide .video-player {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.works-block .swiper-slide .video-player__play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.works-block .swiper .swiper-pagination {
  bottom: 0;
}
.works-block .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 38px;
  height: 38px;
  background-color: transparent;
  margin: 0 5px;
  border: 2px solid transparent;
  border-radius: 50%;
  position: relative;
  opacity: 1;
}
.works-block .swiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--ohra-btn);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.works-block .swiper .swiper-pagination .swiper-pagination-bullet-active {
  border-color: var(--ohra-btn);
}

.advantages-block {
  padding: 200px 0;
}
@media (max-width: 576px) {
  .advantages-block {
    padding-bottom: 120px;
  }
}
.advantages-block .advantages-content .advantages-list {
  gap: 20px;
}
@media (max-width: 992px) {
  .advantages-block .advantages-content .advantages-list {
    flex-direction: column;
    gap: 40px;
  }
}
.advantages-block .advantages-content .advantages-list .left-block,
.advantages-block .advantages-content .advantages-list .right-block {
  gap: 40px;
}
@media (max-width: 992px) {
  .advantages-block .advantages-content .advantages-list .left-block,
  .advantages-block .advantages-content .advantages-list .right-block {
    order: 2;
    padding: 0 90px;
  }
}
@media (max-width: 576px) {
  .advantages-block .advantages-content .advantages-list .left-block,
  .advantages-block .advantages-content .advantages-list .right-block {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .advantages-block .advantages-content .advantages-list .right-block {
    justify-content: start;
  }
}
.advantages-block .advantages-content .advantages-list .advantages-item {
  gap: 10px;
}
.advantages-block .advantages-content .advantages-list .advantages-item .advantages-icon {
  min-width: 40px;
}
.advantages-block .advantages-content .advantages-list .advantages-item__title {
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
.advantages-block .advantages-content .advantages-list .advantages-item__description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
.advantages-block .advantages-content .advantages-list .advantages-img {
  max-width: 546px;
  width: 100%;
}
.advantages-block .advantages-content .advantages-list .advantages-img img {
  width: 100%;
}
@media (max-width: 992px) {
  .advantages-block .advantages-content .advantages-list .advantages-img {
    max-width: 768px;
    order: 1;
    margin: 0 auto;
  }
}

.catalog-filters__breadcrumb {
  background-color: var(--white);
  padding: 80px 0 40px;
  position: sticky;
  top: 149px;
  z-index: 10;
}
@media (max-width: 768px) {
  .catalog-filters__breadcrumb {
    top: 30px;
  }
}
.catalog-filters__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .catalog-filters__breadcrumb-link {
    display: none;
  }
}
.catalog-filters__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.catalog-filters__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .catalog-filters__breadcrumb-current {
    display: none;
  }
}
.catalog-filters .section-head {
  padding: 40px 0 0;
}
@media (max-width: 576px) {
  .catalog-filters .section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .catalog-filters .section-head .section-title {
    width: 100%;
    white-space: wrap;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .catalog-filters .section-head .line-solid {
    display: none;
  }
}
.catalog-filters__controls-wrapper {
  position: sticky;
  top: 293px;
  z-index: 9;
  padding-bottom: 10px;
  background-color: var(--white);
  z-index: 10;
}
@media (max-width: 992px) {
  .catalog-filters__controls-wrapper {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .catalog-filters__controls-wrapper {
    top: 150px;
  }
}
@media (max-width: 992px) {
  .catalog-filters .filter-drop__btn {
    max-width: 415px;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: var(--blk);
    transition: 0.3s;
  }
  .catalog-filters .filter-drop__btn svg path {
    transition: 0.3s;
  }
  .catalog-filters .filter-drop__btn.active {
    background-color: var(--blk);
    color: var(--white);
  }
  .catalog-filters .filter-drop__btn.active svg path {
    stroke: var(--white);
  }
}
.catalog-filters__controls {
  background-color: var(--white);
  gap: 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  .catalog-filters__controls {
    min-height: 198px;
    max-width: 415px;
    width: 100%;
    flex-direction: column;
    gap: 60px;
    max-height: calc(100vh - 360px);
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--white);
    padding: 40px 40px 20px;
    border: 1px solid var(--blk);
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .catalog-filters__controls.show {
    top: 45px;
    opacity: 1;
    visibility: visible;
  }
  .catalog-filters__controls.show .catalog__select-menu {
    visibility: visible;
  }
}
@media (max-width: 768px) {
  .catalog-filters__controls {
    max-height: calc(100vh - 215px);
  }
}
.catalog-filters .filter-controls {
  gap: 10px;
}
.catalog-filters__blocks {
  gap: 40px;
}
@media (max-width: 1200px) {
  .catalog-filters__blocks {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .catalog-filters__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 576px) {
  .catalog-filters__blocks {
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog-filters__blocks .filter__checkbox {
  gap: 10px;
  cursor: pointer;
}
.catalog-filters__blocks .filter__checkbox-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
.catalog-filters__blocks .catalog__select {
  position: relative;
}
.catalog-filters__blocks .catalog__select-btn {
  gap: 5px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 992px) {
  .catalog-filters__blocks .catalog__select-btn {
    margin-bottom: 12px;
  }
}
.catalog-filters__blocks .catalog__select-btn .arrow-icon {
  transition: 0.3s;
}
@media (max-width: 992px) {
  .catalog-filters__blocks .catalog__select-btn .arrow-icon {
    display: none;
  }
}
.catalog-filters__blocks .catalog__select-btn.active .arrow-icon {
  transform: rotate(-180deg);
}
.catalog-filters__blocks .catalog__select-menu {
  min-width: 100%;
  gap: 20px;
  white-space: nowrap;
  border: 1px solid var(--blk);
  border-radius: 3px;
  background: var(--white);
  padding: 12px 10px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .catalog-filters__blocks .catalog__select-menu {
    position: static;
    padding: 0;
    border: 0;
    gap: 15px;
    visibility: hidden;
    opacity: 1;
  }
}
.catalog-filters__blocks .catalog__select-menu.show {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.catalog-filters__blocks .catalog__select-menu .filter__checkbox {
  gap: 10px;
  cursor: pointer;
}
.catalog-filters__blocks .catalog__select-menu .filter__checkbox-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 992px) {
  .catalog-filters__block--diamond, .catalog-filters__block--no-diamond {
    grid-column: span 2;
    display: flex;
    justify-content: center;
  }
  .catalog-filters__block--diamond .filter__checkbox, .catalog-filters__block--no-diamond .filter__checkbox {
    max-width: 208px;
    width: 100%;
    display: inline-flex;
  }
}
@media (max-width: 576px) {
  .catalog-filters__block--diamond, .catalog-filters__block--no-diamond {
    grid-column: span 1;
  }
}
.catalog-filters__reset, .catalog-filters__show {
  cursor: pointer;
  border-bottom: 1px solid var(--blk);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 992px) {
  .catalog-filters__reset, .catalog-filters__show {
    display: block;
  }
}
.catalog-filters__reset:hover, .catalog-filters__show:hover {
  color: var(--ohra-btn);
  border-color: var(--ohra-btn);
}
.catalog-filters__selected {
  min-height: 48px;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  margin-top: -48px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s;
}
.catalog-filters__selected.show {
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 992px) {
  .catalog-filters__selected {
    display: none;
  }
}
.catalog-filters__selected-item {
  height: 28px;
  padding: 3px 4px;
  gap: 6px;
  background: var(--gray-bg);
  border-radius: 5px;
  padding: 3px 4px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blk);
}
.catalog-filters__selected-item .clear-btn {
  cursor: pointer;
}

.catalog__body {
  margin-bottom: 60px;
  padding-top: 40px;
}
.catalog__body .catalog__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1550px) {
  .catalog__body .catalog__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .catalog__body .catalog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .catalog__body .catalog__list .catalog__card:nth-child(1) {
    order: 1;
  }
  .catalog__body .catalog__list .catalog__card:nth-child(2) {
    order: 2;
  }
  .catalog__body .catalog__list .catalog__card:nth-child(3) {
    order: 8;
  }
}
.catalog__body .catalog__list .catalog__card .catalog-card__link {
  height: 100%;
}
.catalog__body .catalog__list .catalog__card .catalog-card__image {
  margin-bottom: 20px;
  height: 100%;
}
.catalog__body .catalog__list .catalog__card .catalog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.catalog__body .catalog__list .catalog__card .catalog-card__title {
  max-width: 250px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 1200px) {
  .catalog__body .catalog__list .catalog__card .catalog-card__title {
    text-align: left;
  }
}
.catalog__body .catalog__list .catalog__card .catalog-card__price {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 1200px) {
  .catalog__body .catalog__list .catalog__card .catalog-card__price {
    width: 100%;
  }
}

.pagination__page, .pagination__dots {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--blk);
}
.pagination__page.pagination__page--active, .pagination__dots.pagination__page--active {
  background: var(--ohra-btn);
  color: var(--white);
}

.product-page .product-body__breadcrumb {
  background-color: var(--white);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .product-page .product-body__breadcrumb {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .product-page .product-body__breadcrumb {
    padding: 40px 0 60px;
  }
}
.product-page .product-body__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .product-page .product-body__breadcrumb-link {
    display: none;
  }
}
.product-page .product-body__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.product-page .product-body__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .product-page .product-body__breadcrumb-current {
    display: none;
  }
}
.product-page .product-body .product-detail {
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  row-gap: 120px;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-page .product-body .product-detail__vertical-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
}
.product-page .product-body .product-detail__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.product-page .product-body .product-detail__vertical-slider .swiper-slide video, .product-page .product-body .product-detail__slider .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.product-page .product-body .product-detail__slider {
  max-width: 547px;
  max-height: 547px;
  width: 100%;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__slider {
    max-width: 900px;
    max-height: 478px;
  }
}
.product-page .product-body .product-detail__vertical-slider {
  max-width: 263px;
  max-height: 547px;
  height: 100%;
  position: relative;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__vertical-slider {
    max-height: 478px;
  }
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__vertical-slider {
    max-width: 100%;
    max-height: auto;
    height: auto;
    order: 1;
  }
}
.product-page .product-body .product-detail__gallery {
  gap: 20px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__gallery {
    margin-top: -60px;
  }
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__gallery {
    flex-direction: column;
  }
}
.product-page .product-body .product-detail__gallery__nav {
  height: 28px;
  width: 100%;
  cursor: pointer;
  position: absolute;
  left: 0;
  z-index: 2;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__gallery__nav {
    height: 100%;
    width: 26px;
  }
}
.product-page .product-body .product-detail__gallery__nav:hover {
  background-color: var(--price-line);
}
.product-page .product-body .product-detail__gallery__nav--prev {
  top: 0;
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__gallery__nav--prev {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .product-page .product-body .product-detail__gallery__nav--prev svg {
    transform: rotate(-90deg);
  }
}
.product-page .product-body .product-detail__gallery__nav--next {
  bottom: 0;
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__gallery__nav--next {
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
  }
  .product-page .product-body .product-detail__gallery__nav--next svg {
    transform: rotate(-90deg);
  }
}
.product-page .product-body .product-detail__header {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__header {
    display: none;
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__header-mobile {
    display: block;
  }
}
.product-page .product-body .product-detail__title {
  max-width: 525px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 90%;
  color: var(--blk);
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__title {
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .product-page .product-body .product-detail__title {
    font-size: 56px;
    line-height: 100%;
  }
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__title {
    font-size: 40px;
  }
}
.product-page .product-body .product-detail__share {
  position: relative;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__share {
    margin-left: 20px;
  }
}
.product-page .product-body .product-detail__share-btn {
  cursor: pointer;
}
.product-page .product-body .product-detail__share-btn:hover svg path {
  stroke: var(--ohra-btn);
}
.product-page .product-body .product-detail__share-btn svg path {
  transition: 0.3s;
}
.product-page .product-body .product-detail__share-menu {
  width: 237px;
  gap: 10px;
  border: 1px solid var(--blk);
  border-radius: 2px;
  padding: 20px 10px;
  background: #fff;
  position: absolute;
  top: 100%;
  right: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.product-page .product-body .product-detail__share-menu.active {
  opacity: 1;
  visibility: visible;
}
.product-page .product-body .product-detail__share-item {
  cursor: pointer;
}
.product-page .product-body .product-detail__share-item:hover .product-detail__share-link {
  color: var(--ohra-btn);
}
.product-page .product-body .product-detail__share-link {
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__info {
    margin-top: -60px;
  }
}
.product-page .product-body .product-detail__model {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-light);
  margin-top: 15px;
}
.product-page .product-body .product-detail__meta {
  margin-bottom: 20px;
  white-space: nowrap;
  gap: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__meta {
    gap: 20px;
  }
}
.product-page .product-body .product-detail__metal, .product-page .product-body .product-detail__inserts {
  gap: 10px;
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__metal, .product-page .product-body .product-detail__inserts {
    flex-direction: column;
    align-items: start;
    gap: 0;
    text-wrap: auto;
  }
}
.product-page .product-body .product-detail .line-border {
  border: 1px solid var(--price-line);
  width: 100%;
  height: 0px;
  margin-bottom: 6px;
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail .line-border {
    margin: 0;
    border: 0;
  }
}
.product-page .product-body .product-detail__price {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
  text-align: right;
  color: var(--blk);
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__price {
    font-size: 24px;
  }
}
.product-page .product-body .product-detail__actions {
  gap: 20px;
  margin: 27px 0 20px;
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__actions {
    flex-wrap: wrap;
  }
}
.product-page .product-body .product-detail__contacts {
  max-width: calc(50% - 10px);
  float: inline-end;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__contacts {
    max-width: 100%;
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .product-page .product-body .product-detail__contacts {
    flex-direction: column;
  }
}
.product-page .product-body .product-detail__contacts-text {
  max-width: 216px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail__contacts-text {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.product-page .product-body .product-detail__contacts-messenger {
  gap: 10px;
}
.product-page .product-body .product-detail__oferta {
    font-size: 11px;
    font-family: var(--font-family);
    color: var(--blk);
    line-height: 140%;
    margin-top: 10px;
    display: flex;
}
.product-page .product-body .product-detail__oferta span {
    font-weight: 500;
    font-size: 24px;
}
.product-page .product-body .product-detail__price-info {
  font-family: var(--font-family);
  color: var(--gray-light);
  font-size: 16px;
  line-height: 140%;
  text-align: right;
}
.product-page .product-body .product-detail .product-description {
  grid-column: span 2;
}
@media (max-width: 1200px) {
  .product-page .product-body .product-detail .product-description {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .product-page .product-body .product-detail .product-description {
    flex-direction: column;
    gap: 60px;
  }
}
.product-page .product-body .product-detail .product-description__content {
  gap: 20px;
}
@media (max-width: 768px) {
  .product-page .product-body .product-detail .product-description__content {
    order: 1;
  }
}
.product-page .product-body .product-detail .product-description__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
.product-page .product-body .product-detail .product-description__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}

.error-page .error {
  padding: 150px 0 190px;
}
@media (max-width: 576px) {
  .error-page .error {
    padding: 120px 0;
  }
}
.error-page .error__container {
  max-width: 544px;
  margin: 0 auto;
}
.error-page .error__title {
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--blk);
}
.error-page .error__image {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .error-page .error__image {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 40px;
  }
}
.error-page .error__message {
  margin-bottom: 60px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #333;
}
.error-page .error__btn {
  max-width: 300px;
  margin: 0 auto;
}

.success-page .thank-you {
  padding: 130px 0 300px;
}
@media (max-width: 576px) {
  .success-page .thank-you {
    padding: 120px 0;
  }
}
.success-page .thank-you__icon {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .success-page .thank-you__icon {
    max-width: 120px;
  }
}
.success-page .thank-you__title {
  margin-bottom: 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 72px;
  line-height: 90%;
  text-align: center;
  color: var(--blk);
}
@media (max-width: 576px) {
  .success-page .thank-you__title {
    font-size: 56px;
    line-height: 100%;
  }
}
@media (max-width: 576px) {
  .success-page .thank-you__title {
    font-size: 40px;
  }
}
.success-page .thank-you__message {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #333;
  margin-bottom: 60px;
}
.success-page .thank-you__btn {
  max-width: 300px;
}

.about-page .about {
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .about-page .about {
    padding-bottom: 120px;
  }
}
.about-page .about__breadcrumb {
  background-color: var(--white);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .about-page .about__breadcrumb {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .about-page .about__breadcrumb {
    padding: 40px 0 60px;
  }
}
.about-page .about__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .about-page .about__breadcrumb-link {
    display: none;
  }
}
.about-page .about__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.about-page .about__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .about-page .about__breadcrumb-current {
    display: none;
  }
}
.about-page .about__block {
  gap: 20px;
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .about-page .about__block {
    align-items: start;
  }
}
@media (max-width: 576px) {
  .about-page .about__block {
    gap: 40px;
    margin-bottom: 80px;
  }
}
.about-page .about__block:last-child {
  margin-bottom: 0;
}
.about-page .about__block-body {
  max-width: 972px;
}
@media (max-width: 992px) {
  .about-page .about__block-body {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .about-page .about__block-body {
    max-width: 100%;
    order: 2;
  }
}
@media (max-width: 992px) {
  .about-page .about__block--left, .about-page .about__block--right {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about-page .about__block--right .about__text--production {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .about-page .about__block--right .about__text--production {
    margin-top: 0;
  }
}
.about-page .about__image {
  min-width: 350px;
}
@media (max-width: 992px) {
  .about-page .about__image {
    min-width: auto;
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .about-page .about__image {
    max-width: 100%;
    order: 1;
  }
}
.about-page .about__title {
  gap: 20px;
  margin-bottom: 40px;
  white-space: nowrap;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 72px;
  line-height: 90%;
  color: var(--blk);
}
@media (max-width: 992px) {
  .about-page .about__title {
    width: 100%;
    display: none;
    text-align: center;
    font-size: 56px;
    line-height: 100%;
  }
}
@media (max-width: 576px) {
  .about-page .about__title {
    white-space: wrap;
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.about-page .about__title .border-line {
  border-radius: 5px;
  height: 3px;
  background: var(--blk);
}
@media (max-width: 992px) {
  .about-page .about-mobile__title {
    display: block;
  }
}
.about-page .about__text--intro {
  margin-bottom: 63px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
@media (max-width: 992px) {
  .about-page .about__text--intro {
    margin-bottom: 0;
  }
}
.about-page .about-content {
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .about-page .about-content {
    display: none;
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .about-page .about-content {
    order: 4;
  }
}
@media (max-width: 992px) {
  .about-page .about-content__mobile {
    width: 100%;
    display: block;
  }
}
.about-page .about__subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
@media (max-width: 992px) {
  .about-page .about__subtitle {
    margin-bottom: 20px;
  }
}
.about-page .about__text--production {
  max-width: 547px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 992px) {
  .about-page .about__text--production {
    display: inline-block;
    float: inline-end;
  }
}
.about-page .about__quote {
  gap: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 992px) {
  .about-page .about__quote {
    display: none;
  }
}
@media (max-width: 576px) {
  .about-page .about__quote {
    order: 5;
  }
}
@media (max-width: 992px) {
  .about-page .about__quote-mobile {
    display: flex;
  }
}
@media (max-width: 576px) {
  .about-page .about__quote-mobile {
    flex-direction: column;
    align-items: start;
  }
}

.payment-page .payment {
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .payment-page .payment {
    padding-bottom: 120px;
  }
}
.payment-page .payment__breadcrumb {
  background-color: var(--white);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .payment-page .payment__breadcrumb {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .payment-page .payment__breadcrumb {
    padding: 40px 0 60px;
  }
}
.payment-page .payment__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .payment-page .payment__breadcrumb-link {
    display: none;
  }
}
.payment-page .payment__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.payment-page .payment__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .payment-page .payment__breadcrumb-current {
    display: none;
  }
}
.payment-page .payment__methods {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .payment-page .payment__methods {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 700px) {
  .payment-page .payment__methods {
    grid-template-columns: repeat(1, 1fr);
  }
}
.payment-page .payment__method:nth-child(2n+1) .payment__method-text {
  max-width: 470px;
}
.payment-page .payment__method-title {
  gap: 15px;
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
@media (max-width: 576px) {
  .payment-page .payment__method-title {
    gap: 10px;
  }
}
.payment-page .payment__method-title .list-type {
  width: 5px;
  min-width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background-color: var(--blk);
  margin-left: 15px;
}
@media (max-width: 576px) {
  .payment-page .payment__method-title .list-type {
    margin-left: 5px;
  }
}
.payment-page .payment__method-text {
  max-width: 590px;
  padding-left: 35px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
@media (max-width: 576px) {
  .payment-page .payment__method-text {
    padding-left: 20px;
  }
}
.payment-page .payment__cards {
  gap: 40px;
  padding: 20px 0 0 35px;
}
@media (max-width: 992px) {
  .payment-page .payment__cards {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .payment-page .payment__cards {
    padding: 20px 0 0;
  }
}

.guarantees-page .guarantees {
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .guarantees-page .guarantees {
    padding-bottom: 120px;
  }
}
.guarantees-page .guarantees__breadcrumb {
  background-color: var(--white);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .guarantees-page .guarantees__breadcrumb {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .guarantees-page .guarantees__breadcrumb {
    padding: 40px 0 60px;
  }
}
.guarantees-page .guarantees__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .guarantees-page .guarantees__breadcrumb-link {
    display: none;
  }
}
.guarantees-page .guarantees__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.guarantees-page .guarantees__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .guarantees-page .guarantees__breadcrumb-current {
    display: none;
  }
}
.guarantees-page .guarantees .section-head .section-title {
  text-align: start;
}
.guarantees-page .guarantees .section-head .line-solid {
  margin-bottom: 35px;
}

.contact-page .contact {
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .contact-page .contact {
    padding-bottom: 120px;
  }
}
.contact-page .contact__breadcrumb {
  background-color: var(--white);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .contact-page .contact__breadcrumb {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .contact-page .contact__breadcrumb {
    padding: 40px 0 60px;
  }
}
.contact-page .contact__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .contact-page .contact__breadcrumb-link {
    display: none;
  }
}
.contact-page .contact__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.contact-page .contact__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .contact-page .contact__breadcrumb-current {
    display: none;
  }
}
.contact-page .contact__inner {
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .contact-page .contact__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.contact-page .contact-card {
  max-width: 405px;
  gap: 20px;
}
@media (max-width: 1200px) {
  .contact-page .contact-card {
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .contact-page .contact-card {
    max-width: 100%;
    width: 100%;
    display: flex;
  }
}
.contact-page .contact-card:nth-child(2) {
  margin: 0 auto;
}
.contact-page .contact-card:nth-child(3) {
  float: right;
}
.contact-page .contact-card .contact-card__maps-item {
  gap: 5px;
}
.contact-page .contact-card__body--address, .contact-page .contact-card__body--hours, .contact-page .contact-card__maps-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-page .contact-card__title {
  display: inline-block;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
@media (max-width: 1200px) {
  .contact-page .contact-card__title br {
    display: none;
  }
}
.contact-page .contact-card__line, .contact-page .contact-card__time, .contact-page .contact-card__label, .contact-card__reserv {
  display: block;
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
.contact-page .contact-card__note, .contact-page .contact-card__map-link {
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
.contact-page .contact-card__map-link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.contact-page .contact #map {
  height: 460px;
  width: 100%;
  border-radius: 5px;
}
@media (max-width: 576px) {
  .contact-page .contact #map {
    height: 400px;
  }
}
.contact-page .contact .custom-marker {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-page .contact .custom-marker img {
  width: 30px;
  height: 40px;
}

.service-page .service {
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .service-page .service {
    padding-bottom: 120px;
  }
}
.service-page .service__breadcrumb {
  background-color: var(--white);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .service-page .service__breadcrumb {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .service-page .service__breadcrumb {
    padding: 40px 0 60px;
  }
}
.service-page .service__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .service-page .service__breadcrumb-link {
    display: none;
  }
}
.service-page .service__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.service-page .service__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .service-page .service__breadcrumb-current {
    display: none;
  }
}
.service-page .service .section-head .section-title {
  text-align: start;
}
.service-page .service .section-head .line-solid {
  margin-bottom: 35px;
}
.service-page .service__inner {
  gap: 20px;
}
@media (max-width: 1200px) {
  .service-page .service__inner {
    flex-direction: column;
  }
}
.service-page .service__slider {
  display: inline-block;
  max-width: 50%;
}
@media (max-width: 1200px) {
  .service-page .service__slider {
    max-width: 100%;
  }
}
.service-page .service__slider .service-compare {
  margin-bottom: 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.service-page .service__slider .service-compare .compare__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--blk);
  cursor: ew-resize;
}
.service-page .service__slider .service-compare__image--before {
  width: 100%;
}
.service-page .service__slider .service-compare__image--before img {
  width: 100%;
}
.service-page .service__slider .service-compare__image--after {
  max-width: 100%;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.service-page .service__slider .service-compare__image--after img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.service-page .service__slider-btn {
  width: 24px;
  height: 45px;
  background: var(--blk);
  cursor: ew-resize;
}
@media (max-width: 576px) {
  .service-page .service__slider-btn {
    width: 20px;
    height: 24px;
  }
  .service-page .service__slider-btn svg {
    width: 6px;
    height: 14px;
  }
}
.service-page .service__slider-btn--prev {
  border-radius: 5px 5px 0 0;
}
.service-page .service__slider-btn--next {
  border-radius: 0 0 5px 5px;
}
.service-page .service__slider-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--blk);
}
.service-page .service__content {
  display: inline-block;
  max-width: 50%;
}
@media (max-width: 1200px) {
  .service-page .service__content {
    max-width: 100%;
  }
}
.service-page .service__lead {
  margin-bottom: 40px;
}
.service-page .service__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
.service-page .service-list {
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .service-page .service-list {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
}
.service-page .service-list__items {
  gap: 20px;
  list-style-type: disc;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .service-page .service-list__items {
    max-width: 540px;
  }
}
.service-page .service-list__title {
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
.service-page .service-list__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
.service-page .service__note {
  margin-bottom: 24px;
}

.custom-jewelry__page .custom-jewelry {
  padding-bottom: 200px;
}
@media (max-width: 576px) {
  .custom-jewelry__page .custom-jewelry {
    padding-bottom: 120px;
  }
}
.custom-jewelry__page .custom-jewelry__breadcrumb {
  background-color: var(--white);
  padding: 80px 0;
}
@media (max-width: 992px) {
  .custom-jewelry__page .custom-jewelry__breadcrumb {
    padding: 60px 0 80px;
  }
}
@media (max-width: 576px) {
  .custom-jewelry__page .custom-jewelry__breadcrumb {
    padding: 40px 0 60px;
  }
}
.custom-jewelry__page .custom-jewelry__breadcrumb-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .custom-jewelry__page .custom-jewelry__breadcrumb-link {
    display: none;
  }
}
.custom-jewelry__page .custom-jewelry__breadcrumb-link:hover {
  color: var(--ohra-btn);
}
.custom-jewelry__page .custom-jewelry__breadcrumb-current {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-light);
}
@media (max-width: 576px) {
  .custom-jewelry__page .custom-jewelry__breadcrumb-current {
    display: none;
  }
}
@media (max-width: 1200px) {
  .custom-jewelry__page .custom-jewelry .section-head .section-title {
    width: 100%;
    text-align: center;
    font-size: 56px;
    line-height: 100%;
  }
}
@media (max-width: 768px) {
  .custom-jewelry__page .custom-jewelry .section-head .section-title {
    white-space: wrap;
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .custom-jewelry__page .custom-jewelry .section-head .line-solid {
    display: none;
  }
}
.custom-jewelry__page .custom-jewelry__inner {
  gap: 125px;
}
.custom-jewelry__page .custom-jewelry .creation__header {
  margin-bottom: 40px;
}
.custom-jewelry__page .custom-jewelry .creation,
.custom-jewelry__page .custom-jewelry .metal {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .custom-jewelry__page .custom-jewelry .creation,
  .custom-jewelry__page .custom-jewelry .metal {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1200px) {
  .custom-jewelry__page .custom-jewelry .creation-image,
  .custom-jewelry__page .custom-jewelry .metal-image {
    order: 1;
  }
}
.custom-jewelry__page .custom-jewelry .creation-image img,
.custom-jewelry__page .custom-jewelry .metal-image img {
  width: 100%;
}
.custom-jewelry__page .custom-jewelry .creation-content, .custom-jewelry__page .custom-jewelry .creation-body, .custom-jewelry__page .custom-jewelry .creation__body,
.custom-jewelry__page .custom-jewelry .metal-content,
.custom-jewelry__page .custom-jewelry .metal-body,
.custom-jewelry__page .custom-jewelry .metal__body {
  gap: 20px;
}
@media (max-width: 1200px) {
  .custom-jewelry__page .custom-jewelry .creation-content, .custom-jewelry__page .custom-jewelry .creation-body, .custom-jewelry__page .custom-jewelry .creation__body,
  .custom-jewelry__page .custom-jewelry .metal-content,
  .custom-jewelry__page .custom-jewelry .metal-body,
  .custom-jewelry__page .custom-jewelry .metal__body {
    order: 2;
  }
}
.custom-jewelry__page .custom-jewelry .creation__intro,
.custom-jewelry__page .custom-jewelry .metal__intro {
  margin-bottom: 60px;
}
.custom-jewelry__page .custom-jewelry .creation__intro-text--highlight,
.custom-jewelry__page .custom-jewelry .metal__intro-text--highlight {
  margin-bottom: 20px;
}
.custom-jewelry__page .custom-jewelry .creation__intro-text--highlight, .custom-jewelry__page .custom-jewelry .creation__header-title, .custom-jewelry__page .custom-jewelry .creation__process-title, .custom-jewelry__page .custom-jewelry .creation__process-note, .custom-jewelry__page .custom-jewelry .creation__title, .custom-jewelry__page .custom-jewelry .creation__final,
.custom-jewelry__page .custom-jewelry .metal__intro-text--highlight,
.custom-jewelry__page .custom-jewelry .metal__header-title,
.custom-jewelry__page .custom-jewelry .metal__process-title,
.custom-jewelry__page .custom-jewelry .metal__process-note,
.custom-jewelry__page .custom-jewelry .metal__title,
.custom-jewelry__page .custom-jewelry .metal__final {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--blk);
}
.custom-jewelry__page .custom-jewelry .creation__intro-text--secondary,
.custom-jewelry__page .custom-jewelry .metal__intro-text--secondary {
  max-width: 605px;
}
.custom-jewelry__page .custom-jewelry .creation__intro-text--secondary, .custom-jewelry__page .custom-jewelry .creation__header-note, .custom-jewelry__page .custom-jewelry .creation__process-item, .custom-jewelry__page .custom-jewelry .creation__note, .custom-jewelry__page .custom-jewelry .creation__text,
.custom-jewelry__page .custom-jewelry .metal__intro-text--secondary,
.custom-jewelry__page .custom-jewelry .metal__header-note,
.custom-jewelry__page .custom-jewelry .metal__process-item,
.custom-jewelry__page .custom-jewelry .metal__note,
.custom-jewelry__page .custom-jewelry .metal__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--blk);
}
.custom-jewelry__page .custom-jewelry .creation__header,
.custom-jewelry__page .custom-jewelry .metal__header {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .custom-jewelry__page .custom-jewelry .creation__header,
  .custom-jewelry__page .custom-jewelry .metal__header {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
}
.custom-jewelry__page .custom-jewelry .creation__note, .custom-jewelry__page .custom-jewelry .creation__header-note,
.custom-jewelry__page .custom-jewelry .metal__note,
.custom-jewelry__page .custom-jewelry .metal__header-note {
  max-width: 540px;
}
@media (max-width: 768px) {
  .custom-jewelry__page .custom-jewelry .creation__process,
  .custom-jewelry__page .custom-jewelry .metal__process {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
}
.custom-jewelry__page .custom-jewelry .creation__process-title,
.custom-jewelry__page .custom-jewelry .metal__process-title {
  margin-bottom: 20px;
}
.custom-jewelry__page .custom-jewelry .creation__process-list,
.custom-jewelry__page .custom-jewelry .metal__process-list {
  margin-bottom: 40px;
  gap: 20px;
  list-style-type: decimal;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .custom-jewelry__page .custom-jewelry .creation__process-list,
  .custom-jewelry__page .custom-jewelry .metal__process-list {
    max-width: 540px;
  }
}/*# sourceMappingURL=main.css.map */
/* End */


/* Start:/local/templates/s1/styles/custom.css?178068149512953*/
.header-logo a {
    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;
    gap: 15px;
}
.header-logo a span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    color: var(--blk);
    line-height: 100%;
}
.header-top {
    padding: 8px 0 24px;
    align-items: flex-start;
}
.header.header--scrolled {
    position: relative;
}
.catalog-filters__breadcrumb {
    position: relative;
    padding: 20px 0;
    top: auto;
}
.product-page .product-body__breadcrumb {
    padding: 20px 0 80px;
}
.catalog-filters__controls-wrapper {
    position: relative;
    top: auto;
}
.catalog-filters .section-head {
    padding: 0;
    margin-bottom: 40px;
}
.home-block__content-title {
    font-size: 44px;
    padding-right: 16%;
}
.home-block__decorations {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 546px 20px 546px;
    grid-template-columns: repeat(2, 546px);
    gap: 20px;
}
.home-block__decorations-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0!important;
}
.home-block__decorations-swiper .swiper-slide.swiper-slide-active {
    opacity: 1!important;
}
.product-page .product-body .product-detail__gallery {
    gap: 60px;
}
.product-page .product-body .product-detail {
    -ms-grid-columns: 1fr 60px 547px;
    grid-template-columns: 1fr 547px;
    gap: 60px;
    padding: 0 102px;
}
.product-page .product-body .product-detail__title {
    max-width: 519px;
    font-size: 56px;
}
.product-page .product-body .product-detail__model {
    margin-top: 30px;
}
.product-page .product-body .product-detail__actions {
    margin: 20px 0 20px;
}
.button {
    padding: 10px 13px;
}
.product-page .product-body .product-detail__contacts {
    max-width: 100%;
    gap: 32px;
}
.product-page .product-body .product-detail__contacts-text {
    max-width: 100%;
}
.product-page .product-body .product-detail__contacts-messenger {
    gap: 5px;
}
.product-page .product-body .product-detail__contacts-messenger a svg {
    width: 28px;
    height: 28px;
}
.catalog-categories__item:not(.catalog-card--large) {
    padding: 20px 20px 40px;
}
.catalog-categories__text {
    text-transform: uppercase;
}
.catalog-categories__img {
    margin: auto 0;
}
.catalog-categories__item.catalog-card--large .catalog-categories__img {
    margin: 0;
}
img {
    pointer-events: none;
}
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: -140px;
    background: var(--blk);
    width: 100%;
    z-index: 3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cookie-container {
    color: var(--white);
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cookie-text {
    font-family: var(--font-family);
}
.cookie-text br:nth-child(1), .cookie-text br:nth-child(3) {
    display: none;
}
.cookie-text a {
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cookie-text a:hover {
    color: var(--ohra-btn);
}
.cookie-text a::after {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 3px;
    border-bottom: 1px solid var(--white);
    position: absolute;
    top: calc(100% - -1px);
    left: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cookie-text a:hover::after {
    border-color: var(--ohra-btn);
}
.cookie-banner.active {
    bottom: 0;
}
section:not(.payment) .section-title {
    font-size: 40px;
}
.swiper-slide__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
.swiper-slide__link span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: var(--blk);
}
.recently-viewed__slider .swiper-slide__image {
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
}
.recently-viewed__nav {
    height: 188px;
}
.idea__title {
    font-size: 40px;
    line-height: 100%;
}
.advantages-block .advantages-content .advantages-list .advantages-item .advantages-icon {
    min-width: 20px;
    max-width: 20px;
}
.advantages-block .advantages-content .advantages-list .advantages-item {
    gap: 20px;
}
.header-nav__in {
    padding-top: 16px;
}
.header-nav__list {
    gap: 44px;
}
.home-block .main-container {
    padding: 288px 20px 146px;
}
.home-block__content {
    padding-top: 48px;
}
.catalog-categories {
    padding-top: 162px;
}
.home-block__decorations > img:nth-child(2) {
    display: none;
}
.header-nav__btn svg path {
    fill: var(--blk);
}
.main-container > .idea__title {
    display: none;
    font-size: 56px;
    text-align: center;
    padding: 0 27px;
}
.main-container > .idea__title br {
    display: none;
}
.product-page .product-body .product-detail__share {
    position: relative;
    top: 15px;
}
.catalog-card__body {
    gap: 10px;
}
.photo-btn {
    position: fixed;
    right: 120px;
    bottom: 120px;
    z-index: 400;
    cursor: pointer;
}
.photo-modal .modal-content {
    margin: auto 220px 190px auto;
}
.photo-modal .form-control.button {
    height: 40px;
}
.photo-modal .form-control.button input {
    display: none;
}
.header-location {
    align-items: initial;
}
.header-location .icon {
    margin-top: 16px;
}
.payment__container .section-head:not(:first-of-type) {
    margin-top: 120px;
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-list .blog-item {
    display: grid;
    gap: 20px;
    align-content: start;
}
.blog-item__name {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: var(--blk);
}
.blog-item__picture {
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    position: relative;
}
.blog-item__picture img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail {
    display: grid;
    gap: 40px;
}
.blog-detail__image {
    height: 0;
    overflow: hidden;
    padding-bottom: 50%;
    position: relative;
}
.blog-detail__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail__text {
    font-family: var(--font-family);
    font-size: 18px;
    display: grid;
    gap: 20px;
}
@media (max-width: 992px) {
    .header-logo {
        width: 97px;
    }
    .header-logo a span {
        display: none;
    }
    .header-location {
        display: none;
    }
    .header-top {
        padding: 20px 0;
    }
    .home-block .main-container {
        padding: 180px 20px 122px;
        gap: 100px;
    }
    .home-block__content-title {
        font-size: 50px;
        padding: 0 44px;
        margin-bottom: 30px;
    }
    .home-block__content-subtitle {
        margin-bottom: 40px;
    }
    .home-block__decorations {
        width: 100%;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
    .home-block__decorations > img:nth-child(1) {
        display: none;
    }
    .home-block__decorations > img:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .home-block__decorations-swiper.swiper {
        padding-top: 70px;
    }
    .catalog-categories {
        padding-top: 120px;
    }
    .catalog-categories__item.catalog-card--large {
        height: 690px;
    }
    .main-container > .idea__title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .idea__preview {
        margin-top: 55px;
        padding: 0;
    }
    .idea__preview-item {
        left: 60px;
    }
    .idea__preview-img {
        margin: 0;
    }
    .idea__form-block {
        max-width: 100%;
        margin-top: 60px;
    }
    .header-close {
        position: absolute;
        right: 20px;
        top: 30px;
    }
    .header-nav__mobile-head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }
    .header-nav__mobile-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 15px;
    }
    .header-nav__in {
        padding-top: 30px;
    }
    .header-contact__call {
        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;
        gap: 5px;
    }
    .header-nav__list {
        gap: 18px;
    }
    .header-nav__mobile-bottom .header-location {
        margin-right: auto;
    }
    .product-page .product-body .product-detail {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
        gap: 20px;
    }
    .product-page .product-body .product-detail__title {
        max-width: 100%;
    }
    .product-page .product-body .product-detail__gallery {
        gap: 20px;
    }
    .product-page .product-body .product-detail__info {
        margin-top: 0;
    }
    .cookie-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }
    .cookie-text {
        font-size: 12px;
    }
    .cookie-text br:nth-child(1), .cookie-text br:nth-child(3) {
        display: block;
    }
    .cookie-text br:nth-child(2) {
        display: none;
    }
    button.cookie-accept {
        height: 30px;
    }
    .photo-btn {
        right: 20px;
        bottom: 20px;
    }
    .photo-modal .modal-content {
        margin: auto 0 90px 0;
    }
}
@media (max-width: 768px) {
    .blog .section-title {
        white-space: wrap;
    }
}
@media (max-width: 576px) {
    .header-top {
        padding: 15px 0;
    }
    .header-logo {
        width: 65px;
        height: 46px;
    }
    .home-block__content {
        padding-top: 0;
    }
    .home-block .main-container {
        padding: 152px 10px 120px;
        min-height: auto;
    }
    .home-block__content-title {
        margin-bottom: 44px;
        padding: 0;
    }
    .home-block__decorations-swiper.swiper {
        padding-top: 30px;
    }
    .catalog-categories {
        padding-top: 60px;
    }
    .catalog-categories__list {
        gap: 20px;
    }
    .catalog-categories__item {
        height: 300px;
    }
    .catalog-categories__item:not(.catalog-card--large) {
        padding: 20px 20px 10px;
    }
    .catalog-categories__item.catalog-card--large {
        height: 300px;
        padding: 20px 20px 10px;
    }
    .catalog-categories__item.catalog-card--large .catalog-categories__text {
        position: relative;
        bottom: auto;
        padding: 0;
    }
    .catalog-categories__item:nth-child(3) .catalog-categories__text, .catalog-categories__item:nth-child(5) .catalog-categories__text {
        margin-bottom: 30px;
    }
    .catalog-categories__img {
        max-height: 193px;
    }
    .catalog-categories__img img {
        height: 100%;
    }
    .main-container > .idea__title {
        font-size: 40px;
    }
    .idea__preview {
        margin-top: 35px;
    }
    .idea__preview-item:nth-child(2) {
        padding: 6px;
        margin-top: 15px;
    }
    .idea__form-block {
        margin-top: 35px;
    }
    .header-close {
        right: 10px;
    }
    .header-logo {
        width: 94px;
        height: 66px;
    }
    .header-nav__in {
        padding-top: 75px;
    }
    .header-nav__mobile-head {
        gap: 15px;
    }
    .header-contact__call {
        gap: 0;
    }
    .header-nav__mobile-bottom {
        gap: 20px;
    }
    .product-page .product-body .product-detail__title {
        font-size: 40px;
    }
    .product-page .product-body .product-detail__gallery {
        margin-top: 0;
    }
    .product-page .product-body__breadcrumb {
        padding: 40px 0 60px;
    }
    .cookie-text {
        font-size: 10px;
        text-align: center;
    }
    .photo-btn {
        width: 80px;
        height: 80px;
        right: 30px;
    }
    .photo-modal .modal-content {
        margin: auto 0 60px 0;
    }
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* End */


/* Start:/local/templates/s1/components/bitrix/menu/header/style.min.css?1761211461490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/s1/components/bitrix/menu/header/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/s1/components/bitrix/news.list/viewed/style.css?1761211461150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/local/templates/s1/components/bitrix/form/wf_3/bitrix/form.result.new/.default/style.css?1761211461666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/templates/s1/components/bitrix/form/wf_3/bitrix/form.result.new/.default/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/templates/s1/components/bitrix/form/wf_3/bitrix/form.result.new/.default/images/icon_warn.gif);
}
/* End */


/* Start:/local/templates/s1/components/bitrix/menu/footer/style.min.css?1761211461490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/s1/components/bitrix/menu/footer/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/s1/components/bitrix/form/wf_4/bitrix/form.result.new/.default/style.css?1761211461666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/templates/s1/components/bitrix/form/wf_4/bitrix/form.result.new/.default/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/templates/s1/components/bitrix/form/wf_4/bitrix/form.result.new/.default/images/icon_warn.gif);
}
/* End */


/* Start:/local/templates/s1/components/bitrix/form/wf_5/bitrix/form.result.new/.default/style.css?1761211440666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/templates/s1/components/bitrix/form/wf_5/bitrix/form.result.new/.default/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/templates/s1/components/bitrix/form/wf_5/bitrix/form.result.new/.default/images/icon_warn.gif);
}
/* End */


/* Start:/local/templates/s1/components/bitrix/form/wf_6/bitrix/form.result.new/.default/style.css?1761211440666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/templates/s1/components/bitrix/form/wf_6/bitrix/form.result.new/.default/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/templates/s1/components/bitrix/form/wf_6/bitrix/form.result.new/.default/images/icon_warn.gif);
}
/* End */


/* Start:/local/templates/s1/template_styles.css?1761211461361*/
#bx-panel {
    z-index: 1000 !important;
}
.checkbox-input:disabled + .form-checkbox, .checkbox-input:disabled + .form-checkbox + .filter__checkbox-text {
    opacity: 0.5;
    pointer-events: none;
}
.grecaptcha-badge {
    display: none !important;
}
.product-page .product-body .product-detail__share-item:not(:last-child) {
    display: none;
}
/* End */
/* /local/templates/s1/styles/main.css?177895413285928 */
/* /local/templates/s1/styles/custom.css?178068149512953 */
/* /local/templates/s1/components/bitrix/menu/header/style.min.css?1761211461490 */
/* /local/templates/s1/components/bitrix/news.list/viewed/style.css?1761211461150 */
/* /local/templates/s1/components/bitrix/form/wf_3/bitrix/form.result.new/.default/style.css?1761211461666 */
/* /local/templates/s1/components/bitrix/menu/footer/style.min.css?1761211461490 */
/* /local/templates/s1/components/bitrix/form/wf_4/bitrix/form.result.new/.default/style.css?1761211461666 */
/* /local/templates/s1/components/bitrix/form/wf_5/bitrix/form.result.new/.default/style.css?1761211440666 */
/* /local/templates/s1/components/bitrix/form/wf_6/bitrix/form.result.new/.default/style.css?1761211440666 */
/* /local/templates/s1/template_styles.css?1761211461361 */
