/* ====================== GLOBAL STYLES ====================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'UTM Bebas';
    src: url('../font/Bebas/UTM-Bebas.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope/Manrope-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Manrope', sans-serif !important;
    background: #0f172a;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
blockquote {
    /* text-transform: capitalize; */
    font-family: 'UTM Bebas', sans-serif !important;
    text-transform: uppercase;
    font-weight: 500 !important;
}

.title-big,
.title-slogan {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
}

@media (max-width: 768px) {
    .title-big {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
    }
    .title-slogan {
        font-size: 32px;
        font-weight: 500;
        line-height: 30px;
    }
}

.title-small {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

@media (max-width: 768px) {
    .title-small {
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
    }
}

.title-sub {
    font-size: 20px;
    font-weight: 600;
    line-height: 32.5px;
    border-left: 4px solid #16B364;
    padding-left: 20px;
}

.title-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.textt-justify {
    text-align: justify !important;
}