#offer {
    margin-top: 45px;
    background-color: #f5f5f5;
    padding: 70px 0 85px;
}

#offer .title {
    font-size: 3.5em;
    line-height: 1.0625em;
    margin-bottom: 12px;
}

#offer .title img {
    margin-left: 8px;
}

#offer .button {
    font-size: 1.25em;
    height: 39px;
    line-height: 39px;
    width: 281px;
    border-radius: 20px;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1141px;
    margin: 60px auto 0 auto;
    gap: 35px 0;
}

.offer {
    padding: 0 10px;
}

.offer h5 {
    font-size: 1.5em;
    line-height: 1.333;
    margin: 22px 0 0 0;
    text-transform: capitalize;
}

.offer img {
    height: auto;
}

@media screen and (max-width: 767px) {
    #offer {
        margin-top: 32px;
        padding: 27px 0 47px;
    }
    .offer-list {
        grid-template-columns: 1fr 1fr;
    }

    #offer .title {
        font-size: 2.3125em;
        margin-bottom: 36px;
    }
    
    #offer .title img {
        width: 174px;
    }

    #offer .button {
        margin-top: 36px;
        height: 40px;
        line-height: 40px;
        width: 288px;
    }
}

@media screen and (max-width: 567px) {

    #offer .title {
        flex-direction: column;
        align-items: center;
    }
    
    #offer .title img {
        margin-left: 0;
        margin-top: 5px;
    }

    .offer-list {
        gap: 50px 0;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .offer .image {
        flex-basis: 83px;
        flex-shrink: 0;
    }

    .offer {
        padding: 0;
        display: flex;
        align-items: center;
    }

    .offer img {
        min-height: unset;
        height: auto;
        max-width: 85px;
        margin-right: 23px;
    }

    .offer h5 {
        font-size: 1.5em;
        line-height: 1.333;
        padding: 0;
        text-align: left;
        margin: 0;
    }
}