body {
    font-family: Arial, sans-serif;
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
}

mark {
    background-color: #E60012;
    color: #fff;
}

.multi-column-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
			
        }

.multi-column-list li {
            width: 30%; /* Ширина одного элемента списка */
            margin: 10px; /* Отступы между элементами списка */
			
        }

#cond{
	font-size: 19px;
	}
#cond b{
	color:#E60012;
	}
.red{
	color:#E60012;
	}
	
.h4{
	color:#E60012;
	}
.bord {
            border: 0.4px solid #E60012; /* Толщина границы, стиль границы, цвет границы */
            padding: 10px; /* Внутренние отступы для создания пространства внутри границы */
            border-radius: 5px; /* Сглаженные углы */
        }

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 20px;
}

#logo {
    width: 200px;
}

h1 {
    color: #E60012;
}

nav {
    background-color: rgba(230, 0, 18, 0.9);
    padding: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 400px;
}

nav ul li {
    margin-bottom: 5px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

nav ul li a:hover {
    background-color: #C00010;
}

main {
    padding: 20px;
}

.category {
    margin-bottom: 40px;
	 

}

.product {
    display: flex;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product.visible {
    opacity: 1;
    transform: translateY(0);
}

.product .gallery {
    max-width: 300px;
    width: 30%;
}
.product .gallery img{
    max-width: 100%;
    margin-right: 20px;
    border-radius: 10px;
}
.product video {
    min-width: 200px;
	max-width: 500px;
	width: 40%;
    margin-right: 20px;
    border-radius: 10px;
}

.product-info {
    flex: 1;
}

.gallery {
    flex: 1;
}

.product-info h3 {
    margin-top: 0;
}

.pdf-link {
    display: inline-block;
    margin-top: 10px;
    color: #E60012;
    text-decoration: underline;
}

.detail{
	font-size: 11px;
} 

footer {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 10px;
    #position: fixed;
    bottom: 0;
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#pdfFrame {
    width: 100%;
    height: 500px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px; /* промежуток между элементами */
}

.item {
  flex: 0 0 calc(33.33% - 8px); /* каждый элемент занимает треть ширины контейнера с учетом промежутков */
  height: 150px; /* фиксированная высота элемента */
  background-color: #E60012;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-sizing: border-box;
  margin-bottom: 10px; /* промежуток снизу */
}