/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

:root {
    --white: #FFFFFF;
    --soft-grey: #F9F9FD;
    --dark-grey: #B8C1CC;
    --pink: #F72585;
    --purple: #7209B7;
    --light-blue: #4CC9F0;
    --dark-blue: #3A0CA3;
    --medium-blue: #4361EE;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
}

::-moz-selection {
    background-color: var(--light-blue);
    color: var(--white);
}

::selection {
    background-color: var(--light-blue);
    color: var(--white);
}

img {
    display: inline-block;
    max-width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

h1, h2, h6, .button-label {
    font-family: 'Chakra Petch', sans-serif;
}

h3, h4, h5, p, a, li {
    font-family: 'Montserrat', sans-serif;
}

h5 {
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    color: var(--white);
}

h2 {
    font-size: 60px;
    line-height: 70px;
    padding-bottom: 24px;
    color: var(--pink);
}

h3 {
    font-size: 28px;
    line-height: 40px;
    font-weight: 800;
    color: var(--dark-blue);
    padding-bottom: 14px;
}

.title-style {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, rgba(255, 255, 255, 0)), color-stop(65%, var(--light-blue)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 65%, var(--light-blue) 65%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, var(--light-blue) 65%);
}

p, a, li {
    font-size: 18px;
    line-height: 32px;
    color: var(--dark-blue);
}

p {
    padding-bottom: 18px;
}

ul li {
    list-style-type: disc;
}

ol {
    padding: 0 0 30px 40px;
}

ul {
    padding-left: 24px;
}

a {
    font-weight: 600;
    color: var(--pink);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

strong {
    font-weight: bold;
    color: var(--light-blue);
}

.no-underline {
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
}

.color-white {
    color: var(--white);
}

.bg-sfot-grey {
    background-color: var(--soft-grey);
}

.bg-pink {
    background-color: var(--pink);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-lightblue {
    background-color: var(--light-blue);
}

.content-width, .navbar {
    width: 1640px;
    max-width: 90%;
    margin: auto;
}

.content-width {
    padding: 80px 138px;
}

/* NAVBAR */

.nav-top, .nav-drill {
    display: none;
}

.logo {
    max-width: 80px;
}

.navbar, .nav-menu ul, .hero-content, .flex-items, .cards-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    padding-top: 18px;
}

.nav-menu ul li {
    margin-left: 60px;
    list-style-type: none;
}

.nav-menu ul li a, .nav-drill .nav-items li a {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.nav-menu ul li a:hover {
    color: var(--pink);
}

#menu-selected, #mobile-menu-selected {
    color: var(--pink);
    position: relative;
}

#menu-selected::after {
    content: url(img/hexagon.svg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* HERO SECTION */

.hero-content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.intro {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    padding: 34px 0 120px;
}

.intro h1 {
    padding-bottom: 20px;
}

.intro h1 img {
    max-width: 530px;
}

.hero-image {
    max-width: 398px;
    position: absolute;
    right: 138px;
}

.section-1 {
    background-image: -webkit-linear-gradient(var(--dark-blue), var(--purple));
    background-repeat: no-repeat;
}

/* DISCOVER MORE BUTTON */

.discover-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
}

.discover-label h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    -webkit-animation: bounce 1.5s ease infinite;
    animation: bounce 1.5s ease infinite;
}

.discover-button button {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--light-blue)), to(var(--medium-blue)));
    background: -o-linear-gradient(var(--light-blue), var(--medium-blue));
    background: linear-gradient(var(--light-blue), var(--medium-blue));
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 30px;
    padding-top: 2px;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    28% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    32% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    40% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    28% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    32% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    40% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* SCROLL TOP BUTTON */

.scroll-top {
    position: fixed;
    display: none;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    opacity: 0;
    right: 40px;
    bottom: 40px;
    z-index: 2000;
}

.scroll-top button {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--light-blue)), to(var(--medium-blue)));
    background: -o-linear-gradient(var(--light-blue), var(--medium-blue));
    background: linear-gradient(var(--light-blue), var(--medium-blue));
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 30px;
    padding-top: 2px;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

/* SECTION 2 */

