body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    color: rgba(90, 99, 118, 1);
}

a {
  color: rgba(74, 158, 216, 1);
}

a:hover {
  text-decoration: none;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 35.16px;
  margin: 18px 0;
}

.flex {
  display: flex;
}

.blue-text {
  color: rgba(74, 158, 216, 1);
}

.container {
    position: relative;
    width: 1320px;
    margin: 0 auto; /* Автоматические отступы слева и справа для центрирования */
    max-width: 100%; /* Для обеспечения адаптивности на экранах меньше 1320px */
}

header {
    background-color: #fff; /* Измените на желаемый цвет */
}

.offset-top-60 {
  margin-top: 60px;
}

.offset-top-80 {
  margin-top: 80px;
}

.offset-bottom-80 {
  margin-bottom: 80px;
}

.padding-40 {
  padding: 40px 0;
}

/* Container for the dropdown content */
.select-dropdown {
  position: relative;
  display: inline-block;
}

/* Hidden dropdown content */
.select-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid rgba(140, 159, 190, 0.2);
  padding: 5px;
  min-width: 160px;
  z-index: 1;
}

.dropbtn span {
  color: rgba(74, 158, 216, 1);
}

.select-dropdown-content a {
  display: block;
  padding: 4px 0;
}

/* Show the dropdown menu on hover */
.select-dropdown:hover .select-dropdown-content {
  display: block;
}

/* Стили для кнопок */
.base-button {
    background-color: #4A9ED8; /* Цвет фона кнопки */
    color: white; /* Цвет текста кнопки */
    border: none; /* Убираем границу */
    padding: 12px 20px; /* Внутренние отступы */
    border-radius: 8px; /* Скругленные углы */
    font-size: 14px; /* Размер шрифта */
    cursor: pointer; /* Курсор в виде руки при наведении */
    text-align: center; /* Выравнивание текста по центру */

    transition: background-color 0.3s ease; /* Плавное изменение цвета фона при наведении */
    text-decoration: none;
}
.base-button.danger {
  background: rgba(196, 74, 68, 1);
}

.base-button:hover {
    background-color: #397BAD; /* Цвет фона кнопки при наведении */
}

.button-border {
  background-color: transparent; /* Прозрачный фон */
  color: white; /* Белый текст */
  padding: 0 30px; /* Горизонтальные отступы */
  height: 44px; /* Общая высота кнопки */
  line-height: 40px; /* Высота строки, чтобы учесть 2px обводки сверху и снизу */
  border: 2px solid white; /* Белая обводка */
  border-radius: 8px; /* Закругленные углы */
  font-size: 16px; /* Размер шрифта */
  font-weight: 400; /* Жирный текст */
  text-align: center; /* Выравнивание текста по центру */
  cursor: pointer; /* Курсор в виде указателя */
  display: inline-block; /* Элемент ведет себя как блочно-строчный */
  text-decoration: none; /* Убираем подчеркивание */
  box-sizing: border-box; /* Включаем рамку в общую высоту элемента */
  transition: background-color 0.3s, border-color 0.3s, color 0.3s; /* Плавный переход свойств */
}

.button-border-default {
  background-color: transparent; /* Прозрачный фон */
  color: rgba(74, 158, 216, 1); /* Белый текст */
  padding: 0 30px; /* Горизонтальные отступы */
  height: 44px; /* Общая высота кнопки */
  line-height: 40px; /* Высота строки, чтобы учесть 2px обводки сверху и снизу */
  border: 2px solid rgba(74, 158, 216, 0.2); /* Белая обводка */
  border-radius: 8px; /* Закругленные углы */
  font-size: 16px; /* Размер шрифта */
  font-weight: 400; /* Жирный текст */
  text-align: center; /* Выравнивание текста по центру */
  cursor: pointer; /* Курсор в виде указателя */
  display: inline-block; /* Элемент ведет себя как блочно-строчный */
  text-decoration: none; /* Убираем подчеркивание */
  box-sizing: border-box; /* Включаем рамку в общую высоту элемента */
  transition: background-color 0.3s, border-color 0.3s, color 0.3s; /* Плавный переход свойств */
}

.button-border-default:hover {
  background-color: #397BAD;
  color: white;
}

.button-border:hover {
  background-color: white; /* Белый фон при наведении */
  color: #56CCF2; /* Голубой текст при наведении */
  border-color: #56CCF2; /* Голубая обводка при наведении */
}

.button-style {
  border: 1px solid #d1d1d1; /* Серая рамка */
  background-color: transparent;
  border-radius: 8px; /* Скругление углов */
  color: rgba(140, 159, 190, 1)  ; /* Чёрный текст */
  font-size: 14px; /* Размер шрифта */
  padding: 12px 20px; /* Внутренние отступы сверху и снизу 10px, справа и слева 20px */
  text-align: center; /* Выравнивание текста по центру */
  text-decoration: none; /* Убираем подчёркивание */
  display: inline-block; /* Делаем элемент строчно-блочным */
  cursor: pointer; /* Курсор в виде указателя */
  transition: 0.3s; /* Плавное изменение состояний элемента */
}

