/* Bootstrap Analogs*/
.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-around {
    justify-content: space-around;
}
.justify-content-start {
    justify-content: flex-start;
}
.align-items-center {
    align-items: center;
}
.align-items-start {
    align-items: start;
}
.w-100 {
    width: 100%;
}
/* Bootstrap Analog END*/

/* Gaps */
.gap-6 {
    gap: 6px;
}
.gap-10 {
    gap: 10px;
}
.gap-12 {
    gap: 12px;
}
.gap-16 {
    gap: 16px;
}
.gap-20 {
    gap: 20px;
}
.col-gap-20 {
    column-gap: 20px;
}
.gap-26 {
    gap: 26px;
}
.gap-30 {
    gap: 30px;
}
.gap-40 {
    gap: 40px;
}

.gap-80 {
    gap: 80px;
}

/* Font Sizes */
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-19 {
    font-size: 19px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-27 {
    font-size: 27px;
}
.fs-28 {
    font-size: 28px;
}
.fs-30 {
    font-size: 30px;
}
.fs-31 {
    font-size: 31px;
}
.fs-34 {
    font-size: 34px;
}
.fs-38 {
    font-size: 38px;
}
.fs-40 {
    font-size: 40px;
}
.fs-42 {
    font-size: 42px;
}
.fs-58 {
    font-size: 58px;
}
.fs-180 {
    font-size: 180px;
}
.fs-200 {
    font-size: 200px;
}

/* Font Weights */
.fw-300 {
    font-weight: 300;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}

/* Line-height */
.lh-15 {
    line-height: 15px;
}
.lh-16 {
    line-height: 16px;
}
.lh-18 {
    line-height: 18px;
}
.lh-19 {
    line-height: 19px;
}
.lh-20 {
    line-height: 20px;
}
.lh-22 {
    line-height: 22px;
}
.lh-23 {
    line-height: 23px;
}
.lh-24 {
    line-height: 24px;
}
.lh-25 {
    line-height: 25px;
}
.lh-26 {
    line-height: 26px;
}
.lh-28 {
    line-height: 28px;
}
.lh-31 {
    line-height: 31px;
}
.lh-32 {
    line-height: 32px;
}
.lh-34 {
    line-height: 34px;
}
.lh-37 {
    line-height: 37px;
}
.lh-40 {
    line-height: 40px;
}
.lh-41 {
    line-height: 41px;
}
.lh-60 {
    line-height: 60px;
}
.lh-62 {
    line-height: 62px;
}
.lh-200 {
    line-height: 200px;
}

/* Text Transform */
.tt-uppercase {
    text-transform: uppercase;
}
.tt-lowercase {
    text-transform: lowercase;
}
.tt-capitalize {
    text-transform: capitalize;
}
.tt-underline {
    text-decoration: underline;
}

/* Images */
.bg-cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.img {
    position: relative;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.section-number-gradient {
    background: linear-gradient(
        0turn,
        rgba(0, 0, 0, 0.75) 28%,
        rgba(115, 115, 115, 1) 64%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.active-color {
    color: var(--active-color);
}

/* .no-tap-flash {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.touch-manipulation {
    touch-action: manipulation;
}
.no-highlight {
    -webkit-tap-highlight-color: transparent;
}
.no-select {
    user-select: none;
    -webkit-user-select: none;
} */
