* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

.preload * {
    transition: none;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

.fix {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
}

.loader {
  	position: absolute;
  	top: 0;
  	left: 0;
  	height: 100vh;
  	width: 100%;
  	overflow: hidden;
  	background-color: #000;
  	z-index: 1234;
}

.loader > svg {
  	height: 10vw;
  	width: auto;
  	position: absolute;
  	top: calc(50% - 5vw);
  	left: calc(50% - 5vw);
  	animation-name: move;
  	animation-duration: 2000ms;
  	animation-iteration-count: infinite;
  	animation-timing-function: linear;
  	animation-fill-mode: forwards;
}

@keyframes move {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* HEADER */

header {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

h1 {
    visibility: hidden;
    font-size: 2vw;
    position: absolute;
    top: 70%;
    left: calc(50% - 600px);
    font-weight: 300;
    opacity: 0.5;
}

nav {
    height: 140px;
    width 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

nav > ul {
    display: inline-block;
    background-color: #000;
    height: 100vh;
    width: 240px;
    padding-top: 35px;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 666;
    transform: translateX(-200%);
    transition: 300ms ease-in-out;
}

nav > ul.active {
    transform: translateX(0);
}

nav ul {
    list-style: none;
}

nav ul li a {
    display: inline-block;
    height: auto;
    width: 100%;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    padding: 20px;
    transition: 300ms ease-in-out;
}

nav > ul > li {
    position: relative;
}

nav > ul > li span {
    font-size: 28px;
    color: #fff;
  	padding: 13px 16px;
    position: absolute;
    top: 0;
    right: 4px;
}

nav > ul > li span:hover {
  	cursor: pointer;
}

nav > ul li ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
  	height: auto;
  	width: 100%;
    background-color: #000;
  	z-index: 777;
}

nav > ul li ul.act {
  	display: inline-block;
}

nav > ul:hover {
    overflow: visible;
}

nav > ul li:hover > a {
    background-color: #fff;
    color: #000;
}

nav > ul li:hover span {
    color: #000;
}

header nav > a svg {
  	fill: #000;
    height: 100%;
    width: auto;
    padding: 20px 0;
    transition: 300ms ease-in-out;
}

header nav > a svg:hover {
    opacity: 0.2;
}

header > img:first-child {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
}

header > img:nth-child(2) {
    height: auto;
    width: 100%;
    max-width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    z-index: -1;
}

header > img:nth-child(3) {
    height: 70vh;
    width: auto;
    position: absolute;
    top: 0;
    left: -42vh;
    opacity: 0.5;
    z-index: -3;
}

header > a img {
    height: 10vh;
    width: auto;
    position: absolute;
    bottom: 15vh;
    right: calc(50vw - 600px);
    transition: 300ms ease-in-out;
}

header > a img:hover {
    bottom: 12vh;
}

.gradient {
    height: 140px;
    width: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0));
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
}

/* MENU */

nav p {
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.1;
    position: absolute;
    top: 0;
    right: 77px;
    margin: 53px 0;
    transition: 300ms ease-in-out;
}

nav p:hover {
    cursor: default;
}

.menu {
    height: 29px;
    width: 70px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 55.5px 0;
    transition: 300ms ease-in-out;
}

.menu span {
    display: block;
    height: 5px;
    width: 100%;
    margin-bottom: 7px;
    background-color: #fff;
    transition: 300ms ease-in-out;
}

.menu span:last-child {
    margin-bottom: 0;
}

.menu:hover {
    cursor: pointer;
    width: 100px;
}

.menu.tox {
    width: 29px;
    z-index: 676;
}

.menu.tox span:nth-child(2) {
    opacity: 0;
}

.menu.tox span:first-child {
    transform: rotate(45deg);
    position: relative;
    top: 12px;
}

.menu.tox span:last-child {
    transform: rotate(-45deg);
    position: relative;
    bottom: 12px;
}

.menu.tox:hover {
    opacity: 0.2;
}

/* KONTAKT */

.kontakt {
    height: 20px;
    width: auto;
    position: absolute;
    left: calc(50vw - 600px);
    bottom: 15vh;
}

.kontakt svg {
    display: inline-block;
    height: 100%;
    width: auto;
    margin-right: 50px;
    transition: 300ms ease-in-out;
}

.kontakt svg:hover {
    opacity: 0.2;
}

/* CONTENT */

main {
    height: auto;
    width 100%;
    max-width: 1200px;
    margin: 0 auto;
  	min-height: calc(100vh - 580px)
}

main p a {
    text-decoration: none;
    color: #000;
    position: relative;
}

main p a::before {
    content: '';
    height: 2px;
    width: 0;
    background-color: #000;
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0.2;
    transition: 300ms ease-in-out;
}

main p a:hover::before, main .tx ul li a:hover::before {
    width: 100%;
}

main > div:last-child {
    margin-bottom: 0;
}

main h2 {
    display: inline-block;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    top: -6px;
  	background-color: #000;
  	padding: 10px 16px;
}

main p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6rem;
}