.button-style:hover {
  background-color: #f5f5f5; /* Цвет фона при наведении */
}

.button-border-white {
  border:1px solid #fff;
  color: #fff;
  background-color: transparent;
}

.control-input {
  width: 100%; /* Full-width */
  padding: 10px 16px; /* Top and bottom padding to add up to 40px including border */
  margin: 8px 0; /* Some space around */
  display: block; /* Block level for full width */
  border: 1px solid #dcdcdc; /* Light grey border, 1px */
  box-sizing: border-box; /* Include padding and border in the total width and height */
  border-radius: 8px; /* Rounded corners, 8px radius */
  font-size: 16px; /* Text size, adjust if necessary */
  background-color: #fff; /* White background */
  height: 40px; /* Explicit height if necessary */
  line-height: 20px; /* Line height to vertically center the text, adjust if necessary */
}

.control-input::placeholder {
  color: #a0a0a0; /* Light grey placeholder text */
}

.control-input:focus {
  outline: none; /* Removes the default outline on focus */
  border-color: blue; /* Highlights the border when focused */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Slightly darker shadow on focus */
}

/* Style for the search icon - assumed to be a background image in the input */
.control-input::after {
  content: '';
  background-image: url('path-to-your-search-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; /* Icon size */
  height: 24px; /* Icon size */
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  margin-right: 10px;
}

.breadcrumb-item a {
  text-decoration: none;
  color: rgba(74, 158, 216, 1); /* Обновленный цвет ссылки */
}

.breadcrumb-item.active a {
  color: grey;
}

.breadcrumb-item::after {
  content: '-'; /* Обновленный разделитель */
  margin-left: 10px;
}

.breadcrumb-item:last-child::after {
  content: '';
}

.breadcrumb-item.active {
  pointer-events: none;
}

.header-top {
    padding: 30px 0; /* Отступ сверху для блока header-top, отделяет его от верхней навигации */
}  

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
  
.logo img {
  max-height: 50px; /* Высота логотипа */
}
 
.search {
  position: relative;
}

.search .control-input  {
  min-width: 380px;
}

.search .search-group-submit {
  background-image: url(/images/uil_search.svg);
  width: 18px;
  height: 18px;
  background-color: transparent;
  position: absolute;
  right: 10px;
  top: 20px;  
}

.search button {
  background-color: #eee; /* Фон кнопки поиска */
  border: none;
  cursor: pointer;
}

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

.phone .phone-number {
  color: #333; /* Цвет номера телефона */
  text-decoration: none; /* Убираем подчеркивание */
  font-size: 16px; /* Размер шрифта номера телефона */
  font-weight: 700; /* Жирность шрифта */
  line-height: 19px; /* Высота строки */
  letter-spacing: 0; /* Межбуквенное расстояние */
  margin-bottom: 8px; /* Отступ между номером и ссылкой */
}

.phone .call-order {
  color: #4A9ED8; /* Цвет ссылки */
  text-decoration: none; /* Убираем подчеркивание */
  font-size: 14px; /* Размер шрифта */
  font-weight: 400; /* Жирность шрифта */
  cursor: pointer; /* Курсор в виде указателя */
}

.phone .call-order:hover {
  text-decoration: underline; /* Подчеркивание при наведении */
}

.cart {
  position: relative;
}

.cart img {
  max-width: 30px; /* Размер иконки корзины */
}

.cart .cart-count {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background-color: red;
  border: 1px solid #fff;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav {
  padding: 20px 0 0 0; /* Отступ сверху и снизу для верхней навигации */
  /* Остальные стили для .header-nav */
}

/* Стили для списка навигации */
.nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between; /* Если нужно распределить элементы равномерно */
}

/* Стили для каждого пункта навигации */
.nav-list li {

}

.nav-list a {
  text-decoration: none;
  color: #8C9FBE; /* Цвет текста ссылок */
  font-size: 16px; /* Размер текста ссылок */
  padding: 5px 0; /* Отступы для увеличения кликабельной области */
  display: inline-block; /* Для правильного расчета отступов и возможности задания минимальной высоты */
  transition: color 0.3s ease; /* Плавное изменение цвета текста */
}

/* Стили для ссылок при наведении */
.nav-list a:hover {
  color: #4A9ED8; /* Цвет текста при наведении */
  text-decoration: underline; /* Подчеркивание текста */
  text-decoration-color: #4A9ED8; /* Цвет подчеркивания соответствует цвету текста при наведении */
  text-decoration-thickness: 1px; /* Толщина линии подчеркивания */
  text-underline-offset: 3px; /* Отступ подчеркивания от текста */
  background-color: transparent; /* Прозрачный фон при наведении */
} 



.secondary-menu {
  background-color: #EEF1F5; /* Цвет фона всего меню */
}

.secondary-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex; /* Расположение пунктов меню в строку */
  background-color: #EEF1F5; /* Цвет фона элементов списка, совпадает с фоном меню */
  align-items: center; /* Центрирование пунктов меню по вертикали */
  height: 48px; /* Высота навигационной панели */
}

