.product-item-container .product-item.product-item_main.product-item_banner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 2rem;
    color: #fff;
    padding: 25% 3rem 2rem !important;
    background: var(--theme-color-main);
}

.product-item_banner_title {
    font-family: 'Russo One', sans-serif !important;
    font-weight: 400;
    font-size: 35px;
}

.product-item_banner_text {
    font-size: 16px;
}

.product-item_button_more {
    display: block;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: inherit;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--theme-color-main);
    border-radius: 14px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.product-item_button_more:hover {
    color: #fff;
    background: var(--theme-color-main);
    border-color: var(--theme-color-main);
}

@media all and (max-width: 1399px){
    .product-item-container .product-item.product-item_main.product-item_banner {
        padding: 2rem 1rem !important;
    }

    .product-item_banner_title {
        font-size: 24px;
    }
}

@media all and (max-width: 575px){
    .product-item-container .product-item.product-item_main.product-item_banner {
        min-height: calc(100vw - 1.5rem);
    }
}