div.comp-offers_wrapper {
    background: linear-gradient(100deg, #65CC71 0%, #3BAB48 100%);
}

div.offer_description h2 {
    margin: 0px;
}

div.comp-offers_wrapper-offers {
    margin-left: auto;
    margin-right: auto;
    width: 1100px;
    text-align: center;
    overflow:auto
}

div.comp-offers_wrapper-offer {
    height: 200px;
    margin: 30px 0px;
    background-color: white;
    display: flex;
}

div.offer_image {
    width: 30%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

div.offer_description {
    width: 70%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


div.offer_description * {
    margin: 5px 0px
}

p.offer_description-address {
    color: black;
}

.comp-offers_title {
    padding-top: 20px;
    font-size: 20px;
    font-weight: 800;
    color: black;
}

div.comp-offers_offer-infos {
    display: flex;
}

div.comp-offers_offer-info {
    width: 100%;
}

div.comp-offers_offer-info-text p {
    color: black;
    font-size: 17px;
}


@media(max-width: 1300px)
{
    div.comp-offers_wrapper-offers {
        margin: 0px;
        width: 100%;
        padding: 0px 80px
    }
}

@media(max-width: 900px)
{
    div.comp-offers_wrapper-offer {
        flex-direction: column;
        height: auto;
    }

    div.offer_image, div.offer_description {
        width: 100%;
    }
}
@media(max-width: 500px)
{
    div.comp-offers_wrapper-offers {
        padding: 0px 20px
    }
}