@import url(https://fonts.googleapis.com/css?family=Montserrat:regular,500,700&display=swap);

@font-face {
  font-family: icons;
  font-display: swap;
  src: url("../fonts/icons.woff") format("woff"), url("../fonts/icons.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "icons";
  font-display: swap;
  src: url("../fonts/icons.woof") format("woof"), url("../fonts/icons.woof2#icons") format("woof");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  display: block;
}

.icon-facebook:before {
  content: "\e900";
}

.icon-instagram:before {
  content: "\e901";
}

.icon-vk:before {
  content: "\e902";
}

.icon-youtube:before {
  content: "\e903";
}

body {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  background: #000;
}

body.lock {
  overflow: hidden;
}

.text-uppercase {
  text-transform: uppercase;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

[class*=__container] {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 10px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.tabs__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tabs__button {
  position: relative;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, #333333), color-stop(75%, transparent));
  background: -o-linear-gradient(#333333 75%, transparent 75%);
  background: linear-gradient(#333333 75%, transparent 75%);
  font-weight: 500;
  line-height: 1.25;
  padding: 0.8125em 0em 1.6875em;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.tabs__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}

.tabs__button:active {
  -webkit-transform: scale(0.975);
  -ms-transform: scale(0.975);
  transform: scale(0.975);
}

.tabs__button.active {
  background: url("data:image/svg+xml,%3Csvg width='189' height='60' viewBox='0 0 189 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0H189V45H109.142L109.284 45.1426L95.1421 59.2847L81 45.1426L81.1426 45H0V0Z' fill='url(%23paint0_linear_522_1603)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_522_1603' x1='189' y1='29.6424' x2='0' y2='29.6424' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.112578' stop-color='%2300B3FF'/%3E%3Cstop offset='0.338542' stop-color='%23449FB7'/%3E%3Cstop offset='0.458333' stop-color='%236A93A7'/%3E%3Cstop offset='0.802083' stop-color='%23EF3C33'/%3E%3Cstop offset='1' stop-color='%23EE9E46'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A") center 0/cover;
  position: relative;
}

.tabs__button-text {
  position: relative;
  z-index: 2;
}

.tabs__content {
  margin-top: 1.25em;
}

.tabs__content-item {
  display: none;
}

.tabs__content-item.active {
  display: block;
}

.popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 55555;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__body {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.popup__content {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup__body {
  width: 100%;
  min-height: 100%;
  background: #000;
  -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  -o-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  padding: 1.5625em 0em;
}

.popup__container {
  position: relative;
  max-width: 920px;
}

.popup__image {
  max-height: 600px;
}

.popup__close {
  position: relative;
  width: 34px;
  height: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 10;
  cursor: pointer;
  color: currentColor;
  background: transparent;
  font-size: 1.25rem;
  z-index: 20;
}

.popup__close::before,
.popup__close::after {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 3px;
  background: #8c8c8c;
}

.popup__close::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 2px);
}

.popup__close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.navigation {
  padding: 0.625em 0em 0em;
}

.navigation__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.2142857143;
}

.navigation__list._three-layers .navigation__list-item:first-child .navigation__list-link {
  background: -webkit-gradient(linear, right top, left top, color-stop(30.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #ef3c33 30.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #ef3c33 30.21%, #ee9e46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navigation__list._three-layers .navigation__list-item:first-child::before {
  color: #ef3c33;
}

.navigation__list._three-layers .navigation__list-item:last-child .navigation__list-link {
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(53.85%, #449fb7), color-stop(95.83%, #6a93a7));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 53.85%, #6a93a7 95.83%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 53.85%, #6a93a7 95.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navigation__list._three-layers .navigation__list-item:nth-child(2) .navigation__list-link {
  background: -webkit-gradient(linear, left top, right top, color-stop(21.26%, #ef3c33), color-stop(83.85%, #449fb7), color-stop(95.83%, #6a93a7));
  background: -o-linear-gradient(left, #ef3c33 21.26%, #449fb7 83.85%, #6a93a7 95.83%);
  background: linear-gradient(90deg, #ef3c33 21.26%, #449fb7 83.85%, #6a93a7 95.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navigation__list-item:first-child .navigation__list-link {
  background: -webkit-gradient(linear, right top, left top, color-stop(5.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #6a93a7 5.83%, #ef3c33 80.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #6a93a7 5.83%, #ef3c33 80.21%, #ee9e46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navigation__list-item:last-child .navigation__list-link {
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(83.85%, #449fb7), color-stop(95.83%, #6a93a7));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 83.85%, #6a93a7 95.83%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 83.85%, #6a93a7 95.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navigation__list-item:not(:last-child) {
  margin-right: 0.3125em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.navigation__list-item:not(:last-child)::before {
  content: ">";
  margin-left: 0.3125em;
  color: #6a93a7;
}

.title {
  font-weight: 700;
  line-height: 1.21875;
}

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

.gradient-text {
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.colors {
  font-size: 12px;
  line-height: 1.2142857143;
}

.colors._white-check .colors__item-input[value=black] + .colors__item-visual {
  border: 1px solid #fff;
}

.colors._white-check .colors__item-input:checked + .colors__item-visual,
.colors._white-check .colors__item-input + .colors__item-visual.active {
  border: 2px solid #fff;
}

.colors._white-check .colors__item-input:checked[value=white] + .colors__item-visual,
.colors._white-check .colors__item-input[value=white] + .colors__item-visual {
  border: 2px solid red;
}

.colors._big .colors__title {
  font-size: 21px;
}

.colors._big .colors__item-visual {
  width: 26px;
  height: 26px;
}

.colors._big .colors__body {
  grid-template-columns: repeat(auto-fit, minmax(26px, 1fr));
  gap: 9px;
}

.colors__body {
  margin-top: 1em;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16px, 1fr));
  gap: 5px;
}

.colors__item-input[value=white] + .colors__item-visual {
  background: #ffffff;
  border: 1px solid #000000;
}

.colors__item-input[value=black] + .colors__item-visual {
  background: #000;
}

.colors__item-input[value=black]:checked + .colors__item-visual,
.colors__item-input[value=black] + .colors__item-visual.active {
  border: 2px solid red;
}

.colors__item-input[value=red] + .colors__item-visual {
  background: #ff0000;
}

.colors__item-input[value=yellow] + .colors__item-visual {
  background: #ffe600;
}

.colors__item-input[value=blue] + .colors__item-visual {
  background: #001aff;
}

.colors__item-input[value=violet] + .colors__item-visual {
  background: #fa00ff;
}

.colors__item-input[value=grey] + .colors__item-visual {
  background: #6d6d6d;
}

.colors__item-input[value=aquamarine] + .colors__item-visual {
  background: #00f0ff;
}

.colors__item-input[value=green] + .colors__item-visual {
  background: #64b425;
}

.colors__item-input[value=darkgreen] + .colors__item-visual {
  background: #006d0b;
}

.colors__item-input:checked + .colors__item-visual {
  border: 2px solid #000;
}

.colors__item-visual {
  display: block;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.colors__footer {
  display: inline-block;
  margin-top: 0.7142857143em;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  inset: 0;
  z-index: 3;
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2222222222;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper-button-next::before {
  content: ">";
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.swiper-button-prev {
  margin-right: 0.9375em;
}

.swiper-button-prev::before {
  content: "<";
  background: -webkit-gradient(linear, right top, left top, color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #ef3c33 80.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #ef3c33 80.21%, #ee9e46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.socials.socials-gradient .socials__list-link::before {
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.socials__title {
  font-size: 12px;
  line-height: 1.2083333333;
  margin-bottom: 1.0416666667em;
}

.socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
}

.socials__list-item:not(:last-child) {
  margin-right: 1.5625em;
}

.socials__list-link {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.socials__list-link.icon-instagram,
.socials__list-link.icon-facebook {
  font-size: 18px;
}

.info-block {
  background: #fff;
  color: #000;
}

.info-block__list .info-block__list-image img {
    max-height: 36px;
}

.info-block:not(:last-child) {
  margin-bottom: 1.875em;
}

.info-block._wrapp-items .info-block__text {
  padding: 0.9375em 0.6875em;
}

.info-block._wrapp-items:nth-child(even) .info-block__list-item:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.info-block._wrapp-items:nth-child(odd) .info-block__list-item:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.info-block__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 52%;
  flex: 0 1 52%;
  padding: 0.9375em 0.6875em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info-block__list {
  margin-top: auto;
}

.info-block__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.125em;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 48%;
  flex: 0 1 48%;
}

.info-block__list-image {
  margin: 0em 0.625em 0em 0rem;
}



.info-block__list-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2380952381;
}

.info-block__list-desc {
  margin-top: 0.3571428571em;
  font-size: 14px;
  line-height: 1.2142857143;
}

.info-block__btn {
  margin-top: 1.875em;
}

.info-block__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 48%;
  flex: 0 1 48%;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.info-block__image img {
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-slider {
  margin-top: 1.875em;
  overflow: hidden;
}

.gallery-slider__item {
  text-align: center;
  line-height: 1.25;
}

.gallery-slider__title {
  font-weight: 700;
  font-size: 16px;
}

.gallery-slider__title._top-offset {
  margin-top: 0.625em;
}

.gallery-slider__desc {
  margin-top: 0.625em;
}

.gallery-slider__image {
  margin-top: 0.625em;
  height: 350px;
}

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

.gallery-slider__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

::-moz-selection {
  background: #ccd9ec;
  color: #000;
  box-shadow: none;
}

::selection {
  background: #ccd9ec;
  color: #000;
  -webkit-box-shadow: none;
  box-shadow: none;
}

::-moz-selection {
  background: #ccd9ec;
  color: #000;
  box-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: linear-gradient(0deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  border-radius: 4px;
}

.hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

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

.form__body {
  margin-top: 1.6875em;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.form__row:not(:last-child) {
  margin-bottom: 1.25em;
}

.form__label-text {
  display: block;
  font-size: 14px;
  line-height: 1.2142857143;
  margin-bottom: 0.7142857143em;
}

.form__file {
  margin-top: 1.6875em;
  line-height: 1.25;
}

.form__file-text {
  display: block;
  font-weight: 700;
  color: #8c8c8c;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.form__file-list {
  margin-top: 0.625em;
  font-weight: 500;
}

.form__file-item:not(:last-child) {
  margin-bottom: 0.625em;
}

.form__input {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: transparent;
  border: 1px solid #ffffff;
  color: #8c8c8c;
  padding: 0.8125em 0.6875em;
  font-size: 14px;
  line-height: 1.2222222222;
}

.form__input::-webkit-input-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__input:-moz-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__input::-moz-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__input:-ms-input-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__input:focus {
  color: #fff;
}

.form__input._error {
  border: 1px solid #cf6679;
  color: #cf6679;
}

.form__textarea {
  resize: none;
  overflow: auto;
  width: 100%;
  height: 130px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #8c8c8c;
  padding: 0.8125em 0.6875em;
  font-size: 14px;
  line-height: 1.2222222222;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form__textarea::-webkit-input-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__textarea:-moz-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__textarea::-moz-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__textarea:-ms-input-placeholder {
  color: currentColor;
  font-size: 14px;
  font-weight: 400;
}

.form__textarea:focus {
  color: #fff;
}

.form__textarea._error {
  border: 1px solid #cf6679;
  color: #cf6679;
}

.form__button {
  text-align: center;
  margin-top: 1.25em;
}

.btn {
  font-family: "Montserrat", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  padding: 0.8125em 1.3125em;
  font-weight: 500;
  line-height: 1.25;
}

.btn.btn-gradient {
  position: relative;
  color: #fff;
  background: #333333;
}

.btn.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.btn.btn-vertical {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.btn.btn-vertical:active {
  -webkit-transform: rotate(-90deg) scale(0.95);
  -ms-transform: rotate(-90deg) scale(0.95);
  transform: rotate(-90deg) scale(0.95);
}

.btn:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.btn:disabled {
  background: #8c8c8c;
  cursor: default;
}

.btn:disabled::before {
  opacity: 0;
}

.btn.btn-mw {
  width: 100%;
}

.btn__text {
  z-index: 2;
}

.header__container {
  min-height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  max-width: 70px;
}

.header__btn-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__btn-text {
  margin-left: 0.4166666667em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.menu {
  z-index: 9;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu.active {
  -webkit-transform: translate(0%, 0px);
  -ms-transform: translate(0%, 0px);
  transform: translate(0%, 0px);
}

.menu__contacts {
  font-size: 14px;
  line-height: 1.2142857143;
}

.menu__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__contacts-item:not(:last-child) {
  margin: 0em 0em 1.8181818182em 0rem;
}

.menu__contacts-separator {
  display: none;
}

.menu__contacts-link {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.menu__body {
  margin-top: 0.25em;
}

.menu__item {
  position: relative;
  font-weight: 500;
  line-height: 1.25;
}

.menu__item:not(:last-child) {
  margin: 0em 0em 1.25em 0em;
}

.menu__item-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu__item-parent.open .menu__arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.menu__arrow {
  margin-left: 0.3125em;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  display: inline-block;
}

.menu__link {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.sub-menu {
  width: 100%;
  z-index: 10;
}

.sub-menu__list {
  margin-top: 0.5em;
  line-height: 1.4285714286;
  font-size: 14px;
}

.sub-menu__link {
  display: block;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  padding: 0.625em;
}

/* BURGER*/

.icon-menu {
  position: relative;
  width: 27px;
  height: 27px;
  z-index: 100;
  -webkit-transition: all 0.35s linear 0s;
  -o-transition: all 0.35s linear 0s;
  transition: all 0.35s linear 0s;
}

.icon-menu span,
.icon-menu::before,
.icon-menu::after {
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  height: 2px;
  width: 100%;
}

.icon-menu::before,
.icon-menu::after {
  content: "";
  left: 0;
}

.icon-menu span {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-menu::before {
  top: 4.5px;
}

.icon-menu::after {
  bottom: 4.5px;
}

.icon-menu.active {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-menu.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.icon-menu.active::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.icon-menu.active:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

/* BURGER*/

.footer {
  padding: 3.125em 0em;
}

.footer__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  -webkit-column-gap: 3%;
  -moz-column-gap: 3%;
  column-gap: 3%;
}

.footer__column-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2083333333;
}

.footer__column-list {
  margin-top: 1.1111111111em;
  font-size: 12px;
  line-height: 1.2222222222;
}

.footer__column-item:not(:last-child) {
  margin-bottom: 1.2222222222em;
}

.footer__column-link {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.page {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.technology {
  padding: 0.9375em 0em;
}

.technology__body {
  margin-top: 1.25em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.5%;
  -moz-column-gap: 2.5%;
  column-gap: 2.5%;
  row-gap: 27px;
}

.technology__btn {
  margin-top: 1.6875em;
  text-align: center;
}

.technology-item {
  position: relative;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.technology-item__image {
  height: 200px;
}

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

.technology-item__caption {
  margin-top: 0.625em;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2083333333;
}

.technology-item__text {
  margin-top: 0.7142857143em;
  font-size: 12px;
  line-height: 1.2142857143;
}

.technology-item__link {
  position: absolute;
  inset: 0;
}

.materials {
  padding: 0.9375em 0em;
}

.materials__wrapper {
  width: calc(100vw - (100vw - 1110px) / 2);
}

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

.materials__header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.materials__body {
  margin-top: 0.9375em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.materials__body-btn {
  -webkit-transform: translateY(-80%);
  -ms-transform: translateY(-80%);
  transform: translateY(-80%);
}

.materials-slider {
  min-width: 0;
  overflow: hidden;
}

.materials-slider__slide {
  text-align: center;
  height: auto;
}

.materials-slider__image {
  background: #fff;
  height: 200px;
  display: block;
}

.materials-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 0;
  object-position: center 0;
}

.materials-slider__desc {
  margin-top: 0.4166666667em;
  font-size: 12px;
  line-height: 1.2083333333;
}

.materials-slider__price {
  font-weight: 700;
}

.gallery {
  padding: 0.9375em 0em 0.6875em;
}

.gallert-tab {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}

.gallert-tab__item {
  max-height: 350px;
}

@supports (aspect-ratio: 1/1) {
  .gallert-tab__item {
    aspect-ratio: 1/1;
  }
}

@supports not (aspect-ratio: 1/1) {
@media (min-width: 35.99875em) {
    .gallert-tab__item {
      height: 280px;
    }
}

@media (min-width: 61.99875em) {
    .gallert-tab__item {
      height: 350px;
    }
}
}

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

.price {
  padding: 0.9375em 0em;
}

.price__container {
  padding-top: 1.875em;
  padding-bottom: 3.125em;
  background: #fff;
  color: #000;
}

.price__tabs {
  margin-top: 1.875em;
}

.price__btn {
  margin-top: 3.625em;
  text-align: center;
}

.price-tab {
  padding: 0em 2.1875em;
  overflow-x: scroll;
}

.price-tab::-webkit-scrollbar {
  height: 1px;
}

.price-tab__table {
  min-width: 730px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
  line-height: 1.2142857143;
}

.price-tab__table tr {
  border-bottom: 1px solid #c6c6c6;
}

.price-tab__table td {
  padding: 0.7142857143em 0em;
  font-weight: 700;
}

.price-tab__table th {
  padding: 0.7142857143em 0em;
  font-weight: 400;
}

.price-tab__table th:first-child {
  text-align: left;
}

.price-tab__table-format {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.21875;
}

.price-tab__table-size {
  font-weight: 400;
}

.price-tab__table-text {
  max-width: 116px;
  margin: 0 auto;
  text-align: center;
}

.price-tab__table-text:not(:last-child) {
  margin-bottom: 0.625em;
}

.price-tab__desc {
  margin-top: 1.4285714286em;
  font-size: 12px;
  line-height: 1.2142857143;
}

.price-tab__desc-text:not(:last-child) {
  margin-bottom: 1.4285714286em;
}

.extras {
  padding: 0.9375em 0em;
}

.extras__body {
  margin-top: 1.6875em;
  display: -ms-grid;
  display: grid;
  gap: 17px;
}

.extras-item {
  background: #ffffff;
  color: #000;
  padding: 1.2142857143em 1.7857142857em 1.9285714286em;
  font-size: 14px;
  line-height: 1.2142857143;
}

.extras-item__title {
  position: relative;
  padding: 0em 0em 0em 4.5em;
  font-weight: 700;
  
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}


.extras-item__price:not(:last-child) {
  margin-bottom: 1.6666666667em;
}

.extras-item__desc {
  margin-top: 1.6666666667em;
  font-size: 12px;
}

.extras-item__desc-title {
  margin-top: 1.6666666667em;
}

.extras-item__desc-item {
  position: relative;
  padding-left: 1.6666666667em;
}

.extras-item__desc-item:not(:last-child) {
  margin-bottom: 1.5em;
}

.extras-item__desc-item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 7px;
  width: 2.5px;
  height: 2.5px;
  background: #000;
  border-radius: 50%;
}

.procedure {
  padding: 0.9375em 0em 1.875em 0em;
}

.procedure__body {
  margin-top: 1.6875em;
  display: -ms-grid;
  display: grid;
  gap: 17px;
}

.procedure__body-item {
  position: relative;
  background: #fff;
  color: #000;
  counter-increment: num;
  padding: 0.875em 1.3125em 1.6875em 4.8125em;
}

.procedure__body-item::before {
  content: counter(num);
  position: absolute;
  top: -0.1388888889em;
  left: 0;
  font-size: 120px;
  font-weight: 700;
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.procedure__body-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2142857143;
}

.procedure__body-desc {
  margin: 1em 0em 0em 0em;
  font-size: 12px;
  line-height: 1.25;
}

.procedure__btn {
  margin-top: 1.6875em;
  text-align: center;
}

.services {
  padding: 0.84375em 0em 1.375em 0em;
}

.services__body {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.services__list {
  margin-top: 2em;
  display: -ms-grid;
  display: grid;
  font-size: 12px;
  line-height: 1.2380952381;
  -webkit-column-gap: 3%;
  -moz-column-gap: 3%;
  column-gap: 3%;
  row-gap: 20px;
}

.services__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.services__list-image {
  margin-right: 0.4761904762em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.7142857143em;
  flex: 0 0 1.7142857143em;
}

.service {
  position: relative;
  min-height: 300px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.no-webp .service._print {
  background: url("../img/home/sercive-img-1.png") 0 0/cover no-repeat;
}

.no-webp .service._merch {
  background: url("../img/home/service-img-2.png") 0 0/cover no-repeat;
}

.service._merch {
  color: #000;
}

.service__title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.9375em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.21875;
  max-width: 55%;
}

.service__desc {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5238095238em;
  font-size: 12px;
  line-height: 1.2380952381;
  max-width: 60%;
}

.service__link {
  position: absolute;
  inset: 0;
}

.clients {
  padding: 0.6875em 0em 1.875em 0em;
}

.clients__body {
  margin-top: 0.9375em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.clients__body-item {
  background: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  padding: 0.3125em 0em;
}

.clients__body-item img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts {
  padding: 0.5em 0em 1.875em;
}

.contacts__body {
  margin-top: 1.875em;
  background: #fff;
  color: #000;
}

.contacts__body-map {
  max-width: 540px;
  width: 100%;
  height: 480px;
}

.contacts-info {
  padding: 0.8125em 0.6875em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts-info__item:not(:last-child) {
  margin-bottom: 1.875em;
}

.contacts-info__title {
  display: inline-block;
  font-weight: 700;
  line-height: 1.2307692308;
}

.contacts-info__row {
  margin-top: 0.625em;
}

.contacts-info__row-item:not(:last-child) {
  margin: 0em 0em 1.875em 0rem;
}

.contacts-info__row-title {
  font-size: 12px;
  line-height: 1.2142857143;
}

.contacts-info__row-link {
  font-size: 14px;
  line-height: 1.2380952381;
  font-weight: 700;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.contacts-info__row-text {
  font-size: 14px;
  line-height: 1.2380952381;
  font-weight: 700;
}

.contacts-info__socials {
  margin-top: auto;
}

.delivery {
  padding: 0.5em 0em 1.875em;
}

.delivery__body {
  margin-top: 1.875em;
}

.catalog {
  padding: 0.5em 0em 1.875em;
}

.catalog__body {
  margin-top: 1.875em;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.catalog-item {
  background: #fff;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 266px;
}

.catalog-item__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

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

.catalog-item__info {
  padding: 0.9375em 0.5em 0em;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-item__title {
  font-size: 12px;
  line-height: 1.2380952381;
}

.catalog-item__title strong {
  display: block;
  text-transform: capitalize;
}

.catalog-item__specifications {
  margin-top: 1.0625em;
}

.catalog-item__specification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-item__specification:not(:last-child) {
  margin-bottom: 1em;
}

.catalog-item__specification-value {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2142857143;
}

.catalog-item__specification-quantity {
  font-size: 12px;
  line-height: 1.2142857143;
}

.catalog-item__colors {
  margin-top: 2.6875em;
  margin-bottom: 2em;
}

.catalog-item__footer {
  margin-top: auto;
  margin-left: -0.5em;
  margin-right: -0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.product {
  padding: 0.5em 0em 0.9375em 0em;
}

.product__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}

.product__image img {
  transition-duration: 0.3s;
}

.product__image-desc {
  margin-left: 1.25em;
}

.product__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product__info-main {
  width: 100%;
}

.product__specification {
  margin-top: 0.2380952381em;
  font-size: 12px;
  line-height: 1.2380952381;
}

.product__colors {
  margin-top: 0.8125em;
  max-width: 390px;
  width: 100%;
}

.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product__price-value {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2142857143;
}

.product__price-quantity {
  font-size: 12px;
  line-height: 1.2142857143;
}

.product__desc {
  margin-top: 3.1428571429em;
  margin-bottom: 1.4285714286em;
  font-size: 14px;
  line-height: 1.2142857143;
}

.product__btn {
  margin-top: 1.25em;
}

.grid-sizes {
  padding: 0.9375em 0em 1.875em;
}

.grid-sizes__title {
  line-height: 1.21875;
}

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

.grid-sizes__desc {
  margin: 2em auto 0;
  font-size: 6px;
  line-height: 1.2142857143;
  max-width: 240px;
  text-align: center;
}

.grid-sizes__table {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 70%;
  flex: 0 1 70%;
  font-size: 6px;
  line-height: 1.2142857143;
  border-collapse: collapse;
  border-spacing: 0;
}

.grid-sizes__table tr {
  border-bottom: 1px solid #ffffff;
}

.grid-sizes__table td {
  padding: 0.625em 0em;
  font-weight: 700;
}

.grid-sizes__table td:not(:first-child) {
  text-align: center;
}

.grid-sizes__table th {
  padding: 0.625em 0em;
  font-weight: 400;
}

.grid-sizes__table th:first-child {
  text-align: left;
}

.photo {
  padding: 1.875em 0em;
}

.photo__title span {
  background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(83.85%, #449fb7), to(#6a93a7));
  background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 83.85%, #6a93a7 100%);
  background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 83.85%, #6a93a7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.photo__items {
  margin-top: 1.875em;
  gap: 17px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.photo__item {
  height: 140px;
}

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

.blog {
  padding: 0.5em 0em 1.875em;
}

.blog__body {
  margin-top: 1.875em;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.blog__btn {
  margin-top: 1.875em;
  text-align: center;
}

.blog-article {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.blog-article__image {
  min-width: 90px;
}

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

.blog-article__caption {
  background: #fff;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  padding: 1.25em 1.875em;
  color: #000;
}

.blog-article__link {
  position: absolute;
  inset: 0;
}

.article-section:first-of-type {
  padding: 0.5em 0em 0em;
}

.article-section__banner {
  margin-top: 1.875em;
}

.article-section__banner img {
  width: 100%;
}

.article-section__text {
  margin: 1.875em auto 0;
  max-width: 730px;
  font-weight: 500;
  line-height: 1.25;
}

.article-section__text p:not(:last-child),
.article-section__text ul:not(:last-child) {
  margin-bottom: 1.25em;
}

.article-section__text-item._list-caption {
  margin-bottom: 0;
}

.article-section__footer {
  margin: 0.9375em auto 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.21875;
}

.print {
  padding: 1.6875em 0em 1.875em;
}

.methods {
  padding: 0.5em 0em 0.9375em 0em;
}

.methods__catalog {
  margin-top: 1.875em;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.method {
  padding: 0.8125em 0em 1.875em 0em;
}

.method__body {
  margin-top: 1.4375em;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.method__body-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2380952381;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.method__body-icon {
  display: block;
  width: 1.7142857143em;
  height: 1.7142857143em;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.9523809524em;
}

.method__body-desc {
  margin-top: 1.1428571429em;
  font-size: 10px;
  line-height: 1.2142857143;
}

.peculiarities {
  padding: 2.375em 0em 1.875em 0em;
}

.peculiarities__text {
  margin-top: 0;
}

.peculiarities__text-items {
  margin: 2.9285714286em auto 0;
  text-align: center;
  max-width: 730px;
  font-size: 14px;
  line-height: 1.2142857143;
}

.peculiarities__text-items p:not(:last-child) {
  margin-bottom: 1.4285714286em;
}

.error {
  padding: 5em 0em;
}

.error__subtitle {
  margin-top: 0.625em;
  max-width: 760px;
}

.error__subtitle-text:not(:last-child) {
  margin-bottom: 0.625em;
}

.error__pages {
  margin-top: 2.5em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 18px;
  -moz-column-gap: 18px;
  column-gap: 18px;
  row-gap: 8px;
  font-size: 12px;
}

.error__pages-link {
  display: block;
  text-align: center;
  border: 1px solid #fff;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75em 0em;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.error__pages-link:active {
  -webkit-transform: scale(0.975);
  -ms-transform: scale(0.975);
  transform: scale(0.975);
}

@media (min-width: 35.99875em) {
  .tabs__button:not(:last-child) {
    margin: 0em 2% 0em 0em;
  }

  .title {
    font-size: 19px;
  }

  .socials__title {
    font-size: 18px;
  }

  .footer__column-title {
    font-size: 18px;
  }

  .footer__column-list {
    font-size: 14px;
  }

  .technology-item__image {
    height: 280px;
  }

  .technology-item__caption {
    font-size: 17px;
  }

  .materials-slider__image {
    height: 350px;
  }

  .materials-slider__desc {
    font-size: 18px;
  }

  .extras__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .procedure__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .services__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .service {
    min-height: 350px;
  }

  .contacts-info {
    padding: 2.1875em 1.875em;
  }

  .photo__item {
    height: 250px;
  }

  .blog__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-article__image {
    height: 200px;
  }

  .method__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 47.99875em) {
  .tabs__button {
    min-width: 189px;
  }

  .popup__body {
    padding: 5em 0em;
  }

  .navigation {
    padding: 1.875em 0em 0em;
  }

  .navigation__list {
    font-size: 14px;
  }

  .title {
    font-size: 26px;
  }

  .colors._big .colors__item-visual {
    width: 30px;
    height: 30px;
  }

  .colors._big .colors__body {
    grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
    gap: 10px;
  }

  .colors {
    font-size: 14px;
  }

  .colors__body {
    grid-template-columns: repeat(auto-fit, minmax(28px, 1fr));
    gap: 10px;
  }

  .colors__item-visual {
    width: 28px;
    height: 28px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    font-size: 36px;
  }

  .info-block:not(:last-child) {
    margin-bottom: 3.75em;
  }

  .info-block._wrapp-items .info-block__text {
    padding: 3.625em 3.9375em;
  }

  .info-block__text {
    padding: 3.625em 3.9375em 1.625em;
  }

  .info-block__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .info-block__list-item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .info-block__list-image {
    margin: 0em 0em 0.625em 0em;
  }

  .info-block__list-title {
    font-size: 17px;
  }

  .gallery-slider {
    margin-top: 3.75em;
  }

  .form__body {
    margin-top: 3.375em;
    -ms-grid-columns: 50% 40%;
    grid-template-columns: 50% 40%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .form__row:not(:last-child) {
    margin-bottom: 2.5em;
  }

  .form__file {
    margin-top: 3.3125em;
  }

  .form__input {
    font-size: 18px;
  }

  .form__input::-webkit-input-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__input:-moz-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__input::-moz-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__input:-ms-input-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__textarea {
    height: 305px;
    font-size: 18px;
  }

  .form__textarea::-webkit-input-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__textarea:-moz-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__textarea::-moz-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__textarea:-ms-input-placeholder {
    color: currentColor;
    font-size: 18px;
    font-weight: 400;
  }

  .form__button {
    margin-top: 2.5em;
    text-align: right;
  }

  .header__container {
    min-height: 119px;
  }

  .header__logo {
    max-width: 100%;
  }

  .footer {
    padding: 6.25em 0em;
    background: url("../img/logo-outline.svg") 99% 95%/auto 25% no-repeat;
  }

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

  .technology {
    padding: 1.875em 0em;
  }

  .technology__btn {
    margin-top: 3.6875em;
  }

  .technology-item__image {
    height: 350px;
  }

  .technology-item__caption {
    font-size: 24px;
  }

  .technology-item__text {
    font-size: 14px;
  }

  .materials {
    padding: 1.875em 0em;
  }

  .materials__body {
    margin-top: 3.4375em;
  }

  .materials-slider__image {
    height: 450px;
  }

  .gallery {
    padding: 1.875em 0em 1.375em;
  }

  .gallert-tab {
    gap: 30px;
  }

  .price {
    padding: 1.875em 0em;
  }

  .price-tab__table {
    font-size: 14px;
  }

  .price-tab__table-format {
    font-size: 32px;
  }

  .price-tab__desc {
    font-size: 14px;
  }

  .extras {
    padding: 1.875em 0em;
  }

  .extras__body {
    margin-top: 3.3125em;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .procedure {
    padding: 1.875em 0em 3.75em 0em;
  }

  .procedure__body {
    margin-top: 3.3125em;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .services {
    padding: 1.6875em 0em 2.75em 0em;
  }

  .services__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .services__list {
    font-size: 17px;
  }

  .service__title {
    font-size: 24px;
  }

  .service__desc {
    font-size: 17px;
  }

  .clients {
    padding: 1.375em 0em 3.75em 0em;
  }

  .clients__body {
    margin-top: 1.875em;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .clients__body-item {
    height: 80px;
  }

  .contacts {
    padding: 3.75em 0em;
  }

  .contacts-info__title {
    font-size: 19px;
  }

  .contacts-info__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contacts-info__row-item:not(:last-child) {
    margin: 0em 1.875em 0em 0em;
  }

  .contacts-info__row-title {
    font-size: 14px;
  }

  .contacts-info__row-link {
    font-size: 18px;
  }

  .contacts-info__row-text {
    font-size: 18px;
  }

  .delivery {
    padding: 3.75em 0em;
  }

  .catalog {
    padding: 3.75em 0em;
  }

  .catalog-item__info {
    padding: 1.875em 0.9375em 0em;
  }

  .catalog-item__title {
    font-size: 17px;
  }

  .catalog-item__specifications {
    margin-top: 2.375em;
  }

  .catalog-item__specification {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .catalog-item__specification-value {
    font-size: 31px;
  }

  .catalog-item__specification-quantity {
    font-size: 14px;
  }

  .catalog-item__footer {
    margin-left: -0.9375em;
    margin-right: -0.9375em;
  }

  .product {
    padding: 3.75em 0em 1.875em 0em;
  }

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

  .product__specification {
    font-size: 15px;
  }

  .product__price {
    margin-top: 2.1875em;
  }

  .product__price-value {
    font-size: 31px;
  }

  .product__price-quantity {
    font-size: 14px;
  }

  .product__btn {
    margin-top: auto;
  }

  .grid-sizes {
    padding: 1.875em 0em 3.75em;
  }

  .grid-sizes__title {
    font-size: 21px;
  }

  .grid-sizes__body {
    margin-top: 3.75em;
  }

  .grid-sizes__desc {
    font-size: 8px;
  }

  .grid-sizes__table {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    font-size: 8px;
  }

  .photo {
    padding: 3.75em 0em;
  }

  .photo__items {
    margin-top: 3.75em;
    gap: 30px;
  }

  .blog {
    padding: 3.75em 0em;
  }

  .blog-article__image {
    height: 300px;
  }

  .article-section:first-of-type {
    padding: 3.75em 0em 0em;
  }

  .article-section__text {
    margin: 3.75em auto 0;
  }

  .article-section__footer {
    margin: 1.875em auto 0;
  }

  .print {
    padding: 3.75em 0em 1.875em;
  }

  .methods {
    padding: 3.75em 0em 1.875em 0em;
  }

  .method {
    padding: 3.75em 0em 1.875em 0em;
  }

  .method__body-title {
    font-size: 17px;
  }

  .method__body-desc {
    font-size: 12px;
  }

  .peculiarities__text {
    margin-top: 0;
  }

  .error__pages {
    font-size: 16px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (min-width: 61.99875em) {
  .title {
    font-size: 32px;
  }

  .socials__title {
    font-size: 24px;
  }

  .socials__list {
    font-size: 19px;
  }

  .socials__list-link.icon-instagram,
  .socials__list-link.icon-facebook {
    font-size: 24px;
  }

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

  .info-block._wrapp-items:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .info-block__list-title {
    font-size: 21px;
  }

  .info-block__image img {
    width: 100%;
  }

  .header__logo {
    margin-right: 0.625em;
  }

  .header__btn-menu {
    display: none;
  }

  .menu__contacts {
    padding-bottom: 1em;
    border-bottom: 1px solid #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 11px;
    line-height: 1.1818181818;
  }

  .menu__contacts-item:not(:last-child) {
    margin: 0em 4em 0em 0em;
  }

  .menu__contacts-title {
    margin-right: 0.3125em;
  }

  .menu__contacts-separator {
    display: inline-block;
    padding: 0em 0.75em;
  }

  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__item:not(:last-child) {
    margin: 0em 1.875em 0em 0em;
  }

  .menu__item-parent.open .sub-menu {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }

  .sub-menu {
    top: 100%;
    left: 0;
    position: absolute;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    min-width: 220px;
    background: #e7e7e7;
    color: #181818;
  }

  .sub-menu__link {
    padding: 0.625em 1.25em;
  }

  .footer__column-title {
    font-size: 24px;
  }

  .footer__column-list {
    font-size: 18px;
  }

  .technology__body {
    margin-top: 2.6875em;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }

  .technology-item__image {
    height: 480px;
  }

  .materials__header {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .materials__header-title {
    margin-right: 4.375em;
  }

  .materials__header-controls {
    padding-right: 9.875em;
  }

  .materials-slider {
    margin-right: 1.875em;
  }

  .materials-slider__image {
    height: 501px;
  }

  .materials-slider__desc {
    font-size: 24px;
  }

  .gallert-tab {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .extras-item {
    font-size: 16px;
  }

  .extras-item__desc {
    font-size: 14px;
  }

  .procedure__body-item::before {
    font-size: 144px;
  }

  .procedure__body-item {
    padding: 1.0625em 2.8125em 3.8125em 5.5625em;
  }

  .procedure__body-title {
    font-size: 16px;
  }

  .procedure__body-desc {
    font-size: 14px;
  }

  .services__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    font-size: 21px;
  }

  .service {
    min-height: 557px;
  }

  .service__title {
    font-size: 32px;
  }

  .service__desc {
    font-size: 21px;
  }

  .contacts__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contacts-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
  }

  .contacts-info__title {
    font-size: 26px;
  }

  .contacts-info__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .contacts-info__row-item:not(:last-child) {
    margin: 0em 0.625em 0em 0em;
  }

  .contacts-info__row-link {
    font-size: 21px;
  }

  .contacts-info__row-text {
    font-size: 21px;
  }

  .catalog__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-item__title {
    font-size: 21px;
  }

  .catalog-item__specification-value {
    font-size: 42px;
  }

  .product__specification {
    font-size: 21px;
  }

  .product__price-value {
    font-size: 42px;
  }

  .grid-sizes__title {
    font-size: 32px;
  }

  .grid-sizes__desc {
    font-size: 14px;
  }

  .grid-sizes__table {
    font-size: 14px;
  }

  .photo__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .photo__item {
    height: 350px;
  }

  .blog__body {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .methods__catalog {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .method__body {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .method__body-title {
    font-size: 21px;
  }

  .method__body-desc {
    font-size: 14px;
  }

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

@media (min-width: 70.625em) {
  .header__btn {
    padding-right: 1.875em;
  }
}

@media (min-width: 84.375em) {
  .footer {
    background: url("../img/logo-outline.svg") 99% 95%/auto 50% no-repeat;
  }
}

@media (max-width: 70.625em) {
  .materials__body-btn {
    display: none;
  }
}

@media (max-width: 61.99875em) {
  [class*=__container] {
    max-width: 750px;
  }

  .info-block__image {
    height: 360px;
    text-align: center;
  }

  .info-block__image img {
    height: 100%;
  }

  .menu {
    -webkit-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
    position: fixed;
    inset: 0;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 50%;
    padding: 7.5rem 0.9375rem 5rem;
    overflow: auto;
    min-height: 100vh;
    z-index: 10;
  }

  .menu__contacts {
    margin-top: 1.8571428571em;
  }

  .menu__contacts-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .menu__contacts-title {
    font-weight: 700;
  }

  .menu__contacts-body {
    margin-top: 1.4285714286em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .menu__contacts-link {
    font-weight: 500;
  }

  .menu__contacts-link:not(:last-child) {
    margin-bottom: 1.4285714286em;
  }

  .menu__item-parent.open .sub-menu {
    display: block;
  }

  .menu__arrow {
    font-size: 26px;
    line-height: 1;
  }

  .sub-menu {
    margin-top: 0.625em;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    display: none;
  }

  .materials__wrapper {
    width: 100%;
    padding: 0 10px;
  }

  .contacts__body-map {
    display: none;
  }

  .catalog-item {
    max-width: 500px;
    margin: 0 auto;
  }

  .article-section__container {
    font-size: 14px;
  }
}

@media (max-width: 47.99875em) {
  [class*=__container] {
    max-width: 540px;
  }

  .tabs__button {
    min-width: 142px;
    font-size: 12px;
  }

  .info-block__image {
    height: 280px;
  }

  .gallery-slider__desc {
    font-size: 12px;
  }

  .btn {
    white-space: inherit;
    font-size: 12px;
  }

  .header__btn .btn {
    padding: 0.8125em 0.25em;
  }

  .menu {
    width: 100%;
  }

  .footer__socials {
    padding-top: 1.8125em;
  }

  .services__list-text br {
    display: none;
  }

  .catalog-item__footer-btn .btn {
    font-size: 10px;
    padding: 0.8125em 0.625em;
  }

  .product__image {
    margin-top: 0.9375em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .product__image img {
    height: 350px;
  }

  .grid-sizes__title {
    display: none;
  }

  .grid-sizes__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
  }

  .blog-article__caption {
    font-size: 12px;
  }

  .article-section__container {
    font-size: 12px;
  }

  .method__body-desc {
    padding-left: 3.8em;
  }
}

@media (max-width: 35.99875em) {
  [class*=__container] {
    max-width: none;
  }

  .tabs__button {
    margin: 0 0.3125em;
  }

  .product__image img {
    height: 266px;
  }

  .blog-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
  }
}

@media (any-hover: hover) {
  .tabs__button:hover::before {
    opacity: 1;
  }

  .popup__close:hover::before,
  .popup__close:hover::after {
    background: #fff;
  }

  .navigation__list-link:not(.active):hover {
    text-decoration: underline;
    -webkit-text-decoration-color: #ee9e46;
    text-decoration-color: #ee9e46;
    text-underline-offset: 4px;
  }

  .socials__list-link:hover {
    color: #449fb7;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #449fb7;
  }

  .form__file-text:hover {
    color: #fff;
  }

  .btn.btn-gradient:hover::before {
    opacity: 0;
  }

  .btn.btn-white:hover {
    background: #000;
    color: #fff;
  }

  .menu__contacts-link:hover {
    color: #449fb7;
  }

  .menu__link:hover {
    color: #ee9e46;
  }

  .sub-menu__link:hover {
    background: -webkit-gradient(linear, right top, left top, color-stop(11.26%, #00b3ff), color-stop(33.85%, #449fb7), color-stop(45.83%, #6a93a7), color-stop(80.21%, #ef3c33), to(#ee9e46));
    background: -o-linear-gradient(right, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
    background: linear-gradient(270deg, #00b3ff 11.26%, #449fb7 33.85%, #6a93a7 45.83%, #ef3c33 80.21%, #ee9e46 100%);
  }

  .footer__column-link:hover {
    color: #449fb7;
  }

  .technology-item:hover {
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
  }

  .service:hover {
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
  }

  .contacts-info__row-link:hover {
    color: #449fb7;
  }

  .blog-article:hover {
    -webkit-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
  }

  .error__pages-link:hover {
    background: #fff;
    color: #000;
  }
}

.webp .service._print {
  background: url(../img/home/sercive-img-1.webp) 0 0/cover no-repeat;
}

.webp .service._merch {
  background: url(../img/home/service-img-2.webp) 0 0/cover no-repeat;
}