﻿
body {
    font-family: "Work Sans", sans-serif;
    color: #fff;
    background-image: linear-gradient(180deg, rgba(0,30,48,0.9) 0%, rgba(0,30,48,0.9) 50%, rgba(0,30,48,0) 100%), linear-gradient(0deg, rgba(0,46,66,1) 0%, rgba(6,63,84,1) 50%, rgba(0,46,66,1) 100%);
    background-repeat: repeat;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    background-size: 3%;
    background-position: 2.3% 9%;
    background-attachment: fixed;
}

.endlessScroller {
    background-image: url('/Images/background.svg');
    background-repeat: repeat;
    min-height: 300vh;
}

#Logo {
    scale: 80%;
    position: fixed;
    top: 10px;
    left: 7vw;
}

nav {
    position: fixed;
    right: 50px;
    top: 76px;
    z-index: 100;
    font-size: 16px;
}

nav a {
    color:white;
    text-decoration:none;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
}

nav a:hover, nav a:active, nav a.active {
    color: rgb(116,185,89);
}

h1 {
    color: #fff;
    font-size: 283%;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.3em;
}

article {
    height:40vh;
    padding-top:13%;
    /*border: 1px solid red;*/
}

article:first-child {
    padding-top: 80vh;
}

article > div {
    width:100%;
    padding-left: 13vw;
    padding-right:1vw;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 1s ease, top 1s ease;
    position: fixed;
    padding-top: 200px;
}

article h1 {
}

article p {
    margin-top:10%;
    margin-left:3.5%;
    width:60vw;
    font-size: 150%;
    line-height: 1.5em;
}
/*
article img {
    position: absolute;
    top: 0vw;
    right: 0vw;
    width: 20vw;
    height: auto;
}

article video {
    position: absolute;
    top: 0vw;
    right: 0vw;
    width: 20vw;
    height: auto;
    cursor:pointer;
}
*/
article a {
    color:white;
}

.hide {
    opacity: 0;
    top: 0;
    pointer-events:none;
}

.show {
    opacity: 1;
    top: 0;
}

h2 {
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

h3 {
    color: #f39200;
    font-size: 283%;
    font-weight: normal;
    letter-spacing: 0.1em;
}

p {
    margin: 0;
    padding: 0;
}

.scroller:hover {
}

.carousel {
    perspective: 900px;
    transform-style: preserve-3d;
}

.carouselElement {
    position: absolute;
    width: 300px;
    left: 0px;
    top: -100px;
    background-color: rgba(6, 63, 84, .9);
    transition: transform 1s, opacity 1s;
    box-sizing: border-box;
}

.carouselElement img {
    width: 100%;
    /*border:2px solid white;*/
}

.carouselElement p {
    width: 100%;
    font-size: 12px;
    margin: 0;
    line-height: unset;
    padding: 10px;
    box-sizing: border-box;
}

.arrow {
    filter: invert(100%);
    height: 30px
}

.arrow:hover {
    filter: invert(66%) sepia(89%) saturate(275%) hue-rotate(58deg) brightness(86%) contrast(81%);
}


