@charset "utf-8";

@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url(fonts/OpenSans-Light.woff) format('woff');
}
@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'),
       url(fonts/OpenSans-Regular.woff) format('woff');
}
@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
       url(fonts/OpenSans-Semibold.woff) format('woff');
}
@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: bold;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
       url(fonts/OpenSans-Semibold.woff) format('woff');
}

html, body {
    margin: 0;
    padding: 0;
    height:100%;
    font-family: 'OpenSans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    background-color: #ffffff;
}
a {
    text-decoration: none;
    color: black;
}
a:hover {
    text-decoration: underline;
}
a img {
    border: none;
}

div.page {
    color: black;
    width: 950px;
    min-height: 100%;
    margin: 0px auto 0px auto;
    padding: 0 0;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.5);
}
div.language {
    font-size:0.8em;
    padding-top: 5px;
    padding-right: 5px;
    text-align: right;
}
div.header {
    display: flex;
    align-items: flex-end;
    padding-bottom: 16px;
}
div.logo {
    padding-left: 30px;
    padding-right: 35px;
}
div.menu {
    align-items: flex-start;
    display: flex;
    flex-grow: 10;
    font-size: 14px;
    line-height: 21px;
    font-weight: bold;
    justify-content: space-around;
    padding-right: 50px;
    text-transform: uppercase;
}
div.menu a {
    padding-left: 5px;
    padding-right: 5px;
    border-bottom: solid 2px #ffffff;
}
div.menu a:hover {
    text-decoration: none;
    border-bottom: solid 2px #909090;
}
div.menu a.current {
    border-bottom: solid 2px #e9c899;
}
div.banner {
}
div.title {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 40px;
    padding-left: 75px;
    padding-top: 25px;
}
div.main {
    display: flex;
    justify-content: space-between;
}
div.content {
    display: flex;
    flex-direction: column;
    flex-grow: 10;
}
div.part {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 75px;
    margin-bottom: 40px;
}
div.picture {
}
div.text {
    padding-right: 40px;
}
div.text h2 {
    font-size: 18px;
    line-height: 27px;
    margin: 0;
    width: 500px;
}
div.no-notes div.text h2  {
    width: 550px;
}
div.text h2 span {
    border-bottom: solid 3px #76abab;
    padding-right: 10px;
}
div.text h2 a:hover {
    text-decoration: none;
    border-bottom: solid 2px #909090;
}
div.text p {
    width: 500px;
}
div.text ul {
    max-width: 500px;
}
div.no-notes div.text p {
    width: 550px;
}
div.note {
    font-size: 14px;
    line-height: 21px;
}
div.notes {
    border-left: solid 1px #8ecdfe;
    padding-left: 10px;
    padding-right: 10px;
    width: 150px;
}
div.no-notes div.notes {
    width: 100px;
}

div.references {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 500px;
}
div.references a {
    margin-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
}

div.team {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 550px;
}
div.team div {
    margin-top: 1.5em;
}

.logo {
    position: relative;
}

@keyframes logo {
    0% {
	background-position: 100% 0;
	opacity: 0;
    }
    50% {
	opacity: 0.3;
    }
    60% {
	opacity: 1;
    }
    65% {
	opacity: 0.3;
    }
    100% {
	background-position: 0 0;
	opacity: 0.5;
    }
}

#stacked {
    background-image: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0) 50%,
				      rgba(255,255,255,1) 50%, rgba(255,255,255,1) 51%, rgba(255,255,255,0) 51%,
				      rgba(255,255,255,0));
    background-size: 300% 100%;
    animation: logo 1s 1 linear;
    animation-delay: 15s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

@media screen and (max-width: 400px) {
    div.menu {
	font-size: 18px;
    }
    div.text {
	font-size: 24px;
	line-height: 36px;
    }
    div.text h2 {
	font-size: 24px;
	line-height: 36px;
    }
    div.no-notes div.text {
	padding-right: 0px;
    }
    div.no-notes div.text h2 {
	width: 650px;
    }
    div.no-notes div.text p {
	width: 650px;
    }
    div.no-notes div.notes {
	width: 30px;
    }
}
