@charset "UTF-8";

@import url("https://use.typekit.net/ggu2ajp.css");

:root {
    --font-headers: din-condensed, sans-serif;
    --font-body: avenir-next-lt-pro, sans-serif;
}

body {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    color: #FFF;
    background-color: #001028;
}

body.noScroll {
    overflow: hidden;
}

.showCursor{cursor:pointer;}

h1, h2, h3, h4, h5 {
    font-family: var(--font-headers);
    font-weight: 400;
    font-style: normal;
}

.page {
    height: 100dvh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.section {
    min-height: 100dvh;
    scroll-snap-align: start;
}


/*header*/
.header .logo{height:30px;}
.header .toggleMenu{height:18px;}