.offer--mainWrapper {
    width: 100%;
    padding: 100px 25px;
    display: flex;
    justify-content: center;
}

.offer--mainContent {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: var(--max-width);
}

.offer--mainContent--card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 5px 5px 20px black;
    max-width: 230px;
    text-align: center;
}
.offer--mainContent--card__img {
    width: 100%;
    height: auto;
}

.offer--mainContent--card__title {
    font-weight: bold;
}

.offer--mainContent--card__desc {
    font-size: 0.8em;
    padding: 5px 0;
}

.offer--mainContent--card__price {
    font-weight: bold;
}

@media (max-width: 534px) {
    .offer--mainContent--card {
        max-width: 45%;
    }

    .offer--mainContent--card__title {
        font-weight: bold;
        font-size: 0.9em;
    }

    .offer--mainContent--card__desc {
        font-size: 0.7em;
    }
}