.flex-items {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-2 {
    padding: 40px 0;
}

.section-2-content, .section-4-content {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    padding-left: 72px;
}

.section-2-img, .section-4-img {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 478px;
}

.call-to-action {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--light-blue)), to(var(--medium-blue)));
    background: -o-linear-gradient(var(--light-blue), var(--medium-blue));
    background: linear-gradient(var(--light-blue), var(--medium-blue));
    width: 260px;
    height: 60px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.button-label {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.button-label::after {
    content: url(img/arrow-right.svg);
    padding: 0 0 0 12px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.call-to-action:hover .button-label::after {
    padding: 0 0 0 28px;
}

.section-2-content p:last-of-type {
    padding-bottom: 40px;
}

/* SECTION 3 */

.section-3 {
    background-color: var(--soft-grey);
}

.section-3 .card {
    border-radius: 24px;
    margin: 0 16px 16px 0;
}

.section-3 h2 {
    padding-bottom: 40px;
}

.highlights-cards {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.highlights-cards .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 28px;
}

.card img {
    margin: 12px auto 28px;
    max-width: 120px;
    max-height: 120px;
}

.card h4 {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--white);
}

.card h6 {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    color: var(--white);
}

.infos-cards .card p {
    line-height: 30px;
    text-align: center;
}

.infos-cards {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.infos-cards .card {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--white);
    padding: 52px 52px 34px;
}

.column-2 .card {
    margin-right: 0;
}

.section-3 .spider-illustration {
    position: relative;
}

.section-3 .spider-illustration img {
    position: absolute;
    max-width: 150px;
    right: 0;
    top: -86px;
}

/* SECTION 4 */

.section-4 {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--purple)), to(var(--dark-blue)));
    background: -o-linear-gradient(var(--purple), var(--dark-blue));
    background: linear-gradient(var(--purple), var(--dark-blue));
}

.section-4-img {
    max-width: 440px;
}

/* SECTION 5 */

.section-5 .more-info-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.section-5 .more-info-cards .card {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    background-color: var(--soft-grey);
    padding: 52px;
    border-radius: 24px;
}

.section-5 .more-info-cards .pos-info-card {
    z-index: 1000;
}

.section-5 .more-info-cards .coin-between-cards {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    position: relative;
    z-index: 900;
}

.section-5 .more-info-cards .coin-between-cards .img-absolute {
    width: 140%;
    top: -28px;
    right: -48px;
    position: absolute;
}

.section-5 h2 {
    padding-bottom: 40px;
}

.section-5 .more-info-cards h3 {
    text-align: center;
}

.section-5 .more-info-cards .card img {
    margin: 0;
}

.section-5 .spider-illustration {
    position: relative;
}

.section-5 .spider-illustration img {
    position: absolute;
    right: 0;
    top: 24px;
    max-width: 140px;
}

/* DOWNLOAD SECTION */

.download-section {
    max-width: 1088px;
    margin: 80px auto 16px;
    padding: 52px;
    border-radius: 24px;
    background-color: var(--soft-grey);
}

.download-section h2 {
    font-size: 48px;
    text-align: center;
}

.download-section .download-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.download-section .download-buttons a {
    padding-bottom: 16px;
}

.download-section .download-buttons .call-to-action {
    margin: 0 8px;
}

/* SOCIAL SECTION */

.social-contact-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 1088px;
    margin: 16px auto;
}

.social-contact-section .social-link, .social-contact-section .contact-mail {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    background-color: var(--soft-grey);
    padding: 40px;
    border-radius: 24px;
}

.social-contact-section h3 {
    text-align: center;
}

.social-contact-section .social-link {
    margin-right: 8px;
}

.social-contact-section .social-link .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 18px;
}

.social-contact-section .social-link .social-icons .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--pink)), to(var(--purple)));
    background: -o-linear-gradient(var(--pink), var(--purple));
    background: linear-gradient(var(--pink), var(--purple));
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin: 0 12px 16px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.social-contact-section .social-link .social-icons .icon img {
    max-width: 30px;
    max-height: 30px;
}

.social-contact-section .contact-mail {
    margin-left: 8px;
}