.secondary-nav > li {
  position: relative;
  height: 100%; /* Заполнение высоты навигационной панели */
  display: flex;
  align-items: center; /* Центрирование текста внутри пункта по вертикали */
  border-right: 1px solid #FFFFFF; /* Белый разделитель справа */
}

/* Удаление правой границы у последнего элемента, если это не нужно */
.secondary-nav > li:last-child {
  border-right: none;
}

.secondary-nav > li:first-child {
  border-left: 1px solid #FFFFFF; /* Белый разделитель слева для первого пункта */
}

.secondary-nav li a {
  text-decoration: none;
  color: #4A4A4A; /* Цвет текста пунктов меню */
  display: flex; /* Для возможности центрирования содержимого */
  align-items: center; /* Центрирование содержимого по вертикали */
  padding: 0 55px; /* Горизонтальные отступы */
  height: 100%; /* Высота ссылки равна высоте li */
  text-transform: uppercase; /* Преобразование текста в верхний регистр */
}

.secondary-nav li a:hover {
  background-color: #D1D1D1; /* Фон пункта меню при наведении */
}


.dropdown {
  z-index: 10;
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  list-style: none;
  padding: 40px;
  margin: 0;
  background-color: #f9f9f9;
  min-width: 980px;
}

.dropdown .dropdown-item-title {
  color: rgba(140, 159, 190, 1);
  margin-bottom: 40px;
}

.dropdown .dropdown-flex {
  display: flex;
  justify-content: space-between;
}

.dropdown .dropdown-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 0;
  margin-bottom: 31px;
  text-align: left;
}

.secondary-nav li:hover .dropdown {
  display: block;
}

.dropdown li a:hover {
  background-color: #f1f1f1;
}

/* Установите основные стили для слайдера */
.swiper {
  width: 100%; /* Ширина слайдера */
  height: auto; /* Высота слайдера будет определяться содержимым */
}

/* Контейнер для слайдов */
.swiper-wrapper {
  width: 100%; /* Ширина соответствует ширине слайдера */
}

/* Стили для каждого слайда */
.swiper-slide {
  position: relative; /* Относительное позиционирование для позиционирования slide-content */
  text-align: left; /* Выравнивание текста по левому краю */
}
  
/* Стили для изображения слайдера */
.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Контейнер для содержимого внутри слайда */
.slide-content {
  position: absolute; /* Абсолютное позиционирование */
  top: 0; /* Верхний край контейнера */
  left: 0; /* Левый край контейнера */
  z-index: 2; /* Убедитесь, что контент будет поверх изображения */
  color: #ffffff; /* Цвет текста */
  background: rgba(74, 158, 216, 0.95);
  padding: 55px;
  min-width: 500px;
  box-sizing: border-box;  
}

.slide-content .slide-prev-text {
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.slide-content .slide-head {
  font-size: 64px;
  font-weight: 400;
  line-height: 75px;
  margin-bottom: 40px;
}

.slide-content .slide-prev-count {
  font-size: 48px;
  font-weight: 100;
  line-height: 56px;
  margin-bottom: 40px;
}

/* Элементы управления слайдером (стрелки, точки) */
.swiper-button-prev, .swiper-button-next {
  z-index: 3; /* Убедитесь, что стрелки управления поверх всех слоев */
}

.swiper-pagination {
  z-index: 3;
  bottom: 10px; /* Расположение точек пагинации */
}  
    
.form-block {
  background-color: rgba(74, 158, 216, 1); /* Replace with the actual color code from the design */
  padding: 30px 55px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  position: relative;  
}

.custom-form .form-block {
  margin-top: -67px;
}

.form-block form {
  display: flex;
  gap: 10px;
}

.form-block input[type="text"] {
  flex-grow: 1;
  margin: 0;
}

.form-block .checkbox-container {
  display: flex;
  align-items: center;
}

.form-block .checkbox-container input {
  margin-right: 15px;
}

.form-block p {
  margin: 0;
}

.form-block .form-block-text-prev {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 18px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-size: 16px;
}

.checkbox-container input {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  margin: 0 10px 0 0;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-container input:checked {
  background-color: rgba(74, 158, 216, 1); /* Replace with the actual color code from the checkbox in the design */
}

.checkbox-container input:checked:after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: relative;
  top: -9px;
  left: -4px;
}

.info-blocks-container {
  display: flex;
  justify-content: space-between;
  padding: 60px 0 0 0;
}

.info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: calc(33.333% - 40px); /* Расчет ширины с учетом отступов */
  margin: 20px;
  color: rgba(90, 99, 118, 1);
}

.info-block-icon {
  width: 80px; /* Можно изменить размеры иконок */
  height: 80px;
  margin-bottom: 20px;
  background-color: #e0e0e0; /* Пример цвета фона для иконок */
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-block-title {
  
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  margin-bottom: 10px;
  text-align: center;
}

.info-block-text {
  text-align: center;
  font-size: 14px;
}

.materials-catalog {
  margin-top: 80px;
}

.material-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px; /* Adjust the gap as needed */
}

