/* ------------------------------------------ */
/* ----------------- Header ----------------- */

header {
    width: 100%;
    font-size: 10px;
}

.topBar {
    display: flex;
    width: 100%;
    height: 8.2em;
    /*max-height: 80px;*/
    background-color: var(--clr-white);
    border-bottom: 1px solid var(--clr-light-green);
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.topBar .left {
    display: flex;
    height: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.topBar .left a {
    height: 100%;
}

.topBar .left .logo {
    width: 50em;
    height: 100%;
    background-image: url("/images/global/logo-header.svg?v=1.0");
    background-position-x: 0;
}

.topBar .left .logoEnd {
    margin-left: -1px;
    width: 9em;
    height: 100%;
    background-image: url("/images/global/header-logo-end.svg");
    background-position-x: 0;
}


/* ------- Media -------*/

@media only screen and (max-width: 1000px) {
    .topBar {
        height: 6.4em;
    }

    .topBar .left a {
        height: auto;
    }

    .topBar .left .menu {
        display: flex;
        width: 14em;
        height: 100%;
        background-color: var(--clr-blue);
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 2em;
    }

    .topBar .left .menu .hamMenu {
        width: 2.4em;
        height: 2.4em;
        background-image: url("/images/global/icon-hamMenu.svg");
    }

    .topBar .left .menu .logo {
        width: 4em;
        height: 4em;
        background-image: url("/images/global/logo-x-white.svg");
        background-position-x: center;
    }

}

@media only screen and (max-width: 500px) {
    .topBar {
        height: 6.4em;
    }

    .topBar .left .menu {
        height: 100%;
    }
}



/* -------------------------------------------- */
/* ----------------- Elements ----------------- */

.langContainer {
    margin: 0 2em;
    height: 0;
    width: max-content;
}

.lang {
    position: relative;
    display: flex;
    margin-top: -2.2em;
    padding: 1em;
    gap: 1em;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    height: 3.4em;
    background-color: var(--clr-white);
    overflow: hidden;
    z-index: 10;
}

.lang.open {
    height: max-content;
    border-radius: 0.4em;
    box-shadow: 0 0 5px rgba(0,0,0,.25);
}

.lang .row {
    display: flex;
    height: 2.4em;
    width: 100%;
    gap: 1em;
    align-items: center;
}

.lang .row.second {
    cursor: pointer;
}

.lang .icon {
    width: 2.4em;
    /*max-width: 30px;*/
    height: 2.4em;
    /*max-height: 30px;*/
    background-image: url("/images/global/icon-lang.svg");
}

.lang .row.second .icon {
    background: none;
}

.lang .name {
    font-size: 1.6em;
    line-height: 2.4em;
    font-weight: 600;
}

.lang .arrow {
    width: 1.4em;
    height: 1.4em;
    /*max-width: 18px;
    max-height: 18px;*/
    background-image: url("/images/global/icon-arrow-down-blue.svg");
}
.lang.open .arrow {
    background-image: url("/images/global/icon-arrow-up-blue.svg");
}

.lang .row.second .arrow {
    background: none;
}


.socialLinks {
    display: flex;
    gap: 1.8em;
}

.socialLinks .social img {
    height: 2.4em;
    width: 2.4em;
}



/* ----------------------------------------------- */
/* ----------------- Mobile Menu ----------------- */

.mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    padding-bottom: 4rem;
    width: 100vw;
    min-height: 100vh;
    max-height: 100%;
    background-color: var(--clr-white);
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1000;
}

.mobileMenu .topBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
}

.mobileMenu .topBar .hamMenuExit {
    width: 2.4em;
    height: 2.4em;
    background-image: url("/images/global/icon-cross-white.svg");
}

.mobileMenu .content {
    margin: 9.4rem auto 0 auto;
    width: 32.7rem;
}

.mobileMenu .content .section {
    margin-top: 4rem;
}

.mobileMenu .content h1 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
    line-height: 3.2rem;
    font-weight: 700;
}

.mobileMenu .content .item {
    display: flex;
    padding: 1.2rem 0.8rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.mobileMenu .content .item .name {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 600;
}

.mobileMenu .content .item .arrow {
    width: 1.2rem;
    height: 1.2rem;
    background-image: url("/images/global/icon-arrow-right.svg");
}

.mobileMenu .content .section.language,
.mobileMenu .content .section.socialLinks {
    display: flex;
    margin-top: 6rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}




/* ------- Media -------*/

@media only screen and (max-width: 1000px) {

}

@media only screen and (max-width: 500px) {

}



/* ----------------------------------------------- */
/* ----------------- Warning Bar ----------------- */
header .warning {
    display: flex;
    padding: 1.4rem 5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    background-color: orange;
}

header .warning .icon {
    height: 2.2rem;
    width: 2.2rem;
    background-image: url("/images/global/icon-warning.png");
}

header .warning .text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8rem;
    text-align: left;
}



/* ------- Media -------*/

@media only screen and (max-width: 1000px) {
    header .warning {
        padding: 1.4rem 5rem;
        gap: 2rem;
    }

    header .warning .icon {
        height: 4rem;
        width: 4rem;
    }
}

@media only screen and (max-width: 500px) {
    header .warning {
        padding: 1.4rem 3rem;
        gap: 3rem;
    }

    header .warning .icon {
        height: 5rem;
        width: 15rem;
    }

    header .warning .text {
        padding: 0;
    }
}


/* ------------------------------------------ */
/* ----------------- Footer ----------------- */

footer {
    font-size: 10px;
}

.footerInner {
    display: flex;
    margin: 0;
    padding: 3.2em 4em;
    color: var(--clr-white);
    background-color: var(--clr-blue);
    gap: 3.2em;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
}

.footerInner .category {
    display: flex;
    padding: 0 1.2em;
    width: 31.6em;
    gap: 0.8em;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: left;
}

.footerInner .category h3 {
    margin: 10px 0 14px 0;
    font-size: 2.4em;
    font-weight: 700;
    line-height: 24px;
}

.footerInner .category a {
    color: var(--clr-white);
    font-size: 1.4em;
    font-weight: 600;
    line-height: 2.1em;
    cursor: pointer;
}

.footerInner .category .apps {
    margin-top: 0em;
    display: flex;
    height: 6.2em;
    gap: 1.6em;
    flex-wrap: nowrap;
}

.footerInner .category .apps .download {
    height: 100%;
}

.footerInner .category .apps .download.apple {
    width: 3.2em;
    background-image: url("/images/global/icon-apple.svg");
}

.footerInner .category .apps .download.android {
    width: 5.2em;
    background-image: url("/images/global/icon-android.svg");
}

.footerInner .category .apps .divider {
    height: 100%;
    border-right: solid 0.1em #ffffff;
}

.footerBottom {
    display: flex;
    margin: 0;
    padding: 1.2em 3.2em;
    width: 100%;
    height: 4em;
    color: var(--clr-blue);
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.6em;
    border-top: solid 0.1em var(--clr-grey);
    justify-content: center;
}


/* ----------------- Tablet 720px ----------------- */
@media only screen and (max-width: 1000px) {
    .footerInner {
        gap: 6rem 12rem;
        flex-wrap: wrap;
    }

    .footerInner .category {
        width: max-content;
        align-items: center;
        text-align: left;
    }

    .footerInner .category .apps {
        margin-top: 0;
        width: 100%;
        justify-content: center;
    }
}


/* ----------------- Mobile 360px ----------------- */
@media only screen and (max-width: 500px) {

    .footerInner .category {
        align-items: center;
        text-align: center;
    }
}