.wrapper { 
    background: transparent url(../img/store.jpg) no-repeat center/cover; 
}
.main__footer {
    background: none
}
.store__container {
    display: flex; 
    justify-content: space-between;
    padding-top: 250px;
    flex-wrap: wrap;
}
.store__box {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 33px 0 25px;
    margin-bottom: 36px;
}
.store__media {
    width: 100%;
    height: 0;
    padding-bottom: 62%;
    position: relative;
    margin-bottom: 14px;
}
.store__media_img {
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%)
}
.store__media_img--lingettes {
    height: 74%;
    top: 13%;
}
.store__content {
    padding: 0 10%;
    text-align: center;
}
.store__product_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    min-height: 78px;
}
.store__product_description {
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.03em;
    color: #969696;
    margin-bottom: 26px;
    min-height: 48px;
}
.store__product_cta {
    width: 100%;
    display: inline-block;
    padding: 12px 18px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.store__product__logo {
    stroke: #fff;
    margin-right: 16px;
    position: relative;
    top: -1px;
}
.store__product_cta:hover {
    background: #fff
}
.store__product_cta:hover .store__product__logo {
    stroke: var(--color-blue);
}
.store__product_cta:hover .store__product_btn_txt {
    color: var(--color-blue)
}
.store__product_cta,
.store__product__logo,
.store__product_btn_txt {
    transition: all 250ms ease-in-out
}
.store__product_btn_txt {
    text-transform: none
}

.store__product_description br { display: none }

@media (min-width: 680px) {
    .store__box {
        width: 49.2%;
    }
}
@media (min-width: 1024px) {
    .store__box {
        width: 32.8%;
    }
}
@media (min-width: 1340px) {
    .store__box {
        width: 23.8%;
    }
    .store__product_description br {
        display: inline-block;
    }
}