/* Существующие стили */
@font-face {  
    font-family: 'Roboto Condensed';  
    src: url('https://art-sign.ru/css/fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype'); 
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
}


header {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

.info, .email, .phone, .contact {
    flex: 1;
    text-align: center;
}

.info {
    font-size: 14px;
}

.email {
    font-size: 24px;
    font-weight: bold;
}

.phone {
    font-size: 24px;
    font-weight: bold;
}

.phone p {
    line-height: 0.5;
}



.contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.whatsapp-icon img {
    height: 80px;
    margin-right: 10px;
}

.call-button {
    background-color: #d70000;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.call-button:hover {
    background-color: #910000;
}

/* Стили для меню */
.main-menu {
    background-color: #343a40;
    padding: 10px 0;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
}

.main-menu ul li a:hover {
    background-color: #495057;
}

.main-menu ul li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #343a40;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.main-menu ul li:hover .submenu {
    display: block;
}

.main-menu ul li .submenu li {
    width: 100%;
}

.main-menu ul li .submenu li a {
    padding: 10px;
    white-space: nowrap;
}








/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    body {margin-left: 30px;}

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo, .info, .email, .phone, .contact {
        text-align: left;
        margin-bottom: 10px;
    }

    .contact {
        justify-content: flex-start;
    }

    .main-menu ul {
        flex-direction: column;
    }

    .main-menu ul li {
        width: 100%;
    }

    .main-menu ul li .submenu {
        position: static;
        display: none;
    }

    .main-menu ul li .submenu li a {
        padding-left: 30px;
    }

    .main-menu ul li:hover .submenu {
        display: none;
    }

    .main-menu ul li.active .submenu {
        display: block;
    }
}

/* Стили для нового блока с контентом */
.content-block {
    padding: 40px 20px;
    background-color: #343a40;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.article {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article h1 {
    margin-top: 0;
    font-size: 26px;
    color: #333;
    text-align: center;
}

.article h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.article h3 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
    text-align: center;
    padding-top: 50px;
}

.article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.article p, ul, li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.article li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-bottom: 10px;
}
/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .article {
        padding: 15px;
    }

    .article h2 {
        font-size: 20px;
    }

    .article p, ul, li{
        font-size: 14px;
    }


}
/* Карточки товаров */
.card-container {
    display: flex;
    gap: 20px; /* Отступ между карточками */
    flex-wrap: wrap; /* Перенос карточек на новую строку, если не хватает места */
    justify-content: center; /* Центрирование карточек */
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
}

.card-2 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(1, 1, 1, 1);
    overflow: hidden;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card-image-index {
    width: 100%;
    max-height: 225px;
    display: block;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
}


.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.card-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.card-button:hover {
    background-color: #0056b3;
}

/* Стили для подвала */
footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links img {
    height: 24px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #495057;
    margin-top: 20px;
    height: 50px;
    font-size: 16px;
}

.padding-10 {
    padding-top: 10px;
    background-color: #f8f9fa;
    height: 10px;
}

.footer-contact {
    text-align: right;
    line-height: 1.5
}

.footer-url {
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        min-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}


/* Стили для таблицы */
.table {
    display: grid;
    
    }
.table tr:first-child {
    color:#FFF; 
    background: #02b0f2!important; /* Old browsers */
    background: -moz-linear-gradient(top,  #02b0f2 0%, #015365 100%)!important; 
    background: -webkit-linear-gradient(top,  #02b0f2 0%,#015365 100%)!important; 
    background: linear-gradient(to bottom,  #02b0f2 0%,#015365 100%)!important; 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#02b0f2', endColorstr='#015365',GradientType=0 )!important; 
    }
.table th{padding: 10px 0;}
.table td{padding: 10px; border-top: 1px solid #E1E1E1;border-bottom: 1px solid #FFF; text-align:center;}
.table tr{background: #EEE;}
.table tr:nth-child(odd){background: #E5E5E5;}
.table tr td:first-child, .tbl tr th:first-child{text-align:left; padding-left:10px;}
.table tr:hover{background:#02AAE9; color:#FFF;}

@media (max-width: 550px) {
    .table {
        font-size: small;
   }
}

@media (max-width: 500px) {
    .table {
        font-size: xx-small;
   }
}

@media (max-width: 370px) {
    .table {
        font-size: 8px;
   }
}

.pp-902 img{
    width: 1160px;
    
}