@charset "UTF-8";

:root {
  --primary: #1f2650;
  --secondary: #f2f7fc;
}

* {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #fff;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 1230px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    width: auto;
  }
}

.btn_primary {
  display: inline-block;
  padding: 16px 28px;
  background-color: #1f2650;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.36px;
  border: none;
  cursor: pointer;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_primary:hover {
  opacity: 0.9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#breadcrumbs {
  padding-top: 36px;
  padding-bottom: 36px;
  color: var(--primary);
  font-size: 14px;
  line-height: 16.94px;
  font-weight: 500;
}

#breadcrumbs a {
  color: var(--primary);
  font-size: 14px;
  line-height: 16.94px;
  font-weight: 500;
}

#showMobile {
  display: none;
}

@media screen and (max-width: 520px) {
  #showMobile {
    display: block;
  }
}

#hideMobile {
  display: block;
}

@media screen and (max-width: 520px) {
  #hideMobile {
    display: none;
  }
}

.mobile-title-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.header {
  padding: 8px 0;
  z-index: 999;
  width: 100%;
  background: white;
  position: relative;
}

.header.act {
  z-index: 99999;
}

.header__container {
  width: 100%;
  margin: 0 auto;
  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 a img {
  width: 180px;
}

.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 520px) {
  .header__action {
    display: none;
  }
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu-item a {
  font-size: 16px;
  color: #1f2650;
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-menu-item a:hover {
  color: #1f2650;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1200px) {
  .header-menu {
    display: none;
  }
}

.hamburger {
  display: none;
  width: 51px;
  height: 51px;
  background: var(--secondary);
  border-radius: 360px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobmenu {
  visibility: hidden;
  position: fixed;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .mobmenu {
    opacity: 0;
    position: fixed;
    width: 100%;
    background: #f7f7f7;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    top: 0;
    z-index: 9999;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    bottom: 100%;
    -webkit-transition-property: bottom;
    transition-property: bottom;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.mobmenu.slidebar {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  visibility: visible;
  bottom: 100%;
}

.mobmenu.act {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.mobmenu__menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 36px;
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 90%;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}

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

.mobmenu__element .a {
  color: #000;
  font-size: 16px;
  line-height: 19.36px;
  letter-spacing: -1%;
  font-weight: 500;
}

.mobmenu__button {
  position: absolute;
  bottom: 28px;
  width: 100%;
  margin-right: 28px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .mobmenu__button {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .mobmenu__button {
    display: block;
  }
}

.bottom {
  display: block;
  width: auto;
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
}

.path {
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.path:nth-of-type(1).active {
  -webkit-transform: translateY(0) translateX(8px) rotate(45deg);
  transform: translateY(0) translateX(8px) rotate(45deg);
}

.path:nth-of-type(2).active {
  display: none;
}

.path:nth-of-type(3).active {
  -webkit-transform: translateY(7px) translateX(-10px) rotate(-45deg);
  transform: translateY(7px) translateX(-10px) rotate(-45deg);
}

.section-head {
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .section-head {
    padding-bottom: 28px;
  }
}

.section-head__title h2 {
  font-size: 36px;
  color: #1f2650;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .section-head__title h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 520px) {
  .section-head__title h2 {
    font-size: 24px;
  }
}

.section-head__link a {
  display: inline-block;
  padding: 16px 28px;
  background-color: #1f2650;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.36px;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3sease;
  transition: background-color 0.3sease;
  -ms-flex-line-pack: center;
  align-content: center;
}

.section-head__link a:hover {
  opacity: 0.9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-section {
  position: relative;
  height: 100%;
  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;
  text-align: left;
  color: #fff;
  background: url(https://psmrnv.ru/ksk/assets/images/bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: zoomInOut 30s infinite alternate ease-in-out;
  animation: zoomInOut 30s infinite alternate ease-in-out;
}

@media screen and (max-width: 1024px) {
  .main-section {
    -webkit-animation: none;
    animation: none;
  }
}

.main-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.main-section__content {
  position: relative;
  max-width: 720px;
  color: white;
  z-index: 2;
}

.main-section__tag {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .main-section__tag {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 520px) {
  .main-section__tag {
    display: none;
  }
}

.main-section__tag h3 {
  font-size: 21px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .main-section__tag h3 {
    font-size: 18px;
  }
}

.main-section__title {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .main-section__title {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 520px) {
  .main-section__title {
    margin-bottom: 10px;
    text-align: center;
  }
}

.main-section__title h1 {
  font-size: 72px;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .main-section__title h1 {
    font-size: 48px;
    line-height: 58.09px;
    letter-spacing: -1%;
  }
}

@media screen and (max-width: 520px) {
  .main-section__title h1 {
    font-size: 36px;
    line-height: 43.57px;
    letter-spacing: -1%;
  }
}

.main-section__text {
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .main-section__text {
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 520px) {
  .main-section__text {
    margin-bottom: 26px;
    text-align: center;
  }
}

.main-section__text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28.2px;
}

@media screen and (max-width: 768px) {
  .main-section__text p {
    font-size: 16px;
    line-height: 26.2px;
  }
}

@media screen and (max-width: 520px) {
  .main-section__text p br {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .main-section__action {
    text-align: center;
  }
}

@-webkit-keyframes zoomInOut {
  0% {
    background-size: 100%;
  }

  50% {
    background-size: 110%;
    /* Увеличение фона */
  }

  100% {
    background-size: 100%;
    /* Возвращение к исходному размеру */
  }
}

@keyframes zoomInOut {
  0% {
    background-size: 100%;
  }

  50% {
    background-size: 110%;
    /* Увеличение фона */
  }

  100% {
    background-size: 100%;
    /* Возвращение к исходному размеру */
  }
}

.hity-section {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--secondary);
}

@media screen and (max-width: 1024px) {
  .hity-section {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .hity-section {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 60px;
  }
}

.main-page-section {
  padding-top: 100px;
}

.main-page-section_onpage {
  padding-top: 0px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .main-page-section {
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .main-page-section {
    padding-top: 60px;
  }
}

.product-card {
  background-color: #f2f7fc;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.3s;
  transition: transform 0.3s, color 0.3s, -webkit-transform 0.3s;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* Предпоследняя карточка растягивается на две колонки */
}

.product-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: -1%;
  color: #1f2650;
  margin-bottom: 24px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media screen and (max-width: 768px) {
  .product-card__title {
    font-size: 16px;
    line-height: 19.36px;
  }
}

.product-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* Легкий эффект подъема при ховере */
}

@media screen and (max-width: 1024px) {
  .product-card:hover {
    -webkit-transform: none;
    transform: none;
  }
}

.product-card:hover .product-card__title {
  color: #1f2650;
  /* Изменение цвета текста при ховере */
}

@media screen and (max-width: 1024px) {
  .product-card:hover .product-card__title {
    color: #000;
  }
}

.product-card__image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
  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;
}

@media screen and (max-width: 1024px) {
  .product-card__image-container {
    height: auto;
  }
}

@media screen and (max-width: 520px) {
  .product-card__image-container {
    height: 200px;
  }
}

.product-card__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.product-card__image_wide {
  max-width: 130%;
  max-height: 130%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.product-card:hover .product-card__image {
  -webkit-filter: none;
  filter: none;
  /* Цветное изображение при ховере */
}

.product-card__circle-button {
  position: absolute;
  background-color: #1f2650;
  border-radius: 50%;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  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;
  text-decoration: none;
  opacity: 0;
  /* Прячем кнопку по умолчанию */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card__circle-button {
  opacity: 1;
  /* Показываем кнопку при наведении */
}

@media screen and (max-width: 1024px) {
  .product-card:hover .product-card__circle-button {
    opacity: 0;
  }
}

.product-card__circle-icon {
  color: #fff;
  font-size: 24px;
}

.product-card--wide {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

@media screen and (max-width: 1024px) {
  .product-card--wide {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}

.products-page {
  padding-top: 0;
}

.products-page__title {
  font-size: 36px;
  line-height: 43.57px;
  font-weight: 600;
  margin-bottom: 36px;
  color: rgb(0, 0, 0);
}

@media screen and (max-width: 768px) {
  .products-page__title {
    font-size: 32px;
    line-height: 38.73px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 520px) {
  .products-page__title {
    font-size: 28px;
    line-height: 33.89px;
    margin-bottom: 24px;
  }
}

.products-slider .swiper-pagination-bullet-active {
  background: #ff8e00 !important;
  /* Цвет активной точки */
  opacity: 1;
  /* Полная непрозрачность активной точки */
}

.products {
  padding-top: 100px;
  background-color: #f7f7f7;
}

@media screen and (max-width: 1024px) {
  .products {
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .products {
    padding-top: 60px;
  }
}

.products__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 43.57px;
  letter-spacing: -1%;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .products__title {
    font-size: 32px;
    line-height: 38.73px;
    margin-bottom: 36px;
  }
}

.products__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 1024px) {
  .products__grid {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .products__grid {
    gap: 16px;
  }
}

@media screen and (max-width: 520px) {
  .products__grid {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.products__grid_onpage {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 1024px) {
  .products__grid_onpage {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .products__grid_onpage {
    gap: 16px;
  }
}

@media screen and (max-width: 520px) {
  .products__grid_onpage {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.products__slider {
  display: none;
}

@media screen and (max-width: 520px) {
  .products__slider {
    display: block;
    position: relative;
    overflow: hidden;
    height: 518px;
  }
}

.hity-cards__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .hity-cards__wrap {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 520px) {
  .hity-cards__wrap {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.hity-cards__wrap .card {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
}

.hity-cards__wrap .card__status {
  margin-bottom: 10px;
}

.hity-cards__wrap .card__status span {
  display: inline-block;
  font-size: 14px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 30px;
}

.hity-cards__wrap .card__image {
  margin-bottom: 10px;
}

.hity-cards__wrap .card__image img {
  width: 100%;
}

.hity-cards__wrap .card__title {
  margin-bottom: 10px;
  margin-bottom: 10px;
}

.hity-cards__wrap .card__title h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
}

.hity-cards__wrap .card__price {
  margin-bottom: 10px;
}

.hity-cards__wrap .card__price span {
  font-size: 14px;
  font-weight: 300;
  color: var(--primary);
}

.hity-cards__wrap .card__button {
  margin-top: 20px;
  margin-bottom: 2px;
}

.hity-cards__wrap .card__button a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid var(--primary);
  border-radius: 30px;
  color: var(--primary);
  text-align: center;
  padding: 10px 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hity-cards__wrap .card__button a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  background: var(--primary);
}

.about-section {
  margin-top: 100px;
  padding-top: 210px;
  padding-bottom: 210px;
  background: url(https://vseokna36.ru/src/img/zavod02.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.about-section__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
}

.about-section__button {
  margin-top: 26px;
}

.about-section__title {
  margin-bottom: 28px;
}

.about-section__title h2 {
  font-size: 36px;
  color: #fff;
  font-weight: 500;
}

.about-section__text p {
  font-size: 26px;
  color: #ffffff;
  font-weight: 400;
  line-height: 31.47px;
}

.category-page {
  padding-bottom: 100px;
}

.category-page__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .category-page__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .category-page__action {
    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;
    margin-bottom: 18px;
  }
}

.category-page__button {
  display: none;
}

@media screen and (max-width: 768px) {
  .category-page__button {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .category-page__categories {
    display: none;
  }
}

.category-page__categories .categories {
  list-style: none;
}

.category-page__categories .categories .active a {
  font-weight: 600;
}

.category-page__categories .categories li {
  padding: 14px 30px 14px 20px;
  background: var(--secondary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.category-page__categories .categories li:first-of-type {
  border-radius: 12px 12px 0px 0px;
}

.category-page__categories .categories li:last-of-type {
  border-radius: 0px 0px 12px 12px;
}

.category-page__categories .categories li:hover {
  background: #dbe7f4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.category-page__categories .categories li a {
  color: var(--primary);
  font-size: 16px;
}

.category-page__products .cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media screen and (max-width: 768px) {
  .category-page__products .cards {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 520px) {
  .category-page__products .cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}

.category-page__products .cards .card {
  background: #fff;
  border: 1px solid #e4f1fe;
  padding: 16px;
  border-radius: 26px;
}

.category-page__products .cards .card__status {
  margin-bottom: 10px;
}

.category-page__products .cards .card__status span {
  display: inline-block;
  font-size: 14px;
  background: var(--secondary);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 30px;
}

.category-page__products .cards .card__image {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  margin-bottom: 12px;
}

.category-page__products .cards .card__image img {
  position: absolute;
  border-radius: 16px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.category-page__products .cards .card__title {
  margin-bottom: 4px;
  margin-left: 8px;
  margin-right: 8px;
}

.category-page__products .cards .card__title h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.2em;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
}

.category-page__products .cards .card__price {
  margin-bottom: 10px;
  margin-left: 8px;
  margin-right: 8px;
}

.category-page__products .cards .card__price span {
  font-size: 14px;
  font-weight: 300;
  color: var(--primary);
}

.category-page__products .cards .card__button {
  margin-top: 20px;
  margin-bottom: 2px;
}

.category-page__products .cards .card__button a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  background: var(--primary);
  border-radius: 30px;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.category-page__products .cards .card__button a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  opacity: 0.8;
}

.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .sort {
    margin-bottom: 0px;
  }
}

.sort__label span {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.sort__button button {
  padding: 8px 12px;
  border: 1px solid var(--primary);
  background: none;
  color: var(--primary);
  border-radius: 8px;
}

.regular-page__title {
  margin-bottom: 36px;
}

.regular-page__title h1 {
  font-size: 36px;
  color: #1f2650;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .regular-page__title h1 {
    font-size: 32px;
    line-height: 38.73px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 520px) {
  .regular-page__title h1 {
    font-size: 28px;
    line-height: 33.89px;
    margin-bottom: 24px;
  }
}

.footer {
  background: var(--primary);
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 520px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 8px;
    padding-left: 8px;
    gap: 24px;
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 520px) {
  .footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

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

@media (max-width: 520px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.footer__logo {
  margin-bottom: 46px;
}

.footer__logo img {
  width: 220px;
}

@media (max-width: 520px) {
  .footer__logo {
    display: none;
  }
}

.footer__socials {
  margin-bottom: 46px;
}

@media (max-width: 520px) {
  .footer__socials {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 24px;
    margin-bottom: 36px;
  }
}

.footer__slogan {
  margin-bottom: 12px;
}

.footer__slogan p {
  color: #fff;
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer__slogan p {
    font-size: 14px;
    /* 1 карточка в ряд на мобильных */
    line-height: 16.94px;
  }
}

.footer__tags a {
  color: var(--primary);
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer__tags a {
    font-size: 14px;
    /* 1 карточка в ряд на мобильных */
    line-height: 16.94px;
  }
}

.footer__tags br {
  display: none;
}

@media (max-width: 768px) {
  .footer__tags br {
    display: block;
  }
}

.footer__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}

@media (max-width: 375px) {
  .footer__buttons {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1019607843);
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 520px) {
  .footer__divider {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

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

@media screen and (max-width: 920px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer__copyrights {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.footer__copyrights span {
  color: #fff;
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
}

@media (max-width: 520px) {
  .footer__copyrights span {
    font-size: 14px;
    line-height: 16.94px;
  }
}

@media (max-width: 768px) {
  .footer__links {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.footer__links a {
  color: #fff;
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
}

.footer__links a img {
  width: 120px;
}

@media (max-width: 520px) {
  .footer__links a {
    font-size: 14px;
    line-height: 16.94px;
  }
}

.footer__links a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contacts {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-contacts__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

@media (max-width: 520px) {
  .footer-contacts__element img {
    width: 16px;
  }
}

.footer-contacts__element span {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contacts__element span:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .footer-contacts__element span {
    font-size: 14px;
    /* 1 карточка в ряд на мобильных */
    line-height: 16.94px;
  }
}

.fsocials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

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

.footer-button__primary a {
  font-size: 16px;
  line-height: 19.36px;
  display: inline-block;
  padding: 14px 18px;
  background-color: #fff;
  color: var(--primary);
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  width: 100%;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-button__primary a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.footer-button__secondary a {
  font-size: 16px;
  line-height: 19.36px;
  display: inline-block;
  padding: 14px 18px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-button__secondary a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.detail__wrap {
  padding-bottom: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .detail__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.detail__image {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
}

.detail__image img {
  position: absolute;
  border-radius: 16px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #e4f1fe;
}

.detail__price {
  margin-bottom: 36px;
}

.detail__price span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 500;
}

.detail__button {
  margin-bottom: 36px;
}

.features {
  padding-top: 36px;
  border-top: 1px solid #e4f1fe;
}

.features__title {
  padding-bottom: 24px;
}

.features__title span {
  font-weight: 600;
  font-size: 24px;
  line-height: 29.05px;
  color: var(--primary);
}

.features table {
  width: 100%;
  border-collapse: collapse;
  color: var(--primary);
}

.features th,
.features td {
  padding: 10px;
}

.features th {
  text-align: left;
}

.features tr:nth-child(odd) {
  background-color: var(--secondary);
}

.features tr:nth-child(even) {
  background-color: #ffffff;
}

.additionally-files {
  padding-top: 36px;
}

.additionally-files__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29.05px;
  letter-spacing: -1%;
  color: var(--primary);
}

.additionally-files__docs {
  padding-top: 24px;
}

.useful-files {
  padding-top: 16px;
}

.useful-files__item {
  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;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4f1fe;
}

.useful-files__item:first-child {
  border-top: 1px solid #e4f1fe;
}

.useful-files__title span {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  color: var(--primary);
}

.useful-files__descr span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  line-height: 16.94px;
}

.useful-files__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}

.useful-files__download .a {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
}

.additionally-files__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(4, 1fr);
  /* Сетка из 4 колонок */
  gap: 12px;
  /* Расстояние между элементами */
}

@media screen and (max-width: 768px) {
  .additionally-files__gallery {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.additionally-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

#additional-file-full {
  display: block;
}

@media screen and (max-width: 768px) {
  #additional-file-full {
    display: none;
  }
}

#additional-file-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  #additional-file-mobile {
    display: block;
  }
}

.product-description {
  color: var(--primary);
  font-size: 16px;
  line-height: 21.36px;
}

.contacts-page__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 36px;
}

@media (max-width: 1024px) {
  /* line 12, resources/assets/styles/components/contacts/wrap.scss */

  .contacts-page__info {
    gap: 26px;
  }
}

@media (max-width: 768px) {
  /* line 12, resources/assets/styles/components/contacts/wrap.scss */

  .contacts-page__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    gap: 24px;
  }
}

/* line 27, resources/assets/styles/components/contacts/wrap.scss */

.contacts-page__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 1200px) {
  /* line 27, resources/assets/styles/components/contacts/wrap.scss */

  .contacts-page__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  /* line 27, resources/assets/styles/components/contacts/wrap.scss */

  .contacts-page__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  /* line 27, resources/assets/styles/components/contacts/wrap.scss */

  .contacts-page__cards {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  /* line 54, resources/assets/styles/components/contacts/wrap.scss */

  .contacts-page__map {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/* line 59, resources/assets/styles/components/contacts/wrap.scss */

.contacts-page__map img {
  width: 100%;
}

/* line 66, resources/assets/styles/components/contacts/wrap.scss */

.contact-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 8px;
}

@media (max-width: 520px) {
  /* line 72, resources/assets/styles/components/contacts/wrap.scss */

  .contact-info__title img {
    width: 16px;
  }
}

/* line 78, resources/assets/styles/components/contacts/wrap.scss */

.contact-info__title span {
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 520px) {
  /* line 78, resources/assets/styles/components/contacts/wrap.scss */

  .contact-info__title span {
    font-size: 13px;
    line-height: 15.73px;
    font-weight: 500;
  }
}

/* line 92, resources/assets/styles/components/contacts/wrap.scss */

.contact-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

/* line 97, resources/assets/styles/components/contacts/wrap.scss */

.contact-info__text span {
  font-size: 20px;
  line-height: 24.2px;
  letter-spacing: -1%;
  font-weight: 500;
  color: var(--primary);
}

@media (max-width: 520px) {
  /* line 97, resources/assets/styles/components/contacts/wrap.scss */

  .contact-info__text span {
    font-size: 18px;
    line-height: 21.78px;
  }
}
