/*=============================
 #  Offers
 -------------------------------*/
.offers-section {
    margin-top: 50px;
}
.offers-title {
    padding-bottom: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.offers {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    border: 0px;
    padding:0px;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
}
.offers .offers-col a {
    text-decoration: none;
}
.offers-col {
    width: 100%;
    margin-bottom: 15px;
}
.offer__image-link img {
    display: block;
    height: auto;
    max-width: 100%;
}
@media (min-width: 600px) {
    .offers {
        /* 		   margin: 0 -10px; */
    }
    .offers-col {
        display: flex;
        flex-direction: column;
        flex: 1 1 50%;

        max-width: calc(50% - 5px);
        /* 	      margin: 0 5px; */
    }
}
@media (min-width: 600px) {
    .offers-col:nth-child(odd) {
        padding-right: 5px;
    }
    .offers-col:nth-child(even) {
        padding-left: 5px;
    }
    .offer__image-link img {

    }
}
.offer {
    box-shadow: 0 1px 4px rgba(26, 26, 26, 0.2);
    font-size: 13px;
    transition: all 350ms ease-in-out;
}
.offer:hover {
    box-shadow: 0 2px 6px rgba(26, 26, 26, 0.2);
}
.offer__image-link {
    display: block;
}

.offer__content {
    padding: 15px;
}
.offer__title, .offer__location, .offer__description, .offer__discount {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.3;
}
.offer__title-link {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}
.offer__location {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.offer__location:before {
    content: "";
    width: 10px;
    height: 13px;
    display: inline-block;
    background-image: url('location.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 6px;
    vertical-align: middle;
}
.offer__description {
    margin-bottom: 8px;
}
.offer__discount {
    margin-right: 10px;
}
.offer__discount-num {
    font-size: 16px;
    font-weight: 600;
}
.offer__button {
    position: relative;
    display: inline-block;
    padding: 0.9em 2em;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    line-height: 1.33;
    border-radius: 3px;
    cursor: pointer;
    background-color: #ff8c00;
}
.offer__button:hover {
    color: #fff;
    background-color: #db7901;
}