.material-category {
  flex-basis: calc(33.333% - 16px); /* Adjust width minus the gap */
  margin-bottom: 32px; /* Adjust the spacing between rows */
  text-align: center;
  color: rgba(90, 99, 118, 1);
  border: 1px solid rgba(140, 159, 190, 0.4);
  padding: 30px 0;
}

.material-items {
  display: flex;
  flex-direction: column;
}

.material-item {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
  margin-bottom: 8px; /* Spacing between items */
}

.material-title {
  text-align: center;
  font-weight: 400;
  margin-top: 32px;
  font-size: 14px;
}

.material-name {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.questions-main-container {
  display: flex;
  justify-content: space-between;
}

.questions-main-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 32px;
}

.questions-main-column {
  width: calc(33.333% - 13.333px); /* Учитываем маргины */
  color: #fff;
  padding: 40px 40px 40px 40px;
  background-image: url(/images/8c40362245400ee06ec15f3e86305052.jpeg);
  flex: 1; /* Равномерное распределение пространства */
  box-sizing: border-box;
  display: flex; /* Добавляем flex для внутреннего выравнивания */
  flex-direction: column; /* Выравнивание блоков в колонку */
}

.questions-main-column-middle {
  width: calc(33.333% - 13.333px); /* Учитываем маргины */  
  flex: 1; /* Равномерное распределение пространства */
  box-sizing: border-box;
  display: flex; /* Добавляем flex для внутреннего выравнивания */
  flex-direction: column; /* Выравнивание блоков в колонку */
}

/* Устанавливаем маргин только между колонками */
.questions-main-column:not(:first-child):not(:last-child) {
  margin: 0 10px;
}

/* Устанавливаем правый маргин для первой колонки */
.questions-main-column:first-child {
  margin-right: 20px;
}

/* Устанавливаем левый маргин для последней колонки */
.questions-main-column:last-child {
  margin-left: 20px;
}

.questions-main-column ul {
  line-height: 22.4px;
  padding-left: 16px;
}

.questions-main-column img {
  width: 100%; /* полная ширина колонки */
  height: auto; /* автоматическая высота */
  border-radius: 5px; /* скругление углов изображения */
  margin-bottom: 20px; /* отступ снизу */
}

.questions-main-button {
  margin-top: 35px;
}

.questions-main-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
}

/* Стили для внутренних блоков, теперь называются questions-inner-block */
.questions-inner-block {
  margin-bottom: 20px; /* отступ снизу для всех, кроме последнего */
  flex-grow: 1; /* Блоки займут все доступное пространство */
  background-image: url(/images/8c40362245400ee06ec15f3e86305052.jpeg);  
  color: #fff;
  padding: 40px 40px 40px 40px;  
}
.questions-inner-block:last-child {
  margin-bottom: 0; /* Убираем отступ снизу у последнего блока */
}

.popular-products {
  padding: 20px 0;
}

.main-header .title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 28.13px;
  margin: 20px 0; /* Adjust the margin as needed */
  color: rgba(90, 99, 118, 1);
}

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

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

.product {
  padding: 32px;
  border: 1px solid rgba(140, 159, 190, 0.2);
}

.product img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  color: rgba(64, 64, 64, 1);
  text-align: center;
}

.product-name {
  margin-top: 31px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.product-sku {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

.product-price {
  margin-top: 18px;
}

.button-container {
  display: flex;
  justify-content: space-between; /* Ensures buttons are aligned properly with space between */
  margin-top: 31px; /* Space above the buttons */
}

.details-btn, .order-btn {
  width: calc(50% - 5px);
  text-align: center;
  padding: 0;
}

.product-price {
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
}

.products-more {
  margin-top: 40px;
  text-align: center;
}

.two-questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* Ensure the direct children of this container expand in height to cover the background image */
  align-items: stretch;
}

.question {
  /* Assign a background image to each .question block */
  /* Replace 'url1' and 'url2' with the actual URLs of your images */
  background-size: cover;
  background-position: center;
  padding: 250px 0 0 0; /* Adjust padding as needed */
}

.question:nth-child(1) {
  background-image: url('/upload/Rectangle_57.jpg');
}

.question:nth-child(2) {
  background-image: url('/upload/Rectangle_57.jpg');
}

.question-content {
  background-color: rgba(238, 241, 245, 0.95);
  padding: 35px 40px;
  color: rgba(90, 99, 118, 1);
}

.question-content .question-title {
  margin-bottom: 31px;
  font-weight: 800;
  font-size: 16px;
}

.reviews-main {
  background-color: rgba(238, 241, 245, 1);
  padding-bottom: 55px;
}

.reviewSlider .swiper-slide {
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
}

.reviews-main .review-item-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;  
  margin-bottom: 31px;
}

.reviews-main .review-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 31px;
}

.reviews-main .review-author {
  font-size: 18px;
  font-weight: 700;
}

.reviews-main .review-button a {
  color: rgba(74, 158, 216, 1); 
}

.reviews-main .reviewSlider {
  padding-bottom: 70px;
}

