:root {
    --focus-background: #FFFFFF;
    --primary-background: #E6E7E8;
    --secondary-background: #D0D3D5;

    --primary-white: #E6E7E8;
    --focus-white: #FFFFFF;

    --primary-black: #0A1B26;
    --focus-black: #000000;

    --primary-accent: #0B577A;
    --secondary-accent: #427994;

    --gray: #4D4D56;

    --success: #41F3AE;
    --warning: #AE3133;

    --s-border: 6px;
    --default-border: 4px;
    --l-border: 24px;
    --max-border: 100px;
}

body {
    background-color: var(--primary-background);
    font-family: 'Roboto', sans-serif;
}

.page-wrapper.default {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.container.default {
    width: 100%;
    min-width: 812px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1920px) {
    .container.default {
        min-width: 1024px;
        max-width: 50%;
    }
}

@media screen and (min-width: 1440px) {
    .container.default {
        min-width: 1024px;
        max-width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .container.default {
        min-width: 728px;
        max-width: 90%;
    }
}

@media screen and (max-width: 767px) {
    .container.default {
        min-width: auto;
        max-width: 100%;
    }
}

@media screen and (max-width: 478px) {
    .container.default {
        max-width: 100%
    }
}

.section.default {
    background-color: var(--focus-background);
    padding: 24px;
    border-radius: var(--default-border);
}

.seperator.default {
    height: 1px;
    background-color: var(--gray);
    width: 75%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.h1.showcase {
    font-weight: 900;
    margin-bottom: 6px;
    font-size: 56px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .h1.showcase {
        font-size: 48px;
    }
}

.tb.xl {
    font-size: 28px;
}

.tb.l {
    font-size: 24px;
}

.tb.m {
    font-size: 18px;
}

.tb {
    font-size: 16px;
}

.tb.xl.center {
    font-size: 28px;
    text-align: center;
}

.tb.l.center {
    font-size: 24px;
    text-align: center;
}

.tb.m.center {
    font-size: 18px;
    text-align: center;
}

.tb.center {
    font-size: 16px;
    text-align: center;
}

.button {
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    min-width: 120px;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .button {
        font-size: 14px !important;
        min-width: 30px !important;
        padding: 8px 15px !important;
        line-height: 1 !important;
    }
}

.span.accent {
    color: var(--primary-accent);
}