.product-card-image {
    display: none !important;
}

.product-card-image-mobile {
    display: block !important;
}

.product-list__top, .product-list__bot {
    display: flex;
    flex-direction: column;
}

.product-list__card {
    position: relative;
    height: 440px;
    padding: 32px 24px 32px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-list__card img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    z-index: -1;
}

.product-list__card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 16px;
}

.bottom-content {
    justify-content: flex-end;
}


.product-list__card-content__name {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;

}

.product-list__card-content__price {
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-top: 8px;
}

.bottom-price {
    margin-bottom: 24px;
}

.product-list__card__button {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-list__card__button p {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
}


@media screen and (min-width: 1024px) {
    .product-card-image {
        display: block !important;
    }

    .product-card-image-mobile {
        display: none !important;
    }
    .product-list__top, .product-list__bot {
        flex-direction: row;
    }
    .product-list__top a:nth-child(odd) {
        width: 30%;
    }
    .product-list__top a:nth-child(even) {
        width: 40%;
    }

    .product-list__bot a {
        width: 50%;
    }

}
