@charset "UTF-8";

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

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

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

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

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

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 16px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #EBF0F6;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

svg {
  flex-shrink: 0;
}

svg * {
  transition: 0.2s ease-in-out;
}

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

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #111;
  font-family: gotham;
  font-size: 30px;
  margin-bottom: 50px;
  font-weight: 500;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ED1C2F;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ED1C2F;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  width: 100%;
  z-index: 100;
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header__top-desc {
  opacity: 0.8;
  font-size: 14px;
}

.header__top-link {
  color: #212121;
  font-size: 13px;
  opacity: 0.6;
  transition: 0.2s ease-in-out;
}

.header__top-link:hover {
  color: #ED1C2F;
}

.header__phones {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #212121;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.header__phone:hover {
  color: #ED1C2F;
}

.header__phone img {
  width: 16px;
  height: 16px;
}

.header__main-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 30px;
  background: #ffffff;
  border-radius: 50px;
}

.header__logo {
  display: flex;
  width: 115px;
  height: 45px;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  margin: 0 auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.header__nav-link {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  opacity: 0.6;
}

.header__nav-link:hover {
  color: #ED1C2F;
}

.header__nav-link.active {
  color: #ED1C2F;
  opacity: 1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__lang {
  position: relative;
}

.header__lang:hover .header__lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  background: rgba(33, 33, 33, 0.08);
}

.header__lang-current img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.header__lang-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.2s ease-in-out;
  z-index: 10;
  overflow: hidden;
}

.header__lang-item {
  list-style: none;
}

.header__lang-link {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.header__lang-link:hover {
  background: #F5F7FA;
  color: #ED1C2F;
}

.header__search {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  background: rgba(33, 33, 33, 0.08);
}

.header__search-input {
  border: none;
  background: transparent;
  padding: 10px 12px;
  width: 180px;
  font-size: 14px;
  color: #212121;
}

.header__search-input::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.header__search-input:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.header__search-input::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 10px 12px;
  cursor: pointer;
}

.header__search-btn img {
  width: 18px;
  height: 18px;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #212121;
  transition: 0.2s ease-in-out;
}

.header__cart:hover {
  background: #ED1C2F;
}

.header__cart img {
  width: 22px;
  height: 22px;
}

.header__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: #ED1C2F;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.section-head .title {
  margin-bottom: 0;
}

.section-head--center {
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-head--center .section-head__nav {
  position: absolute;
  top: 0;
  right: 0;
}

.section-head__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-head__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border: none;
  outline: none;
  background: none;
}

.section-head__arrow:hover {
  transform: scale(1.04);
}

.section-head__arrow img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero {
  padding: 20px 0 60px;
}

.hero__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 290px 1fr;
  grid-template-columns: 290px 1fr;
  gap: 20px;
  align-items: start;
}

.hero__right {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 100%;
  min-width: 0;
}

.hero__left {
  width: 100%;
}

.hero__slider {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  width: 100%;
}

.hero__pagination {
  bottom: 20px !important;
}

.hero__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #082047;
}

.hero__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.catalog-sidebar {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 6px 6px 6px;
  display: flex;
  flex-direction: column;
}

.catalog-sidebar__title {
  padding: 0 24px 15px 24px;
  font-size: 20px;
  font-weight: 500;
  color: #111;
}

.catalog-sidebar__list {
  flex: 1;
}

.catalog-sidebar__item {
  list-style: none;
  border-radius: 14px;
  overflow: hidden;
}

.catalog-sidebar__item:not(:last-child) a {
  border-bottom: 1px solid rgba(151, 151, 151, 0.1);
}

.catalog-sidebar__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  font-size: 14px;
  line-height: 1.4;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.catalog-sidebar__link:hover {
  background: #F5F7FA;
  color: #ED1C2F;
}

.catalog-sidebar__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.catalog-sidebar__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.catalog-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.catalog-sidebar__btn:hover {
  transform: scale(1.02);
}

.catalog-sidebar__btn--gray {
  background: rgba(33, 33, 33, 0.1);
  color: #212121;
}

.catalog-sidebar__btn--gray img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.catalog-sidebar__btn--red {
  background: #ED1C2F;
  color: #ffffff;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 400px;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  padding: 70px;
  width: 100%;
}

.hero-slide__title {
  font-size: 45px;
  font-weight: 500;
  line-height: 111%;
  color: #082047;
  margin-bottom: 30px;
  max-width: 586px;
}

.hero-slide__text {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
  margin-bottom: 35px;
  max-width: 391px;
}

.hero-slide__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  padding: 14px 24px;
  background: #ED1C2F;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.hero-slide__btn:hover {
  background: #d01022;
}

