html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
  color: #000000;
  background: #ffffff;
}

@media (max-width: 767px) {
  body #panel {
    display: none;
  }
}
*, :before, :after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: color .2s ease-in-out;
  cursor: pointer;
}

input, button, textarea {
  padding: 0;
  width: initial;
  font-family: Roboto, sans-serif;
  font-size: initial;
  font-weight: 300;
  color: #000000;
  background: transparent;
  border: none;
  outline: none;
}
input::placeholder, button::placeholder, textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #c4c4c4;
}
input:hover, input:focus, button:hover, button:focus, textarea:hover, textarea:focus {
  transition: all .2s ease-in-out;
}
input:disabled, button:disabled, textarea:disabled {
  pointer-events: none;
}

textarea {
  resize: none;
}

input {
  font-family: Roboto, sans-serif;
  outline: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input::-webkit-datetime-edit {
  color: #a3afbc;
}
input::-webkit-calendar-picker-indicator {
  filter: opacity(0.3);
}

[data-modal]:not(.button) {
  cursor: pointer;
}
[data-modal]:not(.button):hover {
  color: #fe693a;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.hidden {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.color-primary {
  color: #fe693a;
}

.color-red {
  color: #ff0000;
}

.color-green {
  color: #27ae60;
}

.color-gray {
  color: #5c5c5c;
}

section {
  padding: 100px 0;
}
@media (max-width: 1600px) {
  section {
    padding: 85px 0;
  }
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

img {
  max-width: 100%;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 90px !important;
  padding-right: 90px !important;
  width: 100% !important;
}
.container-inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1170px;
}
.container-inner.small {
  max-width: 900px;
}
.container-inner .block-section__header {
  margin-bottom: 35px;
}
@media (max-width: 1600px) {
  .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1.1;
  font-weight: 300;
}

.h1 {
  font-size: 100px;
}
@media (max-width: 1600px) {
  .h1 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .h1 {
    font-size: 50px;
  }
}

.h2 {
  font-size: 88px;
}
.h2-medium {
  font-size: 64px;
}
@media (max-width: 1600px) {
  .h2 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .h2 {
    font-size: 54px;
  }
  .h2-medium {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .h2 {
    font-size: 46px;
  }
  .h2-medium {
    font-size: 32px;
  }
}

.h3 {
  font-size: 38px;
}
@media (max-width: 1600px) {
  .h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .h3 {
    font-size: 24px;
  }
}

.h4 {
  font-size: 30px;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.icon-svg {
  width: inherit;
  height: inherit;
  fill: currentcolor;
  transition: fill .2s ease-in-out, stroke .2s ease-in-out, color .2s ease-in-out;
}

.link {
  display: inline;
  text-decoration: underline solid #000000;
  color: #000000;
  transition: color .2s ease-in-out, text-decoration-color .2s ease-in-out;
  cursor: pointer;
  text-underline-offset: 1px;
  text-decoration-thickness: from-font;
}
.link-dotted {
  text-decoration-style: dotted;
}
.link-gray {
  color: #5c5c5c;
  text-decoration-color: #5c5c5c;
}
.link_white {
  color: #efefef;
}
.link_underline {
  text-decoration-color: inherit;
}
.link:hover {
  color: #fe693a;
  text-decoration-color: #fe693a;
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: 14px;
}
@media (max-width: 999px) {
  .text-small {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .sm-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sd-none {
    display: none !important;
  }
}

.block-section__header {
  position: relative;
  margin-bottom: 55px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.block-section__header.center {
  justify-content: center;
  text-align: center;
}
.block-section__description {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.55;
}
.block-section__description:not(:empty) {
  margin-bottom: 55px;
}
.block-section .h2 a {
  color: #fe693a;
}
@media (max-width: 1199px) {
  .block-section__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .block-section__header {
    margin-bottom: 25px;
  }
  .block-section__header.center {
    text-align: left;
  }
  .block-section__description {
    font-size: 15px;
  }
  .block-section__description:not(:empty) {
    margin-bottom: 25px;
  }
}

.block-swiper-other {
  overflow: hidden;
}
.block-swiper-other .h2 {
  font-size: 64px;
}
.block-swiper-other .swiper {
  overflow: initial;
}
.block-swiper-other .swiper-slider {
  height: auto;
}
@media (max-width: 1199px) {
  .block-swiper-other .h2 {
    font-size: 48px;
  }
}
@media (max-width: 999px) {
  .block-swiper-other .h2 {
    font-size: 32px;
  }
}

.page-back {
  width: max-content;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #000000;
}
.page-back .icon-svg {
  width: 17px;
  height: 13px;
}
.page-back:hover {
  color: #fe693a;
}

.air-datepicker .air-datepicker-cell {
  color: #000000;
}
.air-datepicker .air-datepicker-cell.-day- {
  border-radius: 50%;
}
.air-datepicker .air-datepicker-cell.-disabled- {
  pointer-events: none;
  color: #c4c4c4;
}
.air-datepicker .air-datepicker-cell.-selected- {
  color: #ffffff;
  background: #fe693a;
}
.air-datepicker .air-datepicker-cell.-selected-.-other-month- {
  background: rgba(254, 105, 58, 0.5);
}

.map-tooltip {
  position: relative;
  z-index: 2;
  padding: 25px 0 25px 25px;
  width: 350px;
  font-size: 15px;
  line-height: 1.2;
  background: #ffffff;
}
.map-tooltip__close {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 15px;
  height: 15px;
  display: block;
  background: url("/images/icons/close.svg") center/contain no-repeat;
  border: none;
  cursor: pointer;
}
.map-tooltip__content {
  padding-right: 25px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.map-tooltip__title {
  margin: 0 !important;
  font-size: 20px;
  font-weight: 400 !important;
}
.map-tooltip__row {
  display: flex;
  color: #5c5c5c;
}
.map-tooltip__row .icon {
  margin-top: 3px;
  margin-right: 10px;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background-color: #5c5c5c;
}
.map-tooltip__row[href]:hover {
  color: #fe693a;
}
.map-tooltip .balloon_cluster_content {
  padding-right: 25px;
}
.map-tooltip .balloon_cluster_nav {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.map-tooltip .balloon_cluster_nav .cluster_item {
  font-size: 14px;
  font-weight: 400;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.map-tooltip .balloon_cluster_nav .cluster_item:hover {
  color: #fe693a;
}
.map-tooltip .balloon_cluster_nav .cluster_item.active {
  pointer-events: none;
  color: #fe693a;
}
.map-tooltip .balloon_content {
  margin-top: 16px;
  padding-top: 12px;
  display: none;
  gap: 10px;
  flex-direction: column;
  border-top: 1px solid #000000;
}
.map-tooltip .balloon_content.active {
  display: flex;
}
.map-tooltip ymaps {
  width: auto !important;
  height: auto !important;
}

.button-to-modal {
  display: flex;
  gap: 20px 15px;
  align-items: center;
}
.button-to-modal__title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.button-to-modal__select {
  display: flex;
  align-items: center;
}
.button-to-modal__clear {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  display: none;
  justify-content: center;
  align-items: center;
  background: #fe693a;
  border-radius: 50%;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.button-to-modal__clear .icon {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
}
.button-to-modal__clear:hover {
  opacity: .7;
}
.button-to-modal__button {
  padding: 3px 22px;
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  text-transform: uppercase;
  color: #ffffff !important;
  background: #fe693a;
  border-radius: 66px;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.button-to-modal__button:after {
  content: '';
  margin-left: 5px;
  display: block;
  border-top: 7px solid #ffffff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.button-to-modal__button span {
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.button-to-modal__button:hover {
  opacity: .8;
}
.button-to-modal__text {
  display: none !important;
}
@media (max-width: 767px) {
  .button-to-modal__button {
    font-weight: 500;
  }
  .button-to-modal__clear {
    display: none !important;
  }
  .button-to-modal_inner {
    gap: 5px;
    flex-direction: row !important;
  }
  .button-to-modal_inner .button-to-modal__button {
    display: inline-block;
    font-weight: 300;
    text-decoration: underline;
    color: #000000 !important;
    text-decoration-style: dotted;
  }
  .button-to-modal_inner .button-to-modal__button span {
    max-width: initial;
    overflow: initial;
    white-space: normal;
  }
  .button-to-modal_inner .button-to-modal__button:after {
    margin-bottom: 2px;
    display: inline-block;
  }
}

.button-filter {
  margin-top: 30px;
  padding: 12px 20px;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #ffffff;
  background: #fe693a;
  border-radius: 50px;
}
.button-filter__icon {
  position: relative;
  margin-left: 15px;
}
.button-filter__icon span {
  position: absolute;
  top: -8px;
  right: -4px;
  width: 15px;
  min-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  line-height: 1;
  color: #fe693a;
  background: #ffffff;
  border-radius: 50%;
}
.button-filter__icon span:empty {
  display: none;
}
.button-filter__icon .icon {
  width: 20px;
  height: 12px;
  background-color: #ffffff;
}

.button-dark {
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background: #231f20;
  outline: none;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.button-dark:hover {
  opacity: .8;
}
.button-dark.disabled {
  opacity: .6;
  pointer-events: none;
}

.button-outline {
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  background: #ffffff;
  border: 1px solid #000000;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.button-outline_large {
  padding: 20px 40px;
  width: max-content;
  height: auto;
  font-size: 20px;
  font-weight: 300;
  text-transform: none;
  color: #fe693a;
  border-color: #fe693a;
  border-radius: 50px;
}
.button-outline:hover {
  opacity: .8;
}
.button-outline.disabled {
  opacity: .6;
  pointer-events: none;
}
@media (max-width: 999px) {
  .button-outline_large {
    padding: 14px 40px;
    font-size: 15px;
  }
}

.icon {
  flex-shrink: 0;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  transition: background-color .2s ease-in-out;
}
.icon-close {
  -webkit-mask-image: url("/images/icons/close.svg");
}
.icon-home {
  -webkit-mask-image: url("/images/icons/home.svg");
}
.icon-point {
  -webkit-mask-image: url("/images/icons/point.svg");
}
.icon-clock {
  -webkit-mask-image: url("/images/icons/clock.svg");
}
.icon-global {
  -webkit-mask-image: url("/images/icons/global.svg");
}
.icon-phone {
  -webkit-mask-image: url("/images/icons/phone.svg");
}
.icon-arrow-right {
  -webkit-mask-image: url("/images/icons/arrow.svg");
}
.icon-filter {
  -webkit-mask-image: url("/images/icons/filter.svg");
}
.icon-eye {
  -webkit-mask-image: url("/images/icons/eye.png");
}

.button-link {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color .2s ease-in-out, opacity .2s ease-in-out;
  cursor: pointer;
}
.button-link__icon {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fe693a;
  border-radius: 50%;
}
.button-link__icon .icon {
  width: 18px;
  height: 14px;
  background-color: #ffffff;
}
.button-link.dark {
  color: #231f20;
}
.button-link.dark .button-link__icon {
  background: #231f20;
}
.button-link:hover {
  opacity: .7;
}

.modern-page-navigation {
  margin-top: 75px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.modern-page-navigation .modern-page-current, .modern-page-navigation a {
  padding: 0 !important;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
  color: #000000;
  background: #ffffff;
  border: 1px solid transparent !important;
  border-radius: 50%;
  transition: border-color .2s ease-in-out, background .2s ease-in-out, color .2s ease-in-out;
  cursor: pointer;
}
.modern-page-navigation .modern-page-current:hover, .modern-page-navigation a:hover {
  color: #fe693a;
  background: #efefef;
}
.modern-page-navigation .modern-page-current {
  pointer-events: none;
  border-color: #000000 !important;
}
.modern-page-navigation .modern-page-title, .modern-page-navigation .modern-page-previous, .modern-page-navigation .modern-page-next {
  display: none !important;
}

.button {
  width: max-content;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  text-decoration: none;
  color: #000000;
  border: none;
  border-radius: 50px;
  outline: none;
  transition: background .2s ease-in-out;
  cursor: pointer;
}
.button .icon-svg {
  width: 37px;
  height: 37px;
}
.button .icon-svg .icon-svg {
  width: inherit;
  height: inherit;
}
.button-primary {
  padding: 13px 34px;
  font-size: 36px;
  color: #ffffff;
  background: #fe693a;
}
.button-primary.outline {
  color: #fe693a;
  background: transparent !important;
  border: 1px solid #fe693a;
}
.button-primary:hover {
  background: rgba(254, 105, 58, 0.85);
}
.button-primary:disabled, .button-primary [disabled] {
  pointer-events: none;
  background: #c4c4c4;
  cursor: default;
}
.button-secondary {
  padding: 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  background: #231f20;
  border-radius: 0;
}
.button-secondary:hover {
  background: rgba(35, 31, 32, 0.85);
}
.button-info {
  padding: 20px;
  font-size: 14px;
  color: #231f20;
  background: #efefef;
}
.button-info:hover {
  background: #c4c4c4;
}
.button-outline {
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #000000;
  border-radius: 0;
  transition: opacity .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out;
}
.button-outline.primary {
  border-color: #fe693a;
  border-radius: 50px;
}
.button-outline:hover {
  opacity: .8;
}
.button-medium {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  font-size: 18px !important;
  font-weight: 300;
}
.button-medium .icon-svg {
  width: 22px;
  height: 22px;
}
.button-medium .icon-svg .icon-svg {
  width: inherit;
  height: inherit;
}
.button-icon {
  width: 22px;
  height: 22px;
}
.button-icon .icon-svg {
  width: inherit;
  height: inherit;
}
.button-normal {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}
.button-squire {
  padding: 20px;
  width: 100%;
  max-width: 300px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000000;
  background: #fe693a;
  border-radius: 0;
}
.button-squire:hover {
  opacity: .8;
}
.button-small {
  padding: 4px 10px !important;
  font-size: 15px !important;
  line-height: 21px !important;
  font-weight: 300 !important;
}
.button:disabled, .button .disabled {
  opacity: .5;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 1600px) {
  .button-primary {
    padding: 10px 30px;
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .button-primary {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .button-medium {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .button-small {
    font-size: 12px !important;
  }
  .button-outline {
    padding: 15px 24px;
  }
  .button-squire {
    padding: 15px 20px;
  }
}

.swiper {
  width: 100%;
  min-width: 0;
}
.swiper-overflow {
  overflow: hidden;
}
.swiper-overflow .swiper {
  overflow: initial;
}
.swiper-pagination {
  bottom: 90px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.swiper-pagination-bullet {
  margin: 0 !important;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
}
.swiper-pagination-bullet-active {
  background: #fe693a;
}
.swiper-scroll {
  padding-bottom: 30px;
}
.swiper-scrollbar {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: #efefef;
}
.swiper-scrollbar-drag {
  height: 2px !important;
  background: #000000;
  transition: background .2s ease-in-out;
  cursor: pointer;
}
.swiper-scrollbar-drag:hover {
  background: #fe693a;
}
.swiper-nav .swiper-button-prev, .swiper-nav .swiper-button-next {
  top: 50%;
  margin: 0;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 #2300001a;
  transform: translateY(-50%);
  transition: color .2s ease-in-out;
}
.swiper-nav .swiper-button-prev:after, .swiper-nav .swiper-button-next:after {
  display: none;
}
.swiper-nav .swiper-button-prev .icon-svg, .swiper-nav .swiper-button-next .icon-svg {
  width: 30px;
  height: 30px;
  stroke: #000;
}
.swiper-nav .swiper-button-prev:hover .icon-svg, .swiper-nav .swiper-button-next:hover .icon-svg {
  stroke: #fe693a;
}
.swiper-nav .swiper-button-prev.swiper-button-disabled, .swiper-nav .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper-nav .swiper-button-prev {
  left: 0;
}
.swiper-nav .swiper-button-prev .icon-svg {
  transform: scale(-1, 1);
}
.swiper-nav .swiper-button-next {
  right: 0;
}
@media (max-width: 1199px) {
  .swiper-nav .swiper-button-prev, .swiper-nav .swiper-button-next {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 900px) {
  .swiper-nav .swiper-button-prev, .swiper-nav .swiper-button-next {
    display: none;
  }
}

.form-input {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-input label {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.form-input label i {
  font-style: normal;
  color: #fe693a;
}
.form-input input, .form-input textarea {
  padding: 17px 20px;
  width: 100%;
  font-size: 15px;
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  transition: border-color .2s ease-in-out;
}
.form-input input::placeholder, .form-input textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
}
.form-input input:hover, .form-input input:focus, .form-input textarea:hover, .form-input textarea:focus {
  border-color: #fe693a;
}
.form-input .calendar-input {
  max-width: 300px;
}
.form-input_normal label {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 300;
  text-transform: initial;
}
.form-input .error-text {
  display: none;
  color: #F00;
  font-weight: 300;
  font-size: 15px;
  line-height: 21px;
  margin-top: 10px;
}
.form-input.error input {
  border-color: #fe693a;
}
.form-input.error .error-text {
  display: block;
}
@media (max-width: 767px) {
  .form-input input, .form-input textarea {
    padding: 15px 16px;
  }
}

.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.checkbox__label {
  position: relative;
  margin: 0;
  width: 100%;
  word-break: break-word;
  color: #000000;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.checkbox__label i {
  margin-left: 12px;
  font-style: normal;
}
.checkbox__label:before {
  content: '';
  margin-right: 15px;
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
  transform: translateY(3px);
  background: #f7f7f7;
  background-position: center;
  background-size: 10px;
  transition: all .2s ease-in-out;
}
.checkbox__label a {
  color: #000000;
}
.checkbox__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.checkbox__input:checked + .checkbox__label {
  color: #000000;
}
.checkbox__input:checked + .checkbox__label:before {
  background: #f7f7f7 url("/images/icons/check.svg") center/10px no-repeat;
}

.radio-group {
  display: flex;
  flex-direction: column;
}
.radio-group__title {
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.radio-group__container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.radio {
  position: relative;
}
.radio input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.radio span {
  padding: 10px 20px;
  display: block;
  color: #000000;
  border: 1px solid #231f20;
  border-radius: 50px;
  transition: background .2s ease-in-out, color .2s ease-in-out;
  cursor: pointer;
}
.radio input:checked ~ span {
  color: #ffffff;
  background: #231f20;
}

.radio-name {
  position: relative;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: baseline;
  font-size: 15px;
  cursor: pointer;
}
.radio-name input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.radio-name__content {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.radio-name__content p {
  margin: 0;
  color: #5c5c5c;
}
.radio-name__icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
  font-style: normal;
  background: transparent;
  border: 1px solid #5c5c5c;
  border-radius: 50%;
  transition: border-color .2s ease-in-out, background .2s ease-in-out;
}
.radio-name input:checked ~ i {
  background: #fe693a;
  border-color: #fe693a;
}

.radio-image {
  display: flex;
}
.radio-image input {
  display: none;
}
.radio-image span {
  padding: 2px;
  width: 28px;
  height: 28px;
  display: flex;
  font-size: 0;
  line-height: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: border-color .2s ease-in-out;
  cursor: pointer;
}
.radio-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.radio-image input:checked + span {
  border-color: #fe693a;
}

.search {
  position: relative;
}
.search input {
  padding: 18px 20px;
  width: 100%;
  font-size: 14px;
  background: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 30px;
}
.search input::placeholder {
  color: #c4c4c4;
}
.search input:focus {
  border-color: #fe693a;
}
.search button {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 16px;
  color: #c4c4c4;
  transform: translateY(-50%);
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.search button .icon-svg {
  width: 100%;
  height: 100%;
}
.search button:hover {
  color: #fe693a;
}
.search:hover {
  border-color: #fe693a;
}

label[data-bx-user-consent] {
  font-size: 15px;
  position: relative;
}
label[data-bx-user-consent] input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
label[data-bx-user-consent] .main-user-consent-request-announce-link:before {
  content: '';
  margin-right: 10px;
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
  transform: translateY(3px);
  background: #f7f7f7;
  background-position: center;
  background-size: 10px;
  transition: all .2s ease-in-out;
}
label[data-bx-user-consent] input:checked + .main-user-consent-request-announce-link:before {
  background: #f7f7f7 url(/images/icons/check.svg) center/10px no-repeat;
}

.breadcrumbs {
  padding: 15px 0;
}
.breadcrumbs-container {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumbs__item {
  display: flex;
  gap: 6px 0;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 300;
}
.breadcrumbs__item a {
  color: #5c5c5c;
  transition: text-decoration-color .2s ease-in-out;
  text-decoration: underline solid transparent;
  cursor: pointer;
  text-underline-offset: 1px;
  text-decoration-thickness: from-font;
}
.breadcrumbs__item a:hover {
  text-decoration-color: #5c5c5c;
}
.breadcrumbs__item a:active {
  text-decoration-color: #5c5c5c;
}
.breadcrumbs__item:not(:last-child):after {
  content: '/';
  margin: 0 5px;
  display: block;
  color: #5c5c5c;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.accordion-item {
  position: relative;
}
.accordion-item__header {
  padding: 24px 30px;
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  transition: background .2s ease-in-out;
  cursor: pointer;
}
.accordion-item__header .icon {
  position: relative;
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.accordion-item__header .icon:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  display: block;
  background: #fe693a;
}
.accordion-item__header .icon:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  display: block;
  background: #fe693a;
  transform: translate(-50%, -50%);
  transition: transform .2s ease-in-out;
}
.accordion-item__header:hover {
  background: #f7f7f7;
}
.accordion-item__body {
  display: none;
  background: #f7f7f7;
}
.accordion-item__body-inner {
  position: relative;
  padding: 20px 30px;
  font-size: 15px;
}
.accordion-item__body-inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #efefef;
}
.accordion-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.accordion-item ul li {
  position: relative;
  padding-left: 22px;
}
.accordion-item ul li:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  display: block;
  background: #a3a3a3;
  border-radius: 50%;
}
.accordion-item ul li + li {
  margin-top: 16px;
}
.accordion-item a:hover {
  color: #fe693a;
}
.accordion-item.active .accordion-item__header {
  background: #f7f7f7;
}
.accordion-item.active .accordion-item__header .icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 999px) {
  .accordion-item__header {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .accordion-item__header {
    font-size: 18px;
    padding: 24px 12px;
  }
  .accordion-item__header:hover {
    background: transparent;
  }
}

.cookie-tips {
  position: fixed;
  right: 90px;
  bottom: 60px;
  z-index: 10170;
  padding: 20px 30px;
  max-width: 650px;
  display: none;
  background: #ffffff;
  box-shadow: 5px 15px 20px 0 #00000040;
}
.cookie-tips__container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cookie-tips__icon {
  width: 40px;
  height: 40px;
}
.cookie-tips__text {
  font-size: 15px;
  line-height: 1.5;
}
.cookie-tips__text a {
  color: #fe693a;
  transition: all .2s ease-in-out;
}
.cookie-tips__text a:hover {
  text-decoration: underline;
}
.cookie-tips__buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cookie-tips__accept {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  background: #fe693a;
  border: none;
  outline: none;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.cookie-tips__accept:hover {
  opacity: .7;
}
.cookie-tips__close {
  width: 17px;
  height: 20px;
  cursor: pointer;
}
.cookie-tips__close svg line {
  transition: stroke .2s ease-in-out;
}
.cookie-tips__close:hover svg line {
  stroke: #fe693a;
}
@media (max-width: 767px) {
  .cookie-tips {
    left: 0;
    right: 0;
    bottom: 0;
  }
  .cookie-tips__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-tips__icon {
    display: none;
  }
}

.main-user-consent-request-popup {
  font-family: Roboto, sans-serif;
  font-weight: 300;
}
.main-user-consent-request-popup .main-user-consent-request-popup-cont {
  padding: 85px 70px;
  width: 100%;
  max-width: 650px;
  height: auto;
  background: #ffffff;
  border-radius: 0;
}
.main-user-consent-request-popup .main-user-consent-request-popup-header {
  margin-bottom: 30px;
  max-width: initial;
  font-family: inherit;
  font-size: 38px;
  font-weight: 300;
  white-space: normal;
}
.main-user-consent-request-popup .main-user-consent-request-popup-textarea-block {
  margin-bottom: 30px;
}
.main-user-consent-request-popup .main-user-consent-request-popup-text {
  padding: 10px;
  height: 240px;
  font-size: 15px;
  color: #000000;
  border: 1px solid #c4c4c4;
}
.main-user-consent-request-popup .main-user-consent-request-popup-text::-webkit-scrollbar {
  width: 3px;
}
.main-user-consent-request-popup .main-user-consent-request-popup-text::-webkit-scrollbar-track {
  background: #efefef;
}
.main-user-consent-request-popup .main-user-consent-request-popup-text::-webkit-scrollbar-thumb {
  background-color: #000000;
  transition: background .2s ease-in-out;
  cursor: pointer;
}
.main-user-consent-request-popup .main-user-consent-request-popup-text::-webkit-scrollbar-thumb:hover {
  background: #fe693a;
}
.main-user-consent-request-popup .main-user-consent-request-popup-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.main-user-consent-request-popup .main-user-consent-request-popup-button-acc, .main-user-consent-request-popup .main-user-consent-request-popup-button-rej {
  margin: 0;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  box-shadow: none;
  transition: opacity .2s ease-in-out;
}
.main-user-consent-request-popup .main-user-consent-request-popup-button-acc:hover, .main-user-consent-request-popup .main-user-consent-request-popup-button-rej:hover {
  opacity: .7;
}
.main-user-consent-request-popup .main-user-consent-request-popup-button-acc {
  color: #ffffff;
  background: #fe693a !important;
}
.main-user-consent-request-popup .main-user-consent-request-popup-button-rej {
  color: #000000;
  background: #ffffff !important;
  border: 1px solid #000000;
}
@media (max-width: 999px) {
  .main-user-consent-request-popup .main-user-consent-request-popup-cont {
    padding: 35px 30px;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .main-user-consent-request-popup .main-user-consent-request-popup-cont {
    padding: 65px 10px;
  }
  .main-user-consent-request-popup .main-user-consent-request-popup-header {
    font-size: 32px;
  }
}

.list-col {
  display: flex;
  gap: 30px;
}
.list-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.list-col-item {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  color: #5c5c5c;
}
.list-col-item > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .list-col {
    grid-template-columns: 1fr;
  }
}

.breadcrumbs {
  padding: 50px 0;
}
.breadcrumbs-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumbs-item {
  font-size: 15px;
  color: #5c5c5c;
}
.breadcrumbs-item a {
  color: #5c5c5c;
  transition: color .2s ease-in-out;
}
.breadcrumbs-item a:hover {
  color: #fe693a;
}
.breadcrumbs-item + .breadcrumbs-item {
  padding-left: 7px;
}
.breadcrumbs-item.active:before {
  content: '/';
  padding-right: 7px;
  float: left;
}

.button-to-chat {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 999;
}
.button-to-chat__animate {
  position: relative;
  cursor: pointer;
}
.button-to-chat__animate:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  opacity: .2;
  pointer-events: none;
  background: #45d354;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.button-to-chat__animate-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border: 1px solid #45d354;
  border-radius: 50%;
  animation: widgetPulse infinite 1.5s;
}
.button-to-chat__animate-inner {
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #45d354;
  border-radius: 50%;
}
.button-to-chat__animate-inner svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 999px) {
  .button-to-chat {
    display: none !important;
  }
}

@keyframes widgetPulse {
  50% {
    opacity: 1;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(2, 2);
  }
}
.category-card {
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #000000;
}
.category-card__image {
  position: relative;
  margin-bottom: 45px;
  width: 260px;
}
.category-card__image img:first-child {
  position: relative;
  bottom: 0;
  z-index: 2;
  transition: bottom .2s ease-in-out;
}
.category-card__image .shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  width: 100%;
  pointer-events: none;
  transition: bottom .2s ease-in-out;
}
.category-card__title {
  margin-bottom: 25px;
}
.category-card__description {
  max-width: 270px;
  font-size: 18px;
  color: #5c5c5c;
}
.category-card:hover .category-card__image img:first-child {
  bottom: 14px;
}
.category-card:hover .category-card__image .shadow {
  bottom: -50px;
}

.interesting-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.interesting-card__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.interesting-card__body {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.interesting-card__title {
  margin-bottom: 25px;
  font-size: 46px;
  line-height: 1;
  color: #000000;
  transition: opacity .2s ease-in-out;
}
.interesting-card__title:hover {
  opacity: .7;
}
.interesting-card__description {
  margin-bottom: 22px;
  font-size: 15px;
  color: #5c5c5c;
}
.interesting-card__link {
  margin-top: auto;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background: #ffffff;
  border-radius: 50%;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.interesting-card__link svg {
  width: 16px;
  height: 16px;
}
.interesting-card__link:hover {
  opacity: .7;
}
@media (max-width: 1600px) {
  .interesting-card__title {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .interesting-card__body {
    padding: 20px;
  }
  .interesting-card__title {
    font-size: 32px;
  }
}

.social-card {
  position: relative;
  display: block;
  overflow: hidden;
}
.social-card .icon-svg {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: #ffffff;
}
.social-card img {
  display: block;
  transition: transform .7s ease-in-out;
}
.social-card:hover img {
  transform: scale(1.1);
}

.media-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #000000;
}
.media-card__header {
  position: relative;
  overflow: hidden;
}
.media-card__header .icon-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
}
.media-card__header img {
  display: block;
  transition: transform .7s ease-in-out;
}
.media-card__body {
  font-size: 30px;
}
.media-card__body:not(:empty) {
  margin-top: 24px;
}
.media-card:hover .media-card__header img {
  transform: scale(1.1);
}
@media (max-width: 1600px) {
  .media-card__body {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .media-card__header .icon-svg {
    width: 53px;
    height: 53px;
  }
  .media-card__body {
    font-size: 20px;
  }
  .media-card__body:not(:empty) {
    margin-top: 20px;
  }
}

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.catalog-card__header {
  position: relative;
  overflow: hidden;
  color: #000000;
  aspect-ratio: 8 / 10;
}
.catalog-card__header img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease-in-out;
}
.catalog-card__header:hover img {
  transform: scale(1.1);
}
.catalog-card__type {
  position: absolute;
  left: -1px;
  bottom: -1px;
  padding: 15px 30px 0 10px;
  max-width: 80%;
  font-size: 24px;
  line-height: 1.25;
  background: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.catalog-card__body {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .catalog-card__type {
    padding-left: 0;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .catalog-card__type {
    padding: 15px 15px 0 0;
    max-width: 90%;
    font-size: 21px;
  }
  .catalog-card__body {
    margin-top: 16px;
    font-size: 12px;
  }
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card__header {
  position: relative;
  overflow: hidden;
  background: #efefef;
  aspect-ratio: 4/5;
}
.product-card__header img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .7s ease-in-out;
  object-fit: cover;
}
.product-card__header .button {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  font-size: 24px;
  background: #fe693a;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease-in-out;
}
.product-card__header:hover img {
  transform: scale(1.1);
}
.product-card__header:hover .button {
  opacity: 1;
}
.product-card__body {
  padding: 15px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
}
.product-card__body .button {
  margin-top: auto;
}
.product-card__price {
  margin-bottom: 5px;
  font-weight: 500;
}
.product-card__name {
  margin-bottom: 20px;
  color: #5c5c5c;
  transition: color .2s ease-in-out;
}
.product-card__name:hover {
  color: #fe693a;
}
@media (max-width: 767px) {
  .product-card__body .button {
    width: 100%;
  }
}

.checkout-card {
  padding-top: 10px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-top: 1px solid #efefef;
}
.checkout-card__image {
  aspect-ratio: 1/1;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: #efefef;
}
.checkout-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-card__info {
  display: grid;
  grid-template-columns: 1fr auto 100px;
  gap: 15px;
  flex-grow: 1;
}
.checkout-card__title {
  margin-bottom: 5px;
  color: #5c5c5c;
}
.checkout-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  text-align: right;
}
.checkout-card__price .sale {
  color: #fe693a;
}
.checkout-card__price .old {
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: #fe693a;
}
.checkout-card__amount {
  display: flex;
  flex-shrink: 0;
}
.checkout-card__amount .minus, .checkout-card__amount .plus {
  padding: 0;
  width: 30px;
  height: 30px;
  font-weight: 400;
  color: #ffffff;
  background: #fe693a;
  border: none;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.checkout-card__amount .minus:hover, .checkout-card__amount .plus:hover {
  opacity: .8;
}
.checkout-card__amount input {
  padding: 0 5px;
  width: 64px;
  height: 30px;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  background: transparent;
  border: none;
  outline: none;
  pointer-events: none;
}
.checkout-card__remove {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}
.checkout-card__remove button {
  display: flex;
  opacity: .5;
  color: #231f20;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
}
.checkout-card__remove button .icon-svg {
  width: 16px;
  height: 16px;
}
.checkout-card__remove button:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .checkout-card__info {
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
    align-items: center;
  }
  .checkout-card__title {
    grid-column: 1/-1;
  }
  .checkout-card__amount input {
    width: 50px;
    font-size: 18px;
  }
}

.block-main {
  position: relative;
  padding: 0;
}
.block-main .swiper-pagination {
  bottom: 90px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.block-main .swiper-pagination-bullet {
  margin: 0 !important;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.4);
}
.block-main .swiper-pagination-bullet-active {
  background: #fe693a;
}
.block-main .swiper-slide img {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
  object-position: bottom center;
}
.block-main__content {
  position: absolute;
  left: 90px;
  bottom: 30%;
  z-index: 1;
  color: #ffffff;
}
.block-main .scroll_down {
  position: absolute;
  left: 90px;
  bottom: 56px;
  z-index: 5;
  margin: 0;
  width: auto;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  vertical-align: top;
  text-decoration: none;
  color: #ffffff;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.block-main .scroll_down__icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #231f20;
  border-radius: 50%;
}
.block-main .scroll_down .icon-svg {
  width: 24px;
  height: 24px;
}
.block-main .scroll_down:hover {
  color: #fe693a;
}
@media (max-width: 1600px) {
  .block-main__content {
    left: 40px;
  }
  .block-main .scroll_down {
    left: 40px;
  }
}
@media (max-width: 1199px) {
  .block-main .swiper-pagination {
    bottom: 45px;
  }
  .block-main .scroll_down {
    bottom: 11px;
  }
  .block-main__content {
    bottom: 25%;
  }
}
@media (max-width: 999px) {
  .block-main .swiper-slide img {
    min-height: 500px;
  }
  .block-main .swiper-pagination {
    bottom: 35px;
    gap: 12px;
  }
  .block-main .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .block-main__content {
    bottom: 40%;
  }
}
@media (max-width: 767px) {
  .block-main {
    height: 550px;
  }
  .block-main .swiper-slide img {
    height: 550px;
    object-position: 60%;
  }
  .block-main__content {
    left: 10px;
    bottom: 25%;
  }
  .block-main__content .h1 {
    line-height: 1.3;
    font-size: 42px;
  }
  .block-main__content .h1 br {
    display: none;
  }
  .block-main .scroll_down {
    left: 10px;
    font-size: 0;
  }
  .block-main .scroll_down__icon {
    width: 60px;
    height: 60px;
  }
}

.block-category {
  padding-top: 250px;
  padding-bottom: 220px;
  background: linear-gradient(to top, #ffffff 53%, #231f20 0%);
}
.block-category__list {
  display: flex;
  gap: 70px 30px;
  justify-content: center;
}
@media (max-width: 999px) {
  .block-category {
    padding: 70px;
    background: transparent;
  }
  .block-category__list {
    flex-direction: column;
    align-items: center;
  }
}

.block-interesting .swiper-slide {
  height: auto;
}
.block-interesting .swiper-slide:nth-of-type(3n + 1) > * {
  background: #faebbf;
}
.block-interesting .swiper-slide:nth-of-type(3n + 2) > * {
  background: #f9f3f0;
}
.block-interesting .swiper-slide:nth-of-type(3n + 3) > * {
  background: #f7f7f7;
}

.block-insta {
  overflow: hidden;
  user-select: none;
}
.block-insta .swiper {
  overflow: initial;
}
.block-insta .swiper-slide {
  aspect-ratio: 1/1;
  max-width: 370px;
}
@media (max-width: 1600px) {
  .block-insta .swiper-slide {
    max-width: 300px;
  }
}

.block-youtube {
  overflow: hidden;
  user-select: none;
}
.block-youtube .swiper {
  overflow: initial;
}
.block-youtube .swiper-slide {
  max-width: 500px;
  height: auto;
}
@media (max-width: 1600px) {
  .block-youtube .swiper-slide {
    max-width: 300px;
  }
}
@media (max-width: 1199px) {
  .block-youtube .swiper-slide {
    max-width: 260px;
  }
}

.block-social .h2 {
  text-align: center;
  color: #fe693a;
}
.block-social__text {
  margin-top: 35px;
  margin-bottom: 55px;
  font-size: 22px;
  text-align: center;
}
.block-social__list {
  display: flex;
  gap: 30px 75px;
  justify-content: center;
}
.block-social__list a {
  display: flex;
  transition: opacity .2s ease-in-out;
}
.block-social__list a:hover {
  opacity: .8;
}
.block-social__list .icon-svg {
  max-width: 160px;
  height: 36px;
}
@media (max-width: 767px) {
  .block-social__text {
    font-size: 18px;
  }
  .block-social__list {
    flex-direction: column;
    align-items: center;
  }
}

.catalog-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 70px 30px;
}
@media (max-width: 1199px) {
  .catalog-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .catalog-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 10px;
  }
}

.block-banner {
  position: relative;
  padding: 0;
}
.block-banner__inner {
  display: grid;
  grid-template-columns: 1fr .5fr;
  background: #f0f0f0;
}
.block-banner__content {
  padding: 70px 30px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.block-banner__content .text {
  margin: auto;
  font-size: 18px;
  line-height: 2;
}
.block-banner__title {
  font-size: 32px;
  font-weight: 500;
}
.block-banner__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 999px) {
  .block-banner .container {
    padding: 15px;
  }
  .block-banner__inner {
    grid-template-columns: 1fr;
  }
  .block-banner__content {
    position: relative;
    z-index: 1;
    padding: 30px 15px;
    color: #ffffff;
    background: #2c2c2cb2;
  }
  .block-banner__content .text {
    margin: 70px 0;
    font-size: 16px;
    line-height: 1.3;
  }
  .block-banner__content .text br {
    display: none;
  }
  .block-banner__title {
    font-size: 26px;
  }
  .block-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.collection-banner {
  position: relative;
  padding: 0;
}
.collection-banner img {
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.collection-banner .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.collection-banner .h1 {
  padding: 15px 44px 0;
  display: inline-block;
  font-size: 88px;
  line-height: 1;
  background: #ffffff;
}
@media (max-width: 999px) {
  .collection-banner .h1 {
    padding: 15px 20px 0;
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .collection-banner .container {
    padding: 0 !important;
  }
}

.collection-images .swiper-slide {
  height: 250px;
}
.collection-images .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
}
.collection-images .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 767px) {
  .collection-images .swiper-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    transform: none !important;
  }
  .collection-images .swiper-slide {
    margin: 0 !important;
    height: 375px;
  }
  .collection-images .swiper-slide:nth-of-type(3n+3) {
    margin-right: 0 !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+1) {
    width: calc(21.5% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+2) {
    width: calc(46.5% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+3) {
    width: calc(32% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+4) {
    width: calc(43% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+5) {
    width: calc(23% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+6) {
    width: calc(34% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+7) {
    width: calc(37% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+8) {
    width: calc(39% - 10px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+9) {
    width: calc(24% - 10px) !important;
  }
  .collection-images .swiper-pagination {
    display: none;
  }
}
@media (min-width: 999px) {
  .collection-images .swiper-wrapper {
    gap: 30px;
  }
  .collection-images .swiper-slide {
    height: 375px;
  }
  .collection-images .swiper-slide:nth-of-type(3n+3) {
    margin-right: 0 !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+1) {
    width: calc(21.5% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+2) {
    width: calc(46.5% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+3) {
    width: calc(32% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+4) {
    width: calc(43% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+5) {
    width: calc(23% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+6) {
    width: calc(34% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+7) {
    width: calc(37% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+8) {
    width: calc(39% - 20px) !important;
  }
  .collection-images .swiper-slide:nth-of-type(9n+9) {
    width: calc(24% - 20px) !important;
  }
}
@media (max-width: 767px) {
  .collection-images .block-section__description {
    font-size: 15px;
  }
  .collection-images__list {
    padding-bottom: 20px;
  }
  .collection-images .swiper-pagination {
    bottom: 0;
  }
  .collection-images .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(196, 196, 196, 0.8);
  }
  .collection-images .swiper-pagination-bullet-active {
    background: #fe693a;
  }
}

.collection-texture__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.collection-texture__item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.collection-texture__item img {
  width: 100%;
  height: 100%;
  display: block;
}
.collection-texture__item-content {
  position: absolute;
  left: 55px;
  bottom: 55px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  transform: translateY(100px);
  transition: transform .3s ease-in-out;
}
.collection-texture__item-name {
  font-size: 64px;
  color: #ffffff;
}
.collection-texture__item-link {
  margin-top: 0;
  padding: 14px 14px 16px;
  width: 300px;
  opacity: 0;
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
  pointer-events: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  transition: all .2s ease-in-out;
}
.collection-texture__item:hover .collection-texture__item-content {
  transform: translateY(0);
}
.collection-texture__item:hover .collection-texture__item-link {
  margin-top: 50px;
  opacity: 1;
}
@media (max-width: 999px) {
  .collection-texture__item-content {
    left: 35px;
    bottom: 35px;
    transform: translateY(80px);
  }
  .collection-texture__item-name {
    font-size: 36px;
  }
  .collection-texture__item-link {
    padding: 14px;
    width: 240px;
    font-size: 18px;
    line-height: 1.2;
  }
  .collection-texture__item:hover .collection-texture__item-link {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .collection-texture__list {
    margin-left: -10px;
    margin-right: -10px;
    grid-template-columns: 1fr;
  }
  .collection-texture__item-content {
    transform: none;
  }
  .collection-texture__item-link {
    margin-top: 30px;
    opacity: 1;
  }
}

.collection-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1199px) {
  .collection-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .collection-list {
    margin-left: -10px;
    margin-right: -10px;
    grid-template-columns: 1fr;
  }
}

.collection-card {
  display: flex;
  flex-direction: column;
}
.collection-card__image {
  position: relative;
  display: block;
  color: #000000;
  transition: color .2s ease-in-out;
}
.collection-card__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.collection-card__image span {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 30px;
  display: inline-block;
  font-size: 54px;
  background: #ffffff;
}
.collection-card__image:hover {
  color: #fe693a;
}
.collection-card__body {
  margin-bottom: 35px;
  padding: 40px 10px 0;
  font-size: 18px;
  color: #5c5c5c;
}
.collection-card__body p:first-child {
  margin-top: 0;
}
.collection-card__body p:last-child {
  margin-bottom: 0;
}
.collection-card .button {
  margin-top: auto;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 22px;
  font-weight: 300;
  text-transform: none;
  border-radius: 50px;
}
@media (max-width: 1199px) {
  .collection-card__image span {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .collection-card__image span {
    font-size: 32px;
  }
  .collection-card__body {
    padding-top: 26px;
    font-size: 15px;
  }
  .collection-card .button {
    font-size: 18px;
  }
}

.projects-filter__container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.projects-filter__container-row {
  display: flex;
  overflow: auto;
  gap: 15px;
}
.projects-filter__container-row::-webkit-scrollbar {
  display: none;
}
.projects-filter-option__inner {
  display: flex;
  flex-direction: column;
}
.projects-filter-option__head {
  margin-bottom: 25px;
  padding: 24px 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid #efefef;
}
.projects-filter-option__head .icon {
  width: 17px;
  height: 17px;
  background-color: #000000;
}
.projects-filter-option__body {
  display: flex;
  gap: 15px 24px;
}
.projects-filter-option__body .button-to-modal__more {
  display: none;
}
.projects-filter-option__footer {
  margin-top: 30px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.projects-filter-option__footer .button-dark, .projects-filter-option__footer .button-outline {
  width: 100%;
}
@media (max-width: 767px) {
  .projects-filter-option__footer {
    display: flex;
  }
}
.projects-filter-result {
  margin-top: 20px;
  width: 100%;
  display: none;
  gap: 10px;
  flex-wrap: wrap;
}
.projects-filter-result:empty {
  display: none;
}
@media (max-width: 767px) {
  .projects-filter-result {
    display: flex;
  }
}
.projects-filter-action {
  margin-top: 20px;
  display: none;
  gap: 15px;
}
.projects-filter-action .button-dark {
  font-size: 15px;
  font-weight: 400;
  padding: 5px 18px;
  width: auto;
  height: auto;
  text-transform: none;
  border-radius: 0;
}
@media (min-width: 767px) {
  .projects-filter-action .filter-clear {
    font-size: 15px;
    font-weight: 400;
    padding: 5px 18px;
    width: auto;
    height: auto;
    text-transform: none;
    border-radius: 0;
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
    transition: opacity .2s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .projects-filter-action .filter-clear button {
    display: none;
  }
}
.projects-not-found {
  display: none;
  margin-top: 44px;
  max-width: 1200px;
  color: #5C5C5C;
  font-size: 38px;
  line-height: 1.2;
}
.projects-not-found a {
  color: #5C5C5C;
  text-decoration-line: underline;
  text-decoration-color: #5C5C5C;
  cursor: pointer;
  text-decoration-thickness: from-font;
  text-decoration-skip-ink: none;
  text-underline-offset: 6px;
}
@media (max-width: 767px) {
  .projects-not-found {
    margin-top: 32px;
    font-size: 24px;
  }
  .projects-not-found a {
    text-underline-offset: 4px;
  }
}
.projects-list-thumbs {
  margin-top: 50px;
}
.projects-list-thumbs .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 4fr 1fr 2.1fr 4fr;
  gap: 5px;
}
.projects-list-thumbs .swiper-slide {
  position: relative;
  left: 0;
  top: 0;
  cursor: pointer;
}
.projects-list-thumbs .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.projects-list-thumbs .swiper-slide:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: opacity .2s ease-in-out;
  opacity: 0;
}
.projects-list-thumbs .swiper-slide:hover:after {
  opacity: .4;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+1) {
  grid-column: auto/span 2;
  padding-top: 132%;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+2) {
  grid-column: auto/span 2;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+3) {
  grid-column: auto/span 2;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+4) {
  grid-column: auto;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+5) {
  grid-column: auto;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+6) {
  grid-column: auto;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+7) {
  grid-column: auto/span 3;
  grid-row: auto/span 2;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+8) {
  grid-column: auto/span 3;
  grid-row: auto/span 2;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+9) {
  grid-column: auto/span 2;
}
.projects-list-thumbs .swiper-slide:nth-child(10n+10) {
  grid-column: auto;
}
@media (max-width: 1899px) {
  .projects {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1359px) {
  .projects {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .projects {
    padding: 30px 10px 70px;
  }
  .projects .page_title {
    margin-bottom: 30px;
  }
  .projects-filter__container-row {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .projects-filter-option {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    padding: 0 10px 10px;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-150%);
    background: #fff;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
  }
  .projects-filter-option.isShow {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .projects-filter-option__inner {
    height: 100%;
  }
  .projects-filter-option__head {
    display: flex;
  }
  .projects-filter-option__body {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 50px;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .projects-filter-option__body .button-to-modal {
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-filter-option__body .button-to-modal__title {
    font-size: 12px;
  }
  .projects-filter-option__body .button-to-modal__more {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .projects-filter-option__body .button-to-modal__button {
    padding: 0;
    background: transparent;
    color: #fe693a !important;
    min-width: auto;
    height: auto;
    opacity: 1;
    font-size: 12px;
  }
  .projects-filter-option__body .button-to-modal__button:after {
    border-top-color: #fe693a;
    border-width: 5px;
  }
  .projects-filter-option__body .button-to-modal__text {
    font-size: 18px;
    text-transform: uppercase;
  }
  .projects-filter-option__body .button-to-modal__text:not(:empty) {
    display: block !important;
  }
  .projects-filter-option__body__footer {
    display: flex;
  }
  .projects-filter .button-filter {
    display: flex;
  }
  .projects-filter-result {
    margin-top: 16px;
  }
  .projects-filter-result__type {
    overflow: auto;
    flex-wrap: nowrap;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .projects-filter-result__type::-webkit-scrollbar {
    display: none;
  }
  .projects-filter-action .button-dark {
    display: none;
  }
  .projects-list-thumbs {
    margin-top: 30px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .projects-list-thumbs .swiper-wrapper {
    gap: 3px;
  }
}

.projects-list-gallery {
  min-width: 0;
  width: 100%;
}
.projects-list-gallery-prev, .projects-list-gallery-next {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0px 1px 6px 0px #2300001A;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 5;
}
.projects-list-gallery-prev .icon, .projects-list-gallery-next .icon {
  width: 20px;
  height: 20px;
  background-color: #000;
}
.projects-list-gallery-prev.swiper-button-disabled, .projects-list-gallery-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.projects-list-gallery-prev {
  left: 10px;
}
.projects-list-gallery-prev .icon {
  transform: rotate(180deg);
}
.projects-list-gallery-next {
  right: 10px;
}
.projects-list-gallery__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.projects-list-gallery__slide-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.projects-list-gallery__slide-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
}
.projects-list-gallery__slide-image .blur {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  filter: blur(25px);
}
.projects-list-gallery__slide-links {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: #fff;
  /*.swiper-wrapper {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    
    &::-webkit-scrollbar {
      display: none;
    }
  }*/
}
.projects-list-gallery__slide-links .slide-prev, .projects-list-gallery__slide-links .slide-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  background-color: #ffffffcf;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease-in-out, opacity .2s ease-in-out;
  z-index: 2;
}
.projects-list-gallery__slide-links .slide-prev .icon, .projects-list-gallery__slide-links .slide-next .icon {
  width: 20px;
  height: 20px;
  background-color: #000;
}
.projects-list-gallery__slide-links .slide-prev.swiper-button-disabled, .projects-list-gallery__slide-links .slide-next.swiper-button-disabled {
  opacity: 0;
}
.projects-list-gallery__slide-links .slide-prev {
  left: 0;
}
.projects-list-gallery__slide-links .slide-prev .icon {
  transform: rotate(180deg);
}
.projects-list-gallery__slide-links .slide-next {
  right: 0;
}
.projects-list-gallery__slide-links .swiper-slide {
  width: auto;
}
.projects-list-gallery__slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 15px;
  font-size: 20px;
  color: #000;
}
.projects-list-gallery__slide-content b {
  font-weight: 700;
}
.projects-list-gallery__slide-content:hover {
  color: #fe693a;
}
@media (max-width: 767px) {
  .projects-list-gallery-prev, .projects-list-gallery-next {
    width: 35px;
    height: 35px;
  }
  .projects-list-gallery-prev .icon, .projects-list-gallery-next .icon {
    width: 10px;
    height: 10px;
  }
  .projects-list-gallery__slide-content {
    font-size: 16px;
    align-items: center;
  }
  .projects-list-gallery__slide-content span {
    width: 80%;
  }
}

.modal-projects {
  display: block !important;
  pointer-events: none;
  opacity: 0;
}
.modal-projects.isOpen {
  pointer-events: auto;
  opacity: 1;
}
.modal-projects:not(.isOpen) .modal-container * {
  pointer-events: none !important;
}
.modal-projects .modal-container {
  max-width: 950px;
}
.modal-projects .modal-content {
  padding: 0;
  height: 760px;
  max-height: calc(100vh - 30px);
}
.modal-projects .modal-close {
  position: absolute;
  z-index: 9;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-projects .modal-close .icon {
  width: 15px;
  height: 15px;
  background-color: #000;
}
.modal-projects .modal-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .modal-projects .modal-inner {
    padding: 10px 0;
  }
  .modal-projects .modal-container {
    min-height: initial;
  }
  .modal-projects .modal-content {
    min-height: initial;
  }
}

.page-about-hero {
  position: relative;
  padding: 0;
  height: 680px;
  background-position: center;
  background-size: cover;
}
.page-about-hero .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.page-about-hero .h2 {
  margin-left: -44px;
  margin-bottom: -24px;
  padding: 5px 44px;
  width: max-content;
  font-size: 88px;
  line-height: 1.2;
  background: #ffffff;
}
@media (min-width: 767px) {
  .page-about-hero br {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-about-hero {
    aspect-ratio: 1/1;
    margin-bottom: 50px;
    height: auto;
  }
  .page-about-hero .container {
    padding: 0 !important;
  }
  .page-about-hero .h2 {
    margin-left: 0;
    margin-bottom: -68px;
    padding: 15px 30px 15px 10px;
    font-size: 46px;
  }
}

.page-about-text .block-section__description {
  font-size: 18px;
}

.page-about-gallery {
  position: relative;
  overflow: hidden;
}
.page-about-gallery .swiper {
  overflow: initial;
}
.page-about-gallery .swiper-slide {
  width: auto;
  max-width: 970px;
}
.page-about-gallery .swiper-slide a {
  display: block;
}
.page-about-gallery .swiper-slide img {
  width: 100%;
  display: block;
}
@media (max-width: 999px) {
  .page-about-gallery .swiper-slide {
    width: 90%;
  }
}

.page-about-photo {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.page-about-photo__item {
  max-width: 43%;
  display: flex;
  gap: 15px;
  flex-direction: column;
  font-size: 15px;
  color: #5c5c5c;
}
.page-about-photo__item img {
  display: block;
}
.page-about-photo__item:nth-child(1) {
  margin-top: 250px;
}
.page-about-photo__item:nth-child(2) {
  margin-left: auto;
}
.page-about-photo__item:nth-child(3) {
  margin-left: auto;
  max-width: 47%;
}
@media (max-width: 767px) {
  .page-about-photo {
    flex-direction: column;
  }
  .page-about-photo__item {
    margin: 0 !important;
    width: 100% !important;
    max-width: initial !important;
  }
}

.page-about-start__container {
  position: relative;
  display: flex;
  align-items: center;
}
.page-about-start__content {
  position: relative;
  z-index: 1;
  padding: 40px 50px 40px 0;
  width: 100%;
  max-width: 490px;
  display: flex;
  gap: 25px;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
  background: #ffffff;
}
.page-about-start__content .h2 {
  line-height: 1;
}
.page-about-start__content p {
  margin: 0;
}
.page-about-start__image {
  position: absolute;
  right: 0;
  max-width: 775px;
}
.page-about-start__image img {
  width: 100%;
  display: block;
}
@media (max-width: 999px) {
  .page-about-start__container {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .page-about-start__content {
    margin-top: -65px;
    max-width: 75%;
  }
  .page-about-start__image {
    position: relative;
  }
}
@media (max-width: 767px) {
  .page-about-start__content {
    margin-top: -45px;
    padding: 0;
    max-width: initial;
    background: transparent;
  }
  .page-about-start__content .h2 {
    padding: 15px 30px 0 0;
    max-width: 75%;
    background: #ffffff;
  }
}

.page-about-love {
  display: flex;
  gap: 25px 60px;
}
.page-about-love__header {
  position: relative;
  padding-top: 27px;
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
  font-size: 38px;
  line-height: 1.2;
}
.page-about-love__header:not(:empty):before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 2px;
  background: #000000;
}
.page-about-love__body {
  font-size: 15px;
  line-height: 1.5;
}
.page-about-love__body p:first-child {
  margin-top: 0;
}
.page-about-love__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 999px) {
  .page-about-love {
    flex-direction: column;
  }
  .page-about-love__header {
    font-size: 32px;
  }
  .page-about-love__body {
    line-height: 1.4;
  }
}

.page-buy__header {
  display: flex;
  flex-direction: column;
}
.page-buy__header .h2 {
  margin-bottom: 42px;
  font-size: 54px;
  font-weight: 600;
}
.page-buy__header p {
  margin-top: 0;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.page-buy__header p a {
  color: #fe693a;
}

.page-buy-tabs {
  margin: 0 auto 30px;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.page-buy-tabs-button {
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-align: center;
  color: #5c5c5c;
  border: 1px solid #c4c4c4;
  transition: border-color .2s ease-in-out, color .2s ease-in-out, background .2s ease-in-out;
  cursor: pointer;
}
.page-buy-tabs-button:hover {
  color: #fe693a;
  border-color: #fe693a;
}
.page-buy-tabs-button.active {
  color: #ffffff;
  background: #fe693a;
  border-color: #fe693a;
}
@media (max-width: 767px) {
  .page-buy-tabs {
    grid-template-columns: 1fr;
  }
}

.map-shops {
  margin-bottom: 80px;
  height: 700px;
}
.map-shops > * {
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 999px) {
  .map-shops {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .map-shops {
    height: 400px;
  }
}

.show-room {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  border: 1px solid #27ae60;
}
.show-room__content {
  padding: 25px;
  background: #27ae60;
}
.show-room__content .shop-card {
  color: #ffffff;
}
.show-room__content .shop-card__title {
  color: #ffffff;
}
.show-room__content .shop-card-icon:before {
  filter: invert(1) brightness(2);
}
.show-room__gallery {
  padding: 40px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .show-room {
    margin-left: -10px;
    margin-right: -10px;
  }
  .show-room__content {
    padding: 15px;
  }
  .show-room__gallery {
    padding: 15px 10px;
    gap: 10px;
  }
}

.shop-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #5c5c5c;
}
.shop-card__title, .shop-card .shop_name {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #5c5c5c;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.shop-card__title:hover, .shop-card .shop_name:hover {
  color: #fe693a;
}
.shop-card__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr .8fr .8fr;
  gap: 20px;
}
.shop-card__item {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
}
.shop-card__item p {
  margin: 0;
}
.shop-card-icon {
  position: relative;
  padding-left: 25px;
}
.shop-card-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}
.shop-card-point:before {
  background: url("/images/icons/point.svg") center/contain no-repeat;
}
.shop-card-clock:before {
  background: url("/images/icons/clock.svg") center/contain no-repeat;
}
.shop-card-web:before {
  background: url("/images/icons/global.svg") center/contain no-repeat;
}
.shop-card-phone:before {
  background: url("/images/icons/phone.svg") center/contain no-repeat;
}
.shop-card-mail:before {
  background: url("/images/icons/email.svg") center/contain no-repeat;
}
.shop-card-stock.white:before {
  top: 5px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  filter: none;
}
.shop-card-stock .dot {
  margin-right: 10px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  filter: none;
}
@media (max-width: 999px) {
  .shop-card__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .shop-card__list {
    grid-template-columns: 1fr;
  }
}

.shops-all {
  width: 100%;
}
.shops-all .h3 {
  margin-bottom: 30px;
}

.shop-list {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.shop-list__item {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.shop-list__item-title {
  font-size: 22px;
  font-weight: 500;
}
.shop-list__item-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.shop-list__item-group .shop-card {
  padding: 25px 0;
  border-top: 1px solid #efefef;
}
.shop-list__item-group .shop-card:last-child {
  border-bottom: 1px solid #efefef;
}
@media (max-width: 767px) {
  .shop-list__item-title {
    font-size: 18px;
  }
}

.my_baloon {
  width: 400px !important;
}

.balloon_cluster_content {
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 400px;
  min-width: 400px;
  height: auto;
  background: #ffffff;
}

.balloon_cluster_content .balloon_content {
  position: relative;
  padding-top: 30px;
  display: none;
}

.balloon_cluster_content .balloon_content.active {
  height: auto !important;
  display: block;
}

.balloon_cluster_content .balloon_cluster_nav {
  position: relative;
  padding: 20px 29px;
  width: 100%;
  list-style: none;
}

.balloon_cluster_content .balloon_cluster_nav li {
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  transition: .3s all;
  cursor: pointer;
}

.balloon_cluster_content .balloon_cluster_nav li:hover, .balloon_cluster_content .balloon_cluster_nav li.active {
  color: #fe693a;
}

.balloon_cluster_content .balloon_cluster_nav li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .balloon_cluster_content .balloon_cluster_nav {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.map-shops .container {
  position: relative;
  z-index: 2;
  padding: 0 !important;
  height: 1px;
}

.balloon_content {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 50px 10px 20px 29px;
  width: 400px;
  max-height: 500px;
  overflow: auto;
  background: #ffffff;
  transition: 0s all;
}

.balloon_content.active {
  z-index: 2;
  padding: 50px 0 20px 29px;
  max-height: 500px;
}

.balloon_content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 2;
  width: 20px;
  height: 20px;
  display: block;
  opacity: 1;
  background: url("/images/icons/close.svg") no-repeat center center;
  background-size: 100% 100%;
  border: none;
  transition: .5s all;
}

.balloon_content .close:hover {
  transform: rotate(90deg);
}

.balloon_content .well {
  position: relative;
  margin: 0;
  padding: 0;
  max-height: 100%;
  background: none;
  border: none;
  box-shadow: none;
}

.balloon_content .balloon_title {
  position: relative;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  color: #000000;
}

.balloon_content p {
  position: relative;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: #5c5c5c;
}

.balloon_content .availability {
  margin-bottom: 25px;
  padding-left: 20px;
}

.balloon_content .dot {
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  display: block;
  background: #27ae60;
  border-radius: 50%;
}

.balloon_content .divider {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  height: 1px;
  background: #efefef;
}

.balloon_content .address {
  padding-left: 27px;
  max-width: 280px;
}

.balloon_content .address:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 14px;
  height: 18px;
  display: block;
  background: url("/images/icons/point.svg") no-repeat center center;
  background-size: 100% 100%;
}

.balloon_content .time {
  padding-left: 27px;
  max-width: 280px;
  line-height: 22px;
}

.balloon_content .time:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  display: block;
  background: url("/images/icons/clock.svg") no-repeat center center;
  background-size: 100% 100%;
}

.balloon_content .site_link {
  padding-left: 27px;
}

.balloon_content .site_link:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 18px;
  height: 18px;
  display: block;
  background: url("/images/icons/global.svg") no-repeat center center;
  background-size: 100% 100%;
}

.balloon_content .site_link a {
  text-decoration: underline;
  color: #fe693a;
}

.balloon_content .tel_link {
  padding-left: 27px;
}

.balloon_content .tel_link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  display: block;
  background: url("/images/icons/phone.svg") no-repeat center center;
  background-size: 100% 100%;
}

.balloon_content .email_link {
  padding-left: 27px;
}

.balloon_content .email_link:before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 17px;
  height: 17px;
  display: block;
  background: url("/images/icons/email.svg") no-repeat center center;
  background-size: 100% 100%;
}

.balloon_content .title {
  position: relative;
  margin-top: 28px;
  margin-bottom: 25px;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
}

.balloon_content .from_city {
  position: relative;
  margin-bottom: 15px;
  padding-left: 36px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.balloon_content .from_city:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 16px;
  height: 16px;
  display: block;
  background: #ffffff;
  border: 5px solid #c4c4c4;
  border-radius: 50%;
}

.balloon_content .car {
  padding-left: 36px;
}

.balloon_content .car:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 5px;
  width: 15px;
  height: 15px;
  display: block;
  background: url("/images/icons/car.svg") no-repeat center center;
  background-size: 100% 100%;
}

.balloon_content .from_metro {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 36px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #000000;
}

.balloon_content .from_metro:before {
  content: '';
  position: absolute;
  top: 0;
  left: 2px;
  width: 24px;
  height: 24px;
  display: block;
  background: url("/images/icons/metro.svg") no-repeat center center;
  background-size: 100% 100%;
}

.balloon_content .bus {
  padding-left: 36px;
}

.balloon_content .bus:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 5px;
  width: 15px;
  height: 15px;
  display: block;
  background: url("/images/icons/bus.svg") no-repeat center center;
  background-size: 100% 100%;
}

.ymaps-2-1-76-copyright {
  opacity: 0 !important;
}

.ymaps-2-1-76-balloon-pane, .ymaps-2-1-76-balloon-overlay {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
}

.my_baloon {
  top: 0 !important;
  left: 0 !important;
}

.my_baloon .close {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 5;
  width: 20px;
  height: 20px;
  display: block;
  opacity: 1;
  background: url("/images/icons/close.svg") no-repeat center center;
  background-size: 100% 100%;
  border: none;
  transition: .5s all;
  cursor: pointer;
}

.my_baloon .close:hover {
  transform: rotate(90deg);
}

.ymaps-2-1-76-balloon-pane {
  z-index: 5500 !important;
}

.page-blog__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-blog__header img {
  margin-bottom: 25px;
}
.page-blog__header .h1 {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  color: #231f20;
}
.page-blog__header i {
  margin-top: 5px;
  display: block;
  font-size: 17px;
  font-weight: 400;
}
.page-blog-nav {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-blog-nav__item {
  padding: 10px 15px;
  font-size: 17px;
  color: #231f20;
  border: 1px solid #b8b8b8;
  border-radius: 4px;
  transition: background .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out;
  cursor: pointer;
}
.page-blog-nav__item span {
  color: #fe693b;
  transition: color .2s ease-in-out;
}
.page-blog-nav__item.active, .page-blog-nav__item:hover {
  color: #ffffff;
  background: #fe693b;
  border-color: #fe693b;
}
.page-blog-nav__item.active span, .page-blog-nav__item:hover span {
  color: #ffffff;
}
.page-blog-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 30px;
}
.page-blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 17px;
  box-shadow: 0 10px 20px 0 #0000000a;
}
.page-blog-card__header {
  height: 200px;
  overflow: hidden;
}
.page-blog-card__header img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.page-blog-card__body {
  padding: 25px 30px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  line-height: 1.5;
}
.page-blog-card__body .h4 {
  font-size: 30px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #000000;
  transition: color .2s ease-in-out;
}
.page-blog-card__body .h4:hover {
  color: #fe693b;
}
.page-blog-card__body p {
  margin: 0;
}
.page-blog-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b8b8b8;
}
.page-blog-card__body ul li + li {
  margin-top: 5px;
}
.page-blog-card__footer {
  margin: auto 25px 0;
  padding: 25px 0;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fe693b;
  border-top: 1px solid #b8b8b8;
}
.page-blog-card__footer .icon {
  width: 22px;
  height: 22px;
  background-color: #bababa;
}
@media (max-width: 1599px) {
  .page-blog-nav__item {
    font-size: 16px;
  }
  .page-blog-card {
    font-size: 16px;
  }
  .page-blog-card__body {
    padding: 25px 15px;
  }
  .page-blog-card__body .h4 {
    font-size: 24px;
  }
  .page-blog-card__footer {
    margin: auto 15px 0;
  }
}
@media (max-width: 999px) {
  .page-blog__header .h1 {
    font-size: 24px;
  }
  .page-blog-nav {
    margin-top: 25px;
    gap: 10px;
  }
  .page-blog-nav__item {
    padding: 6px;
    font-size: 14px;
  }
  .page-blog-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .page-blog-list {
    grid-template-columns: 1fr;
  }
  .page-blog-card__header {
    height: 170px;
  }
}

.page-blog-item {
  padding: 0;
  font-size: 17px;
}
.page-blog-item .h1, .page-blog-item h1 {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #231f20;
}
.page-blog-item .swiper {
  width: 100%;
  min-width: 0;
}
.page-blog-item .swiper .swiper-button-prev, .page-blog-item .swiper .swiper-button-next {
  color: #ffffff;
  transition: color .2s ease-in-out;
}
.page-blog-item .swiper .swiper-button-prev:hover, .page-blog-item .swiper .swiper-button-next:hover {
  color: #fe693b;
}
.page-blog-item .swiper .swiper-button-prev.swiper-button-disabled, .page-blog-item .swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.page-blog-item .swiper-slide {
  height: auto;
}
.page-blog-item .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-blog-item .swiper-blog {
  margin: 50px 0;
}
.page-blog-item-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
  font-size: 17px;
  line-height: 30px;
  color: #231f20;
}
.page-blog-item-content-text:first-child {
  margin-top: 0;
}
.page-blog-item-content-text:last-child {
  margin-bottom: 0;
}

.block-darkform {
  color: #ffffff;
  background: #231f20;
}
.block-darkform-form {
  margin-top: 55px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.block-darkform-form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .block-darkform-form {
    margin-top: 40px;
  }
  .block-darkform-form__group {
    grid-template-columns: 1fr;
  }
  .block-darkform-form .button {
    width: 100%;
    max-width: initial;
  }
}

/*# sourceMappingURL=style.css.map */
