:root {
    --focus-background: #FFFFFF;
    --primary-background: #f2f2f7;
    --secondary-background: #e5e5ea;

    --focus-white: #FFFFFF;
    --primary-white: #f2f2f7;
    --secondary-white: #e5e5ea;
    --quarternary-white: #D1D1D6;

    --focus-black: #000000;
    --primary-black: #3c3c3e;
    --secondary-black: #636366;

    --primary-brand: #808080;
    --secondary-brand: #5E5E5F;

    --primary-accent: #3cc1ff;
    --secondary-accent: #ff90e8;

    --primary-separator: #808080;

    --success: #41E1A3;
    --warning: #FF1A61;

    --s-border: 6px;
    --default-border: 12px;
    --l-border: 24px;
    --max-border: 100px;
}

body {
    background-color: var(--secondary-background);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.container {
    width: 100%;
    min-width: 812px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1920px) {
    .container {
        min-width: 1024px;
        max-width: 50%;
    }
}

@media screen and (min-width: 1440px) {
    .container {
        min-width: 1024px;
        max-width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .container {
        min-width: 728px;
        max-width: 90%;
    }
}

@media screen and (max-width: 767px) {
    .container {
        min-width: auto;
        max-width: 100%;
    }
}

@media screen and (max-width: 478px) {
    .container {
        max-width: 100%
    }
}

.section {
    background-color: var(--primary-background);
    padding: 24px;
    border-radius: var(--default-border);
}

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: 12px 32px;
    border-radius: 25px;
    font-size: 17px;
    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: 7px 15px !important;
        line-height: 1.43 !important;
    }
}