.hero-slide__btn img {
  width: 16px;
  height: 16px;
}

.hero-slide__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

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

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

.category-card {
  position: relative;
  display: block;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  display: block;
  content: "";
}

.category-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-card::before {
  padding-top: 140%;
}

.category-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(7, 22, 45, 0) 0%, rgba(7, 22, 45, 0.9) 98.47%);
}

.category-card:hover .category-card__bg {
  transform: scale(1.05);
}

.category-card__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card__title {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 1;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 122%;
}

.popular {
  padding: 60px 0;
  overflow: hidden;
}

.popular__slider {
  overflow: unset;
}

.popular__slider .swiper-slide {
  height: auto;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card__image {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 32, 71, 0.03);
  padding: 20px;
  position: relative;
  flex-shrink: 0;
}

.product-card__image::before {
  display: block;
  content: "";
}

.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card__image::before {
  padding-top: 100%;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  padding: 30px;
  height: 100%;
}

.product-card__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 114%;
  color: #212121;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
}

.product-card__title:hover {
  color: #ED1C2F;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #061F46;
}

.product-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #212121;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.product-card__cart:hover {
  background: #ED1C2F;
}

.product-card__cart.active {
  opacity: 0.4;
  pointer-events: none;
}

.product-card__cart img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.partners {
  padding: 60px 0;
  background: url("../img/partner-section-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.partners__slider {
  overflow: unset;
}

.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 10px;
}

.partners__item img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.2s ease-in-out;
}

.partners__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partners__pagination {
  position: relative !important;
  margin-top: 50px;
}

.partners__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #082047;
}

.partners__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.news {
  padding: 60px 0;
  overflow: hidden;
}

.news__slider {
  overflow: unset;
}

.news__slider .swiper-slide {
  height: auto;
}

.news-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card__image {
  position: relative;
  overflow: hidden;
}

.news-card__image::before {
  display: block;
  content: "";
}

.news-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-card__image::before {
  padding-top: 60%;
}

.news-card__image img {
  transition: 0.2s ease-in-out;
}

.news-card__image:hover img {
  transform: scale(1.05);
}

.news-card__body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 122%;
  color: #212121;
  margin-bottom: 25px;
  flex: 1;
  transition: 0.2s ease-in-out;
}

.news-card__title:hover {
  color: #ED1C2F;
}

.news-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.news-card__link img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-card__link:hover {
  gap: 12px;
}

.catalog-download {
  position: relative;
}

.catalog-download__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #E8F0FA 0%, #F0F5FC 100%);
  border-radius: 20px;
  padding: 80px 0;
  overflow: hidden;
}

.catalog-download__content {
  position: relative;
  z-index: 1;
}

.catalog-download__title {
  color: #212121;
  opacity: 0.9;
  margin-bottom: 20px;
}

.catalog-download__text {
  font-size: 14px;
  line-height: 128%;
  color: #212121;
  opacity: 0.8;
  margin-bottom: 50px;
  max-width: 342px;
}

.catalog-download__list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-bottom: 30px;
}

.catalog-download__item {
  font-size: 14px;
  line-height: 100%;
  color: #212121;
  list-style: none;
}

.catalog-download__item a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.catalog-download__item a:hover {
  text-decoration: underline;
}

.catalog-download__item a img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.catalog-download__btn {
  display: flex;
  align-items: center;
  display: inline-flex;
  gap: 10px;
  padding: 14px 28px;
  background: #ED1C2F;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.catalog-download__btn:hover {
  background: #d01022;
}

.catalog-download__btn img {
  width: 18px;
  height: 18px;
}

.catalog-download__image {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.catalog-download__image img:nth-child(1) {
  width: 30%;
}

.catalog-download__image img:nth-child(2) {
  width: 70%;
}

.about,
.why,
.benefits,
.projects,
.team,
.feedback {
  padding: 100px 0;
}

.about__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__title {
  margin-bottom: 30px;
}

.about__text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 40px;
}

.about__text p {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
}

.about__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about__media::before {
  display: block;
  content: "";
}

.about__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__media::before {
  padding-top: 70%;
}

.about__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  transition: 0.2s ease-in-out;
}

.about__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.about__play img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.values__title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 20px;
}

.values__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 30px;
}

.values__item {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 5px 25px;
  background: #ffffff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #212121;
}

.values__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.why {
  background: url("../img/partner-section-bg.jpg") center/cover no-repeat;
}

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

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.why-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.why-card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 122%;
  color: #212121;
}

.why-card__text {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
  opacity: 0.8;
}

