

.flex-box {
    display: flex;
}

.flex-h-center {
    justify-content: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}


.box {
    padding: 20px;
    box-sizing: border-box;
}

.box-small {
    padding: 10px;
    box-sizing: border-box;
}

.box-v-small {
    padding: 10px 0;
    box-sizing: border-box;
}

.is-bold {
    font-weight: bold;
}

.ghost {
    opacity: 0.5;
}

.bg-fix {
    background-size: cover;
    background-position: center;
}

.text-center {
    text-align: center;
}










.offer {
    border-radius: 20px;
    background: white;
    overflow: hidden;
    max-width: 300px;
}

.offer-image {
    height: 200px;
}

@media (max-width: 500px) {
    .offer {
        min-width: 300px;
        max-width: 100%;
    }
}