@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff');
}

@font-face {
    font-family: 'Gotham Medium';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Alexela Display';
    src: url('../fonts/Alexela-Display.woff2') format('woff2'),
        url('../fonts/Alexela-Display.woff') format('woff');
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

html {
    color: #222;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.4;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-image: -webkit-gradient(linear, left top, right top, from(#03a0d7), to(#0a2c69));
    background-image: -webkit-linear-gradient(left, #03a0d7, #0a2c69);
    background-image: -o-linear-gradient(left, #03a0d7, #0a2c69);
    background-image: linear-gradient(to right, #03a0d7, #0a2c69);
}

@media (min-width: 3840px) {
    html {
        font-size: 20px;
    }
}

body {
    font-size: 1em;
    font-family: 'Gotham Book', Helvetica, Arial, sans-serif;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url(../img/svg/alexela-taust-40opacity.svg);
    background-repeat: no-repeat;
    background-position: -100vw 0;
    background-size: cover;
    min-height: 100vh;
}

@media (min-width: 1000px) {
    body {
        background-size: unset;
        background-position: 30vw 25vh;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1 {
    font-family: 'Alexela Display', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px rgba(0,0,0,.2);
}
@media (min-width: 800px) {
    h1 {
        font-size: 3.5rem;
    }
}

h2 {
    font-size: 2rem;
}

.container {
    width: 100%;
    max-width: 85rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
}

.icon {
    height: 1em;
    width: 1em;
    fill: currentColor;
    vertical-align: middle;
}

/* HEADER */
.header {
    background: #fff;
}

.header__container {
    position: relative;
    height: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 800px) {
    .header__container {
        height: 6.4rem;
    }
}

.header__logo {
    font-size: 3rem;
}

.header__logo--large {
    display: none;
}

@media (min-width: 800px) {
    .header__logo {
        font-size: 17rem;
        margin-top: -1rem;
    }

    .header__logo--small {
        display: none;
    }
    .header__logo--large {
        display: block;
    }
}

.header__right {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header__language.list {
    padding-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 800px) {
    .header__language.list {
        padding-left: 4rem;
    }
}

.header__language.list li {
    padding: 3px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown__trigger {
    background: transparent;
    border: 0;
    color: #212255;
    cursor: pointer;
    font-size: 1.2rem;
    font-family: 'Gotham Medium', Helvetica, Arial, sans-serif;
    outline: 0;
    padding: 1.3rem 0;
}
.dropdown__trigger * {
    pointer-events: none;
}

@media (min-width: 800px) {
    .dropdown__trigger {
        font-size: 1.5rem;
        padding: 2.4rem 0;
    }
}

.dropdown__icon {
    margin-top: -0.3rem;
}

.dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    z-index: 100;
}
.dropdown.is-open .dropdown__menu {
    display: block;
}

.dropdown__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown__link {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    color: #212255;
    text-align: right;
}

.dropdown__link:hover {
    color: #fff;
    background: #212255;
}

/* BUTTON */
.button {
    display: inline-block;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Gotham Medium', Helvetica, Arial, sans-serif;
    padding: .3rem 1rem;
    text-decoration: none;
    text-shadow: 1px 1px rgba(0,0,0,.2);
}
.button:hover {
    background: #03a0d7;
}

.button + .button {
    margin: 2px;
}

/* HERO */
.hero {
    position: relative;
    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;
    overflow: hidden;
    z-index: 1;
}

@media (min-width: 1000px) {
    .hero {
        height: 35rem;
    }
}

.hero__images {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: -1;
}

@media (min-width: 1000px) {
    .hero__images {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    @supports((-webkit-clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%)) or (clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%))) {
        .hero__image--clip {
            -webkit-clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%);
            margin-left: -28%;
        }
    }
}

@media (min-width: 1200px) {
    @supports((-webkit-clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%)) or (clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%))) {
        .hero__image--clip {
            margin-left: -36%;
        }
    }
}

.hero__image .image {
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
}

.hero__image .image:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

@media (min-width: 1000px) and (max-width: 1150px) {
    .hero__image--1 {
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2);
    }

    .hero__image--2 {
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2);
    }
}

.hero__container {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
@media (min-width: 1000px) {
    .hero__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.hero__item {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 440px) {
    .hero__item {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1000px) {
    .hero__item {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* CONTENT */
.content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media (min-width: 800px) {
    .content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-left: -2rem;
        margin-right: -2rem;
    }
}

.content__item {
    padding: 2rem 0;
}

.content__item + .content__item {
    padding-top: 0;
}

@media (min-width: 800px) {
    .content__item {
        padding: 3rem 2rem;
        width: 50%;
    }

    .content__item + .content__item {
        padding-top: 3rem;
    }
}

/* IMAGE */
.image {
    display: block;
    max-width: 100%;
    height: auto;
}

/* LIST */
.list {
    list-style: none;
    padding: 0;
}

.list--no-margin {
    margin-top: 0;
}

.list li {
    font-size: .95rem;
    padding: 3px 0;
}

.list--social li {
    display: inline-block;
    padding-bottom: 6px;
    padding-right: 6px;
}

@media (max-width: 800px) {
    .list--condensed li {
        padding: 0;
    }
}

.list__link {
    color: #fff;
    text-decoration: none;
}
.list__link:hover {
    text-decoration: underline;
}
.list__link.is-active {
    text-decoration: underline;
}

.list--condensed .list__link {
    color: #212255;
}

.list__icon {
    font-size: 3.5rem;
}

/* FOOTER */
.footer {
    background-color: rgba(10, 44, 105, .6);
    padding: 3rem 0;
}

.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.footer__col {
    width: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer__col--xs-100 {
    width: 100%;
}

@media (min-width: 900px) {
    .footer__col--06 {
        width: 6%;
    }

    .footer__col--14 {
        width: 14%;
    }

    .footer__col--2 {
        width: 20%;
    }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

.invisible {
    visibility: hidden;
}

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: ' (' attr(href) ')';
    }

    abbr[title]:after {
        content: ' (' attr(title) ')';
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^='#']:after,
    a[href^='javascript:']:after {
        content: '';
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}