@charset "utf-8";
.discounts-block {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
}
.discounts-block:first-child {
    flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
    .discounts-block:first-child {
        flex-wrap: nowrap;
    }
}
.discounts-block:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.discounts-block h2 {
    color: #37a51c;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    line-height: 50px;
}
.discounts-half-block {
    width: 100%;
    margin-bottom: 20px;
}
.discounts-half-block:nth-child(odd) {
    float: none;
    margin-right: 0;
}
.discounts-half-block:nth-child(even) {
    float: none;
    min-height: 250px;
}
@media screen and (min-width: 768px) {
    .discounts-half-block {
        width: 48.5%;
    }
    .discounts-half-block:nth-child(odd) {
        float: left;
        margin-right: 3%;
    }
    .discounts-half-block:nth-child(even) {
        float: right;
    }
}
.discounts-list {
    width: 100%;
}
.discount-item {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    transition: 0.2s;
    text-shadow: 1px 1px 2px #000000;
}
.discount-item:hover {
    transform: scale(1.03);
    -webkit-box-shadow: 5px 5px 10px #333333;
    -moz-box-shadow: 5px 5px 10px #333333;
    box-shadow: 5px 5px 10px #333333;
}
@media screen and (min-width: 768px) {
    .discount-item {
        width: 48.5%;
        margin-right: 3%;
    }
    .discount-item:nth-child(2n) {
        margin-right: 0;
    }
}
@media screen and (min-width: 1200px) {
    .discount-item {
        width: 32%;
        margin-right: 2%;
    }
    .discount-item:nth-child(2n) {
        margin-right: 2%;
    }
    .discount-item:nth-child(3n) {
        margin-right: 0;
    }
}
.discount-card {
    width: 100%;
    height: auto;
    border-radius: inherit;
}
.discount-item h3,
.discount-item .discount-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}
.discount-item h3 {
    height: 30%;
    color: #ffffff;
    padding-top: 10%;
    font-weight: 500;
}
.discount-item .discount-description {
    top: 60%;
    transform: translateY(-50%);
    color: #ffffff;
    padding: 0 5px;
}
@media screen and (max-width: 479px) {
    .discount-item .discount-description p {
        font-size: 0.8em;
    }
}
.discount-item .discount-description span {
    font-size: 1.5em;
    font-weight: 600;
    color: #37a51c;
}