.about-image {
    width: 100%;
    max-height: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    overflow: hidden;
}

.about-image img {
    max-width: 100%;
    height: auto;
    width: 100%;;
}

@media (min-width: 1921px) {
    .about-image {
        max-height: 1000px;
    }
}

@media (max-width: 576px) {
    .about-image {
        max-height: 220px;
    }
    .about-image img {
        max-height: inherit;
        max-width: unset;
        width: unset;
    }
}

.about-blocks {
    display: flex;
    flex-direction: column;
}

.about-intro {
    margin-bottom: 50px;
}

.about-block-grey {
    background-color: #F3F5F8;
}

.about-block--pt50 {
    padding-top: 50px;
}

.about-block--pb50 {
    padding-bottom: 50px;
}

.about-block--mt50 {
    margin-top: 50px;
}

.about-block--mb50 {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    /* Переопределим некоторые стили шаблона под конкретное место*/
    .stmd-page .about-block-grey .production-section.custom-section-wrapper--bg {
        background-color: #F3F5F8;
    }
    .stmd-page .about-block-grey .production-section .custom-section.custom-section--adaptive-pb0 {
        padding-bottom: 40px !important;
    }
    .about-intro {
        margin-bottom: 20px;
    }
    .about-block--pt50 {
        padding-top: 20px;
    }

    .about-block--pb50 {
        padding-bottom: 20px;
    }

    .about-block--mt50 {
        margin-top: 20px;
    }

    .about-block--mb50 {
        margin-bottom: 20px;
    }
}

/* Наши продукты */
.our-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.our-product {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 34px 24px 40px;
    gap: 24px;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
    transition-duration: 0.3s;
    align-self: stretch;
}

.our-product__text-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.our-product__text-block-title {
    font-family: 'Intro Bold', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #2A2626;
}

.our-product__text-block p {
    margin: 0 0 16px;
    font-family: 'Intro Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #333333;
}

.our-product__text-block p:last-child {
    margin-bottom: 0;
}

.our-product:hover {
    border-color: #BE3D3D;
}

.our-product:hover .our-product__text-block-title {
    color: #BE3D3D;
}

.our-product:hover svg {
    stroke: #BE3D3D !important;
}

.our-product__image-block {
    --gray-color: #939598;
    --blue-color: #396F91;
    transition: --gray-color 0.3s, --blue-color 0.3s;
}

.our-product__image-block .gray {
    stroke: var(--gray-color);
}

.our-product__image-block .blue {
    stroke: var(--blue-color);
}

.our-product:hover .our-product__image-block {
    --gray-color: #BE3D3D;
    --blue-color: #BE3D3D;
}

.our-product__image-block svg {
    width: 140px;
    height: 140px;
}

@media (max-width: 1200px) {
    .our-product__image-block svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .our-product {
        padding: 20px;
    }
    .our-product__text-block {
        gap: 14px;
    }
    .our-product__text-block-title {
        font-size: 14px;
    }
    .our-product__text-block p {
        font-size: 14px;
        line-height: 145%;
        margin-bottom: 14px;
    }
    .our-product__text-block p:last-child {
        margin-bottom: 0;
    }
    .our-product__image-block svg {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .our-products {
        flex-direction: column;
    }
}

.about-blocks .production-section .header-container .dash-title-wrap {
    padding-top: 50px;
}

.about-blocks .production-section .swiper-pagination {
    margin-top: 22px;
}

@media (max-width: 576px) {
    .about-blocks .production-section {
        padding-top: 20px;
    }
}
/* //Наши продукты */