.benefits__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 342px 1fr;
  grid-template-columns: 342px 1fr;
  gap: 60px;
  align-items: center;
  background: url("../img/benefits-background.jpg") center/cover no-repeat;
  border-radius: 20px;
  padding: 60px;
  overflow: hidden;
}

.benefits__title {
  margin-bottom: 20px;
}

.benefits__text {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
}

.benefits__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  list-style: none;
  text-align: center;
}

.benefits__icon {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits__value {
  font-size: 24px;
  font-weight: 700;
  color: #082047;
}

.benefits__label {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
  opacity: 0.8;
}

.projects {
  background: url("../img/section-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.projects__slider {
  overflow: unset;
}

.projects__slider .swiper-slide {
  height: auto;
}

.project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.project-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.project-card__image::before {
  display: block;
  content: "";
}

.project-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-card__image::before {
  padding-top: 66%;
}

.project-card__image img {
  transition: 0.2s ease-in-out;
}

.project-card__image:hover img {
  transform: scale(1.05);
}

.project-card__body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 122%;
  color: #212121;
  margin-bottom: 25px;
  flex: 1;
  transition: 0.2s ease-in-out;
}

.project-card__title:hover {
  color: #ED1C2F;
}

.project-card__text {
  color: #061F46;
  font-size: 14px;
  line-height: 142%;
  margin-bottom: 25px;
}

.project-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #061F46;
  transition: 0.2s ease-in-out;
  background: rgba(8, 32, 71, 0.08);
  margin-top: auto;
}

.project-card__btn:hover {
  border-color: #ED1C2F;
  color: #ED1C2F;
}

.project-card__btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.team {
  overflow: hidden;
}

.team__slider {
  overflow: unset;
}

.team__slider .swiper-slide {
  height: auto;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card__image {
  position: relative;
  overflow: hidden;
}

.team-card__image::before {
  display: block;
  content: "";
}

.team-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-card__image::before {
  padding-top: 100%;
}

.team-card__body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 122%;
  color: #212121;
  margin-bottom: 10px;
}

.team-card__position {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
  margin-bottom: 15px;
  flex: 1;
}

.team-card__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(8, 32, 71, 0.05);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.team-card__phone:hover {
  color: #ED1C2F;
}

.team-card__phone img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.feedback {
  padding-top: 0;
}

.feedback__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: url("../img/feedback-bg-image.jpg") center/cover no-repeat;
  border-radius: 20px;
  padding: 60px;
  overflow: hidden;
}

.feedback__title {
  margin-bottom: 20px;
}

.feedback__text {
  font-size: 14px;
  line-height: 142%;
  color: #212121;
  opacity: 0.8;
  max-width: 391px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.feedback-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feedback-form__input,
.feedback-form__textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  color: #212121;
}

.feedback-form__input::-moz-placeholder, .feedback-form__textarea::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.feedback-form__input:-ms-input-placeholder, .feedback-form__textarea:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.feedback-form__input::placeholder,
.feedback-form__textarea::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.feedback-form__textarea {
  min-height: 120px;
  resize: none;
}

.feedback-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  border: none;
  border-radius: 8px;
  background: #ED1C2F;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.feedback-form__btn:hover {
  background: #d01022;
}

.catalog {
  padding: 50px 0 100px;
}

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

.catalog-inner {
  padding: 50px 0 100px;
}

.catalog-inner__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 290px 1fr;
  grid-template-columns: 290px 1fr;
  gap: 20px;
  align-items: start;
}

.catalog-inner__content {
  min-width: 0;
}

.catalog-inner__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.catalog-inner__count {
  font-size: 14px;
  color: #212121;
  opacity: 0.6;
}

.catalog-inner__sort {
  padding: 16px;
  padding-right: 50px;
  border: none;
  border-radius: 20px;
  background: url("../img/select-arrow-red-icon.png") calc(100% - 10px) center/24px 24px no-repeat, #ffffff;
  font-size: 14px;
  color: #212121;
  cursor: pointer;
  -webkit-appearance: none;
}

.catalog-inner__sort:focus-visible {
  outline: none;
}

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

.filter {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
}

.filter__title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
}

.filter__search {
  position: relative;
}

.filter__search-input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  color: #212121;
  border-radius: 100px;
  background: rgba(33, 33, 33, 0.08);
  border: none;
  outline: none;
}

.filter__search-input::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.filter__search-input:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.filter__search-input::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.filter__search-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

.filter__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}

.filter__group:not(._opened) .filter__item:nth-child(n+6) {
  display: none;
}

.filter__group .irs {
  width: 100%;
}

