:root {
    --base-100: #F7F7F5;
}
body,
html {
    min-height: 100dvh;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
}
body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--base-100);

    background-color: #0A0C14;
    background-image: url(/static/images/76c342b0b37a203cfe984a5610ff1ed781e986fd.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;

    padding-inline: 2rem;
}
@media (max-width: 767.98px) {
    body {
        padding-inline: 1rem;
    }
}
.container {
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
}
.w-50 {
    width: 50%;
}
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
    color: var(--base-100);
}
.logo > .service {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}
.btn {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    letter-spacing: 0.88px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--base-100);
    text-decoration: none;
    padding: 0.375rem 0.5rem;
}
.btn:is(:hover, :focus-visible) {
    color: #00C1FF;
}

.header {
    flex: none;
    display: flex;
}
.header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 1rem;
}
.header .container .right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.25rem;
}
.header .container .right .divider {
    padding-block: 0.25rem;
}
.header .container .right .divider::after {
    content: "";
    display: flex;
    background-color: var(--base-100);
    height: 100%;
    width: 1px;
}
.d-none {
    display: none !important;
}
.d-flex {
    display: flex !important;
}
@media (min-width: 768px) {
    .d-md-flex {
        display: flex !important;
    }
    .d-md-none {
        display: none !important;
    }
}


h2,
h3,
h4 {
    margin: 0;
}
.main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main > .container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
@media (max-width: 767.98px) {
    .main > .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .main > .container > .w-50 {
        width: 100%;
    }
}
.main > .container > .main-left {
    display: flex;
    align-items: center;
}
.main > .container > .main-left > .display {
    font-weight: 700;
    font-size: 6rem;
    line-height: 1;
}
.main > .container > .main-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.main > .container > .main-right > h3 {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.25rem;
}
.main > .container > .main-right > h4 {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.footer {
    flex: none;
    display: flex;
}
.footer > .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    gap: 1.5rem;
}
.footer > .container > .links {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
.footer > .container > .powered-by {
    font-size: 0.6875rem;
    line-height: 1rem;
}
.footer > .container > .powered-by > .powered-by-link {
    color: var(--base-100);
    text-decoration: none;
    font-size: 0.6875rem;
    line-height: 1rem;
}
.footer > .container > .powered-by > .powered-by-link:is(:hover, :focus-visible) {
    color: #00C1FF;
}
@media (max-width: 767.98px) {
    .footer > .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0;
    }
    .footer > .container > .links {
        flex-direction: column;
    }
    .footer > .container > .powered-by {
        padding-left: 0.5rem;
    }
}