main ul {
  	color: #888;
  	font-size: 1rem;
  	line-height: 1.6rem;
  	list-style: none
}

main ul li {
  	position: relative;
  	left: 20px;
}

main ul li a {
  	text-decoration: none;
  	color: #000;
  	position: relative;
}

main ul li a::before {
    content: '';
    height: 2px;
    width: 0;
    background-color: #000;
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0.2;
    transition: 300ms ease-in-out;
}

main ul li::before {
  	content: "■";
    color: #888;
  	position: absolute;
  	top: 0;
  	left: -18px;
  	font-size: 0.6rem;
  	opacity: 0.4;
}

.heading {
    display: block;
    margin-bottom: 60px;
}

.breadcrumb {
    height: 100px;
    width: auto;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.breadcrumb ul {
    list-style: none;
}

.breadcrumb li {
    display: inline-block;
    margin: 41px 0;
  	position: static;
}

.breadcrumb li::before {
  	content: "";
}

.breadcrumb li a {
    text-decoration: none;
    color: #000;
    margin-right: 6px;
  	margin-left: 6px;
    transition: 300ms ease-in-out;
}

.breadcrumb li a:hover {
    opacity: 0.5;
}

.breadcrumb span {
  	display: inline-block;
    opacity: 0.2;
  	transform: rotate(-90deg);
  	position: relative;
  	left: -6px;
}

.breadcrumb span:hover {
    cursor: default;
}

/* IMAGE TEXT */

.imgtext {
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 20px auto;
    display: table;
}

.imgtext > div {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.imgtext > div > img {
    width: 100%;
    height: auto;
    background-image: url(../gfx/forest.jpg);
    background-size: 98% 98%;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 2px solid #fff;
}

.imgtext > div.grfk {
    position: relative;
}

.imgtext > div.grfk a svg {
    width: 60px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translate(0, -50%);
}

.imgtext.rev > div.grfk a svg {
    left: auto;
    right: 150px;
}

.imgtext > div.grfk a svg polygon:first-child {
    transition: 300ms ease-in-out;
}

.imgtext > div.grfk a svg:hover polygon:first-child {
    fill: #aaa;
}

h3 {
    font-size: 1rem;
    padding-bottom: 20px;
}

.text {
    margin: 20px auto;
}

.text p {
    margin-bottom: 24px;
}

.text p:last-child {
    margin-bottom: 0;
}

.text + .text, .text + .imgtext, .imgtext + .text {
    margin-top: 60px;
}

/* FOOTER */

footer {
    height: auto;
    width: 100vw;
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    margin-top: 80px;
}

footer a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

footer a::before {
    content: '';
    height: 2px;
    width: 0;
    background-color: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0.2;
    transition: 300ms ease-in-out;
}

footer a:hover::before {
    width: 100%;
}

blockquote {
    display: block;
    height: 115px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}

blockquote p {
    line-height: 1.6rem;
}

blockquote p:last-child {
    opacity: 0.5;
}

.data {
    height: auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: table;
    font-size: 0.8rem;
}

.data ul {
    display: table-cell;
    vertical-align: top;
    list-style: none;
    width: 25%;
}

.data ul li {
    line-height: 1.2rem;
}

.data img {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    height: auto;
}

.copy {
    height: auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.2rem;
    margin-top: 40px;
    opacity: 0.2;
}