.filter__group-title {
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.filter__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
  width: 100%;
}

.filter__item {
  list-style: none;
}

.filter__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.filter__checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.filter__checkbox input:checked + .filter__checkbox-box {
  background: #ED1C2F;
  border-color: #ED1C2F;
}

.filter__checkbox input:checked + .filter__checkbox-box::before {
  opacity: 1;
}

.filter__checkbox:hover .filter__checkbox-text {
  color: #ED1C2F;
}

.filter__checkbox-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(33, 33, 33, 0.3);
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}

.filter__checkbox-box::before {
  content: "";
  width: 10px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.filter__checkbox-text {
  font-size: 14px;
  line-height: 128%;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.filter__more {
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  color: #616161;
  cursor: pointer;
  border-bottom: 1px solid #616161;
  transition: 0.2s ease-in-out;
}

.filter__more:hover {
  color: #ED1C2F;
}

.filter__price-inputs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.filter__price-field {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.filter__price-field span {
  font-size: 14px;
  color: rgba(33, 33, 33, 0.4);
}

.filter__price-input {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  color: #212121;
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}

.filter__price-input::-webkit-outer-spin-button,
.filter__price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.filter__btns {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.filter__reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  background: #F1F4F7;
  border: 1px solid #F1F4F7;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
  outline: none;
  transition: 0.2s ease-in-out;
}

.filter__reset:hover {
  border-color: #ED1C2F;
}

.filter__reset img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.irs--round .irs-bar,
.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  background-color: #082047;
}

.irs--round .irs-from::before,
.irs--round .irs-to::before,
.irs--round .irs-single::before {
  border-top-color: #082047;
}

.irs--round .irs-handle {
  background-color: #ffffff;
  border-color: #082047;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: #F5F7FA;
}

.product-card__price--request {
  font-size: 14px;
  font-weight: 500;
  max-width: 80px;
  line-height: 128%;
}

.product-card__request {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  background: #212121;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.product-card__request:hover {
  background: #ED1C2F;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.pagination__link:hover {
  color: #ED1C2F;
}

.pagination__link.active {
  background: #ED1C2F;
  color: #ffffff;
  pointer-events: none;
}

.pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #212121;
}

.pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  transition: 0.2s ease-in-out;
}

.pagination__arrow:hover {
  transform: scale(1.05);
}

.pagination__arrow img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.category-desc {
  padding: 0 0 100px;
}

.category-desc__inner {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40%;
  grid-template-columns: 1fr 40%;
  align-items: center;
  background: url("../img/catalog-desc-bg-image.png") center/cover no-repeat, #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.category-desc__content {
  padding: 60px;
}

.category-desc__title {
  margin-bottom: 30px;
}

.category-desc__text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.category-desc__text p {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
  opacity: 0.8;
}

.category-desc__image {
  height: 100%;
}

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

.product {
  padding: 50px 0;
}

.product__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product__gallery {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  min-width: 0;
}

.product__slider {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.product__slide {
  position: relative;
}

.product__slide::before {
  display: block;
  content: "";
}

.product__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__slide::before {
  padding-top: 75%;
}

.product__slide img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  padding: 30px;
}

.product__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.product__slider-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.product__slider-arrow--prev {
  left: 15px;
}

.product__slider-arrow--next {
  right: 15px;
}

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

.product__thumbs {
  width: 100%;
}

.product__thumbs .swiper-slide-thumb-active .product__thumb {
  border-color: #ED1C2F;
}

.product__thumb {
  position: relative;
  position: relative;
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.product__thumb::before {
  display: block;
  content: "";
}

.product__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__thumb::before {
  padding-top: 62%;
}

.product__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
}

.product__thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 45, 0.5);
}

.product__thumb-play {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 40px !important;
  height: 40px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.product__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 122%;
  color: #111;
  margin-bottom: 20px;
}

.product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  margin-bottom: 15px;
}

.product__sku {
  font-size: 14px;
  color: rgba(33, 33, 33, 0.5);
}

.product__sku span {
  color: #212121;
}

.product__badges {
  display: flex;
  align-items: center;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #D8D8D8;
  background: rgba(255, 255, 255, 0.69);
}

.product__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  height: 90%;
}

.product__badge:nth-child(1) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.product__badge img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.product__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #212121;
  margin-bottom: 25px;
}

.product__stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2BB673;
}

.product__desc {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
  margin-bottom: 30px;
  max-width: 460px;
}

.product__price {
  font-size: 30px;
  font-weight: 700;
  color: #082047;
  margin-bottom: 30px;
}

