* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Open Sans", sans-serif;
  background: white;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.wrapper {
  position: absolute;
  display: none;
}

h1 {
  margin: 0;
  font-size: 3.5em;
  line-height: 1em;
  font-weight: 300;
  color: white;
  margin-bottom: 1em;
  display: inline-block;
  padding-right: 60px;
}

h2 {
  display: inline-block;
  font-weight: 300;
  font-size: 2em;
  line-height: 1.5em;
  color: white;
}

h3 {
  font-size: 1em;
  font-weight: 600;
}

p {
  line-height: 1.7em;
  font-size: 0.9em;
}

a,
a:active,
a:visited {
  color: #424a54;
}

/* HEADER */

header {
  position: absolute;
  left: 20px;
  z-index: 999999;
  user-select: none;
}

header .logo {
  padding: 12px;
  padding-top: 32px;
  padding-bottom: 8px;
  background: white;
  cursor: pointer;
}

header img {
  width: 120px;
}

/* NAV */

nav {
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 888888;
  padding: 0px;
  display: none;
}

nav div {
  position: absolute;
  top: 92px;
  left: 12px;
}

nav a {
  display: block;
  color: white !important;
  text-decoration: none;
  line-height: 2em;
  margin-bottom: 6px;
  border-bottom: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 0.8em;
  padding: 5px 12px;
}

.contact {
  position:relative;
  top:10px;
  left:0;
  display:grid;
  grid-template-columns: 30px 30px;
  grid-gap:5px;
}

.contact a:hover {
  background:none;
}

.contact .twitter img {
  height: 22px;
}

.contact .mail img {
  height:22px;
}

/* FULL */

.full {
  display: grid;
  position: relative;
  width: 100vw;
  grid-template-columns: 100vw;
  grid-template-rows: 100vh min-content;
  background: white;
  user-select: none;
  overflow-x: hidden;
}

/* HALF */

.half {
  display: grid;
  position: relative;
  width: 100vw;
  grid-template-columns: 100vw;
  grid-template-rows: 100vh min-content;
  background: white;
  user-select: none;
  overflow-x: hidden;
}

.half .rightCol {
  position: relative;
  padding: 20px;
  padding-top: 0;
  width: calc(100% - 40px);
}

/* HOME */

.home {
  display: grid;
  position: relative;
  width: 100vw;
  grid-template-columns: 100vw;
  grid-template-rows: 100vh 100vh min-content;
  background: white;
  user-select: none;
}

.home .leftCol,
.half .leftCol,
.full .leftCol {
  position: relative;
  padding: 6em 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home .rightCol,
.full .rightCol {
  position: relative;
  padding: 20px;
  width: calc(100% - 40px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}

.home h2, .full h2, .half h2 {
  position: absolute;
  left: 20px;
  width: calc(100vw - 40px);
  bottom: 0px;
  animation-name: startup;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes startup {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* NEWS */

.articles {
  margin-bottom: 10px;
  padding:0px 0px;
}

.article {
  background: white;
  font-size: 1em;
  padding: 20px 0;
}

.article .date {
  display: inline-block;
  font-size: 0.8em;
  margin-bottom: 6px;
}

.article h3 {
  margin: 0;
  margin-bottom: 6px;
  font-weight: 600;
}

.article p {
  line-height: 1.6em;
  margin-bottom: 12px;
}

.articles_news {
  display:none;
}

.more {
  background: black;
  color: white !important;
  text-decoration: none;
  padding: 6px;
  font-size: 0.8em;
  margin-bottom: 10px;
}

/* REFS */
.refs {
  position: relative;
  bottom: 0;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 20px;
}

.refs div {
  padding: 10px;
  background: white;
  display: grid;
  align-items: center;
}

.refs img {
  width: 100%;
}

/* LEIST */

.leist a {
  text-decoration: none;
}

.leist {
  padding: 10px 20px;
}

.leist div {
  margin-top:20px;
  margin-bottom: 20px;
}

.leist_more span {
  display:block;
  font-weight:600;
  margin-top:20px;
  margin-bottom:10px;
  font-size: 0.9em;
}

.leist_more a {
  display:inline-block;
  font-size:0.8em;
  margin-right:1px;
  margin-bottom:1px;
  background:black;
  color:white;
  padding:5px;
  text-decoration:none;
}

.leist a {
  font-weight: 600;
}

/* FOOTER */

footer {
  position: relative;
  background: black;
  color: white;
  padding: 20px;
  font-size: 0.8em;
  padding-bottom:80px;
}

footer a {
  display: block;
  color: white !important;
  text-decoration: none;
  line-height: 2em;
  border-bottom: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 0.9em;
  padding: 0;
}

footer div {
}

/* NOTFOUND */

.notfound {
  position: relative;
  width: 100vw;
  height: calc(100vh - 12em);
  background-image: url(/src/404.jpg);
  background-position: center;
  background-size: cover;
  padding: 6em 30px;
}

/* TOP */
.top img {
  width: 15px;
}

/* MENU */
.menu {
  position:absolute;
  right: 20px;
  top:15px;
}

.menu img {
  width:35px;
}

.men {
  cursor:pointer;
}
