.d-flex {
    display: flex;
}

.j-center {
    justify-content: center;
}

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

.j-around {
    justify-content: space-around;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

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

.align-start {
    align-items: start;
}

.m-auto {
    margin: auto;
}

.space-15 {
    margin-bottom: 15px;
}

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