.product__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.product__buy {
  padding: 16px 30px;
  border: none;
  border-radius: 8px;
  background: #ED1C2F;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.product__buy:hover {
  background: #d01022;
}

.product__buy.active {
  opacity: 0.4;
  pointer-events: none;
}

.product__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 12px;
  line-height: 128%;
  font-weight: 500;
  color: #212121;
  max-width: 220px;
  transition: 0.2s ease-in-out;
  text-align: center;
}

.product__spec:hover {
  transform: scale(1.02);
}

.product__spec img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.counter {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.counter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.counter__btn--minus {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.counter__btn--plus {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.counter__btn:hover {
  background: #F5F7FA;
}

.counter__btn img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.counter__value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
}

.product-tabs {
  padding: 0 0 100px;
}

.tabs {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
}

.tabs__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
  margin-bottom: 30px;
  overflow-x: auto;
}

.tabs__nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.tabs__nav-item {
  list-style: none;
  flex-shrink: 0;
}

.tabs__btn {
  position: relative;
  padding: 0 0 20px;
  margin-bottom: -21px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.5);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.tabs__btn span {
  color: #ED1C2F;
}

.tabs__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ED1C2F;
  transition: 0.2s ease-in-out;
}

.tabs__btn:hover {
  color: #212121;
}

.tabs__btn.active {
  color: #ED1C2F;
}

.tabs__btn.active::after {
  width: 100%;
}

.tabs__content {
  display: none;
}

.tabs__content.active {
  display: block;
}

.tabs__text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  max-width: 640px;
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
}

.tabs__text ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.tabs__text ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.tabs__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #212121;
}

.tabs__docs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
}

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

.tabs__reviews-count {
  font-size: 14px;
  color: rgba(33, 33, 33, 0.5);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.specs {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  max-width: 640px;
}

.specs__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
}

.specs__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
  color: #061F46;
}

.specs__value {
  font-size: 14px;
  line-height: 128%;
  color: #061F46;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(33, 33, 33, 0.06);
}

.doc-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.doc-card__info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  flex: 1;
}

.doc-card__name {
  font-size: 14px;
  font-weight: 500;
  color: #061F46;
}

.doc-card__size {
  font-size: 14px;
  color: #616161;
}

.doc-card__download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #E8E6E6;
  border-radius: 6px;
  transition: 0.2s ease-in-out;
}

.doc-card__download:hover {
  border-color: #ED1C2F;
  transform: scale(1.05);
}

.doc-card__download img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.review {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 44px 1fr auto;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 25px 0;
}

.review:not(:last-child) {
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}

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

.review__body {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.review__date {
  font-size: 12px;
  color: #061F46;
  opacity: 0.5;
}

.review__name {
  font-size: 14px;
  font-weight: 500;
  color: #061F46;
}

.review__text {
  font-size: 14px;
  line-height: 142%;
  color: #061F46;
  opacity: 0.8;
  max-width: 400px;
}

.review__photos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review__photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

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

.review__photo--more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 45, 0.6);
}

.review__photo--more span {
  position: absolute;
  z-index: 1;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}

.basket {
  padding: 20px 0 100px;
}

.basket__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 380px;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.basket__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  min-width: 0;
}

.basket__head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 1fr 140px 140px 140px 40px;
  grid-template-columns: 70px 1fr 140px 140px 140px 40px;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.basket__head span {
  font-size: 13px;
  color: rgba(33, 33, 33, 0.5);
}

.basket__head span:first-of-type {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.basket__head span:last-of-type {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.basket__empty {
  list-style: none;
  padding: 40px 0;
  font-size: 16px;
  color: rgba(33, 33, 33, 0.5);
}

.basket__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 1fr 140px 140px 140px 40px;
  grid-template-columns: 70px 1fr 140px 140px 140px 40px;
  gap: 20px;
  align-items: center;
  list-style: none;
  padding: 25px 0;
}

.basket__item:not(:last-child) {
  border-bottom: 1px solid rgba(33, 33, 33, 0.06);
}

.basket__item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border: 1px solid rgba(33, 33, 33, 0.06);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.basket__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
}

.basket__item-info {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  min-width: 0;
}

.basket__item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.basket__item-title:hover {
  color: #ED1C2F;
}

.basket__item-sku {
  font-size: 13px;
  color: rgba(33, 33, 33, 0.5);
}

.basket__item-price,
.basket__item-total {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  white-space: nowrap;
}

.basket__item-counter {
  -ms-grid-column-align: start;
      justify-self: start;
  border: 1px solid rgba(33, 33, 33, 0.1);
}

.basket__item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.basket__item-remove:hover {
  transform: scale(1.1);
}