.reviews-main .review-add-button {
  text-align: center;
  margin-top: 25px;
}

.swiper .swiper-pagination-bullet {
  width: 18px;
  height: 18px;  
  background: transparent;
  opacity: 1;
  border:1px solid rgba(74, 158, 216, 1);
}

.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(74, 158, 216, 1);
}

.features {
  display: flex;
  justify-content: space-around; /* Равномерно распределяет пространство между элементами */
  flex-wrap: wrap; /* Переносит элементы на следующую строку, если не хватает места */
  text-align: center;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  flex-direction: column; /* Выравнивание дочерних элементов в вертикальном стеке */
  align-items: center; /* Центрирует элементы по горизонтали */
  justify-content: center; /* Центрирует элементы по вертикали */
  flex-basis: calc(25% - 20px); /* Распределение по ширине с учетом отступов */
  margin: 10px; /* Отступы вокруг каждого блока */
}

.feature-image {
  margin-bottom: 10px; /* Отступ между иконкой и текстом */
  background-color: rgba(74, 158, 216, 0.1);
  border-radius: 30px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;  
}

.feature-image svg {
  width: 100%; /* Задаем ширину иконок, чтобы они были резиновыми */
  max-width: 41px; /* Максимальная ширина иконки */
  height: auto; /* Автоматическая высота для сохранения пропорций */
}

.feature-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 0 50px;  
}

.portfolioSwiper .swiper-slide img {
  width: 100%; /* Ширина картинки на 100% ширины слайда */
  border-radius: 20px; /* Закругление углов картинки */
}

/* Задаем стили для слайдера */
.portfolioSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px; /* Отступы для создания пространства между слайдами */
}

.portfolio-box .portfolioSwiper {
  padding-bottom: 70px;
}

.seo-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.accordion {
  margin-top: 80px;
}

.accordion .accordion-item {
  margin-bottom: 10px; /* Добавляет небольшое пространство между элементами */
}

.accordion-button {
  background-color: rgba(238, 241, 245, 1);
  color: #444;
  cursor: pointer;
  padding: 25px 20px; /* Подберите padding, чтобы общая высота была 60px */
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.2s ease;
  position: relative; /* Для правильного позиционирования псевдоэлемента */
}

.accordion-button::after {
  content: '+';
  color: #777;
  position: absolute;
  right: 20px;
  transition: transform 0.2s ease-out;
}

.accordion-button.active::after {
  content: '-';
  transform: rotate(0); /* Можно использовать rotate для других эффектов */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: white;
  padding: 0 18px;
}

.showRoomSwiper {
  width: 100%;
  height: 100%;  
}

.showRoomSwiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* Расстояние между блоками */
}

.showRoomSwiper .slide-inner {
  display: flex;
  height: 100%;
  width: 100%;
  gap: 20px; /* Расстояние между блоками */
}

.showRoomSwiper .text-block,
.showRoomSwiper .image-block {
  width: calc(50% - 10px); /* Вычитаем половину gap чтобы получить равные блоки */
  justify-content: center;
  align-items: center;
}

.showRoomSwiper .text-block {
  padding: 60px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;  
}

.showRoomSwiper .slide-inner-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: rgba(74, 158, 216, 1);
}

.showRoomSwiper .text-block {
  background-color: rgba(238, 241, 245, 1);
}

.showRoomSwiper .image-block img {
  width: 100%;
  height: auto;
}

.showRoomSwiper .swiper-pagination {
  position: absolute;
  top: 10px !important; /* Или другое значение по вашему усмотрению */
  right: 10px; /* Или другое значение по вашему усмотрению */
  text-align: right;
  z-index: 10;
  max-height: 20px;
}

.showRoomSwiper .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  background: rgba(90, 99, 118, 0.9);
  opacity: 1;
  border: none;
  border-radius: 0;
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;  
  padding: 7px 11px;
}

.right-counts-section a {
  color: rgba(140, 159, 190, 1);
}

.right-counts-section a.active {
  color: rgba(74, 158, 216, 1);
}

.sort-counts {
  margin-bottom: 14px;
}

.sort-counts a {
  text-decoration: none;
}

.catalog-container {
  margin-top: 60px;
}

.catalog-grid {
  display: flex; /* Используем flexbox для размещения фильтра и списка продуктов рядом */
  gap: 20px; /* Добавляем небольшой промежуток между фильтром и списком продуктов */
}

.products-filter {
  width: 315px; /* Ширина блока фильтров */
}

.products-list {
  flex-grow: 1; /* Заставляем список продуктов занимать все оставшееся пространство */
}

/* Styles for the filter block and options */
.filter-block {
  margin-bottom: 25px;
}

.filter-search {
  margin-bottom: 25px;
}

.filter-search .search-form-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 16.41px;  
}

