html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit
}

/*
The font softwares linked herebelow are the property of Swiss Typefaces Sàrl.
You may not download the font softwares. 
Purchase and licensing informations are available at http://www.swisstypefaces.com/licensing/ 
Copyright (C) Swiss Typefaces Sàrl
*/


@font-face {
    font-family: 'SuisseIntl-Regular';
    src: url('fonts/SuisseIntl-Regular-Web/XL/SuisseIntl-Regular-WebXL.ttf') format('ttf'), url('fonts/SuisseIntl-Regular-Web/XL/SuisseIntl-Regular-WebXL.eot') format('eot'), url('fonts/SuisseIntl-Regular-Web/XL/SuisseIntl-Regular-WebXL.svg') format('svg'), url('fonts/SuisseIntl-Regular-Web/XL/SuisseIntl-Regular-WebXL.woff') format('woff'), url('fonts/SuisseIntl-Regular-Web/XL/SuisseIntl-Regular-WebXL.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SuisseIntl-SemiBold';
    src: url('fonts/SuisseIntl-SemiBold-Web/XL/SuisseIntl-SemiBold-WebXL.eot') format('eot'), url('fonts/SuisseIntl-SemiBold-Web/XL/SuisseIntl-SemiBold-WebXL.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* generic_lib */
/* **************************** */
html {
    font-size: 16px;
}

body {

    font-family: 'SuisseIntl-Regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: rgb(25, 25, 25);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Fallback */
    background: white;

}


a {
    color: #ffd000;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

a:hover {
    color: inherit;
}

a,
a:hover,
a:active,
a:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 700;
}


h1 + h2,
h2 + h3,
h3 + h4 {

    font-weight: 400;
}


h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
    color: #ffd000;
}

h2,
h3,
p,
span,
a {
    -webkit-touch-callout: auto !important;
    -webkit-user-select: auto !important;
    -khtml-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}

p {
    margin: 0;
}


body:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    box-shadow: inset -15px -15px 0 white, inset 15px 15px 0 white;
    z-index: 9998;
    pointer-events: none;
}

header {
    color: #ffd000;
    margin-bottom: 1em;
}

header h1 {
    margin: 0;
    line-height: 1;
}

header strong {
    font-family: 'SuisseIntl-SemiBold';
}

footer {
    margin-top: 2em;
}

#wrapper {
    /* background: #796a2b; */
    background: #041036;
    min-height: calc(100vh - 15px);
    padding: 36px 0 0 36px;
    color: #fff;
    display: flex;
    flex-direction: row-reverse;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    padding-right: 20vw;
    hyphens: manual;
}

@media (min-width:400px) {

    #wrapper {
        padding-right: 10vw;
    }
}

@media (min-width:834px) {
    html {
        font-size: calc(16px + 4 * (100vw - 834px) / 500);
    }

    #wrapper {
        min-height: calc(100vh - 15px);
        padding: 90px 30px;
    }

    main {
        width: 36%;
        padding-right: 6%;
    }
}