.h1 {
    font-size: 36px;
    line-height: 52px;
    font-weight: 600;
}

.m-left {
    margin-right: auto;
}
.m-center {
    margin: 0 auto;
}
.m-right {
    margin-left: auto;
}

.font-sm-bold {
    font-weight: 700;
}
.font-regular {
    font-weight: 400;
}
.font-light {
    font-weight: 300;
}

.font-bold-24_32 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

.font-16px {
    font-size: 16px !important;
}
.font-18px {
    font-size: 18px !important;
}
.font-reg-16_24 {
    font-size: 16px !important;
    line-height: 24px;
    font-weight: 400;
}
.font-med-16_24 {
    font-size: 16px !important;
    line-height: 24px;
    font-weight: 500;
}
.font-light-14_32 {
    font-size: 14px;
    line-height: 32px;
    font-weight: 300;
}
.font-light-14_16 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
}

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

/* colors */
.white {
    color: var(--white-color);
}
.black {
    color: var(--text-color);
}

.bg-main-layout {
    background-color: var(--main-bg-color);
}
.bg-black-layout {
    background-color: var(--black-bg-color);
}

/* margin & padding */
.ml-auto {
    margin-left: auto;
}

.mb-4 {
    margin-bottom: 4px;
}
.mb-8 {
    margin-bottom: 8px;
}
.mb-12 {
    margin-bottom: 12px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-24 {
    margin-bottom: 24px;
}

.w-280 { width: 280px; }