.social-contact-section .contact-mail .mail-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.spider-illustration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.spider-illustration img {
    position: absolute;
    top: -52px;
    max-width: 134px;
}

/* FOOTER */

.footer {
    background-color: var(--soft-grey);
    padding: 52px;
    margin-top: 120px;
}

.footer p, .footer a {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    padding-bottom: 0;
}

/* SUBPAGES */

.subpage-width {
    max-width: 1364px;
    margin: 0 auto;
    padding: 40px 0;
}

.back-home a {
    font-size: 18px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
}

.back-home {
    padding-bottom: 12px;
}

.back-home::before {
    content: url(img/arrow-left.svg);
    padding: 0 12px 0 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.back-home-button, .back-home-button h6 {
    display: inline-block;
}

.back-home-button:hover .back-home::before {
    padding: 0 24px 0 0;
}

.internal-footer {
    margin-top: 180px;
}

.subpage-content {
    margin-top: 40px;
}

.subpage-padding-bottom {
    padding-bottom: 80px;
}

.subpage-content .content-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.subpage-content .content-buttons .call-to-action {
    margin-right: 16px;
}

.news, .article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news-infos {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
}

.news-article {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    padding-top: 40px;
}

.news-article p, .privacy-article p {
    padding-bottom: 30px;
}

.news-date p, .privacy-date p {
    font-size: 14px;
    font-weight: 600;
    color: var(--medium-blue);
    padding-bottom: 12px;
}

.news-title h2, .privacy-title h2 {
    font-size: 48px;
    line-height: 58px;
    padding-bottom: 12px;
}

.news-image {
    max-width: 400px;
    margin: 80px auto 0;
}

.divider {
    display: block;
    width: 100%;
    height: .1px;
    background-color: var(--dark-grey);
    opacity: .4;
    margin: 50px 0 80px;
}

.privacy-article {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    margin-top: -20px;
}

.privacy-image {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
}

.article {
    margin-top: 42px;
}

.privacy-authors p, .news-authors p {
    font-size: 16px;
    line-height: 26px;
}

.privacy-infos {
    width: 60%;
}

@media (max-width: 1600px) {
    .hero-image {
        max-width: 300px;
        top: 56px;
    }

    h5 {
        font-size: 20px;
        line-height: 32px;
    }

    .intro h1 {
        padding-bottom: 8px;
    }

    .intro h1 img {
        max-width: 400px;
    }

    .intro {
        padding: 0 0 60px;
    }

    .card img {
        max-width: 100px;
        max-height: 100px;
    }

    .section-5 .more-info-cards .coin-between-cards .img-absolute {
        width: 150%;
        top: -4px;
        right: -52px;
    }
}

@media (max-width: 1500px) {
    .content-width {
        padding: 60px 80px;
        max-width: 100%;
    }

    .nav-menu ul li {
        margin-left: 40px;
    }

    .navbar {
        padding: 18px 80px;
        max-width: 100%;
    }

    .nav-menu ul li a {
        font-size: 18px;
    }

    .hero-image {
        right: 80px;
        top: 22px;
    }

    h2 {
        font-size: 48px;
        line-height: 58px;
    }

    .section-5 .more-info-cards .coin-between-cards .img-absolute {
        top: -24px;
    }

    .subpage-width {
        margin: 0 80px;
    }

    .internal-footer {
        margin-top: 100px;
    }
}

@media (max-width: 1200px) {
    .logo {
        max-width: 60px;
    }

    .nav-menu ul li a {
        font-size: 16px;
    }

    .nav-menu ul li {
        margin-left: 32px;
    }

    .infos-cards .card {
        padding: 24px 24px 20px;
    }

    h3 {
        font-size: 24px;
        line-height: 34px;
    }

    p {
        line-height: 30px;
    }

    .card h4 {
        font-size: 24px;
    }

    .card h6 {
        font-size: 14px;
    }

    .infos-cards .card p {
        line-height: 28px;
    }

    .highlights-cards .card {
        padding: 20px;
    }

    .download-section {
        margin: 80px 80px 16px;
    }

    .social-contact-section {
        margin: 16px 80px;
    }

    .highlights-cards {
        -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
    }

    .section-5 .more-info-cards .card {
        padding: 40px;
    }

    .section-5 .more-info-cards .coin-between-cards .img-absolute {
        top: -4px;
    }

    .social-contact-section .social-link .social-icons .icon {
        width: 50px;
        height: 50px;
        margin: 0 8px 16px;
    }

    .internal-footer {
        margin-top: 100px;
    }
}

@media (max-width: 1024px) {
    .fixed-position {
        overflow-y: hidden;
    }

    #ham {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    #ham span {
        display: inline-block;
        width: 28px;
        height: 4px;
        margin: 2px 0;
        border-radius: 2px;
        background-color: var(--white);
    }

    #ham span:nth-child(2) {
        width: 20px;
    }

    .logo-mobile {
        width: 48px;
    }

    .navbar {
        display: none;
    }

    .nav-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: relative;
        z-index: 101;
        padding: 20px 40px;
        width: 100%;
    }

    .nav-drill ul {
        padding: 20px 0 0;
    }

    .nav-drill .nav-items li {
        list-style-type: none;
        text-align: right;
    }

    .nav-is-toggled .nav-drill {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .nav-is-toggled .nav-top {
        background-color: var(--dark-blue);
    }

    .nav-is-toggled::after {
        opacity: 1;
        visibility: visible;
    }

    .nav-drill {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        z-index: 100;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        background: -webkit-linear-gradient(var(--dark-blue) 50%, var(--purple));
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.45s;
        -o-transition: 0.45s;
        transition: 0.45s;
    }

    .nav-items {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .nav-drill .nav-items li a {
        line-height: 32px;
    }

    .nav-link {
        display: block;
        padding: 12px 40px;
        color: #20b49c;
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 300;
    }

    .nav-expand-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        background-color: #daf9f4;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        visibility: hidden;
    }

    .nav-expand-content .nav-link {
        background-color: #daf9f4;
    }

    .nav-expand-content .nav-back-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #20b49c !important;
        color: #fff;
    }

    .nav-expand-content .nav-back-link::before {
        content: "chevron_left";
        margin-right: 0.5em;
        font-family: "Material Icons";
    }

    .nav-expand-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .nav-expand-link::after {
        content: "chevron_right";
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        font-family: "Material Icons";
    }

    .nav-expand.active>.nav-expand-content {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        visibility: visible;
    }

    .nav-expand .nav-expand-content {
        background-color: #daf9f4;
    }

    .nav-expand .nav-expand-content .nav-link {
        background-color: #daf9f4;
    }

    .nav-expand .nav-expand-content .nav-expand-content {
        background-color: #aff1e6;
    }

    .nav-expand .nav-expand-content .nav-expand-content .nav-link {
        background-color: #aff1e6;
    }

    .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content {
        background-color: #84e9d9;
    }

    .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
        background-color: #84e9d9;
    }

    .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content {
        background-color: #59e1cb;
    }

    .nav-expand .nav-expand-content .nav-expand-content .nav-expand-content .nav-expand-content .nav-link {
        background-color: #59e1cb;
    }

    #mobile-menu-selected::after {
        content: url(img/hexagon.svg);
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-left: 6px;
    }

    .intro h1 img {
        max-width: 300px;
    }

    .hero-image {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 200px;
        right: 40px;
    }

    h2 {
        font-size: 40px;
        line-height: 48px;
    }

    h3 {
        font-size: 22px;
        line-height: 30px;
    }

    h5 {
        font-size: 18px;
        line-height: 28px;
    }

    p, a, li {
        font-size: 16px;
        line-height: 26px;
    }

    .back-home {
        padding-bottom: 6px;
    }

    .back-home a {
        font-size: 16px;
    }

    .content-width {
        padding: 40px;
    }

    .discover-more {
        bottom: -24px;
    }

    .discover-label h6 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .discover-button button {
        width: 48px;
        height: 48px;
    }

    .call-to-action {
        width: 200px;
        height: 48px;
    }

    .button-label {
        font-size: 16px;
    }

    .section-3 h2 {
        padding-bottom: 20px;
    }

    .card h4 {
        font-size: 18px;
    }

    .card h6 {
        font-size: 12px;
    }

    .card img {
        max-width: 80px;
        max-height: 80px;
        margin: 12px auto 20px;
    }

    .infos-cards .card p {
        line-height: 24px;
    }

    .section-3 .spider-illustration img {
        max-width: 100px;
        top: -44px;
    }

    .section-5 h2 {
        padding-bottom: 20px;
    }

    .section-5 .more-info-cards .card {
        padding: 24px;
    }

    .section-5 .spider-illustration img {
        max-width: 100px;
        top: 16px;
    }

    .download-section {
        margin: 80px 40px 16px;
        padding: 32px;
    }

    .download-section h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .social-contact-section {
        margin: 16px 40px;
    }

    .social-contact-section .social-link, .social-contact-section .contact-mail {
        padding: 32px;
    }

    .news {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .news-image, .privacy-image {
        display: none;
    }

    .news-article {
        padding-top: 0;
    }

    .news-title h2, .privacy-title h2 {
        font-size: 36px;
        line-height: 46px;
        text-align: left;
    }

    .subpage-title h2 {
        text-align: left;
        padding-bottom: 0;
    }

    .subpage-width {
        margin: 0 40px;
    }

    .divider {
        margin: 20px 0 40px;
    }

    .privacy-article {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .privacy-infos {
        width: 100%;
    }

}

@media (max-width: 768px) {
    h2 {
        text-align: center;
    }

    .discover-more {
        display: none;
    }

    .hero-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .scroll-top button {
        width: 48px;
        height: 48px;
    }

    .intro, .hero-image {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .intro {
        padding: 0 0 300px;
    }

    .hero-image {
        position: absolute;
        left: 0;
        right: 0;
        top: 330px;
        margin-left: auto;
        margin-right: auto;
        width: 220px;
    }

    .flex-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .section-2-content, .section-4-content {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        padding-left: 0;
    }

    .section-2-img {
        display: none;
    }

    .section-2-content .button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .cards-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .highlights-cards {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .highlights-cards .card {
        -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
        padding: 16px;
    }

    .highlights-cards .card:last-child {
        margin-right: 0;
    }

    .section-4-img {
        max-width: 260px;
    }

    .section-5 .more-info-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .section-5 .more-info-cards .card {
        margin-bottom: 60px;
    }

    .section-5 .more-info-cards .coin-between-cards .img-absolute {
        width: 200px;
        right: 24px;
        top: -144px;
    }

    .section-5 .spider-illustration img {
        top: -38px;
    }
}

@media (max-width: 680px) {
    .download-section {
        margin: 40px 40px 16px;
    }

    .social-contact-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .social-contact-section .social-link {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .social-contact-section .contact-mail {
        margin-left: 0;
    }

    .spider-illustration img {
        top: -40px;
        max-width: 100px;
    }
}

@media (max-width: 560px) {
    .highlights-cards, .infos-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .section-3 .card {
        margin: 0 0 16px;
    }

    .hero-image {
        top: 60%;
    }

    .section-5 .more-info-cards .coin-between-cards {
        display: none;
    }

    .section-5 .more-info-cards .card {
        margin-bottom: 16px;
    }

    .section-5 .spider-illustration img {
        max-width: 80px;
        top: 12px;
    }

    .section-3 .spider-illustration img {
        max-width: 80px;
    }

    .subpage-content .content-buttons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .subpage-content .content-buttons .call-to-action {
        margin-bottom: 16px;
    }
}

@media (max-width: 430px) {
    .subpage-content .content-buttons .call-to-action {
        margin-right: 0;
    }

    .intro h1 img {
        max-width: 260px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .discover-button button:hover {
        border-radius: 12px;
    }

    .scroll-top button:hover {
        border-radius: 12px;
    }

    .hover-link:hover {
        background-color: var(--pink);
        color: var(--white);
    }

    .social-contact-section .social-link .social-icons .icon:hover {
        border-radius: 8px;
    }

    .call-to-action:hover {
        border-radius: 8px;
    }
}