.our-products-section {
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
    padding: 0 0 80px;
    position: relative;
    overflow: hidden;
}

.our-products-section_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 719px;
}

.our-products-section_content {
    width: 100%;
    max-width: 1160px;
    height: auto;
    margin: 0 auto;
}

.our-products-section_content_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44.8px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #091520;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.our-products-section_content_description {
    font-family: 'Play', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #4B4B50;
    margin: 0 auto;
    max-width: 888px;
}

.our-products-section_content_products {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
}

.our-products-section_content_products_product {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
    box-sizing: border-box;
    position: relative;
    height: 351px;
    cursor: pointer;
    margin-bottom: 35px;
}

.our-products-section_content_products_product-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-front {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body .product-front-hero {
    height: 258px;
}

@media screen and (max-width: 1124px) {
    body .product-front-hero {
        height: auto;
    }
}

.product-front:after {
    content: '';
    position: absolute;
    border-bottom: 1px solid #E4E4E4;
    bottom: 0;
    left: 0;
    width: 100%;
}

.product-back {
    position: absolute;
    width: 100%;
    max-width: 364px;
    height: 0;
    background-color: #2E3E89;
    color: white;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out,
    opacity 0.3s ease-in-out,
    height 0.4s ease-in-out,
    padding 0.4s ease-in-out;
    overflow: hidden;
}
.product-front img{
    object-fit: cover;
}

.product-back-description {
    font-family: 'Play', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    transition-delay: 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 13;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-back-icon {
    margin-top: auto;
}

.product-back-link {
    font-family: 'Play', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-style: solid;
    color: #EDE230;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: 0.7s;
}

.our-products-section_content_products_product_icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: transform 0.5s ease;
}

.our-products-section_content_products_product_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #091520;
    margin-top: 16px
}

.our-products-section_content_products_product:hover .product-back {
    height: 100%;
    padding: 32px 32px 16px 32px;
    transform: translateY(0);
    opacity: 1;
    min-height: 395px;
}

.our-products-section_content_products_product:hover .product-back-description,
.our-products-section_content_products_product:hover .product-back-link {
    opacity: 1;
    transform: translateY(0);
}

.our-products-section_content_products_product:hover .our-products-section_content_products_product_icon {
    transform: translateX(-50%) translateY(14px);
}

@media screen and (max-width: 1024px) {

    /* Animation on hover */
    .tabs-settings_item:hover span {
        transform: translateX(15px);
        color: #2E3E89;
        padding-right: 15px;
    }

    .our-products-section_content_products_product {
        flex: 1 1 calc(50% - 24px);
        max-width: 344px;
    }

}

@media screen and (max-width: 768px) {

    .our-products-section_content_products_product {
        flex: 1 1 calc(100% - 24px);
        max-width: 344px;
    }

    .our-products-section {
        padding: 0 15px 50px;
    }

    .our-products-section_content_title {
        margin-bottom: 10px;
    }

    .our-products-section_content_description {
        line-height: 22px !important;
    }

    .our-products-section_content_products {
        margin-top: 30px;
        gap: 16px;
    }

    body .product-front-hero {
        min-height: 258px;
    }

}
