footer.footer ul {
    padding: 0;
}

.offer-box-thumbnail .offer-box-inner{
    min-height: 120px;
}
@media (max-width: 576px){.offer-box-thumbnail .offer-box-inner{
    min-height: 220px;
}}
@media (max-width: 576px) {
    .main-production-item .offer-box-inner .offer-box-title {
        flex: 0;
        padding-top: 130px;
    }
}
@media (max-width: 576px) {
    .btn-secondary {
    background: transparent;
    border: 2px solid #89549F;
    padding: 10px 10px;
    color: #89549F;
}}

.rev_slider img, .tp-simpleresponsive img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 430px) {
.fixed-phone{display:none;}}


/* Основной контейнер */
.content-block {
    display: flex;
    gap: 40px;
    margin: 30px 0;
     align-items: center;
    background: #ffffff;
}

/* Левая часть с текстом */
.content-block__text {
    flex: 1;
}

.content-block__title {
    font-size: 32px;
    font-weight: 400;
    color: ##171724;
    margin: 0 0 24px 0;
    line-height: 1.3
}
   .content-block__description h3{ 
    font-family: "Tinos", serif;
}
.content-block__description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.content-block__description p {
    margin: 0 0 16px 0;
}

.content-block__description p:last-child {
    margin-bottom: 0;
}

.content-block__description h3{
    font-size: 28px; 
    padding-bottom:15px;
}

/* Правая часть с картинкой */
.content-block__image {
    flex: 0 0 500px;
}

.content-block__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Адаптив для планшетов */
@media (max-width: 992px) {
    .content-block {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .content-block__image {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .content-block__title {
        font-size: 28px;
    }
}

/* Адаптив для мобильных */
@media (max-width: 576px) {
    .content-block {
        margin: 30px 0;
        padding: 20px;
    }
    
    .content-block__title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .content-block__description {
        font-size: 15px;
    }
}

/* Секция */
.features-section {
    padding: 60px 0;
    text-align: center;
}

/* Общий заголовок */
.features-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 50px 0;
    text-align: center;
    font-family: "Tinos", serif;

}

/* Сетка блоков - 4 колонки в ряд */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    justify-items: center;
}

/* Один блок */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 280px;
    margin-top: 20px;
    box-shadow:0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(90, 54, 105, 0.5);
}

/* Иконка */
.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    object-fit: contain;
}

/* Заголовок H4 */
.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #5a3669;
    margin: 0 0 15px 0;
    text-align: center;
}

/* Описание */
.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* Адаптив для планшетов - 3 колонки */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .features-title {
        font-size: 32px;
    }
}

/* Адаптив для мобильных - 2 колонки */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

/* Очень маленькие экраны - 1 колонка */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Секция */
.info-section {
    padding: 60px 0;
}

.info-section__container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

/* Заголовок H3 */
.info-section__title {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: "Tinos", serif;

}

/* Вводный текст */
.info-section__intro {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.info-section__intro p {
    margin: 0 0 15px 0;
}

.info-section__intro p:last-child {
    margin-bottom: 0;
}

/* Сетка блоков - 2 в ряд */
.info-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Один блок */
.info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
}

.info-block:hover {
    box-shadow: 0 4px 20px rgba(90, 54, 105, 0.5);
}
/* Заголовок H4 */
.info-block__title {
    font-size: 24px;
    font-weight: 600;
    color: #5a3669;
    margin: 0 0 20px 0;
    text-align: center;
}

/* Изображение */
.info-block__image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 25px;
}

.info-block__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Текст */
.info-block__text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
}

/* Кнопка */
.info-block__button {
    margin-top: auto;
}

.info-block__btn {
    display: inline-block;
    padding: 14px 36px;
    background: #5a3669;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    border:1px solid #5a3669;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.info-block__btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Планшеты */
@media (max-width: 992px) {
    .info-section__title {
        font-size: 28px;
    }
    
    .info-section__grid {
        gap: 30px;
    }
    
    .info-block {
        padding: 30px 20px;
    }
    
    .info-block__title {
        font-size: 22px;
    }
}

/* Мобильные - 1 блок в ряд */
@media (max-width: 768px) {
    .info-section {
        padding: 40px 0;
    }
    
    .info-section__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .info-section__intro {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .info-section__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-block {
        padding: 25px 20px;
    }
    
    .info-block__title {
        font-size: 20px;
    }
    
    .info-block__text {
        font-size: 15px;
    }
    
    .info-block__btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}


/* Секция */
.gallery-section {
    padding: 60px 0;
}

.gallery-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок H3 */
.gallery-section__title {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 50px 0;
    font-family: "Tinos", serif;

}

/* Сетка блоков - 4 в ряд */
.gallery-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Один блок */
.gallery-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Заголовок H4 */
.gallery-block__title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    text-align: center;
}

/* Изображение */
.gallery-block__image {
    width: 100%;
    margin-bottom: 20px;
}

.gallery-block__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* HTML контент */
.gallery-block__html {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: left;
    margin-bottom: 20px;
}

.gallery-block__html p {
    margin: 0 0 10px 0;
}

.gallery-block__html p:last-child {
    margin-bottom: 0;
}

/* Кнопка */
.gallery-block__button {
    margin-top: auto;
}

.gallery-block__btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffffff;
    color: #89549F;
    text-decoration: none;
    border-radius: 6px;
    border:1px solid #89549F;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.gallery-block__btn:hover {
    background: #89549F;
    color:#ffffff;
    transform: translateY(-2px);
}

/* Планшеты - 2 в ряд */
@media (max-width: 992px) {
    .gallery-section__title {
        font-size: 28px;
    }
    
    .gallery-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gallery-block {
        padding: 25px 15px;
    }
    
    .gallery-block__title {
        font-size: 18px;
    }
}

/* Мобильные - 1 в ряд */
@media (max-width: 576px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-section__title {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .gallery-section__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-block__title {
        font-size: 20px;
    }
    
    .gallery-block__html {
        font-size: 15px;
    }
    
    .gallery-block__btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}



/* Секция */
.advantages-section {
    padding: 60px 0;
}

.advantages-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок H3 */
.advantages-section__title {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: "Tinos", serif;

}

/* Вводный текст */
.advantages-section__intro {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 100%;
    margin: 0 auto 50px auto;
}

.advantages-section__intro p {
    margin: 0 0 15px 0;
}

.advantages-section__intro p:last-child {
    margin-bottom: 0;
}

/* Сетка блоков - 4 в ряд */
.advantages-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Один блок */
.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Иконка */
.advantage-item__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Заголовок H4 */
.advantage-item__title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Планшеты - 2 в ряд */
@media (max-width: 992px) {
    .advantages-section__title {
        font-size: 28px;
    }
    
    .advantages-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .advantage-item {
        padding: 25px 15px;
    }
    
    .advantage-item__title {
        font-size: 17px;
    }
}

/* Мобильные - 1 в ряд */
@media (max-width: 576px) {
    .advantages-section {
        padding: 40px 0;
    }
    
    .advantages-section__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .advantages-section__intro {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .advantages-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 25px 20px;
    }
    
    .advantage-item__icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-item__title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .features-title{
    padding: 5px;}
}

@media (max-width: 576px) {
.features-section {
    padding: 0px;
}}
@media (max-width: 576px) {
    .feature-item {
        padding: 0px;
}}
@media (max-width: 576px) {
    .gallery-block  {
        padding: 5px 5px;;
}}