@media (min-width: 1230px) {
    .stocks .container {
        max-width: 1140px;
    }
}

.stocks {
    background: url(/local/templates/.default/images_2022/stock_bg.jpg) no-repeat left bottom;
    background-size: 100%;
}

.stocks-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 612px;
    background: url(/local/templates/.default/images_2022/stocks_banner.jpg) no-repeat center center;
    background-size: cover;
}

@media (min-width: 992px) {
    .sale-title {
        display: none;
    }

    .stocks-list {
        padding-top: 30px;
    }
}

.sale-title {
    text-align: center;
    font-family: 'Fira Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    color: #38572E;
}

.stocks-item {
    position: relative;
    height: 340px;
    margin-bottom: 30px;
    font-family: 'Fira Sans', sans-serif;
}

.stocks-item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.stocks-item__image {
    max-width: 100%;
    height: 340px;
    object-fit: cover;
}

.stocks-item__content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 43px 37px 37px 37px;
}

.stocks-item__date {
    margin-bottom: 8px;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.stocks-item__name {
    max-width: 255px;
    margin-bottom: 30px;
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #FFFFFF;
}

.stocks-item__text {
    width: 100%;
    max-width: 350px;
    max-height: 65px;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
    overflow: hidden;
}

.stocks-item__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 50px;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #FFFFFF;
    background: #e30611;
    text-decoration: none;
    border-radius: 9999px;
	border: 1.5px solid #e30611;
}

.stocks-item__link:hover {
    color: #ffffff;
    text-decoration: none;
    background: #c0050f;
	border-color: #c0050f;
}

@media (max-width: 992px) {
    .stocks-banner {
        height: 400px;
        background-size: cover;
    }

    .stocks-list {
        padding-top: 10px;
    }

    .stocks-item__content {
        padding: 20px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .stocks-item__text {
        max-height: unset;
    }
}

@media (max-width: 576px) {
    .stocks-item__date {
        font-size: 16px;
    }

    .stocks-item__name {
        margin-bottom: 15px;
        max-width: 100%;
        font-size: 17px;
        line-height: 25px;
    }

    .stocks-item__text {
        max-width: 100%;
        font-size: 14px;
        line-height: 25px;
    }
}