html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

main {
    background: #ececec;
    min-height: 100vh;
}

.big-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    position: relative;
}

.wrapper p {
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 30px;
}

strong {
    font-weight: bold;
}

body {
    font-family: 'Poppins', sans-serif;
}

.page-landing {
    z-index: 1;
    position: relative;
    top: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    justify-content: space-between;
    height: auto;
    min-height: 100vh;
    width: 100%;
}

.page-landing .page__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 10px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.page-landing .page__footer .footer__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
}

.page-landing .page__footer p {
    margin-bottom: 10px;
}

.page-landing .page__footer ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

.page-landing .page__footer li:not(:last-child) {
    margin-right: 20px;
}

.page-landing .page__footer a {
    color: #fff;
    opacity: 0.66;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.page-landing .page__footer a:hover {
    opacity: 1;
}

.section-page-landing {
    background-color: #131025;
}

.section-page-landing .section__wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100vh;
    padding: 20px;
}

.section-page-landing .section__header {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding-bottom: 30px;
}

.section-page-landing .section__header::after {
    content: "";
    display: inline-block;
    height: 1px;
    width: 250px;
    margin-top: 50px;
    background-color: #fff;
    animation: 0.6s ease .9s forwards revealAfter;
    transform: scale(0, 1);
}

.section-page-landing .section__main {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.section-page-landing .section__title {
    width: 660px;
    max-width: 90vw;
    margin-bottom: 25px;
    text-align: center;
}

.section-page-landing .section__title svg {
    width: 500px;
    max-width: 60%;
}

.section-page-landing .section__subtitle {
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    animation: 0.9s ease .3s forwards revealTop;
    opacity: 0;
}

.section-page-landing .section__desc {
    width: 100%;
    max-width: 500px;
    color: #fff;
    font-size: 1.05rem;
    text-align: center;
    animation: 0.6s ease 1.5s forwards revealTop;
    opacity: 0;
}

@keyframes revealAfter {
    0% {
        transform: scale(0, 1);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes revealTop {
    0% {
        transform: translate(0, -10px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}
