:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-accent: #e50000;
  --color-gray: #808080;
  --border: var(--border-width-m) solid var(--color-accent);
  --border-width-xl: 6px;
  --border-width-l: 4px;
  --border-width-m: 3px;
  --border-width-s: 1px;
  --border-radius-l: 12px;
  --border-radius-m: 10px;
  --border-radius: 8px;
  --border-radius-xs: 6px;
  --border-radius-xxs: 5px;
  --border-radius-xxxs: 4px;
  --font-family-base: "Montserrat";
  --container-width: clamp(80rem, 0rem + 100vw, 100rem);
  --container-padding-x: 48px;
  --transition-duration: 0.25s;
}

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

@media screen and (max-width: 999px) {
  :root {
    --container-padding-x: 25px;
  }
}
.container {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(100%) !important;
}

@media (min-width: 1024px) {
  .visible-tablet {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .hidden-mobile {
    display: none !important;
  }
}

::selection {
  background-color: #00b2e2;
  color: #ffffff;
}

html.is-lock,
body.is-lock {
  overflow: hidden;
  touch-action: none;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #202f3d;
  background-color: #ffffff;
  margin: 0;
  min-height: 100vh;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

input, button,
textarea, select {
  font: inherit;
}

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

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

svg * {
  transition-property: fill, stroke;
}

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 2px dashed var(--color-white);
  outline-offset: 4px;
  transition-duration: 0s !important;
}

.link {
  display: block;
  width: max-content;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #202f3d;
  transition: 1s;
  padding: 0;
  background: 0;
  border: 0;
}
.link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 1px;
  background: #00b2e2;
  transition: 1s;
}
.link:hover::after {
  width: 100%;
}
@media (max-width: 999px) {
  .link::after {
    width: 100%;
  }
}

.seo-text__toggle {
  display: none;
}
.seo-text__toggle-btn {
  font-size: 13px;
  color: #00b2e2;
}
.seo-text--white {
  background-color: #ffffff;
}
.seo-text--padding-large {
  padding: 80px 0;
}
@media (max-width: 999px) {
  .seo-text--padding-large {
    padding: 40px 0;
  }
}
.seo-text--padding {
  padding: 48px 0;
}
@media (max-width: 999px) {
  .seo-text--padding {
    padding: 40px 0;
  }
}
.seo-text--padding-less {
  padding: 32px 0;
}
@media (max-width: 999px) {
  .seo-text--padding-less {
    padding: 10px 0 20px;
  }
}
@media (max-width: 999px) {
  .seo-text--hide-on-mobile .html-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .seo-text--hide-on-mobile .html-content--expanded {
    max-height: 2000px;
  }
  .seo-text--hide-on-mobile .seo-text__toggle {
    display: block;
  }
}

.content {
  flex-grow: 1;
}
@media (min-width: 1000px) {
  .content--inner {
    background-color: #F4F5F5;
  }
}

.swiper-scrollbar {
  background: #d2d5d8;
}
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  height: 2px;
}
.swiper-scrollbar .swiper-scrollbar-drag {
  background: #00b2e2;
  height: 4px;
  top: -1px;
  cursor: grab;
}

.swiper-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.swiper-nav .swiper-button-next,
.swiper-nav .swiper-button-prev {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0;
  color: #202f3d;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #202f3d;
  background: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.swiper-nav .swiper-button-next::after,
.swiper-nav .swiper-button-prev::after {
  content: none;
}
.swiper-nav .swiper-button-next .icon,
.swiper-nav .swiper-button-prev .icon {
  width: 24px;
  height: 24px;
}
.swiper-nav .swiper-button-next:hover,
.swiper-nav .swiper-button-prev:hover {
  border-color: #00b2e2;
}
.swiper-nav .swiper-button-next:active,
.swiper-nav .swiper-button-prev:active {
  border-color: #00b2e2;
}

.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-fit--contain {
  object-fit: contain;
}
.img-fit--fill {
  object-fit: fill;
}
.img-fit--none {
  object-fit: none;
}

.section {
  padding-bottom: 100px;
}
@media (max-width: 1023px) {
  .section {
    padding-bottom: 80px;
  }
}
@media (max-width: 999px) {
  .section {
    padding-bottom: 40px;
  }
}
.section--less-margin {
  padding-bottom: 80px;
}
@media (max-width: 999px) {
  .section--less-margin {
    padding-bottom: 40px;
  }
}
.section--gray {
  background-color: #f4f5f5;
}
.section--white {
  background-color: #ffffff;
}
.section--hide-margin {
  padding-bottom: 0;
}
@media (min-width: 1000px) {
  .section--fixed-width {
    max-width: 1116px;
    width: 100%;
    padding: 100px 114px;
    margin-bottom: 80px;
  }
}
@media (max-width: 999px) {
  .section--fixed-width {
    background-color: #ffffff;
  }
}

.content-white {
  background-color: #ffffff;
}

@media (min-width: 1440px) {
  .content-padding {
    padding-left: 110px;
    padding-right: 110px;
  }
}
@media (max-width: 999px) {
  .content-padding {
    padding: 0;
  }
}

.content-gray-padding {
  padding: 100px 114px;
  background: #f4f5f5;
}
@media (max-width: 999px) {
  .content-gray-padding {
    padding: 0;
    background: none;
  }
}

.title {
  font-weight: 400;
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 32px;
  line-height: 45px;
}
@media (max-width: 999px) {
  .title {
    font-size: 26px;
    line-height: 36px;
  }
}
.title--margin {
  margin-bottom: 22px;
}
.title--center {
  text-align: center;
}
@media (max-width: 999px) {
  .title--center {
    text-align: left;
  }
}
.title--bigger {
  font-size: 40px;
}
@media (max-width: 999px) {
  .title--bigger {
    font-size: 26px;
    letter-spacing: -0.5px;
  }
}

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

@media (max-width: 999px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide-on-mobile-l {
    display: none;
  }
}

.hide-on-desktop {
  display: none;
}
@media (max-width: 999px) {
  .hide-on-desktop {
    display: block;
  }
}

.top-after-block {
  position: relative;
}
.top-after-block::after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  z-index: 10;
}

.html-content img {
  cursor: pointer;
}
.html-content h2 {
  font-family: "Comfortaa", sans-serif;
  font-size: 32px;
  line-height: 45px;
  margin: 16px 0;
  font-weight: 400;
}
.html-content h3 {
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 36px;
  margin: 16px 0;
  font-weight: 400;
}
.html-content h4 {
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  line-height: 28px;
  margin: 16px 0;
  font-weight: 400;
}
.html-content div {
  padding: 0 112px;
}
@media (max-width: 999px) {
  .html-content div {
    padding: 0;
  }
}
.html-content div span {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: #79828B;
}
.html-content img {
  max-width: 100%;
  display: block;
}
.html-content a {
  color: #00b2e2;
  display: inline-block;
  text-decoration: none;
}
.html-content ul,
.html-content ol {
  margin-bottom: 16px;
}
.html-content ul li {
  position: relative;
  padding-left: 50px;
}
.html-content ul li:not(:last-child) {
  margin-bottom: 28px;
}
.html-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 40px;
  height: 40px;
  background: url("images/svg/icon-marker-gray.svg") no-repeat center;
  background-size: contain;
}
.html-content ol {
  list-style: none;
  counter-reset: numeric-list-counter;
  padding: 0;
}
.html-content ol li {
  counter-increment: numeric-list-counter;
  position: relative;
  padding-left: 42px;
}
.html-content ol li:not(:last-child) {
  margin-bottom: 32px;
}
.html-content ol li::before {
  content: counter(numeric-list-counter) "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  left: 0;
  top: -6px;
  border-radius: 10em;
  border: 1px solid #202f3d;
}
@media (max-width: 999px) {
  .html-content h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .html-content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .html-content h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .html-content h2,
  .html-content h3,
  .html-content h4 {
    font-weight: 500;
  }
  .html-content p,
  .html-content ul,
  .html-content ol {
    font-size: 13px;
    line-height: 19px;
  }
}

@font-face {
  font-family: "Comfortaa";
  src: url("fonts/Comfortaa-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Comfortaa";
  src: url("fonts/Comfortaa-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #d2d5d8;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
  width: 100%;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  right: 4px;
  width: 4px;
  background: #f4f5f5;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 0;
  right: 0;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: max-content;
  position: relative;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  border: 0;
  padding: 0 20px;
  background: #00b2e2;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.btn::before {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.btn svg {
  position: absolute;
  left: 4px;
  top: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  fill: none;
  stroke: #ffffff;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:hover svg {
  stroke-dashoffset: -480;
}
.btn.disabled {
  pointer-events: none;
  background: #d2d5d8;
}
.btn.btn-transparent {
  background: transparent;
  color: #202f3d;
  border: 1px solid #202f3d;
}
.btn.btn-transparent svg {
  width: 101%;
  height: 100%;
  stroke: #00b2e2;
  top: 0;
  left: -1px;
}
.btn.btn-transparent::before {
  display: none;
}
.btn.btn-transparent:hover {
  border-color: #00b2e2;
}
.btn.btn-transparent.disabled {
  color: #d2d5d8;
  border-color: #d2d5d8;
  pointer-events: none;
  background: transparent;
}
.btn.btn-border-gray {
  border-color: #4C5864;
}
.btn.btn-border-gray-light {
  border-color: #d2d5d8;
}
.btn.btn-md {
  padding: 0 16px;
  height: 48px;
}
.btn.btn-md svg {
  stroke-dasharray: 150 516;
  stroke-dashoffset: 150;
}
.btn.btn-md:hover svg {
  stroke-dashoffset: -516;
}
.btn.btn-sm {
  padding: 0 12px;
  height: 40px;
  font-size: 13px;
}
@media (max-width: 999px) {
  .btn {
    font-size: 13px;
    line-height: 16px;
    padding: 0 12px;
    height: 40px;
  }
}

/* End Button */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__location, .header__download {
  cursor: pointer;
  background: 0;
  border: 0;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d2d5d8;
  font-size: 13px;
  line-height: 19px;
}
.header__location-icon, .header__download-icon {
  width: 16px;
  height: 16px;
}
.header__location:hover, .header__download:hover {
  opacity: 0.7;
}
.header__phone {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  display: block;
}
.header__phone:hover {
  opacity: 0.7;
}
.header__auth {
  font-size: 13px;
  line-height: 19px;
  background: 0;
  border: 0;
  padding: 0;
  color: #ffffff;
  margin-left: clamp(3rem, -25rem + 35vw, 10rem);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.header__auth:hover {
  opacity: 0.7;
}
.header__bottom {
  width: 100%;
  height: 80px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.header__bottom::after {
  content: "";
  width: 100%;
  height: calc(100% + var(--menu-height, 0px));
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 10px 16px 0 rgba(32, 47, 61, 0.15);
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  background: #ffffff;
}
.header__bottom--hide-shadow::after {
  display: none;
}
@media (max-width: 999px) {
  .header__bottom--hide-shadow::after {
    display: block;
  }
}
.header__bottom-inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.header__bottom-right {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -2.875rem + 4.375vw, 1.5rem);
}
@media (min-width: 1000px) {
  .header__bottom--gray {
    background: #f4f5f5;
  }
  .header__bottom--gray .header__nav-menu {
    background: #f4f5f5;
  }
  .header__bottom--gray::after {
    background: #f4f5f5;
    box-shadow: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, -11.625rem + 15vw, 3.375rem);
}
.header__nav-item {
  list-style-type: none;
}
.header__nav-item-title, .header__nav-item-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  font-weight: 500;
  font-size: clamp(0.5625rem, 0.4819214876rem + 0.3305785124vw, 0.8125rem);
  text-transform: uppercase;
  color: #202f3d;
  background: 0;
  border: 0;
  padding: 0;
}
.header__nav-item-title .icon, .header__nav-item-btn .icon {
  width: 16px;
  height: 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (any-hover: hover) {
  .header__nav-item-title:hover, .header__nav-item-btn:hover {
    color: #00b2e2;
  }
  .header__nav-item-title:hover .icon, .header__nav-item-btn:hover .icon {
    color: #00b2e2;
  }
}
@media (any-hover: none) {
  .header__nav-item-title:active, .header__nav-item-btn:active {
    color: #00b2e2;
  }
  .header__nav-item-title:active .icon, .header__nav-item-btn:active .icon {
    color: #00b2e2;
  }
}
.header__nav-item.is-opened .header__nav-menu {
  opacity: 1;
  transform: translateY(0);
}
.header__nav-item.is-opened .header__nav-item-btn {
  color: #00b2e2;
}
.header__nav-item.is-opened .header__nav-item-btn .icon {
  transform: rotate(90deg);
  color: #00b2e2;
}
.header__nav-menu {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  padding-block: 80px;
  opacity: 0;
  display: none;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: translateY(-50px);
}
.header__nav-menu-content {
  display: flex;
  gap: clamp(0.625rem, -2.875rem + 4.375vw, 1.5rem);
  align-items: flex-start;
}
.header__nav-menu-list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.5rem, -4.5rem + 7.5vw, 3rem);
  column-gap: clamp(1.5rem, -6.5rem + 10vw, 3.5rem);
  max-height: clamp(22.5rem, -3.5rem + 32.5vw, 29rem);
  flex-wrap: wrap;
}
.header__nav-menu-close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  background: 0;
  border: 0;
  padding: 0;
  position: absolute;
  top: 26px;
  right: 24px;
}
.header__nav-menu-close .icon {
  width: inherit;
  height: inherit;
}
.header__nav-menu-link {
  margin: auto;
  margin-top: 32px;
  font-size: 16px;
}
.header__nav-section {
  max-width: 318px;
}
.header__nav-section-title {
  font-weight: 600;
  font-size: 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  display: block;
  width: max-content;
  margin-bottom: clamp(1rem, -1rem + 2.5vw, 1.5rem);
}
.header__nav-section-title:last-child {
  margin-bottom: 0;
}
.header__nav-section-title:hover {
  color: #00b2e2;
}
.header__nav-section-link {
  font-size: 16px;
  line-height: clamp(0.875rem, -1.625rem + 3.125vw, 1.5rem);
  margin-bottom: 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  display: block;
}
.header__nav-section-link:hover {
  color: #00b2e2;
}
.header__nav-images {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.625rem, -2.875rem + 4.375vw, 1.5rem);
  margin-left: auto;
}
.header__nav-img img {
  width: clamp(8.75rem, -35.75rem + 55.625vw, 19.875rem);
  height: clamp(8.75rem, -35.75rem + 55.625vw, 19.875rem);
  object-fit: cover;
  display: block;
}
.header__search-btn {
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: 0;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #202f3d;
}
.header__search-btn .icon {
  width: inherit;
  height: inherit;
}
.header__search-btn:hover {
  opacity: 0.7;
}
.header__btn {
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: 0;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #202f3d;
  position: relative;
}
.header__btn:hover {
  opacity: 0.7;
}
.header__btn-count {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  background: #00b2e2;
  position: absolute;
  z-index: 2;
  top: -12px;
  right: -12px;
}
@media (max-width: 999px) {
  .header__top, .header__nav {
    display: none;
  }
  .header__bottom {
    height: 60px;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: #ffffff;
  }
  .header__menu-head {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f5f5;
    padding: 0 10px;
  }
  .header__menu-close {
    width: 24px;
    height: 24px;
    background: 0;
    padding: 0;
    border: 0;
  }
  .header__menu-close .icon {
    width: 100%;
    height: 100%;
    color: #4C5864;
  }
  .header__menu-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--container-padding-x);
    background: #202f3d;
    z-index: 10;
  }
  .header__menu-content {
    height: calc(100% - 94px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
  }
  .header__menu-contacts {
    background: #f4f5f5;
    padding-block: 15px;
  }
  .header__menu-nav {
    padding-top: 28px;
  }
  .header__menu-item {
    margin-bottom: 32px;
    display: block;
  }
  .header__menu-item-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__menu-item-title {
    display: flex;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #202f3d;
    cursor: pointer;
    text-transform: uppercase;
  }
  .header__menu-item .icon {
    width: 24px;
    height: 24px;
    color: #202f3d;
  }
  .header__menu-item-sub {
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 5;
    background: #ffffff;
    transform: translate(100%);
    transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
    padding: 28px;
  }
  .header__menu-item-sub.opened {
    transform: translate(0);
    padding: 28px 28px 150px;
  }
  .header__menu-back {
    width: 24px;
    height: 24px;
    background: 0;
    border: 0;
    padding: 0;
  }
  .header__menu-back .icon {
    color: #4C5864;
    width: 100%;
    height: 100%;
  }
  .header__menu-back.hidden {
    visibility: hidden;
  }
  .header__menu-title {
    font-size: 13px;
    line-height: 19px;
    color: #79828b;
    text-align: center;
  }
  .header__menu-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 100px;
  }
  .header__menu-images-block {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f4f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__menu-images-link {
    position: absolute;
    margin: auto;
    top: 50%;
  }
  .header__menu-images-link::after {
    width: 100%;
  }
  .header__menu-img {
    width: 100%;
    padding-top: 100%;
    position: relative;
  }
  .header__menu-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .header__download {
    font-size: 13px;
    line-height: 19px;
    gap: 8px;
    color: #ffffff;
  }
  .header__download .icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
  }
  .header__auth {
    font-size: 13px;
    line-height: 19px;
  }
  .header__location {
    color: #202f3d;
    gap: 8px;
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 15px;
  }
  .header__location .icon {
    width: 16px;
    height: 16px;
    color: #202f3d;
  }
  .header__phone {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #202f3d;
  }
}

