@charset "UTF-8";

/* @font-face {
    font-family: 'NNNouvelleGrotesk-Normal';
    src: url('NNNouvelleGrotesk-Normal.woff2') format('woff2');
}
@font-face {
    font-family: 'NNNouvelleGrotesk-Bold';
    src: url('NNNouvelleGrotesk-Bold.woff2') format('woff2');
} */

/* Basic Variables ------------------------------------------------ */
:root {
    --light:#F4F5E5;
    --dark: #003C46;

    --FSD: 1.5vw;
    --FSL: 4.5vw;
}

@media (max-width: 768px) {
    :root {
        --FSD: 4.3vw;
        --FSL: 12vw;
    }
}

/* Basics --------------------------------------------------------- */
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    cursor: default;
    color: var(--light);
    font-family: '...', sans-serif;
    background-color: var(--dark);
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

i, em{
    font-style: normal;
}
strong{
    font-style: normal;
}

ol { 
    padding-left: 1em; 
}
ul {
	list-style: none;
    padding-left: 0.9em;
    margin-left: 0;
}
ul li:before {
    content: "–";
    position: absolute;
    margin-left: -0.8em;
}

h1, h2, h3, h4, h5, h6{
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

p{ 
    word-break: break-word;
}

img, .ns, nav, button, .button{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
::selection {
    background: var(--light);
    color: var(--dark);
}

img{
    vertical-align: middle;
}
*{
    box-sizing: border-box;
}

a{
    white-space: nowrap;
}
figure{
    margin: 0;
}
figure img{
    width: 100%;
}


/* Links ------------------------------------------------------------ */
a{ 
    color: inherit;
    outline: 0;
    text-decoration: none;
}
a:hover{ 
    text-decoration: underline;
}
.nb{
    border: none;
    text-decoration: none;
}


/* Font Styles ----------------------------------------------------- */
html, body, .FSD{ 
    font-size: var(--FSD);
    line-height: 1.35em;
}
.FSL{
    font-size: var(--FSL);
    line-height: 1em;
    font-family: '...', serif;
}


/* Rest ------------------------------------------------------------ */
main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 14% 5vw 14%;
}
main img{
    width: 100%;
    height: auto;
}
footer{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    padding: 0 4% 2.9vw 4%;
}
.logo{
    width: 14vw;
    height: auto;
    margin-bottom: .1rem;
}
footer img{
    width: 50vw;
}
.mob_on{
    display: none;
}

@media (max-width: 768px) {
    main{
        padding: 0 5% 12vw 5%;
    }
    footer{
        padding: 0 5% 5vw 5%;
    }
    footer img{
        width: 45vw;
    }
    .logo{
        width: 30vw;
    }
    .mob_off{
        display: none;
    }
    .mob_on{
        display: block;
    }
}