.filter-title {
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  background-color: transparent;
  font-weight: 700;
  transition: background-color 0.2s ease;
  color: rgba(90, 99, 118, 1);
  margin-bottom: 14px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-icon {
  transition: transform 0.2s ease-out;
  display: inline-block;
  /* Size of your icon */
  width: 16px;
  height: 16px;
  background-image: url('/images/material-symbols_keyboard-arrow-down.svg'); /* Path to your custom icon */
  background-size: cover;
  margin-right: 10px; /* Adjust as needed */
}

.filter-title.active .toggle-icon {
  transform: rotate(180deg); /* Flip the icon */
}

.filter-title:hover,
.filter-title:focus {
}

.filter-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  
}

.filter-option {
  display: none; /* Hide options by default */
  margin-bottom: 4px;
  background-color: rgba(90, 99, 118, 0.05);
  padding: 10px 20px;
}

.filter-option .flex {
  justify-content: space-between;
}

.filter-option .checkbox-container {
  padding: 0;
}

.filter-option .checkbox-container input{
  border:1px solid rgba(140, 159, 190, 0.4);
  border-radius: 4px;
  margin: 0;
}

.filter-option .checkbox-container input:checked:after {
  top: -1px;
  left: 4px;
}

.show-less .filter-option,
.filter-option:nth-child(-n+4) {
  display: block; /* Show first four options */
}

.show-more-btn {
  background-color: transparent;
  border: none;
  padding: 10px 0 10px 20px;
  color: rgba(74, 158, 216, 1);
  width: 100%;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.show-more-btn:hover {
  text-decoration: underline;
}

/* Custom checkbox styles */
.custom-checkbox + label {
  padding: 5px;
  display: block;
}

.sort-counts .flex {
  justify-content: space-between;
}

footer {
  color: white;
  background-color: #333;
  padding: 60px 0;  
}

.container-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;  
}

footer a {
  color: white;
}

footer .box-flex {
  justify-content: space-between;
}

footer .top-line {
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 60px;
}

footer .intem-phone {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 14px;
}

footer .legal {
  color: rgba(90, 99, 118, 1);
  line-height: 24px;
  margin-top: 65px;
}

footer p {
  margin: 0;
}

footer .box-footer-content p:first-child {
  margin-bottom: 14px;
}

footer .box-footer-content span {
  color: rgba(90, 99, 118, 1);
}

footer .box-order-button {
  align-items: center;
}

footer .subscribe .form-block {
  background-color: transparent;
  padding: 41px 0;
}

footer .subscribe {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0px;
}

footer .form-text-container {
  color: rgba(90, 99, 118, 1);
}

footer .form-text-container a {
  color:rgba(74, 158, 216, 1);
}

footer .subscribe .form-block-text-prev {
  margin-bottom: 8px;
  font-size: 16px;
  color: rgba(74, 158, 216, 1);
  text-transform: uppercase;
}