.basket__item-remove img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.basket__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 25px;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
}

.basket__back {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.basket__back:hover {
  border-color: #ED1C2F;
  color: #ED1C2F;
}

.basket__back img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.basket__total {
  display: flex;
  align-items: center;
  gap: 15px;
}

.basket__total-label {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(33, 33, 33, 0.5);
}

.basket__total-value {
  font-size: 24px;
  font-weight: 700;
  color: #212121;
}

.order-form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
}

.order-form__title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 5px;
}

.order-form__group {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.order-form__label {
  font-size: 14px;
  color: #212121;
}

.order-form__radios {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.order-form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.order-form__radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.order-form__radio input:checked + .order-form__radio-box {
  border-color: #ED1C2F;
}

.order-form__radio input:checked + .order-form__radio-box::before {
  opacity: 1;
}

.order-form__radio input:checked ~ .order-form__radio-text {
  color: #ED1C2F;
}

.order-form__radio-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(33, 33, 33, 0.3);
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}

.order-form__radio-box::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ED1C2F;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.order-form__radio-text {
  font-size: 14px;
  color: #212121;
  transition: 0.2s ease-in-out;
}

.order-form__field {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.order-form__input,
.order-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background: #F5F7FA;
  font-size: 14px;
  color: #212121;
}

.order-form__input::-moz-placeholder, .order-form__textarea::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.order-form__input:-ms-input-placeholder, .order-form__textarea:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.order-form__input::placeholder,
.order-form__textarea::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.order-form__textarea {
  min-height: 110px;
  resize: none;
}

.order-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: #ED1C2F;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.order-form__btn:hover {
  background: #d01022;
}

.politics {
  padding: 20px 0 100px;
}

.politics__title {
  text-align: center;
}

.politics__text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.politics__text p {
  font-size: 14px;
  line-height: 180%;
  color: #212121;
  opacity: 0.8;
}

.error-page {
  padding: 50px 0 100px;
}

.error-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}

.error-page__image {
  max-width: 500px;
  width: 100%;
}

.error-page__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 8px;
  background: #ED1C2F;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.error-page__btn:hover {
  background: #d01022;
}

.clients {
  padding: 20px 0 100px;
}

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

.client-card {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.client-card:hover {
  transform: translateY(-4px);
}

.client-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  border-radius: 12px;
  background: #F5F7FA;
}

.client-card__logo img {
  max-height: 60px;
  max-width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

.client-card__name {
  padding: 20px 24px 25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
  color: #212121;
}

.contacts {
  padding: 20px 0 100px;
}

.contacts__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contacts__col {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
}

.contacts__city {
  font-size: 24px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 25px;
}

.contacts__city--active {
  color: #ED1C2F;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 20px;
  border: 1px solid rgba(33, 33, 33, 0.1);
  border-radius: 12px;
}

.contact-item--accent {
  border-color: #ED1C2F;
}

.contact-item--socials {
  justify-content: space-between;
}

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #fbd3d7;
  border-radius: 6px;
}

.contact-item__icon img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-item__body {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  flex: 1;
  min-width: 0;
}

.contact-item__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
  color: #212121;
}

.contact-item__text {
  font-size: 13px;
  line-height: 128%;
  color: rgba(33, 33, 33, 0.6);
}

.contact-item a.contact-item__text,
.contact-item a.contact-item__value {
  transition: 0.2s ease-in-out;
}

.contact-item a.contact-item__text:hover,
.contact-item a.contact-item__value:hover {
  color: #ED1C2F;
}

.contact-item__value {
  font-size: 13px;
  line-height: 128%;
  color: rgba(33, 33, 33, 0.6);
  text-align: right;
  flex-shrink: 0;
}

.contact-item__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item__socials a {
  display: flex;
  opacity: 0.4;
  transition: 0.2s ease-in-out;
}

.contact-item__socials a:hover {
  opacity: 1;
}

.contact-item__socials a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contacts-map__wrapper {
  position: relative;
  height: 500px;
}

.contacts-map__frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contacts-map__address {
  position: absolute;
  top: 80px;
  left: 10%;
  z-index: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 10px 30px rgba(7, 22, 45, 0.1);
  max-width: 260px;
}

.contacts-map__address-title {
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 8px;
}

.contacts-map__address-text {
  font-size: 13px;
  line-height: 142%;
  color: rgba(33, 33, 33, 0.6);
}

.contacts-map__form {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
  width: 450px;
  background: #ffffff;
  padding: 30px;
  height: 100%;
}

.contacts-form__title {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  margin-bottom: 5px;
  text-align: center;
}

