.content-start {
    justify-content: flex-start !important;
}

.content-sa {
    justify-content: space-around !important;
}

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

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

.d-flex {
    display: flex;

}

.horizontal-center {
    display: flex;
    justify-content: center;
}

.horizontal-start {
    justify-content: start !important;
}


.horizontal-end {
    justify-content: flex-end;
}

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

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

.items-end {
    display: flex;
    align-items: flex-end;
}

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

.row {
    display: flex;
    flex-direction: row;
}

.row-sb {
    justify-content: space-between;
}

.col {
    display: flex;
    flex-direction: column;
}

.row-mobile,
.row-tablet,
.row-stable {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .row-mobile {
        display: flex;
        flex-direction: column;
    }
}



@media (max-width: 1200px) {
    .row-tablet {
        flex-direction: column;
    }
}