.full-height {
    height: 100%;
}

.full-width {
    width: 100%;
}

.size-xxl {
    font-size: 5rem;
}

.align-items-center {
    align-items: center;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.flex-vertical {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-vertical-spaces {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-vertical-spaces {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.centered {
    display: grid;
    place-content: center;
}

.txt-small {
    font-size: 0.75rem;
}

.white {
    color: white;
}

.gap-24 {
    row-gap: 24px;
    column-gap: 24px;
    flex-wrap: wrap;
}

.full-width-mobile {
    width: auto;
}

@media (max-width: 768px) {
    .only-desktop {
        display: none;
    }

    .full-width-mobile {
        width: 100%;
    }
}