.contacts-form__input,
.contacts-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background: #F5F7FA;
  font-size: 14px;
  color: #212121;
}

.contacts-form__input::-moz-placeholder, .contacts-form__textarea::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.contacts-form__input:-ms-input-placeholder, .contacts-form__textarea:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.contacts-form__input::placeholder,
.contacts-form__textarea::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

.contacts-form__textarea {
  min-height: 90px;
  resize: none;
}

.contacts-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #ED1C2F;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.contacts-form__btn:hover {
  background: #d01022;
}

.news-page {
  padding: 20px 0 100px;
}

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

.news-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.news-card__date {
  font-size: 13px;
  color: rgba(33, 33, 33, 0.5);
  white-space: nowrap;
}

.news-inner {
  padding: 20px 0 40px;
}

.news-inner__article {
  max-width: 1030px;
  margin: auto;
}

.news-inner__image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.news-inner__image img {
  width: 100%;
  height: auto;
}

.news-inner__date {
  font-size: 13px;
  color: rgba(33, 33, 33, 0.5);
  margin-bottom: 15px;
}

.news-inner__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 122%;
  color: #111;
  margin-bottom: 25px;
}

.news-inner__text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  color: #061F46;
  font-size: 14px;
}

.news-inner__text p {
  line-height: 160%;
}

.footer {
  margin-top: auto;
  background: url("../img/footer-bg-turan.png") center bottom/contain no-repeat, #fff;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 70px 0;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.footer__col span {
  color: #212121;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  max-width: 246px;
  opacity: 0.5;
}

.footer__logo {
  width: 115px;
  height: 50px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
}

.footer__nav ul li {
  list-style-type: none;
}

.footer__nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #212121;
  font-size: 14px;
  opacity: 0.8;
  transition: 0.2s ease-in-out;
}

.footer__nav ul li a:hover {
  color: #ED1C2F;
}

.footer__nav-title {
  color: #212121;
  font-size: 14px;
  font-weight: 500;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  display: flex;
  transition: 0.2s ease-in-out;
  opacity: 0.3;
}

.footer__socials a:hover {
  opacity: 1;
}

.footer__bot {
  background: #212121;
}

.footer__bot-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(29, 30, 38, 0.1);
}

.footer__bot-wrapper span,
.footer__bot-wrapper a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
}

.footer__bot-wrapper a {
  transition: 0.2s ease-in-out;
}

.footer__bot-wrapper a:hover {
  color: #ED1C2F;
}

.breadcrumbs__container {
  padding: 50px 0 0 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #616161;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #ED1C2F;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #ED1C2F;
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }

  .about,
  .why,
  .benefits,
  .projects,
  .team,
  .feedback {
    padding: 75px 0;
  }

  .catalog {
    padding-bottom: 75px;
  }

  .catalog-inner {
    padding-bottom: 75px;
  }

  .category-desc {
    padding-bottom: 75px;
  }

  .product-tabs {
    padding-bottom: 75px;
  }

  .basket {
    padding-bottom: 75px;
  }

  .politics {
    padding-bottom: 75px;
  }

  .error-page {
    padding-bottom: 75px;
  }

  .clients {
    padding-bottom: 75px;
  }

  .contacts {
    padding-bottom: 75px;
  }

  .news-page {
    padding-bottom: 75px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 992px;
  }

  .title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }

  .header__nav {
    display: none;
  }

  .header__nav.active {
    position: absolute;
    display: flex;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    top: calc(100% + 20px);
    left: 0;
    right: 0;
    z-index: 2;
    background: #fff;
    padding: 20px;
    border: 1px solid #EBF0F6;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .header__actions {
    margin-left: auto;
  }

  .hero-slide__content {
    padding: 30px;
  }

  .hero-slide__title {
    font-size: 32px;
  }

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

  .about__inner {
    gap: 30px;
  }

  .values__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

  .benefits__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }

  .feedback__inner {
    gap: 30px;
  }

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

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

  .category-desc__content {
    padding: 40px 30px;
  }

  .product__inner {
    gap: 30px;
  }

  .product__title {
    font-size: 24px;
  }

  .basket__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .news-inner__title {
    font-size: 24px;
  }
}

