/* OFFERS */

.offers-listing-wrapper {
    width: 100%;
}

.offers-listing-wrapper h2 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.offers-listing {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    flex-wrap: wrap;
}

.offers-listing .offer {
    padding: 1%;
    width: 33.333333%;
    float: left;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
}

a.offer-box {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.offer-box span {
    display: inline-block;
    margin-right: 5px;
    font-size: 1em;
    float: none;
}

.offer-text {
    background: rgba(255,255,255,0.85);
    bottom: 0;
    position: absolute;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #4e4e4e;
    word-break: break-word;
}

.offers-listing-wrapper h3, .offer-discount {
    font-size: 1.3em;
}

.offer img {
    width: 100%;
    display: block;
}

@media (max-width: 1023px) {
    .offers-listing .offer {
        width: 100%;
    }
}