footer .control-input {
  background-color: transparent;
  min-width: 380px;
  border:1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

footer .control-input:focus {
  border:1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-warning {
  padding-top: 60px;
  line-height: 20px;
}

footer .footer-menu-copyright {
  margin-top: 65px;
  color: rgba(90, 99, 118, 1);
}

footer .footer-menu-copyright a {
  color: rgba(90, 99, 118, 1);
}

footer .footer-menu-copyright .flex > div {
  margin-right: 80px;
}

.subscribe .icon-message {
  background-image: url(/images/message-Icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 60px;
}

.product-cell-outer {
  flex-shrink: 0; /* Prevents the cell from shrinking */
  flex-basis: 315px; /* Sets the initial size of the cell to 315px */
}

.product-cell-middle {
  flex-grow: 1; /* Allows the cell to grow to fill the container */
  flex-shrink: 1; /* Allows the cell to shrink if necessary */
  flex-basis: 0; /* Starts at 0% width of the container */
}

.product-cell .product-image {
  border: 1px solid rgba(140, 159, 190, 0.4);
  padding: 20px;
}

.product-cell .product-image-buttons {
  justify-content: space-between;
  margin-top: 25px;
}

.product-cell .right-cell-element {
  border: 1px solid rgba(74, 158, 216, 0.1);
  padding: 20px 30px;  
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
}

.product-cell .right-cell-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.41px;
  color: rgba(74, 158, 216, 1);
  margin-bottom: 11px;

}

.product-cell .right-cell-title svg {
  position: relative;
  top: 2px;
}

.product-cell .product-cell-content {
  padding: 0 20px;
}

.product-cell .product-cell-content .by-button {
  min-width: 180px;
  display: block;
}

.product-cell .product-cell-content .btn-bordered {
  color: rgba(74, 158, 216, 1);
  border: 1px solid rgba(74, 158, 216, 1);
  background-color: transparent;
  margin-top: 10px;
}

.product-cell .product-cell-content .btn-bordered:hover {
  background-color: rgba(74, 158, 216, 1);
  color: #fff;
}

.product-cell-content .product-cell-purchase {
  background-color: rgba(74, 158, 216, 0.1);
  padding: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.product-cell-content .product-cell-purchase .cell-price {
  font-size: 24px;
  font-weight: 300;
  line-height: 28.13px;
  color: rgba(74, 158, 216, 1);    
}

.product-cell-content .product-cell-purchase .cell-stock {
  background-color: rgba(255, 255, 255, 1);
  padding: 14px 14px 14px 35px;
  gap: 6px;
  border-radius: 8px;
  background-image: url(/images/fluent_clock-12-filled.svg);
  background-repeat: no-repeat;
  background-position: 14px center;
  margin-top: 22px;
  display: inline-flex;
}

.product-cell-content .cell-purchase-col {
  min-height: 95px;
}

.product-cell-content .product-cell-features .cell-features {
  background-color: rgba(90, 99, 118, 0.05);
  margin-bottom: 10px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
}

.product-cell-content .cell-features-intro {
  padding: 12px 30px;
}

.product-cell-content .cell-seo-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 40px;
}

.section-certificates .swiper-slide-certificate {
  padding: 25px 35px;
  border: 1px solid rgba(238, 241, 245, 1);
}

.section-certificates .certificatesSlider {
  padding-bottom: 65px;
}

.fancybox__backdrop {
  opacity: 0.65 !important;
}

.modal-form {
  padding: 0 !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.modal-form-title {
  background-color:rgba(74, 158, 216, 1);
  padding: 30px 40px;
  color: #fff;
}

.form-title-head {
  font-size: 24px;
  font-weight: 600;
  line-height: 28.13px;
  margin-bottom: 5px;
}

.modal-form-content {
  padding: 30px 40px;
}

.modal-form__input {
  margin-bottom: 20px;
}

.modal-form__input label {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.06px;
}

.modal-form__buttons {
  display: flex;
  justify-content: space-between; /* Это обеспечивает распределение пространства между элементами */
}

.modal-form__buttons .base-button{
  border: 1px solid #d1d1d1;
}

.modal-form__buttons button {
  width: 100%;
}

.modal-checkbox {
  color: rgba(90, 99, 118, 1);
}

.modal-checkbox {
  padding: 0px 0px 20px 0;
}

.modal-checkbox input[type=checkbox] {
  height: 22px;
  width: 22px;
  border: 1px solid rgba(74, 158, 216, 1);
}

.modal-checkbox.checkbox-container input:checked:after {
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  top: 0px;
  left: 5px;   
  width: 11px;
  height: 14px;  
}


.form-button-cell {
  flex: 1; /* Заставляет оба блока занимать равную ширину */
  margin: 0 10px; /* Обеспечивает расстояние в 20 пикселей между кнопками */
}

/* Убираем лишний маржин с крайних элементов */
.modal-form__buttons .form-button-cell:first-child {
  margin-left: 0;
}

.modal-form__buttons .form-button-cell:last-child {
  margin-right: 0;
}

.middle-adv-content {
  padding: 40px 55px;
  background-color: rgba(74, 158, 216, 1);
  background-image: url(/images/middle.png);
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.middle-adv-content .flex {
  justify-content: space-between;
  margin-bottom: 20px;
}

.middle-adv-content .flex:last-child {
  margin-bottom: 0;
}

.middle-adv-content .middle-box {
  max-width: 280px;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.1);
}

.middle-adv-content .middle-box-top {
  font-size: 14px;
  font-weight: 700;
  line-height: 16.41px;  
  margin-bottom: 20px;
}

.middle-adv-content .middle-box-top:before {

  content: '+';
  color: #5fa9dc;
  background-color: #fff;
  width: 16px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 5px;
}

@media (min-width: 500px) {
  .header-mobile-menu, .secondary-menu-mobile {
    display: none;
  }
}

/* Дополнительно можно добавить стили для адаптивности и переноса блоков на новую строку при уменьшении ширины экрана */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }

  .feature-item {
    flex-basis: auto; /* Блоки занимают всю доступную ширину */
    margin-bottom: 20px; /* Отступы между блоками */
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr); /* 2 products per row on smaller screens */
  }
}