@media (max-width: 1240px) {
  .content {
    padding: 50px 0;
  }

  .about,
  .why,
  .benefits,
  .projects,
  .team,
  .feedback {
    padding: 50px 0;
  }

  .catalog {
    padding-bottom: 50px;
  }

  .catalog-inner {
    padding-bottom: 50px;
  }

  .category-desc {
    padding-bottom: 50px;
  }

  .product-tabs {
    padding-bottom: 50px;
  }

  .basket {
    padding-bottom: 50px;
  }

  .politics {
    padding-bottom: 50px;
  }

  .error-page {
    padding-bottom: 50px;
  }

  .clients {
    padding-bottom: 50px;
  }

  .contacts {
    padding-bottom: 50px;
  }

  .news-page {
    padding-bottom: 50px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

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

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .title {
    font-size: 22px;
  }

  .header__top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header__main-inner {
    padding: 12px 16px;
  }

  .header__actions {
    gap: 12px;
  }

  .header .burger .burger__dot,
  .header .burger .burger__dot--line::before {
    background-color: #212121;
  }

  .section-head--center {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head--center .section-head__nav {
    position: static;
  }

  .hero__inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero__slider {
    min-height: 320px;
  }

  .catalog-sidebar {
    display: none;
  }

  .catalog-sidebar__buttons {
    margin-top: 0;
  }

  .hero-slide {
    min-height: 320px;
    flex-direction: column;
  }

  .hero-slide__content {
    padding: 30px 24px;
    max-width: 100%;
  }

  .hero-slide__title {
    font-size: 26px;
  }

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

  .catalog-download__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .catalog-download__image::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
  }

  .catalog-download__image img:nth-child(1) {
    display: none;
  }

  .catalog-download__image img:nth-child(2) {
    width: 100%;
  }

  .about__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

  .feedback__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .catalog__grid {
    gap: 16px;
  }

  .catalog-inner__form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

  .category-desc__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .category-desc__image {
    position: relative;
  }

  .category-desc__image::before {
    display: block;
    content: "";
  }

  .category-desc__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .category-desc__image::before {
    padding-top: 60%;
  }

  .product__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .product__title {
    font-size: 22px;
  }

  .contacts__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts-map__wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .contacts-map__frame {
    height: 400px;
  }

  .contacts-map__address {
    top: 20px;
    left: 16px;
  }

  .contacts-map__form {
    position: static;
    transform: none;
    width: 100%;
  }

  .contacts-form {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .contacts-form__title {
    font-size: 24px;
  }

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

  .news-inner__title {
    font-size: 22px;
  }

  .footer {
    background-position: center calc(100% - 100px);
  }

  .footer__top {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .footer__bot-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .breadcrumbs__container {
    padding: 20px 0 0 0;
  }
}

@media (max-width: 768px) {
  .hero-slide__title {
    font-size: 22px;
  }

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

  .category-card__title {
    bottom: 16px;
    right: 16px;
    left: 16px;
    font-size: 14px;
  }

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

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

  .tabs {
    padding: 30px 20px;
  }

  .tabs__nav {
    gap: 24px;
  }

  .tabs__docs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .review {
    -ms-grid-columns: 44px 1fr;
    grid-template-columns: 44px 1fr;
  }

  .review .review__photos {
    -ms-grid-column: 2;
    grid-column: 2;
  }

  .basket__card {
    padding: 20px;
  }

  .basket__head {
    display: none;
  }

  .basket__item {
    -ms-grid-columns: 70px 15px 1fr 15px auto;
    grid-template-columns: 70px 1fr auto;
    -ms-grid-rows: auto 15px auto 15px auto;
        grid-template-areas: "image info remove" "image price price" "counter counter total";
    gap: 15px;
  }

  .basket__item .basket__item-image {
    grid-area: image;
  }

  .basket__item .basket__item-info {
    grid-area: info;
  }

  .basket__item .basket__item-price {
    grid-area: price;
    -ms-grid-row-align: start;
        align-self: start;
  }

  .basket__item .basket__item-counter {
    grid-area: counter;
  }

  .basket__item .basket__item-total {
    grid-area: total;
    -ms-grid-column-align: end;
        justify-self: end;
  }

  .basket__item .basket__item-remove {
    grid-area: remove;
    -ms-grid-column-align: end;
        justify-self: end;
  }

  .order-form {
    padding: 20px;
  }

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

  .contacts__col {
    padding: 20px;
  }
}

@media (max-width: 768px){

  .basket__item .basket__item-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }

  .basket__item .basket__item-info {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .basket__item .basket__item-price {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }

  .basket__item .basket__item-counter {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .basket__item .basket__item-total {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }

  .basket__item .basket__item-remove {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

@media (max-width: 576px) {
  .header__search {
    display: none;
  }

  .why__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .benefits__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feedback-form__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .catalog__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .catalog-inner__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-inner__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .specs__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .clients__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact-item__value {
    text-align: left;
  }

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

  .contact-item .contact-item__value {
    width: 100%;
    padding-left: 39px;
  }

  .news-page__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}