.header-top {
  height: 40px;
  width: 100%;
  background: #202f3d;
}
@media (max-width: 999px) {
  .header-top {
    display: none;
  }
}
.header-top__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-top__group {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header-top__group:nth-child(2) {
  margin-left: auto;
}
.header-top__location, .header-top__download {
  cursor: pointer;
  background: 0;
  border: 0;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d2d5d8;
  font-size: 13px;
  line-height: 19px;
}
.header-top__location-icon, .header-top__download-icon {
  width: 16px;
  height: 16px;
}
.header-top__location:hover, .header-top__download:hover {
  opacity: 0.7;
}
.header-top__phone {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  display: block;
}
.header-top__phone:hover {
  opacity: 0.7;
}
.header-top__auth {
  font-size: 13px;
  line-height: 19px;
  background: 0;
  border: 0;
  padding: 0;
  color: #ffffff;
  margin-left: clamp(3rem, -25rem + 35vw, 10rem);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.header-top__auth:hover {
  opacity: 0.7;
}
.header-top__location-icon, .header-top__download-icon {
  width: 16px;
}
.header-top__location-icon svg, .header-top__download-icon svg {
  max-width: 100%;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup__overlay {
  background: rgba(32, 47, 61, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup__head {
  display: flex;
  align-items: center;
  padding: 24px 20px;
}
.popup__main {
  width: calc(100% - 40px);
  max-width: 888px;
  height: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 16px 0 rgba(32, 47, 61, 0.15);
  background: #ffffff;
  overflow: hidden;
  padding: 60px 48px;
}
.popup__close {
  position: absolute;
  z-index: 20;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0;
  padding: 0;
  border: 0;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (max-width: 999px) {
  .popup__close {
    position: fixed;
  }
}
.popup__close:hover .popup__close-icon {
  color: #00b2e2;
}
.popup__close .popup__close-icon {
  color: #202f3d;
  width: 100%;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.popup__title {
  font-size: 32px;
  line-height: 45px;
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 40px;
}
@media (max-width: 999px) {
  .popup {
    height: 100dvh;
  }
  .popup__main-inner {
    padding-bottom: 100px;
  }
  .popup__main {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
    overflow: auto;
  }
  .popup__title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 34px;
  }
}

.city-popup .popup__main {
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.city-popup .popup__main::-webkit-scrollbar {
  display: none;
}
.city-popup__head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid #202f3d;
}
.city-popup__head-label {
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 8px;
}
.city-popup__head-value {
  font-size: 16px;
  font-weight: 600;
}
.city-popup__head-submit {
  margin-left: auto;
}
.city-popup__row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.city-popup__subtitle {
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 32px;
}
.city-popup__item {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  width: max-content;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.city-popup__item:hover {
  color: #00b2e2;
}
.city-popup__select {
  min-height: 420px;
}
.city-popup .search-input__content {
  display: block;
}
@media (max-width: 999px) {
  .city-popup__head-label {
    margin-bottom: 4px;
  }
  .city-popup__head-value {
    font-size: 13px;
    line-height: 19px;
  }
  .city-popup__row {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .city-popup__item {
    margin-bottom: 16px;
  }
}

.search-input {
  position: relative;
  z-index: auto;
  width: 100%;
}
.search-input__field {
  width: 100%;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}
.search-input__input {
  width: 100%;
  height: 100%;
  padding-inline: 16px;
  padding-right: 38px;
  color: #202f3d;
  background-color: transparent;
  border: 1px solid #d2d5d8;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  font-size: 16px;
}
.search-input__input:user-invalid {
  border-color: #c4334b;
}
.search-input__input::placeholder {
  color: #79828b;
}
.search-input__input--white {
  background-color: #ffffff;
}
.search-input__icon {
  width: 16px;
  height: 16px;
  color: #202f3d;
  position: absolute;
  right: 12px;
}
.search-input__content {
  max-height: 336px;
  height: max-content;
  padding-block: 16px;
  border: 1px solid #d2d5d8;
  z-index: 10;
  background: #ffffff;
  position: absolute;
  top: 48px;
  width: 100%;
  left: 0;
  display: none;
}
.search-input__item {
  width: 100%;
  height: auto;
  padding: 8px 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
  cursor: pointer;
}
.search-input__item:hover {
  color: #00b2e2;
}
.search-input__empty {
  width: 100%;
  height: auto;
  padding: 8px 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
}
.search-input.disabled .search-input__input {
  cursor: not-allowed;
  color: #79828b;
  background: #f4f5f5;
  pointer-events: none;
}

.burger-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: url("images/svg/burger.svg") no-repeat center;
  padding: 0;
  border: 0;
}
@media (min-width: 1000px) {
  .burger-button {
    display: none;
  }
}

.search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 110;
  display: none;
}
@media (min-width: 1000px) {
  .search {
    top: 120px;
  }
}
@media (min-width: 1000px) {
  .search--top-less {
    top: 80px;
  }
}
.search__main {
  width: 100%;
  height: auto;
  min-height: 200px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 16px 0 rgba(32, 47, 61, 0.15);
  background: #ffffff;
  max-height: 100dvh;
  transform: translate(-100%);
}
.search__close {
  position: absolute;
  z-index: 10;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0;
  padding: 0;
  border: 0;
  top: 24px;
  right: 24px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.search__close:hover .icon {
  color: #00b2e2;
}
.search__close .icon {
  color: #202f3d;
  width: 100%;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.search__inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.search .search-input {
  max-width: 888px;
  width: 100%;
  margin: 80px auto 0;
}
@media (max-width: 999px) {
  .search__main {
    min-height: 164px;
  }
  .search__main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: #f4f5f5;
  }
  .search__close {
    top: 10px;
    right: 10px;
    z-index: 3;
  }
  .search__close .icon {
    color: #4C5864;
  }
  .search .search-input {
    margin-top: 84px;
  }
}

/* home-gallery  */
.home-gallery {
  min-height: 400px;
  height: calc(100vh - 180px);
  position: relative;
}
.home-gallery__slider {
  width: 100%;
  height: 100%;
}
.home-gallery__slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.home-gallery__slider-item {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(32, 47, 61, 0.3);
}
.home-gallery__slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.4;
  z-index: 2;
}
.home-gallery__slider-item img,
.home-gallery__slider-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-gallery__slider-controls {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.home-gallery__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
}
.home-gallery__content button, .home-gallery__content a {
  pointer-events: auto;
}
.home-gallery__content-inner {
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.home-gallery__title {
  max-width: 564px;
  color: #ffffff;
  font-family: "Comfortaa", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
  margin-bottom: 16px;
  margin-left: clamp(0rem, -12rem + 15vw, 3rem);
}
.home-gallery__text {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
  max-width: 564px;
  margin-left: clamp(0rem, -12rem + 15vw, 3rem);
}
.home-gallery__btn {
  margin-left: clamp(0rem, -12rem + 15vw, 3rem);
}
@media (max-width: 999px) {
  .home-gallery {
    height: 400px;
  }
  .home-gallery__title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 32px;
  }
  .home-gallery__text {
    display: none;
  }
  .home-gallery__slider-nav {
    display: none;
  }
  .home-gallery__slider-controls {
    margin-top: 24px;
  }
}

/* end home-gallery  */
/* category-card */
.category-card {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg, rgba(32, 47, 61, 0) 0%, rgb(32, 47, 61) 84.13%);
  z-index: 2;
  opacity: 0.6;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.category-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
  z-index: 1;
}
.category-card__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.category-card__title {
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  color: #ffffff;
  padding-right: 6px;
}
@media (max-width: 999px) {
  .category-card__title {
    font-size: 16px;
  }
}
.category-card__arrow {
  position: absolute;
  bottom: 8px;
  right: 8px;
  transition: 0.5s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  padding: 0;
  background: transparent;
  z-index: 4;
  opacity: 0;
}
.category-card__arrow .icon {
  color: #ffffff;
  width: 24px;
  height: 24px;
}
.category-card__arrow:hover {
  border-color: #00b2e2;
}
@media (any-hover: hover) {
  .category-card:hover .category-card__arrow {
    opacity: 1;
  }
  .category-card:hover::before {
    opacity: 0.8;
  }
}
@media (any-hover: none) {
  .category-card:active .category-card__arrow {
    opacity: 1;
  }
  .category-card:active::before {
    opacity: 0.8;
  }
}
@media (max-width: 999px) {
  .category-card__inner {
    padding: 16px;
  }
  .category-card__arrow {
    display: none;
  }
}

/* category-card */
/* categories  */
.categories--padding-top {
  padding-top: 48px;
}
.categories__title {
  font-size: 40px;
  margin-bottom: 40px;
}
@media (max-width: 999px) {
  .categories__title {
    font-size: 26px;
  }
}
.categories__title--padding {
  padding-left: 135px;
}
.categories__title--center {
  text-align: center;
}
@media (max-width: 999px) {
  .categories__title--center {
    text-align: left;
  }
}
.categories__text {
  padding-top: 40px;
}
.categories__text a {
  text-decoration: none;
  color: #00b2e2;
}
.categories__list-shell--white {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #ffffff;
}
@media (max-width: 999px) {
  .categories__list-shell--white {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.categories__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 999px) {
  .categories {
    padding-top: 0;
  }
  .categories__title {
    margin-bottom: 20px;
  }
  .categories__title--padding {
    padding-left: 0;
  }
  .categories__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* end categories  */
/* product-card */
.product-card {
  position: relative;
  width: 100%;
  max-width: 382px;
  height: auto;
  display: block;
}
.product-card__inner {
  width: 100%;
  position: relative;
  padding-top: 100%;
}
.product-card__labels {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 2px;
}
.product-card__label {
  height: 24px;
  width: max-content;
  padding: 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 999px) {
  .product-card__label {
    font-size: 10px;
  }
}
.product-card__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/no-photo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.product-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  transition: 1s;
}
.product-card__img:nth-child(2) {
  opacity: 0;
  z-index: 2;
}
.product-card__name {
  margin-top: 16px;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 999px) {
  .product-card__name {
    font-size: 13px;
  }
}
.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}
.product-card__caption {
  color: #79828b;
  font-size: 13px;
  line-height: 19px;
}
.product-card__price {
  margin-top: 8px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
}
@media (max-width: 999px) {
  .product-card__price {
    font-size: 13px;
  }
}
.product-card__icon {
  transition: 1s;
  width: 48px;
  height: 48px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d5d8;
}
.product-card__icon .icon {
  color: #202f3d;
  width: 16px;
  height: 16px;
}
@media (any-hover: hover) {
  .product-card__icon:hover {
    border-color: #00b2e2;
  }
}
@media (any-hover: none) {
  .product-card__icon:active {
    border-color: #00b2e2;
  }
}
.product-card__add {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #00b2e2;
  z-index: 5;
  padding: 0;
  border: 0;
}
.product-card__add .icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}
.product-card__btn {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 10px;
  opacity: 0;
  transition: 1s;
}
@media (any-hover: hover) {
  .product-card:hover {
    opacity: 1;
  }
  .product-card:hover .product-card__icon {
    opacity: 1;
  }
  .product-card:hover .product-card__img:nth-child(2) {
    opacity: 1;
  }
  .product-card:hover .product-card__btn {
    opacity: 1;
  }
}
@media (any-hover: none) {
  .product-card:active {
    opacity: 1;
  }
  .product-card:active .product-card__icon {
    opacity: 1;
  }
  .product-card:active .product-card__img:nth-child(2) {
    opacity: 1;
  }
  .product-card:active .product-card__btn {
    opacity: 1;
  }
}
@media (max-width: 999px) {
  .product-card .product-card__add {
    display: flex;
  }
  .product-card .product-card__icon,
  .product-card .product-card__btn {
    display: none;
  }
  .product-card .product-card__img:nth-child(2) {
    display: none;
  }
}

/* end product-card */
/* best-products */
.best-products {
  background: #f4f5f5;
  padding: 80px 0;
}
.best-products__title {
  margin-bottom: 58px;
  padding-left: 135px;
}
.best-products__list-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.best-products__list-row:first-child {
  margin-bottom: 24px;
}
.best-products__list-row:nth-child(2) {
  display: none;
}
.best-products__list.shown .best-products__list-row:nth-child(2) {
  display: grid;
}
.best-products__more {
  margin: 56px auto 0;
}
@media (max-width: 999px) {
  .best-products {
    padding: 40px 0;
  }
  .best-products__title {
    padding: 0;
    margin-bottom: 20px;
  }
  .best-products__list-row {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
    row-gap: 40px;
  }
  .best-products__list-row:first-child {
    margin-bottom: 40px;
  }
  .best-products__more {
    margin-top: 40px;
  }
}

/* end best-products */
/* product-popup */
@media (max-width: 999px) {
  .product-popup .popup__main-inner {
    overflow-y: auto;
    max-height: 80vh;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 999px) {
  .product-popup {
    padding: 10px;
  }
}
.product-popup .popup__main {
  position: relative;
  max-width: 1116px;
  overflow: hidden;
}
@media (max-width: 999px) {
  .product-popup .popup__main {
    max-width: 568px;
    padding: 40px 0 40px;
    height: auto;
  }
}
@media (min-width: 1000px) {
  .product-popup .popup__close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  .product-popup .popup__close .popup__close-icon {
    color: #ffffff;
  }
}
@media (max-width: 999px) {
  .product-popup .popup__close {
    position: absolute;
  }
}
.product-popup__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-right: 88px;
  padding-left: 66px;
}
@media (max-width: 999px) {
  .product-popup__row {
    padding: 0;
  }
}
.product-popup__col {
  width: 50%;
  position: relative;
  flex-shrink: 0;
}
.product-popup__slider {
  width: 100%;
  position: relative;
}
.product-popup__link-detail-mob {
  margin-top: 40px;
  display: none;
}
@media (max-width: 999px) {
  .product-popup__link-detail-mob {
    display: block;
  }
}
.product-popup__img {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
@media (max-width: 999px) {
  .product-popup__img {
    border: 1px solid #D2D5D8;
  }
}
.product-popup__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-image: url(images/no-photo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product-popup__nav {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #f4f5f5;
  width: max-content;
}
@media (max-width: 999px) {
  .product-popup__nav {
    bottom: 1px;
  }
}
.product-popup__prev, .product-popup__next {
  background: #f4f5f5;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  left: initial;
  right: initial;
  position: relative;
  top: initial;
  margin-top: 0;
}
.product-popup__prev::after, .product-popup__next::after {
  display: none;
}
.product-popup__prev .icon, .product-popup__next .icon {
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 100%;
  height: 100%;
  color: #202f3d;
}
.product-popup__prev:hover .icon, .product-popup__next:hover .icon {
  color: #00b2e2;
}
.product-popup__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  text-transform: uppercase;
  font-size: 13px;
  height: 24px;
  width: max-content;
  padding: 0 8px;
  background: #ebdbd0;
  display: flex;
  align-items: center;
}
@media (max-width: 999px) {
  .product-popup__label {
    font-size: 10px;
  }
}
.product-popup__name {
  font-size: 32px;
  line-height: 45px;
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 48px;
}
.product-popup__dropdown {
  margin-top: 24px;
}
.product-popup__price {
  margin-top: 48px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}
.product-popup__buttons {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f4f5f5;
}
.product-popup__counter-wrapper {
  background: #f4f5f5;
  height: 100%;
  padding: 0 16px;
  flex-shrink: 0;
}
.product-popup__add {
  width: 100%;
}
.product-popup__add svg {
  stroke-dasharray: 150 626;
}
.product-popup__add:hover svg {
  stroke-dashoffset: -626;
}
.product-popup__add-mob {
  display: none;
}
.product-popup__btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.product-popup__link {
  margin-top: 48px;
  margin-inline: auto;
}
.product-popup__name-mob {
  display: none;
}
@media (max-width: 999px) {
  .product-popup__row {
    flex-direction: column;
    gap: 24px;
  }
  .product-popup .popup__main {
    padding-bottom: 170px;
  }
  .product-popup__col {
    width: 100%;
  }
  .product-popup__col:last-child {
    position: static;
  }
  .product-popup__name {
    display: none;
  }
  .product-popup__name-mob {
    display: block;
    margin-bottom: 24px;
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    line-height: 28px;
  }
  .product-popup .product-options__bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #ffffff;
    z-index: 30;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 -3px 10px -4px rgba(0, 0, 0, 0.1);
  }
  .product-popup .product-options__bottom-inner {
    width: 100%;
    background: #f4f5f5;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    gap: 8px;
  }
  .product-popup .product-options__price {
    font-size: 13px;
    line-height: 16px;
    margin: 0 auto 0 0;
  }
  .product-popup__add {
    display: none;
  }
  .product-popup__add-mob {
    background: #00b2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
  }
  .product-popup__add-mob .icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
  }
  .product-popup__counter-wrapper, .product-popup__btn-wrapper {
    padding: 0;
    width: max-content;
  }
  .product-popup__buttons {
    margin-left: auto;
    width: max-content;
    gap: 8px;
  }
  .product-popup__select {
    grid-template-columns: 1fr;
  }
  .product-popup__link {
    display: none;
  }
}

/* end product-popup */
/* select-color */
.select-color {
  position: relative;
}
.select-color__label {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 8px;
}
.select-color__slider {
  width: 100%;
  position: relative;
}
.select-color__slider .swiper-fade {
  position: absolute;
  top: 0;
  height: 100%;
  width: 56px;
  z-index: 1;
}
.select-color__slider .swiper-fade--left {
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #fff 83.65%);
  position: absolute;
  left: 0;
  display: none;
}
.select-color__slider .swiper-fade--left.active {
  display: block;
}
.select-color__slider .swiper-fade--right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 83.65%);
  position: absolute;
  right: 0;
}
.select-color__slider-prev, .select-color__slider-next {
  background: #f4f5f5;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  left: initial;
  right: initial;
  position: absolute;
  margin-top: 0;
  top: 16px;
}
.select-color__slider-prev::after, .select-color__slider-next::after {
  display: none;
}
.select-color__slider-prev .icon, .select-color__slider-next .icon {
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 100%;
  height: 100%;
  color: #202f3d;
}
.select-color__slider-prev:hover .icon, .select-color__slider-next:hover .icon {
  color: #00b2e2;
}
.select-color__slider-prev.swiper-button-disabled, .select-color__slider-next.swiper-button-disabled {
  opacity: 0 !important;
}
.select-color__slider-prev {
  left: 0;
  z-index: 1;
}
.select-color__slider-next {
  right: 0;
}
.select-color__tooltip {
  position: absolute;
  width: max-content;
  font-size: 13px;
  padding: 4px 8px;
  background-color: #ffffff;
  border: 1px solid #D2D5D8;
  display: none;
  z-index: 9999;
  pointer-events: none;
}
@media (max-width: 999px) {
  .select-color__tooltip {
    display: none !important;
  }
}
.select-color__item {
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 56px;
  height: 56px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d5d8;
}
.select-color__item:first-child .select-color__tooltip {
  display: block;
}
.select-color__item:hover .select-color__tooltip {
  display: block;
}
.select-color__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.select-color__item.active {
  border-color: #202f3d;
}

/* end select-color */
/* dropdown */
.dropdown {
  position: relative;
  width: 100%;
  z-index: auto;
}
.dropdown__title {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 8px;
  width: 100%;
  display: block;
}
.dropdown__btn {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #202f3d;
  border: 1px solid #d2d5d8;
  border-radius: 0;
  background: #ffffff;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  gap: 4px;
}
.dropdown__arrow {
  width: 16px;
  height: 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #202f3d;
}
.dropdown__content {
  width: 100%;
  z-index: 99;
  position: absolute;
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(32, 47, 61, 0.1);
  border-right: 1px solid #d2d5d8;
  border-bottom: 1px solid #d2d5d8;
  border-left: 1px solid #d2d5d8;
  height: max-content;
  max-height: 336px;
  display: none;
  padding-block: 16px;
}
.dropdown__item {
  width: 100%;
  height: auto;
  padding: 8px 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
  cursor: pointer;
}
.dropdown__item:hover {
  color: #00b2e2;
}
.dropdown__placeholder {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dropdown.opened .dropdown__arrow {
  transform: rotate(-180deg);
}
.dropdown.opened .dropdown__content {
  display: block;
}

/* end dropdown */
/* counter */
.counter {
  display: flex;
  align-items: center;
  background: #f4f5f5;
  width: max-content;
}
.counter--print .counter__increase,
.counter--print .counter__decrease {
  display: none;
}
.counter--print .counter__input {
  width: 20px;
  height: 20px;
  font-weight: 400;
  border: none;
}
.counter__decrease, .counter__increase {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d5d8;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 40px;
  height: 40px;
  background: 0;
}
.counter__decrease .icon, .counter__increase .icon {
  width: 24px;
  height: 24px;
  color: #202f3d;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.counter__decrease:hover, .counter__increase:hover {
  border-color: #00b2e2;
}
.counter__input {
  border: 0;
  padding: 0;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  font-size: 16px;
  color: #202f3d;
  border-top: 1px solid #d2d5d8;
  border-bottom: 1px solid #d2d5d8;
  outline: 0;
}

/* end counter */
/* production-about */
.production-about__block {
  display: flex;
  background: #202f3d;
}
.production-about__content {
  padding-block: 80px;
  padding-left: clamp(2.5rem, -22rem + 30.625vw, 8.625rem);
  padding-right: clamp(2.5rem, -17rem + 24.375vw, 7.375rem);
  width: 50%;
}
.production-about__title {
  color: #ffffff;
  margin-bottom: 16px;
}
.production-about__text {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}
.production-about__img {
  width: 50%;
  position: relative;
}
.production-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.production-about__btn {
  color: #ffffff !important;
  cursor: pointer;
}
@media (max-width: 999px) {
  .production-about__block {
    display: block;
  }
  .production-about__img {
    width: 100%;
    padding-top: 100%;
  }
  .production-about__content {
    padding: 40px 20px;
    width: 100%;
  }
  .production-about__title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .production-about__text {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 20px;
  }
}

/* end production-about */
/* added-popup */
.added-popup .popup__main {
  max-width: 432px;
  padding: 50px 42px;
}
@media (max-width: 999px) {
  .added-popup .popup__main {
    height: auto;
  }
}
.added-popup .popup__title {
  display: none;
}
@media (max-width: 999px) {
  .added-popup .popup__close {
    position: absolute;
  }
}
@media (max-width: 999px) {
  .added-popup .popup__main-inner {
    padding-bottom: 0;
  }
}
.added-popup__row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.added-popup__row .icon {
  color: #D2E4EF;
  width: 70px;
  height: 70px;
}
.added-popup__text {
  font-size: 16px;
  line-height: 19px;
}
.added-popup__btn {
  margin-top: 24px;
}

/* end added-popup */
/* unified-cards-gallery */
.unified-cards-gallery {
  position: relative;
  overflow: hidden;
  background: #f4f5f5;
  padding: 80px 0;
}
.unified-cards-gallery .container {
  max-width: calc(var(--container-width) - 270px + var(--container-padding-x) * 2);
}
.unified-cards-gallery__slider {
  width: 100%;
  overflow: initial;
}
.unified-cards-gallery__slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 14px;
}
.unified-cards-gallery__slider-controls {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.unified-cards-gallery__slider-side-prev, .unified-cards-gallery__slider-side-next {
  position: absolute;
  top: 0;
  background: rgba(244, 245, 245, 0.8);
  padding: 0;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: calc((100vw - (var(--container-width) - 320px + var(--container-padding-x) * 2)) / 2);
  z-index: 20;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.unified-cards-gallery__slider-side-prev.disabled, .unified-cards-gallery__slider-side-next.disabled {
  background: #d2e4ef;
}
.unified-cards-gallery__slider-side-prev {
  left: 0;
}
.unified-cards-gallery__slider-side-next {
  right: 0;
}
@media (max-width: 999px) {
  .unified-cards-gallery {
    padding: 40px 0;
  }
  .unified-cards-gallery .swiper-button-next,
  .unified-cards-gallery .swiper-button-prev {
    width: 24px;
    height: 24px;
    border: none;
    background-color: #F4F5F5;
  }
  .unified-cards-gallery .swiper-nav {
    position: absolute;
    width: 100%;
    padding: 0 13px;
    left: 0;
    justify-content: space-between;
  }
  .unified-cards-gallery__slider-scrollbar {
    display: none;
  }
  .unified-cards-gallery__slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 26%;
    margin: 0;
    z-index: 10;
  }
}

/* end unified-cards-gallery */
/* article-card */
.article-card {
  position: relative;
  height: auto;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.article-card--badge-gray .article-card__label {
  background-color: #EBDBD0;
}
.article-card__inner {
  position: relative;
  padding-top: 100%;
  width: 100%;
  height: auto;
}
.article-card__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url("images/no-photo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}
.article-card__label {
  height: 24px;
  width: max-content;
  padding: 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: #d2e4ef;
}
.article-card__title {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__date {
  margin-top: 8px;
  font-size: 13px;
  line-height: 19px;
  color: #79828b;
}
@media (max-width: 999px) {
  .article-card__label {
    font-size: 10px;
    font-weight: 500;
    padding: 0 8px;
    height: 20px;
  }
}

/* end article-card */
/* project-gallery */
.project-gallery__inner {
  padding-inline: clamp(4.5rem, -11.25rem + 19.6875vw, 8.4375rem);
}
.project-gallery__slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.project-gallery__slider-wrapper {
  margin-top: 56px;
  width: 100%;
  background: #f4f5f5;
  position: relative;
  padding-top: 68%;
}
.project-gallery__slider-wrapper::after {
  content: "";
  right: calc(-1 * clamp(5rem, -8.75rem + 17.1875vw, 8.4375rem));
  top: calc(50% + clamp(1rem, -9rem + 12.5vw, 3.5rem));
  width: 29%;
  height: 43.8%;
  position: absolute;
  z-index: 5;
  background: #202f3d;
}
.project-gallery__slider-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.project-gallery__slider-content {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: #f4f5f5;
}
.project-gallery__slider-content-label {
  display: flex;
  align-items: center;
  padding: 0 8px;
  background: #ebdbd0;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  text-transform: uppercase;
}
.project-gallery__slider-content-label--mob {
  display: none;
}
@media (max-width: 999px) {
  .project-gallery__slider-content-label--desk {
    display: none;
  }
  .project-gallery__slider-content-label--mob {
    display: flex;
  }
}
.project-gallery__slider-content-title {
  font-size: clamp(1.25rem, -0.25rem + 1.875vw, 1.625rem);
  line-height: clamp(2.25rem, 0rem + 2.8125vw, 2.8125rem);
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 16px;
}
.project-gallery__slider-content-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}
.project-gallery__slider-content-inner {
  max-width: 50%;
  position: absolute;
  left: clamp(4.875rem, 1.375rem + 4.375vw, 5.75rem);
  top: calc(50% + clamp(1rem, -9rem + 12.5vw, 3.5rem));
}
.project-gallery__slider-img--1 {
  position: absolute;
  width: 60%;
  height: 50%;
  z-index: 10;
  top: 0;
  left: calc(-1 * clamp(5rem, -8.75rem + 17.1875vw, 8.4375rem));
}
.project-gallery__slider-img--2 {
  position: absolute;
  width: 29%;
  height: auto;
  z-index: 10;
  top: 7.4%;
  right: clamp(5rem, -8.75rem + 17.1875vw, 8.4375rem);
}
.project-gallery__slider-img--3 {
  position: absolute;
  width: 29%;
  height: auto;
  z-index: 10;
  top: calc(50% + clamp(1rem, -9rem + 12.5vw, 3.5rem));
  right: 0;
}
.project-gallery__slider-img-item {
  width: 100%;
  height: 100%;
}
.project-gallery__slider-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1200px) {
  .project-gallery__slider-wrapper {
    padding-top: 78%;
  }
  .project-gallery__slider-wrapper::after {
    top: calc(45% + clamp(1rem, -9rem + 12.5vw, 3.5rem));
    height: 37%;
  }
  .project-gallery__slider-img--1 {
    width: 59%;
    height: 45%;
  }
  .project-gallery__slider-img--3 {
    top: calc(45% + clamp(1rem, -9rem + 12.5vw, 3.5rem));
  }
  .project-gallery__slider-content-inner {
    top: calc(45% + clamp(1rem, -9rem + 12.5vw, 3.5rem));
  }
}
@media (max-width: 999px) {
  .project-gallery__inner {
    padding: 0;
  }
  .project-gallery__slider {
    position: relative;
    height: auto;
  }
  .project-gallery__slider-img--1 {
    width: 100%;
    height: 50vw;
    position: relative;
    left: initial;
    order: -1;
  }
  .project-gallery__slider-img--2, .project-gallery__slider-img--3 {
    display: none;
  }
  .project-gallery__slider-wrapper {
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .project-gallery__slider-wrapper::after {
    display: none;
  }
  .project-gallery__slider-content-label {
    font-size: 10px;
    font-weight: 500;
    padding: 0 8px;
    height: 20px;
  }
  .project-gallery__slider-content-inner {
    position: relative;
    top: initial;
    left: initial;
    max-width: initial;
    padding: 40px 20px;
  }
  .project-gallery__slider-content-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .project-gallery__slider-content-text {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 20px;
  }
  .project-gallery__slider-nav {
    display: none;
  }
  .project-gallery__slider-controls {
    gap: 0;
    margin-top: 20px;
  }
  .project-gallery__slider-scrollbar {
    width: 100% !important;
  }
}

/* end project-gallery */
/* contacts-block */
.contacts-block--white {
  background-color: #ffffff;
  padding-bottom: 80px;
}
.contacts-block__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contacts-block__block {
  position: relative;
  padding: 80px 0;
}
.contacts-block__block::before {
  content: "";
  clip-path: polygon(30% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 70%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts-block__block--telegram::before {
  background: rgba(210, 228, 239, 0.3);
}
.contacts-block__block--telegram .icon {
  color: #d2e4ef;
}
.contacts-block__block--location::before {
  background: #f9f4f1;
}
.contacts-block__block--location .icon {
  color: #ebdbd0;
}
.contacts-block__block .icon {
  width: clamp(6.25rem, -8.75rem + 18.75vw, 10rem);
  height: clamp(6.25rem, -8.75rem + 18.75vw, 10rem);
  position: absolute;
  left: 22px;
  top: 51px;
  z-index: 2;
}
.contacts-block__block-content {
  padding-left: clamp(9.625rem, -19.875rem + 36.875vw, 17rem);
  padding-right: 40px;
  position: relative;
  z-index: 2;
}
.contacts-block__block-title {
  font-family: "Comfortaa", sans-serif;
  font-size: 32px;
  margin-bottom: 16px;
}
@media (max-width: 999px) {
  .contacts-block__block-title {
    font-size: 16px;
  }
}
.contacts-block__block-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}
.contacts-block__block-btn {
  border-color: #d2d5d8;
}
@media (max-width: 999px) {
  .contacts-block {
    padding-top: 40px;
  }
  .contacts-block__inner {
    gap: 15px;
  }
  .contacts-block__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contacts-block__block::before {
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  .contacts-block__block-text {
    display: none;
  }
  .contacts-block__block-btn {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    z-index: 5;
    opacity: 0 !important;
  }
  .contacts-block__block .icon {
    width: 80px;
    height: 80px;
    left: 0;
    right: 0;
    top: 20px;
    margin: auto;
    z-index: 2;
  }
  .contacts-block__block-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
  }
  .contacts-block__block-content {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* end contacts-block */
/* field */
.field {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 8px;
  position: relative;
}
.field__label {
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
}
.field__required-star {
  color: #202f3d;
}
.field__input {
  width: 100%;
  height: 40px;
  padding-inline: 16px;
  color: #202f3d;
  background-color: transparent;
  border: 1px solid #d2d5d8;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  font-size: 16px;
}
.field__input:user-invalid {
  border-color: #c4334b;
}
.field__input::placeholder {
  color: #79828b;
}
.field__input.disabled {
  pointer-events: none;
  background: #F4F5F5;
}
.field textarea {
  height: 72px;
  padding: 10px 16px;
  resize: none;
  overflow-y: auto;
}
.field__error {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #c4334b;
  font-size: 13px;
  line-height: 16px;
  width: 100%;
}
.field.has-error .field__input {
  border-color: #c4334b;
}
.field.disabled .field__input,
.field .field__input:disabled .field__input {
  cursor: not-allowed;
  color: #79828b;
  background: #f4f5f5;
  pointer-events: none;
}

/* end field */
/* checkbox */
.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox__input {
  display: none;
}
.checkbox__input:checked ~ .checkbox__icon {
  border-color: #d2d5d8;
}
.checkbox__input:checked ~ .checkbox__icon::before,
.checkbox__input:checked ~ .checkbox__icon .icon {
  transform: scale(1);
  opacity: 1;
}
.checkbox__error {
  position: absolute;
  font-size: 13px;
  bottom: -30px;
  color: #c4334b;
}
@media (max-width: 999px) {
  .checkbox__error {
    bottom: -44px;
  }
}
.checkbox__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  border: 1px solid #d2d5d8;
  flex-shrink: 0;
}
.checkbox__icon .icon {
  display: flex;
  width: 12px;
  height: 12px;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  position: relative;
  z-index: 2;
}
.checkbox__icon::before {
  content: "";
  background: #202f3d;
  width: 20px;
  height: 20px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  z-index: 1;
}
.checkbox__title {
  font-size: 13px;
  line-height: 16px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.checkbox__title p {
  margin: 0;
}
.checkbox__link {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.checkbox__link:hover {
  color: #00b2e2;
}
.checkbox.is-radio .checkbox__icon {
  border-radius: 50%;
}
.checkbox.is-radio .checkbox__icon::before {
  border: 6px solid #202f3d;
  border-radius: 50%;
  background: transparent;
  width: 6px;
  height: 6px;
  box-sizing: content-box;
}
.checkbox.is-radio .checkbox__icon .icon {
  display: none;
}
.checkbox.disabled {
  pointer-events: none;
}
.checkbox.disabled .checkbox__title {
  color: #d2d5d8;
}
.checkbox.disabled .checkbox__icon::before {
  background: #d2d5d8;
  border-color: #d2d5d8;
}

/* end checkbox */
/* contacts-form */
.contacts-form {
  padding: 54px 0;
  background-image: url("images/contacts-form-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contacts-form__block {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.contacts-form__left {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(24px);
  background: rgba(32, 47, 61, 0.7);
}
.contacts-form__title {
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(2rem, 0rem + 2.5vw, 2.5rem);
  line-height: clamp(2.8125rem, 0.0625rem + 3.4375vw, 3.5rem);
  text-align: center;
  color: #ffffff;
}
.contacts-form__content {
  background: #ffffff;
  padding-block: 80px;
  padding-inline: clamp(2.5rem, -21.25rem + 29.6875vw, 8.4375rem);
}
.contacts-form__open {
  display: none;
}
@media (max-width: 999px) {
  .contacts-form {
    padding-block: 60px;
  }
  .contacts-form__block {
    display: flex;
    justify-content: center;
  }
  .contacts-form__left {
    width: 240px;
    height: 110px;
  }
  .contacts-form__content {
    display: none;
  }
  .contacts-form__open {
    display: flex;
  }
  .contacts-form__title {
    display: none;
  }
}

/* end contacts-form */
/* thanks-popup */
.thanks-popup {
  padding-left: 12px;
  padding-right: 12px;
}
.thanks-popup .popup__title {
  font-size: 26px;
  margin-bottom: 34px;
}
.thanks-popup .popup__main {
  max-width: 432px;
}
@media (max-width: 999px) {
  .thanks-popup .popup__main {
    height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 999px) {
  .thanks-popup .popup__main-inner {
    padding-bottom: 0;
  }
}
@media (max-width: 999px) {
  .thanks-popup .popup__close {
    position: absolute;
  }
}
.thanks-popup__text {
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 40px;
}

/* end thanks-popup */
/* footer */
.footer {
  position: relative;
  background-color: #f4f5f5;
  margin-top: auto;
}
.footer::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  z-index: 1;
}
.footer__inner {
  padding-block: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.footer__copyright {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}
.footer__caption {
  font-size: 13px;
  line-height: 19px;
  color: #79828b;
  max-width: clamp(18rem, -40rem + 72.5vw, 32.5rem);
}
.footer__link {
  display: block;
  font-size: 16px;
  color: #202f3d;
  margin-bottom: 14px;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: #00b2e2;
  }
}
@media (any-hover: none) {
  .footer__link:active {
    color: #00b2e2;
  }
}
.footer__phone {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  color: #202f3d;
  cursor: pointer;
  margin-bottom: 4px;
  display: block;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (any-hover: hover) {
  .footer__phone:hover {
    color: #00b2e2;
  }
}
@media (any-hover: none) {
  .footer__phone:active {
    color: #00b2e2;
  }
}
.footer__email {
  font-size: 13px;
  line-height: 19px;
  color: #79828b;
  display: block;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (any-hover: hover) {
  .footer__email:hover {
    color: #00b2e2;
  }
}
@media (any-hover: none) {
  .footer__email:active {
    color: #00b2e2;
  }
}
.footer__col {
  position: relative;
}
.footer__developer--shell {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 999px) {
  .footer__developer--shell {
    justify-content: flex-start;
  }
}
.footer__developer {
  bottom: 0;
  right: var(--container-padding-x);
  background: #ffffff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 13px;
  line-height: 19px;
  color: #79828b;
}
@media (any-hover: hover) {
  .footer__developer:hover {
    color: #00b2e2;
  }
}
@media (any-hover: none) {
  .footer__developer:active {
    color: #00b2e2;
  }
}
.footer__up {
  position: absolute;
  top: 0;
  right: 0;
  background: 0;
  border: 1px solid #202f3d;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__up .icon {
  width: 24px;
  height: 24px;
  color: #202f3d;
}
@media (any-hover: hover) {
  .footer__up:hover {
    border-color: #00b2e2;
  }
}
@media (any-hover: none) {
  .footer__up:active {
    border-color: #00b2e2;
  }
}
@media (max-width: 999px) {
  .footer__inner {
    padding-top: 40px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__copyright {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .footer__caption {
    font-size: 13px;
    line-height: 19px;
    max-width: 520px;
  }
  .footer__link {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 16px;
  }
  .footer__phone {
    margin-top: 40px;
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 16px;
  }
  .footer__email {
    font-size: 13px;
    line-height: 19px;
  }
  .footer__developer {
    bottom: 0;
    left: var(--container-padding-x);
    right: initial;
  }
  .footer__up {
    right: var(--container-padding-x);
    top: initial;
    bottom: 0;
  }
  .footer__col {
    position: static;
  }
}

/* end footer */
/* auth-popup */
.auth-popup .popup__main {
  max-width: 432px;
}
@media (max-width: 999px) {
  .auth-popup .popup__main {
    max-width: 100%;
  }
}
.auth-popup__field {
  margin-bottom: 24px;
}
.auth-popup__link {
  font-size: 13px;
  line-height: 16px;
  padding: 0;
  background: 0;
  border: 0;
  color: #202f3d;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  display: block;
}
.auth-popup__link:hover {
  color: #00b2e2;
}
.auth-popup__recovery, .auth-popup__recovery-success {
  display: none;
}
.auth-popup__submit {
  margin-top: 40px;
}
.auth-popup__caption {
  font-size: 13px;
  line-height: 16px;
}
.auth-popup.view-recovery .auth-popup__form {
  display: none;
}
.auth-popup.view-recovery .auth-popup__recovery {
  display: block;
}
.auth-popup.view-recovery-success .auth-popup__form {
  display: none;
}
.auth-popup.view-recovery-success .auth-popup__recovery-success {
  display: block;
}

/* end auth-popup */
/* cookie-bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: max-content;
  z-index: 110;
  background: #ffffff;
  box-shadow: 0 10px 16px 0 rgba(32, 47, 61, 0.15);
  display: none;
}
.cookie-bar__inner {
  padding-top: 68px;
  padding-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cookie-bar__text {
  font-size: 16px;
  line-height: 24px;
}
.cookie-bar__text a {
  color: #00b2e2;
  text-decoration: none;
}
.cookie-bar__submit {
  margin-left: auto;
}
.cookie-bar__close {
  position: absolute;
  z-index: 10;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0;
  padding: 0;
  border: 0;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.cookie-bar__close:hover .icon {
  color: #00b2e2;
}
.cookie-bar__close .icon {
  color: #202f3d;
  width: 100%;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media (max-width: 999px) {
  .cookie-bar__inner {
    padding-block: 25px;
    gap: 16px;
    flex-direction: column;
  }
  .cookie-bar__text {
    font-size: 13px;
    line-height: 16px;
  }
}

/* end cookie-bar */
/* breadcrumbs */
.breadcrumbs {
  font-size: 12px;
  padding-top: 23px;
  margin-bottom: 55px;
}
@media (max-width: 999px) {
  .breadcrumbs {
    padding-top: 10px;
    margin-bottom: 31px;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs__link {
  position: relative;
  color: #79828b;
  transition: color 0.3s;
  margin-bottom: 3px;
}
.breadcrumbs__link:hover {
  color: #202f3d;
}
.breadcrumbs__link:last-child {
  pointer-events: none;
  font-weight: 600;
}
.breadcrumbs__link:not(:last-child) {
  margin-right: 28px;
}
.breadcrumbs__link:not(:last-child):after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(images/svg/arrow-right-3.svg) no-repeat center;
  background-size: contain;
}

/* end breadcrumbs */
/* common-form */
.common-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 0.5rem + 1.25vw, 1.75rem);
  margin-bottom: 48px;
}
.common-form__row .contacts-form__row {
  margin-bottom: 0;
  gap: 10px;
}
.common-form__row--inner {
  margin-bottom: 0;
}
@media (max-width: 999px) {
  .common-form__row {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
  .common-form__row--inner {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
  }
}
.common-form__agreement {
  margin-top: 48px;
}
.common-form__agreement .checkbox__link {
  color: #00B2E2;
}
.common-form__btn-shell {
  margin-top: 56px;
}
@media (max-width: 999px) {
  .common-form__btn-shell {
    position: fixed;
    margin: 0;
    width: 100%;
    z-index: 10;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    padding: 20px 48px;
    box-shadow: 0 4px 22px 0 rgba(32, 47, 61, 0.1);
  }
}

/* end common-form */
/* contacts-form-popup */
.contacts-form-popup .popup__main {
  padding-top: 120px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (max-width: 1439px) {
  .contacts-form-popup .popup__main {
    max-height: 100%;
    overflow-y: auto;
  }
}
.contacts-form-popup .popup__main::-webkit-scrollbar {
  display: none;
}
@media (max-width: 999px) {
  .contacts-form-popup .popup__title {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

/* end contacts-form-popup */
/* categories-list */
.categories-list {
  padding: 21px 0 32px;
}
@media (max-width: 999px) {
  .categories-list {
    padding: 10px 0;
  }
}
.categories-list__container {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories-list__container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .categories-list__container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .categories-list__container {
    justify-content: flex-start;
  }
}
@media (max-width: 999px) {
  .categories-list__container {
    gap: 8px;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.categories-list__item {
  font-size: 13px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid #202f3d;
  padding: 10px;
  white-space: nowrap;
}
.categories-list__item:hover {
  border-color: #00b2e2;
}
@media (max-width: 999px) {
  .categories-list__item {
    padding: 8px 10px;
  }
}

/* end categories-list */
/* page-toolbar */
.page-toolbar {
  display: flex;
  justify-content: space-between;
  padding-top: 56px;
  padding-bottom: 24px;
}
@media (max-width: 999px) {
  .page-toolbar {
    padding-top: 36px;
    padding-bottom: 20px;
  }
}
.page-toolbar__column--right {
  width: 382px;
}
@media (max-width: 999px) {
  .page-toolbar__column--right {
    display: none;
  }
}

/* end page-toolbar */
/* filter-btn */
.filter-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 40px;
  border: 1px solid #4C5864;
  background-color: #202f3d;
  font-size: 13px;
  color: #ffffff;
}
.filter-btn__count {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 12px;
  top: -10px;
  right: -10px;
  width: 21px;
  height: 21px;
  border-radius: 10em;
  background-color: #00b2e2;
}

/* end filter-btn */
/* product-list */
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 48px;
}
@media (max-width: 999px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
    row-gap: 40px;
  }
}

/* end product-list */
/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination__item--disabled .pagination__link {
  pointer-events: none;
  border-color: #D2D5D8;
  opacity: 0.4;
}
.pagination__item--active .pagination__link {
  background: #202f3d;
  color: #ffffff;
}
.pagination__item--active .pagination__link:hover {
  border-color: #202f3d;
}
.pagination__item--dots .pagination__dots {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 0 2px;
  color: #202f3d;
}
.pagination__item--prev {
  margin-right: 24px;
}
@media (max-width: 999px) {
  .pagination__item--prev {
    margin: 0;
  }
}
.pagination__item--next {
  margin-left: 24px;
}
@media (max-width: 999px) {
  .pagination__item--next {
    margin: 0;
  }
}
.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #202f3d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.pagination__link:hover {
  border-color: #00b2e2;
}
.pagination__arrow {
  font-size: 14px;
  line-height: 1;
}

/* end pagination */
/* filter-popup */
.filter-popup__title-mobile {
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  background-color: #f4f5f5;
  color: #79828b;
  height: 48px;
  margin-left: -25px;
  margin-right: -25px;
  display: none;
}
@media (max-width: 999px) {
  .filter-popup__title-mobile {
    display: flex;
  }
}
.filter-popup .popup__close {
  position: absolute;
}
.filter-popup .popup__main-inner {
  height: 100%;
}
@media (max-width: 999px) {
  .filter-popup .popup__main-inner {
    padding-bottom: 0;
    overflow: hidden;
  }
}
.filter-popup__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.filter-popup__top {
  height: 540px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-popup__top::-webkit-scrollbar {
  width: 0;
  height: 0;
}
@media (max-width: 999px) {
  .filter-popup__top {
    height: auto;
    padding: 25px 25px 200px 25px;
    overflow-x: hidden;
  }
}
.filter-popup__select {
  padding-top: 20px;
  margin-bottom: 25px;
  display: none;
}
@media (max-width: 999px) {
  .filter-popup__select {
    display: flex;
  }
}
.filter-popup__reset-btn {
  font-size: 13px;
  height: 40px;
  color: #202f3d;
}
.filter-popup__reset-btn:hover {
  color: #00b2e2;
}
.filter-popup .filter-popup__submit-btn svg {
  stroke-dasharray: 150 826;
}
.filter-popup .filter-popup__submit-btn:hover svg {
  stroke-dashoffset: -826;
}
.filter-popup__bottom {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  gap: 15px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 999px) {
  .filter-popup__bottom {
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    z-index: 10;
    flex-direction: row;
    left: 25px;
    bottom: 0;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
    box-shadow: 0 -4px 22px rgba(32, 47, 61, 0.1);
    padding-bottom: 40px;
  }
}
.filter-popup__submit-btn, .filter-popup__reset-btn {
  width: 100%;
}
.filter-popup .popup__title {
  font-size: 26px;
  margin-bottom: 34px;
}
@media (max-width: 999px) {
  .filter-popup .popup__title {
    display: none;
  }
}
.filter-popup .popup__main {
  position: fixed;
  max-width: 414px;
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
  left: -100%;
  top: 0;
  padding: 48px 48px 0 48px;
  transition: 0.3s;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.filter-popup .popup__main::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
@media (max-width: 999px) {
  .filter-popup .popup__main {
    max-width: 100%;
    padding: 0;
  }
}
.filter-popup.opened .popup__main {
  left: 0;
}
.filter-popup__choice-shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
@media (max-width: 999px) {
  .filter-popup__choice-shell {
    margin-bottom: 25px;
  }
}
.filter-popup__choice-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.filter-popup__choice-name {
  color: #79828b;
}
.filter-popup__choice-article {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f4f5f5;
  padding: 6px 8px;
}
.filter-popup__choice-delete {
  width: 16px;
  height: 16px;
  background: url("images/svg/icon-close-mini.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
.filter-popup__check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}
.filter-popup .accordion .accordion-item.active:last-child {
  border-bottom: none;
}

/* end filter-popup */
/* accordion */
.accordion {
  border-top: 1px solid #202f3d;
}

.accordion-item {
  border-bottom: 1px solid #202f3d;
}
.accordion-item:last-child.active {
  border-color: transparent;
}
.accordion-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.accordion-item__header:focus {
  outline: none;
}
.accordion-item__title {
  font-size: 16px;
  color: #202f3d;
}
.accordion-item__icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.accordion-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 5px;
}
.accordion-item__icon-arrow {
  width: 24px;
  height: 24px;
  background: url("images/svg/arrow-right-2.svg") no-repeat center;
  display: none;
  transition: 0.3s;
}
.accordion-item--arrow .accordion-item__icon {
  display: none;
}
.accordion-item--arrow .accordion-item__icon-arrow {
  display: block;
}
.accordion-item.active .accordion-item__icon-arrow {
  transform: rotate(90deg);
}
.accordion-item.active .accordion-item__content {
  padding-bottom: 34px;
  overflow: visible;
}

/* end accordion */
/* block-range */
.block-range {
  position: relative;
  padding: 20px 19px 50px 1px;
}
.block-range__count-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}
.block-range__count {
  font-size: 13px;
  color: #79828B;
}
.block-range__count--max {
  position: relative;
  right: -15px;
}
.block-range .noUi-target {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.block-range .noUi-handle-upper .noUi-tooltip {
  top: -30px;
}
.block-range .noUi-connects {
  position: relative;
  border-radius: 0;
  overflow: visible;
}
.block-range .noUi-connects::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #D2D5D8;
  right: -17px;
  top: 0;
}
.block-range .noUi-connect {
  background-color: #202f3d;
}
.block-range .noUi-horizontal {
  background-color: #D2D5D8;
  height: 2px;
}
.block-range .noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 10em;
  background-color: #202f3d;
  border: none;
  box-shadow: none;
  top: -8px;
  cursor: pointer;
}
.block-range .noUi-horizontal .noUi-handle:before, .block-range .noUi-horizontal .noUi-handle:after {
  display: none;
}
.block-range .noUi-horizontal .noUi-tooltip {
  bottom: auto;
}
.block-range .noUi-tooltip {
  border: none;
  font-size: 13px;
}

/* end block-range */
/* product-gallery */
.product-gallery {
  position: relative;
}
@media (max-width: 767px) {
  .product-gallery--second .product-gallery__nav {
    display: none;
  }
}
.product-gallery--border .product-gallery__slider {
  border: 1px solid #D2D5D8;
}
.product-gallery__slider .swiper-slide {
  padding-inline: 1px;
}
.product-gallery--border .product-gallery__img {
  border: none;
}
.product-gallery__img {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
@media (max-width: 999px) {
  .product-gallery__img {
    border: 1px solid #D2D5D8;
  }
}
.product-gallery__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-gallery__nav {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #f4f5f5;
  width: max-content;
}
@media (max-width: 999px) {
  .product-gallery__nav {
    bottom: 1px;
  }
}
.product-gallery__prev, .product-gallery__next {
  background: #f4f5f5;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  cursor: pointer;
  left: initial;
  right: initial;
  position: relative;
  top: initial;
  margin-top: 0;
}
.product-gallery__prev::after, .product-gallery__next::after {
  display: none;
}
.product-gallery__prev .icon, .product-gallery__next .icon {
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 100%;
  height: 100%;
  color: #202f3d;
}
.product-gallery__prev:hover .icon, .product-gallery__next:hover .icon {
  color: #00b2e2;
}
.product-gallery__labels-shell {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  top: 0;
  left: 0;
  z-index: 5;
}
.product-gallery__label {
  text-transform: uppercase;
  font-size: 13px;
  height: 24px;
  width: max-content;
  padding: 0 8px;
  background: #ebdbd0;
  display: flex;
  align-items: center;
}
.product-gallery__label:nth-child(even) {
  background: #d2e4ef;
}
@media (max-width: 999px) {
  .product-gallery__label {
    font-size: 10px;
  }
}
.product-gallery__link {
  margin-top: 48px;
  margin-inline: auto;
}
@media (max-width: 999px) {
  .product-gallery__link {
    display: none;
  }
}

/* end product-gallery */
/* product-options */
.product-options__name {
  font-size: 32px;
  line-height: 45px;
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 48px;
}
.product-options__dropdown {
  margin-top: 24px;
}
.product-options__price {
  margin-top: 48px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}
.product-options__price--less-margin {
  margin-top: 24px;
}
.product-options__buttons {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f4f5f5;
}
.product-options__link-detail-mob {
  margin-top: 40px;
  display: none;
}
@media (max-width: 999px) {
  .product-options__link-detail-mob {
    display: block;
  }
}
.product-options__counter-wrapper {
  background: #f4f5f5;
  height: 100%;
  padding: 0 16px;
  flex-shrink: 0;
}
.product-options__add {
  width: 100%;
}
.product-options__add svg {
  stroke-dasharray: 150 630;
}
.product-options__add:hover svg {
  stroke-dashoffset: -630;
}
.product-options__btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.product-options__name-mob {
  display: none;
}
.product-options__add-mob {
  background: #00b2e2;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  display: none;
}
@media (max-width: 999px) {
  .product-options__add-mob {
    display: flex;
  }
}
.product-options__add-mob .icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}
@media (max-width: 999px) {
  .product-options__name {
    display: none;
  }
  .product-options__name-mob {
    display: block;
    margin-bottom: 24px;
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    line-height: 28px;
  }
  .product-options__price {
    font-size: 13px;
    line-height: 16px;
    margin-right: auto;
  }
  .product-options__add {
    display: none;
  }
  .product-options__counter-wrapper, .product-options__btn-wrapper {
    padding: 0;
    width: max-content;
  }
  .product-options__buttons {
    margin-left: auto;
    width: max-content;
    gap: 8px;
  }
  .product-options__select {
    grid-template-columns: 1fr;
  }
  .product-options__link {
    display: none;
  }
}

/* end product-options */
/* product-info */
.product-info__top {
  display: flex;
  gap: 24px;
  margin-bottom: 59px;
}
@media (max-width: 767px) {
  .product-info__top {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.product-info__column {
  width: 33%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .product-info__column {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .product-info__column--left {
    display: none;
  }
}
.product-info__column--right {
  max-width: 432px;
}
@media (max-width: 767px) {
  .product-info__column--right {
    max-width: 100%;
  }
}
.product-info__bottom {
  display: flex;
  gap: 24px;
}
@media (max-width: 999px) {
  .product-info__bottom {
    flex-direction: column;
    gap: 0;
  }
}
.product-info__bottom-column--left {
  flex-grow: 1;
}
@media (max-width: 999px) {
  .product-info__bottom-column--left {
    order: 2;
  }
}
.product-info__bottom-column--right {
  max-width: 432px;
  width: 100%;
}
@media (max-width: 999px) {
  .product-info__bottom-column--right {
    order: 1;
    margin-bottom: 20px;
  }
}
.product-info__name {
  margin-bottom: 16px;
  display: none;
}
@media (max-width: 767px) {
  .product-info__name {
    display: block;
  }
}
.product-info .product-options__link-detail-mob {
  display: none;
}
@media (max-width: 767px) {
  .product-info .product-options__name {
    display: none;
  }
}
@media (min-width: 768px) {
  .product-info .product-options__name {
    display: block;
  }
}
@media (max-width: 1439px) {
  .product-info .product-options__name {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 24px;
  }
}
.product-info .product-options__add {
  display: flex;
  min-width: 117px;
}
.product-info .product-options__add-mob {
  display: none;
}
@media (max-width: 999px) {
  .product-info .product-options__btn-wrapper {
    width: 100%;
  }
}
@media (max-width: 999px) {
  .product-info .product-options__buttons {
    max-width: 370px;
    width: 100%;
    padding: 10px;
    margin-left: 0;
  }
}

/* end product-info */
/* product-specs */
.product-specs__item {
  display: flex;
  border-bottom: 1px solid #D2D5D8;
}
@media (max-width: 999px) {
  .product-specs__item {
    font-size: 13px;
  }
}
.product-specs__column {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 16px;
}
.product-specs__column--left {
  background-color: #f4f5f5;
}
@media (max-width: 999px) {
  .product-specs__column--left {
    font-weight: 600;
  }
}
.product-specs__article {
  font-size: 13px;
  color: #79828b;
}
.product-specs__article p:last-child {
  margin-top: 20px;
}
.product-specs--bold .product-specs__column--left {
  font-weight: 600;
}

/* end product-specs */
/* tabs */
.tabs__nav-shell {
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs__nav-shell--white {
  background-color: #ffffff;
}
.tabs__nav-shell::-webkit-scrollbar {
  display: none;
}
.tabs__nav {
  display: flex;
  gap: 24px;
}
@media (max-width: 999px) {
  .tabs__nav {
    gap: 8px;
  }
}
.tabs__nav--white {
  background-color: #ffffff;
}
.tabs__btn {
  color: #202f3d;
  padding: 18px 20px;
  border-bottom: 1px solid #202f3d;
}
@media (max-width: 999px) {
  .tabs__btn {
    font-size: 14px;
    padding: 10px 12px;
  }
}
@media (min-width: 1000px) {
  .tabs__btn:hover {
    color: #00b2e2;
    border-color: #00b2e2;
  }
}
.tabs__btn--active {
  background-color: #202f3d;
  color: #ffffff;
  pointer-events: none;
}
.tabs__content {
  background-color: #f4f5f5;
  padding: 100px 114px;
}
@media (max-width: 999px) {
  .tabs__content {
    padding: 20px;
  }
}
.tabs__content--vertical-padding {
  padding: 40px 0;
}
@media (max-width: 999px) {
  .tabs__content--vertical-padding {
    padding: 20px 0;
  }
}

/* end tabs */
/* download-list */
.download-list {
  border-top: 1px solid #d2d5d8;
}
.download-list__item {
  background-color: #ffffff;
  border-bottom: 1px solid #d2d5d8;
  padding-left: 16px;
}
.download-list__link {
  position: relative;
  font-size: 13px;
  display: inline-block;
  padding: 16px 16px 16px 32px;
}
.download-list__link::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("images/svg/icon-download.svg") no-repeat center;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* end download-list */
/* specs-block */
/* end specs-block */
/* specs-table */
.specs-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.specs-table-wrapper::-webkit-scrollbar {
  display: none;
}

.specs-table {
  overflow: auto;
  font-size: 13px;
  padding-top: 20px;
}
.specs-table__header {
  font-weight: 600;
  background-color: #f4f5f5;
  min-width: max-content;
}
.specs-table__row {
  display: flex;
}
.specs-table__col {
  padding: 18px 16px;
  border-bottom: 1px solid #d2d5d8;
  flex-shrink: 0;
}
@media (max-width: 999px) {
  .specs-table__col {
    padding: 16px;
  }
}
.specs-table__col:first-child {
  min-width: 140px;
  flex-grow: 1;
}
.specs-table__col:not(:first-child) {
  width: 130px;
  text-align: center;
}
@media (max-width: 1023px) {
  .specs-table__col:not(:first-child) {
    width: 124px;
  }
}
.specs-table__col:last-child {
  width: 170px;
}
@media (max-width: 1023px) {
  .specs-table__col:last-child {
    width: 150px;
  }
}
.specs-table__body .specs-table__row {
  background-color: #ffffff;
}

/* end specs-table */
/* equip-list */
.equip-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
}
@media (max-width: 999px) {
  .equip-list {
    display: block;
  }
}
.equip-list__item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  cursor: pointer;
}
@media (max-width: 999px) {
  .equip-list__item {
    margin-bottom: 20px;
  }
}
.equip-list__title {
  max-width: 280px;
  width: 100%;
}
.equip-list__img-shell {
  position: relative;
  width: 120px;
  height: 120px;
  border: 1px solid #d2d5d8;
  flex-shrink: 0;
}
.equip-list__count {
  position: absolute;
  font-size: 10px;
  left: 0;
  top: 0;
  color: #ffffff;
  padding: 4px 8px;
  background-color: #202f3d;
}

/* end equip-list */
/* gallery-popup */
.gallery-popup .popup__main {
  padding: 0;
  overflow: visible;
  background: transparent;
}
.gallery-popup .popup__main .swiper-wrapper {
  align-items: center;
}
@media (max-width: 999px) {
  .gallery-popup .popup__main {
    height: auto;
  }
}
.gallery-popup .popup__main-inner {
  padding-bottom: 0;
}
.gallery-popup .popup__title {
  display: none;
}
.gallery-popup .popup__close-icon {
  position: fixed;
  width: 24px;
  height: 24px;
  top: 20px;
  right: 20px;
  color: #ffffff;
}
.gallery-popup .popup__close-icon:hover {
  color: #ffffff;
}
.gallery-popup img {
  display: block;
}
.gallery-popup__slider-next, .gallery-popup__slider-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.gallery-popup__slider-next:after, .gallery-popup__slider-prev:after {
  display: none !important;
}
.gallery-popup__slider-next {
  right: -100px;
}
@media (max-width: 1439px) {
  .gallery-popup__slider-next {
    right: 20px;
  }
}
.gallery-popup__slider-prev {
  left: -100px;
}
@media (max-width: 1439px) {
  .gallery-popup__slider-prev {
    left: 20px;
  }
}

/* end gallery-popup */
/* specs-popup */
.specs-popup .popup__main {
  max-width: 1116px;
  width: 100%;
}
@media (max-width: 1439px) {
  .specs-popup .popup__main {
    height: 100%;
    overflow-y: auto;
  }
}
@media (min-width: 1000px) {
  .specs-popup .popup__main {
    padding-left: 114px;
    padding-right: 114px;
  }
}
@media (max-width: 999px) {
  .specs-popup .popup__main {
    padding-left: 40px;
    padding-right: 40px;
  }
  .specs-popup .popup__main::after {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    z-index: 10;
  }
}
@media (max-width: 999px) {
  .specs-popup .popup__main-inner {
    padding-bottom: 0;
  }
}
.specs-popup .product-specs__item {
  font-size: 13px;
}
@media (min-width: 1440px) {
  .specs-popup .popup__close {
    position: fixed;
    width: 24px;
    height: 24px;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }
  .specs-popup .popup__close .popup__close-icon {
    color: #ffffff;
  }
  .specs-popup .popup__close:hover {
    color: #ffffff;
  }
}
.specs-popup .popup__title {
  display: none;
}
.specs-popup__shell {
  display: flex;
  gap: 24px;
}
@media (max-width: 999px) {
  .specs-popup__shell {
    flex-direction: column;
  }
}
.specs-popup__link-shell {
  padding-top: 25px;
  display: none;
}
@media (max-width: 999px) {
  .specs-popup__link-shell {
    display: block;
  }
}
.specs-popup__column {
  width: 50%;
}
@media (max-width: 999px) {
  .specs-popup__column {
    width: 100%;
  }
}
.specs-popup__title {
  margin-bottom: 31px;
}
.specs-popup__title--mob {
  display: none;
}
@media (max-width: 999px) {
  .specs-popup__title--mob {
    display: block;
  }
}
@media (max-width: 999px) {
  .specs-popup__title--desk {
    display: none;
  }
}

/* end specs-popup */
/* project-card */
.project-card {
  position: relative;
  background-color: #ffffff;
}
.project-card__hover-btn {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  bottom: 40px;
  right: 40px;
  border: 1px solid #202f3d;
  background-image: url("images/svg/arrow-right-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: none;
}
.project-card__hover-btn:hover {
  border-color: #00b2e2;
}
.project-card:hover .project-card__hover-btn {
  display: block;
}
@media (max-width: 999px) {
  .project-card:hover .project-card__hover-btn {
    display: none;
  }
}
.project-card__btn {
  display: none;
}
@media (max-width: 999px) {
  .project-card__btn {
    display: flex;
  }
}
.project-card__label {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  z-index: 1;
  padding: 4px 8px;
  background-color: #EBDBD0;
  text-transform: uppercase;
  font-size: 13px;
}
.project-card__img-shell {
  height: 255px;
}
.project-card__info {
  padding: 40px 40px 64px 40px;
}
@media (max-width: 999px) {
  .project-card__info {
    padding: 40px 20px 40px 20px;
  }
}
.project-card__title {
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 16px;
}
@media (max-width: 999px) {
  .project-card__title {
    font-size: 20px;
    line-height: 25px;
  }
}
.project-card__article {
  padding-bottom: 24px;
}
@media (max-width: 999px) {
  .project-card__article {
    font-size: 13px;
  }
}

/* end project-card */
/* grid-list */
@media (max-width: 767px) {
  .grid-list--two-items-on-mobile .grid-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.grid-list__items {
  display: grid;
  gap: 20px;
}
.grid-list__items--row-gap {
  gap: 48px 24px;
}
@media (max-width: 999px) {
  .grid-list__items--row-gap {
    gap: 40px;
  }
}
.grid-list__items--columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 999px) {
  .grid-list__items--columns-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .grid-list__items--columns-3 {
    grid-template-columns: 1fr;
  }
}
.grid-list__items--columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1439px) {
  .grid-list__items--columns-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .grid-list__items--columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-list__items--columns-4 {
    grid-template-columns: 1fr;
  }
}

/* end grid-list */
/* projects-list */
.projects-list {
  padding: 48px 0 48px;
  background-color: #f4f5f5;
}
.projects-list__filter-shell {
  margin-bottom: 24px;
}

/* end projects-list */
/* project-banner */
@media (max-width: 999px) {
  .project-banner {
    background-color: #f4f5f5;
    padding-top: 25px;
  }
}
.project-banner__shell {
  position: relative;
  z-index: 2;
}
.project-banner__media img {
  display: block;
}
.project-banner__card {
  position: absolute;
  width: 546px;
  right: 0;
  bottom: -50px;
  padding: 48px 48px 80px 48px;
  background-color: #202f3d;
  color: #ffffff;
}
@media (max-width: 1439px) {
  .project-banner__card {
    width: 400px;
    padding: 40px 20px;
  }
}
@media (max-width: 999px) {
  .project-banner__card {
    position: static;
    width: 100%;
  }
}
.project-banner__badge {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  z-index: 1;
  padding: 4px 8px;
  background-color: #EBDBD0;
  color: #202f3d;
  text-transform: uppercase;
  font-size: 13px;
}
.project-banner__title {
  font-size: 40px;
  margin-bottom: 16px;
}
@media (min-width: 1440px) {
  .project-banner__title {
    line-height: 58px;
    letter-spacing: -0.9px;
  }
}
@media (max-width: 1439px) {
  .project-banner__title {
    font-size: 26px;
  }
}
.project-banner__city {
  color: #79828b;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .project-banner__city {
    font-size: 13px;
  }
}
.project-banner__details .project-banner__row:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 999px) {
  .project-banner__details .project-banner__row:not(:last-child) {
    margin-bottom: 16px;
  }
}
.project-banner__label {
  text-transform: uppercase;
  color: #79828b;
}
.project-banner__bottom {
  position: relative;
  display: flex;
  gap: 23px;
  background-color: #f4f5f5;
  padding-top: 50px;
  padding-bottom: 58px;
}
@media (max-width: 999px) {
  .project-banner__bottom {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.project-banner__bottom::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 114px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
}
@media (max-width: 999px) {
  .project-banner__bottom::after {
    display: none;
  }
}
.project-banner__img-list {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
}
@media (max-width: 999px) {
  .project-banner__img-list {
    gap: 15px;
  }
}
.project-banner__img-list li {
  flex-grow: 1;
}
.project-banner__img-list li:nth-child(2) {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 999px) {
  .project-banner__img-list li:nth-child(2) {
    align-items: flex-start;
  }
}
.project-banner__img-list img {
  width: 100%;
  display: block;
}
.project-banner__bottom-column--left {
  flex-grow: 1;
}
.project-banner__bottom-column--right {
  max-width: 432px;
  padding-top: 114px;
  padding-right: 40px;
}
@media (max-width: 999px) {
  .project-banner__bottom-column--right {
    padding: 0;
  }
}

/* end project-banner */
/* image-gallery */
.image-gallery {
  position: relative;
}
.image-gallery__slider-side {
  position: absolute;
  content: "";
  width: 138px;
  height: 100%;
  top: 0;
  background-color: #ffffff;
  opacity: 0.8;
  z-index: 5;
  cursor: pointer;
}
.image-gallery__slider-side--left {
  left: 0;
}
.image-gallery__slider-side--right {
  right: 0;
}
@media (max-width: 1023px) {
  .image-gallery__slider-side {
    display: none;
  }
}
.image-gallery .swiper-slide {
  width: 660px;
}
@media (max-width: 999px) {
  .image-gallery .swiper-slide {
    width: auto;
  }
}
.image-gallery__picture {
  height: 390px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .image-gallery__picture {
    height: 259px;
  }
}
.image-gallery__slider-nav {
  display: flex;
  justify-content: center;
  padding: 48px 0 39px;
}

/* end image-gallery */
/* marker-list */
.marker-list li {
  position: relative;
  padding-left: 50px;
}
.marker-list li:not(:last-child) {
  margin-bottom: 28px;
}
.marker-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 40px;
  height: 40px;
  background: url("images/svg/icon-marker.svg") no-repeat center;
  background-size: contain;
}

/* end marker-list */
/* preview-list */
.preview-list {
  background-color: #ffffff;
}
.preview-list__title {
  font-size: 26px;
}
@media (max-width: 999px) {
  .preview-list__title {
    font-size: 20px;
  }
}
@media (max-width: 999px) {
  .preview-list__article {
    font-size: 13px;
  }
}
.preview-list__link {
  display: inline-block;
  font-weight: 500;
  padding: 14px 16px;
  border: 1px solid #4C5864;
}
@media (max-width: 999px) {
  .preview-list__link {
    font-size: 13px;
  }
}
.preview-list__link:hover {
  border-color: #00b2e2;
}
.preview-list__item {
  display: flex;
  gap: 24px;
}
@media (max-width: 999px) {
  .preview-list__item {
    display: block;
  }
}
.preview-list__item:not(:last-child) {
  margin-bottom: 24px;
}
.preview-list__item:nth-child(even) .preview-list__column--info {
  background-color: #f9f4f1;
  order: 1;
}
.preview-list__item:nth-child(even) .preview-list__column--image {
  order: 2;
}
.preview-list__column--image {
  max-width: 546px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 999px) {
  .preview-list__column--image {
    max-width: 100%;
  }
}
.preview-list__column--image img {
  max-width: 100%;
  display: block;
}
@media (max-width: 999px) {
  .preview-list__column--image img {
    width: 100%;
  }
}
.preview-list__column--info {
  flex-grow: 1;
  padding: 80px 114px;
  background-color: #F2F7FA;
  order: 2;
}
@media (max-width: 999px) {
  .preview-list__column--info {
    padding: 40px 20px;
  }
}

/* end preview-list */
/* cards-list */
.cards-list__location-shell {
  margin-bottom: 24px;
}
@media (max-width: 999px) {
  .cards-list__location-shell {
    margin-bottom: 20px;
  }
}
.cards-list__location-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: #ffffff;
  background-color: #202f3d;
  border: 1px solid #4C5864;
}
.cards-list--padding-top {
  padding: 48px 0 40px;
}
@media (max-width: 999px) {
  .cards-list--padding-top {
    padding-top: 25px;
  }
}
.cards-list--gray {
  background-color: #f4f5f5;
}
.cards-list__paginate-shell {
  padding: 20px 0 40px;
}

/* end cards-list */
/* news-head */
.news-head {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 999px) {
  .news-head {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.news-head__column--image {
  max-width: 318px;
  width: 100%;
  flex-shrink: 0;
  order: 1;
}
.news-head__column--image img {
  max-width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .news-head__column--image img {
    width: 100%;
  }
}
@media (max-width: 999px) {
  .news-head__column--image {
    order: 2;
  }
}
@media (max-width: 767px) {
  .news-head__column--image {
    max-width: 100%;
  }
}
.news-head__column--info {
  order: 2;
  flex-grow: 1;
}
@media (max-width: 999px) {
  .news-head__column--info {
    order: 1;
  }
}
.news-head__badge {
  display: inline-block;
  padding: 4px 8px;
  text-transform: uppercase;
  font-size: 13px;
  background-color: #d2e4ef;
  margin-bottom: 16px;
}
.news-head__title {
  font-size: 40px;
  margin-bottom: 16px;
}
@media (max-width: 999px) {
  .news-head__title {
    font-size: 26px;
  }
}
.news-head__date {
  color: #79828b;
}
@media (max-width: 999px) {
  .news-head__date {
    font-size: 13px;
  }
}

/* end news-head */
/* instruct-card */
@media (max-width: 999px) {
  .instruct-card {
    display: flex;
    gap: 16px;
    align-items: center;
  }
}
.instruct-card__img-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 318px;
  padding: 49px;
  background-color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 999px) {
  .instruct-card__img-shell {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 10px;
  }
}
.instruct-card__title {
  margin-bottom: 8px;
}
@media (max-width: 999px) {
  .instruct-card__title {
    font-size: 13px;
  }
}
.instruct-card__file-info {
  font-size: 13px;
  color: #79828b;
}

/* end instruct-card */
/* office-card */
.office-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #ffffff;
  padding: 40px 40px 48px 40px;
  border: 1px solid transparent;
}
.office-card:hover {
  border-color: #00b2e2;
}
@media (max-width: 999px) {
  .office-card {
    padding: 40px 20px;
  }
}
.office-card__title {
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 4px;
}
.office-card__subtitle, .office-card__address-link {
  font-size: 13px;
  color: #79828b;
}
.office-card__address-link:hover {
  color: #00b2e2;
}
.office-card__address {
  font-size: 13px;
}
.office-card__phone {
  font-weight: 600;
}
.office-card__website {
  word-break: break-all;
  white-space: normal;
  color: #00b2e2;
}
.office-card__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
}
.office-card__tag {
  font-size: 13px;
  padding: 10px;
  border: 1px solid #202f3d;
}

/* end office-card */
/* cart */
.cart {
  padding: 40px 0 80px;
  background-color: #ffffff;
}
.cart__col--sum-text {
  padding-top: 70px !important;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 1399px) {
  .cart__col--sum-text {
    padding-top: 60px !important;
  }
}
@media (max-width: 1439px) {
  .cart .counter__decrease,
  .cart .counter__increase,
  .cart .counter__input {
    width: 30px;
    height: 30px;
  }
  .cart .cart__col--remove {
    width: 115px;
  }
}
@media (max-width: 999px) {
  .cart {
    padding: 0 0 80px;
  }
}
.cart--printing .cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--qty {
  padding-top: 70px;
}
.cart--printing .cart__row .cart__col:first-child {
  width: 100px;
}
.cart--printing .cart__row .cart__col:nth-child(2) {
  margin-right: 34px;
}
.cart--printing .cart__body .cart__row .cart__col:nth-child(5) {
  font-weight: 400;
}
.cart--printing .cart__col--sum {
  font-weight: 600;
}
.cart--printing .cart__total-price {
  text-align: right;
}
.cart--printing .cart__total-list li {
  justify-content: flex-end;
}
.cart--printing .cart__complect-list {
  max-height: fit-content;
}
.cart--printing .cart__complect-icon {
  display: none;
}
.cart--printing .cart__title {
  font-weight: 600;
}
.cart .container.hide-padding {
  padding: 0;
}
.cart__header {
  font-weight: 600;
}
@media (max-width: 999px) {
  .cart__header {
    display: none;
  }
}
.cart__header .cart__col {
  text-align: center;
}
.cart__header .cart__row .cart__col:not(:first-child):not(:nth-child(2)) {
  padding-top: 0;
}
.cart__qty {
  display: flex;
  padding-top: 0;
}
.cart__qty span {
  font-weight: 400;
}
.cart__complect-toggle {
  color: #202f3d;
}
.cart__row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #d2d5d8;
}
@media (max-width: 999px) {
  .cart__row {
    flex-wrap: wrap;
  }
}
.cart__row .cart__col:first-child {
  width: 155px;
  flex-shrink: 0;
  margin-right: 24px;
}
@media (max-width: 999px) {
  .cart__row .cart__col:first-child {
    margin-right: 16px;
  }
}
.cart__row .cart__col:nth-child(2) {
  width: 330px;
  margin-right: 71px;
}
@media (max-width: 1023px) {
  .cart__row .cart__col:nth-child(2) {
    margin-right: 20px;
  }
}
@media (max-width: 999px) {
  .cart__row .cart__col:nth-child(2) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .cart__row .cart__col:nth-child(2) {
    max-width: 300px;
  }
}
.cart__row .cart__col:not(:first-child):not(:nth-child(2)) {
  display: flex;
  padding-top: 70px;
  justify-content: center;
  width: 132px;
  flex-grow: 1;
}
@media (max-width: 999px) {
  .cart__row .cart__col:not(:first-child):not(:nth-child(2)) {
    padding-top: 0;
    align-items: center;
  }
}
.cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--qty {
  padding-top: 60px;
}
@media (max-width: 1439px) {
  .cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--qty {
    padding-top: 65px;
  }
}
.cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--qty .counter {
  align-items: flex-start;
  background-color: #ffffff;
}
.cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--qty .counter__decrease,
.cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--qty .counter__increase {
  background-color: #f4f5f5;
}
.cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--remove {
  align-items: flex-start;
}
@media (max-width: 999px) {
  .cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--remove {
    justify-content: flex-end;
    display: flex;
    padding-top: 20px;
    width: 50%;
  }
}
@media (max-width: 999px) {
  .cart__row .cart__col:not(:first-child):not(:nth-child(2)).cart__col--qty {
    display: block;
    padding-top: 20px;
    width: 50%;
  }
}
@media (max-width: 999px) {
  .cart__row .cart__col:not(:first-child):not(:nth-child(2)) {
    display: none;
  }
}
.cart__body .cart__row .cart__col:first-child {
  height: 155px;
}
.cart__body .cart__row .cart__col:nth-child(5), .cart__body .cart__row .cart__col:nth-child(7) {
  font-weight: 600;
}
@media (max-width: 767px) {
  .cart__body .cart__row .cart__col--photo {
    width: 30%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .cart__body .cart__row .cart__col--name {
    display: flex;
    align-items: center;
    width: 70%;
    margin-bottom: 20px;
  }
}
.cart__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 999px) {
  .cart__title {
    font-family: var(--font-family-base);
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .cart__title {
    font-size: 13px;
    letter-spacing: -0.9px;
  }
}
.cart__info {
  font-size: 13px;
  color: #79828b;
  margin-top: 4px;
}
@media (max-width: 999px) {
  .cart__info {
    margin-top: 0;
  }
}
@media (max-width: 999px) {
  .cart__info-shell--desktop {
    display: none;
  }
}
.cart__info-shell--mobile {
  display: none;
}
@media (max-width: 999px) {
  .cart__info-shell--mobile {
    display: block;
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .cart__info-shell--mobile {
    width: 100%;
  }
}
.cart__specs {
  padding-top: 20px;
}
.cart__specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.cart__specs li:not(:last-child) {
  margin-bottom: 4px;
}
.cart__specs li:last-child span:nth-child(2) {
  font-weight: 600;
}
.cart__consult-btn svg {
  stroke-dasharray: 150 760;
  stroke-dashoffset: 150;
}
.cart__consult-btn:hover svg {
  stroke-dashoffset: -760;
}
@media (max-width: 767px) {
  .cart__remove {
    margin-left: auto;
  }
}
.cart__complect {
  margin-top: 30px;
}
@media (max-width: 999px) {
  .cart__complect--desktop {
    display: none;
  }
}
.cart__complect--mobile {
  margin-top: 20px;
}
.cart__complect-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cart__complect-icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.cart__complect-icon::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("images/svg/icon-plus.svg") no-repeat center;
}
.cart__complect-icon.active::after {
  background: url("images/svg/icon-minus.svg") no-repeat center;
}
.cart__complect-list {
  font-size: 13px;
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.cart__complect-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__complect-list li span:nth-child(2) {
  flex-shrink: 0;
}
.cart__complect-list li:not(:last-child) {
  margin-bottom: 4px;
}
.cart__complect-list.open {
  max-height: 500px;
}
.cart__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
@media (max-width: 999px) {
  .cart__footer {
    flex-direction: column;
  }
}
.cart__footer-column {
  flex-grow: 1;
}
.cart__footer-column--left {
  order: 1;
}
@media (max-width: 999px) {
  .cart__footer-column--left {
    order: 2;
  }
}
.cart__footer-column--right {
  max-width: 320px;
  order: 2;
}
@media (max-width: 999px) {
  .cart__footer-column--right {
    order: 1;
    margin-bottom: 40px;
  }
}
.cart__btn-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cart__action-btn {
  padding: 14px 16px;
  border: 1px solid #d2d5d8;
  color: #202f3d;
}
.cart__action-btn:hover {
  border-color: #00b2e2;
}
@media (max-width: 999px) {
  .cart__action-btn {
    font-size: 13px;
    padding: 12px;
  }
}
.cart__total-price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.cart__total-list {
  font-size: 13px;
  color: #79828b;
}
.cart__total-list li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart__total-list li:not(:last-child) {
  margin-bottom: 4px;
}

/* end cart */
/* contact-info */
.contact-info .product-gallery__img {
  cursor: pointer;
}
.contact-info__columns-shell {
  display: flex;
}
@media (max-width: 999px) {
  .contact-info__columns-shell {
    flex-direction: column;
  }
}
.contact-info__top {
  padding-top: 56px;
  padding-bottom: 20px;
}
@media (max-width: 999px) {
  .contact-info__top {
    padding-top: 20px;
  }
}
@media (min-width: 1000px) {
  .contact-info__column {
    width: 50%;
  }
}
@media (max-width: 999px) {
  .contact-info__column--left {
    margin-bottom: 24px;
  }
}
@media (min-width: 1600px) {
  .contact-info__column--left .product-gallery__slider {
    height: 532px;
  }
}
@media (min-width: 1000px) and (max-width: 1599px) {
  .contact-info__column--left .product-gallery__slider {
    height: 432px;
  }
}
@media (min-width: 1000px) {
  .contact-info__column--left .product-gallery__img {
    height: 100%;
    padding-top: 0;
  }
}
@media (min-width: 1000px) {
  .contact-info__column--left {
    padding-right: 32px;
  }
}
.contact-info__column--right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1000px) {
  .contact-info__column--right {
    padding-left: 32px;
    padding-right: 55px;
  }
}
.contact-info__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info__location-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: #ffffff;
  background-color: #202f3d;
  border: 1px solid #4C5864;
}
.contact-info__title {
  font-size: 32px;
  margin-bottom: 4px;
}
.contact-info__text {
  font-size: 13px;
  color: #202f3d;
}
.contact-info__subtitle {
  font-size: 13px;
  color: #79828b;
}
.contact-info__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.contact-info__tag {
  font-size: 13px;
  border: 1px solid #202f3d;
  padding: 10px;
}
.contact-info__email {
  color: #202f3d;
}
.contact-info__phone {
  color: #202f3d;
  font-weight: 600;
}
.contact-info__website {
  color: #00b2e2;
}
.contact-info__head {
  text-transform: uppercase;
  font-weight: 600;
}
.contact-info__list {
  font-size: 13px;
}
.contact-info__list li:not(:last-child) {
  margin-bottom: 8px;
}

/* end contact-info */
/* dealer-map */
.dealer-map {
  width: 100%;
  height: 414px;
  margin-bottom: 70px;
}
@media (max-width: 999px) {
  .dealer-map .ymaps-2-1-79-panel-pane {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .dealer-map {
    height: 240px;
  }
}
.dealer-map__init {
  height: 100%;
}
.dealer-map__adress {
  padding: 24px;
  background: rgba(235, 219, 208, 0.3);
}
.dealer-map__adress span {
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 767px) {
  .dealer-map__adress {
    font-size: 13px;
  }
}

/* end dealer-map */
/* printing-layout */
.printing-layout {
  width: 920px;
  margin: 0 auto;
  padding: 48px 40px;
}
.printing-layout__logo {
  display: inline-block;
  width: 130px;
}
.printing-layout__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 33px;
}
.printing-layout__header-info {
  font-size: 13px;
  text-align: right;
}
.printing-layout__phone {
  font-weight: 600;
}
.printing-layout__title {
  font-size: 26px;
  margin-bottom: 8px;
}
.printing-layout__date {
  font-size: 13px;
  color: #79828b;
}
.printing-layout__body {
  margin-bottom: 156px;
}
.printing-layout__footer {
  padding-top: 20px;
  border-top: 1px solid #d2d5d8;
}
.printing-layout__subtitle {
  font-weight: 600;
  margin-bottom: 8px;
}
.printing-layout__list {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #79828b;
  gap: 8px;
}

/* end printing-layout */
/* post-head */
.post-head {
  background-color: #202f3d;
  padding-top: 85px;
  padding-bottom: 85px;
}
@media (max-width: 999px) {
  .post-head {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.post-head--less-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 999px) {
  .post-head__column--left {
    margin-bottom: 40px;
  }
}
.post-head__column--flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.post-head__img-shell {
  height: 307px;
}
.post-head__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 1024px) {
  .post-head__body {
    gap: 130px;
  }
}
@media (max-width: 999px) {
  .post-head__body {
    display: block;
  }
}
.post-head__video {
  max-width: 546px;
  width: 100%;
  height: 307px;
}
@media (max-width: 767px) {
  .post-head__video {
    height: 182px;
  }
}
.post-head__logo {
  width: 160px;
  margin-bottom: 40px;
}
@media (max-width: 999px) {
  .post-head__logo {
    margin-bottom: 16px;
  }
}
.post-head__article {
  color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 999px) {
  .post-head__article {
    font-size: 13px;
  }
}
.post-head__link {
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  padding: 14px 16px;
  border: 1px solid #4C5864;
}
@media (max-width: 999px) {
  .post-head__link {
    font-size: 13px;
  }
}
.post-head__link:hover {
  border-color: #00b2e2;
}

/* end post-head */
/* about-map */
.about-map {
  background-color: #ebdbd0;
}
.about-map__img-shell {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.about-map__img-shell img {
  max-width: 100%;
  height: auto;
}
.about-map__list {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 999px) {
  .about-map__list {
    gap: 16px;
  }
}
.about-map__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 25px;
}
@media (max-width: 999px) {
  .about-map__list li {
    gap: 10px;
  }
}
.about-map__list li span:first-child {
  font-size: 80px;
}
@media (max-width: 999px) {
  .about-map__list li span:first-child {
    font-size: 40px;
  }
}
.about-map__list li span:nth-child(2) {
  text-transform: uppercase;
}
@media (max-width: 999px) {
  .about-map__list li span:nth-child(2) {
    font-size: 12px;
  }
}

/* end about-map */
/* error-block */
.error-block {
  position: relative;
  padding: 40px 0 170px;
  background: url("images/prev-3.jpg") no-repeat center;
  background-size: cover;
}
@media (max-width: 999px) {
  .error-block {
    padding: 40px 68px 56px;
  }
}
.error-block__content-shell {
  display: flex;
  justify-content: center;
  max-width: 888px;
  padding: 148px 30px 218px;
  width: 100%;
  margin: 0 auto;
  background: rgba(32, 47, 61, 0.7);
  backdrop-filter: blur(12px);
}
@media (max-width: 999px) {
  .error-block__content-shell {
    padding: 36px 33px;
  }
}
.error-block__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}
.error-block__type {
  font-family: "Comfortaa", sans-serif;
  font-size: 120px;
}
@media (max-width: 999px) {
  .error-block__type {
    font-size: 60px;
  }
}
.error-block__article {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 999px) {
  .error-block__article {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

/* end error-block */
/* header-password */
.header-password {
  position: relative;
}
.header-password:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: linear-gradient(180deg, #FFF 0%, #F4F5F5 100%);
  z-index: 1;
}
@media (max-width: 999px) {
  .header-password:after {
    display: none;
  }
}
.header-password__logo {
  position: relative;
  display: inline-block;
  width: 130px;
  z-index: 2;
}
.header-password__logo-shell {
  display: flex;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 10px;
}
@media (max-width: 999px) {
  .header-password__logo-shell {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.header-password__title {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 94px;
  padding-bottom: 20px;
}
@media (max-width: 999px) {
  .header-password__title {
    font-size: 26px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

/* end header-password */
/* password-form */
.password-form {
  max-width: 432px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #d2d5d8;
  padding: 48px 48px 56px 48px;
}
@media (max-width: 999px) {
  .password-form {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
}
.password-form__btn-shell {
  padding-top: 36px;
}
@media (max-width: 999px) {
  .password-form__btn-shell {
    padding-top: 16px;
  }
}

/* end password-form */
/* search-page */
.search-page {
  padding-top: 20px;
  padding-bottom: 20px;
}
.search-page__columns-shell {
  display: flex;
  gap: 8px;
}
@media (max-width: 999px) {
  .search-page__columns-shell {
    flex-direction: column;
  }
}
.search-page__column--left {
  flex-grow: 1;
}
.search-page__column--center {
  width: 250px;
}
@media (max-width: 999px) {
  .search-page__column--center {
    width: 100%;
  }
}
.search-page__column--right {
  width: 67px;
}
@media (max-width: 999px) {
  .search-page__column--right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .search-page__column--right .btn {
    width: 100%;
  }
  .search-page__column--right .btn svg {
    display: none;
  }
}
.search-page__article {
  font-size: 13px;
  color: #79828b;
  padding-top: 8px;
}

/* end search-page */
/* search-result */
.search-result {
  min-height: 600px;
}
.search-result__previews-shell {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 999px) {
  .search-result__previews-shell {
    gap: 20px;
  }
}
.search-result__preview {
  padding: 48px 115px;
  background-color: #ffffff;
}
.search-result__preview .breadcrumbs {
  padding: 0;
  margin: 0;
}
@media (max-width: 999px) {
  .search-result__preview {
    padding: 20px 20px 40px 20px;
  }
}
.search-result__preview-title {
  font-size: 26px;
  margin-bottom: 8px;
}
.search-result__preview-article {
  margin-bottom: 16px;
}
@media (max-width: 999px) {
  .search-result__preview-article {
    font-size: 13px;
  }
}
.search-result__empty {
  font-size: 13px;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
  color: #79828b;
}
@media (max-width: 999px) {
  .search-result__empty {
    padding-top: 8px;
    text-align: left;
  }
}

/* end search-result */
/* email-popup */
.email-popup .popup__main {
  max-width: 432px;
}
.email-popup .auth-popup__caption {
  padding-top: 20px;
  padding-bottom: 40px;
}
.email-popup__form {
  display: none;
}
.email-popup__form.active {
  display: block;
}
.email-popup__success {
  flex-direction: column;
  gap: 24px;
  display: none;
}
.email-popup__success.active {
  display: flex;
}

/* end email-popup */
/* image-popup */
.image-popup .popup__main {
  padding: 0;
}
@media (max-width: 999px) {
  .image-popup .popup__main {
    height: auto;
  }
}
.image-popup .popup__main-inner {
  padding-bottom: 0;
}
.image-popup .popup__title {
  display: none;
}
.image-popup .popup__close .popup__close-icon {
  color: #ffffff;
}
.image-popup img {
  display: block;
}

/* end image-popup */