@media (max-width: 1200px) {

  .container {
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-top .container {
    padding: 20px;
  }

  .nav-list a {
    font-size: 12px;
  }

  .search {
    display: none;
  }

  .slide-content {
    left: 20px;
    min-width: 250px;
    padding: 29px 35px;
  }

  .slide-content .slide-prev-count {
    margin-bottom: 20px;
  }

  .slide-content .slide-prev-text {
    font-size: 12px;
  }

  .slide-content .slide-head {
    font-size: 36px;
    line-height: 35px;
  }

  .form-block .form-block-text p:last-child {
    display: none;
  }

  .form-block .checkbox-container {
    max-width: 185px;
    font-size: 10px;
  }

  .form-block .form-block-text-prev {
    font-size: 12px;
    margin-bottom: 0;
  }

  .form-block {
    padding: 25px 30px;
  }

  .checkbox-container input {
    width: 29px;
    height: 20px;
    display: block;    
  }

  .material-category {
    flex-basis: calc(50% - 16px);
  }

  .questions-main-section {
    display: none;
  }

  .two-blocks-section {
    display: none;
  }

  .features .feature-item:last-child {
    display: none;
  }

  .feature-title {
    padding: 0 25px;
  }

  .showRoomSwiper .slide-inner {
    gap: 0;
    flex-direction: column;
  }

  .showRoomSwiper .text-block {
    order: 2;
    padding: 40px;
  }

  .showRoomSwiper .text-block, .showRoomSwiper .image-block {
    width: 100%;
  }

  .showRoomSwiper .slide-inner-title {
    margin-top: 0;
  }

  .showRoomSwiper .image-block  {
    max-height: 270px;
  }

  .swiper-pagination-clickable .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;    
  }

  .showRoomSwiper .swiper-pagination {
    display: flex;
    justify-content: flex-end;    
  }

  .subscribe .form-block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .subscribe .form-block-text {
    width: 100%;
  }

  .subscribe .icon-message {
    padding: 0;
    background-image: none;
    color: #fff;
  }

  footer .subscribe .form-block-text-prev {
    color: #fff;
  }

  .subscribe .form-block form {
      flex: 1; /* Разрешает элементам занимать равное пространство в строке */
      width: 70%; /* Каждый элемент пытается занять ровно половину ширины родителя */
  }

  .subscribe .form-block form {
    display: flex !important;
    padding-right: 25px;
  }

  .subscribe .form-block form > * {
    width: 45%;
  }

  .subscribe .form-block .form-text-container  {
    width: 30%;
  }

  /* Обеспечивает горизонтальное расположение формы и текста */
  .subscribe .form-block > form,
  .subscribe .form-block > .form-text-container {
      display: inline-block; /* Позволяет элементам располагаться в одну линию */
      box-sizing: border-box; /* Учитывает padding и border в ширине элемента */
  }

}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr; /* 1 product per row on mobile screens */
  }
}

@media (max-width: 490px) {
  .header-nav, .three-block, .phone-button-top {
    display: none;
  }

  .secondary-nav {
    display: none;
  }
  footer {
    font-size: 12px;
  }
  footer .top-line .box-footer-time, footer .top-line .box-footer-holiday, footer .top-line .box-order-button {
    display: none;
  }
  footer .control-input {
    min-width: 10px;
  }

  footer .subscribe .form-block-text-prev {
    text-align: center;
  }
  
  footer .footer-menu-copyright .flex {
    display: block;
    text-align: center;
  }

  footer .footer-menu-copyright .flex > div {
    margin-right: 0;
    margin-bottom: 5px;
  }

  footer .footer-warning {
    text-align: center;
    line-height: 25px;
    font-size: 12px;
  }

  footer .footer-warning .blue-text {
    display: block;
    margin-bottom: 5px;

  }

  .subscribe .form-block form {
    padding-right: 0;
    display: block !important;
  }

  .subscribe .form-block form > * {
    width: 100%;
    margin-bottom: 15px;
  }

  .subscribe .form-block form, .subscribe .form-block .form-text-container {
    width: 100%;
  }

  .subscribe .form-block .form-text-container {
    text-align: center;
  }

  .subscribe .icon-message {
    margin-bottom: 10px;
  }

  .custom-form .form-block {
    margin-top: 0;
    display: block;
  }

  .section-form-block .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .swiper-slide img {
    object-fit: contain;
    display: flex;    
  }

  .slide-content .slide-prev-count {
    display: none;
  }

  .slide-content .button-border {
    display: none;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-content .slide-head {
    margin-bottom: 0;
  }

  .form-block .form-block-text-prev {
    margin-bottom: 16px;
  }

  .form-block .checkbox-container {
    max-width: 100%;
  }

  .material-category {
    width: 100%;
    flex-basis: 100%;
  }
  

  .material-category img {
    width: 100%;
  }

  .swiper-pagination {
    display: flex;
    justify-content: center;
  }

  .section-form-block .form-block {
    display: block;
  }

  .form-block .form-block-text-prev {
    font-size: 14px;
  }

  .form-block .checkbox-container {
    padding: 10px 0;
  }

  .material-category {
    padding: 30px;
  }

  .header-top {
    padding: 20px 0;
  }

  .top-mobile-menu {
    justify-content: space-between;
    padding: 15px 0 0 0;
  }

  .mobile-menu-button {
    background-color: transparent;
    background-image: url(/images/tabler_menu-2.svg);
    background-repeat: no-repeat;
    border: none;
    color: rgba(140, 159, 190, 1);
    text-transform: uppercase;
    padding-left: 20px;
  }

  .secondary-menu-mobile {
    padding: 10px 0;
  }

  .secondary-menu-mobile .mobile-menu-catalog {
    color: rgba(90, 99, 118, 1);
    text-transform: uppercase;
    background-color: transparent;
    background-position: left center;
    background-image: url(/images/tabler_menu-2-2.svg);
    background-repeat: no-repeat; 
    border: none;   
    padding-left: 22px;
  }

  .secondary-menu-mobile .flex {
    justify-content: space-between;
  }

  .secondary-menu-mobile .mobile-menu-search {
    background-color: transparent;
    background-position: left center;
    background-image: url(/images/uil_search.svg);
    background-repeat: no-repeat; 
    width: 20px;      
    height: 20px;
    border: none;   
  }


}