*, *:before, *:after {
    box-sizing: border-box;
}
html,
body {
	height: 100%;
}
body {
	background: #212121;
	height: 100%;
	font-family: 'Alegreya Sans', sans-serif;
	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none !important;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Poiret One', cursive;
	font-weight: normal;
    font-size: 22px;
    margin-bottom: 16px;
    color: #e2e2e2;
}
h2 {
    font-size: 42px;
}
h3 {
    font-size: 32px;
}
strong {
    font-weight: 700;
}
a {
	color: #d94f5c;
	text-decoration: none;
}
p {
    font-size: 19px;
    font-weight: normal;
    letter-spacing: 0.02em;
    margin-bottom: 1.8em;
    line-height: 1.5em;
    color: #e2e2e2;
}



.home {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    will-change: opacity;
}
.home .layers, .home .layers > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.home .layers > div.logo {
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top:-250px;
}
.milky-way {
    background: url(../img/milky-way.jpg) no-repeat center center/cover;
}
.tower {
    background: url(../img/port-erin.png) no-repeat center center/cover;
}
.mid-mountains {
    background: url(../img/mid-mountains.png) no-repeat center center/cover;
}
.front-mountains {
    background: url(../img/mountains.png) no-repeat center center/cover;
}

header {
	position: fixed;
	top:0px;
    width:100%;
	height: 140px;
	z-index: 100;
}
.logo-header {
	position: absolute;
	top:-100%;
	width:200px;
	-webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}
.logo-header.move-down {
	top:0px;
}
.logo-header img {
	width:100%;
	    position: relative;
    top: 40px;
    left: 40px;
}
nav.main-nav {
    position: fixed;
    top: 46px;
    right: 84px;

    color: #fff;
    z-index: 1000;
}

.menu {
    line-height: 1;
    margin: 0 auto 3em;
    z-index: 1000;
    position: fixed;
    top: 46px;
    right: 84px;
}
.menu__link:hover,
.menu__link:focus {
	outline: none;
}
.menu__list {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu__item {
    display: block;
    margin: 1em 0;
}
.menu__link {
    font-size: 1.05em;
    font-weight: bold;
    display: block;
    padding: 1em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.menu--viola .menu__item {
	position: relative;
	margin: 0 1em;
}

.menu--viola .menu__link {
	position: relative;
	display: block;
	text-align: center;
	color: #929292;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

.menu--viola .menu__link:hover,
.menu--viola .menu__link:focus {
	color: #fff;
}

.menu--viola .menu__item--current .menu__link {
	color: #d94f5c;
}

.menu--viola .menu__item::before,
.menu--viola .menu__item::after,
.menu--viola .menu__link::before,
.menu--viola .menu__link::after {
	content: '';
	position: absolute;
	background: #d94f5c;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

.menu--viola .menu__item::before,
.menu--viola .menu__item::after {
	top: 0;
	width: 2px;
	height: 100%;
	-webkit-transform: scale3d(1, 0, 1);
	transform: scale3d(1, 0, 1);
}

.menu--viola .menu__item::before {
	left: 0;
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

.menu--viola .menu__item::after {
	right: 0;
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

.menu--viola .menu__link::before,
.menu--viola .menu__link::after {
	left: 0;
	width: 100%;
	height: 2px;
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
}

.menu--viola .menu__link::before {
	top: 0;
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
}

.menu--viola .menu__link::after {
	bottom: 0;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}

.menu--viola .menu__item--current::before,
.menu--viola .menu__item--current::after,
.menu--viola .menu__item--current .menu__link::before,
.menu--viola .menu__item--current .menu__link::after {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
}


.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: 0.22s linear;
    -moz-transition: 0.22s linear;
    transition: 0.22s linear;
    pointer-events: none;
}

.standard-content {
	position: relative;
	top:100%;
	text-align: center;
	margin-top:100px;
	padding-top:500px;
}
section {
	position: relative;
	max-width: 700px;
	margin:0 auto;
    padding:50px 0px;
}

.row {
    width:100%;
    overflow: hidden;
}
.col-50 {
    width:50%;
    float: left;
    padding:10px;
}

footer {
	position: relative;
	background: #d94f5c;
	color:#121212;
	padding:50px 0px;
}
footer a {
    color:#212121;
}
@media screen and (max-width: 450px) {
    .logo-header {
        width:100%;
    }
    .logo-header img {
        width: 60%;
        top: 10px;
        left: 20%;
    }
    .menu {
        right: 0px;
        left:0px;
        top:86px;
    }
    .home .layers > div.logo {
        margin-left: -40%;
        margin-top: -40%;
    }
    .logo img {
        width:80%;
    }
    section {
        padding:50px 15px;
    }
    .col-50 {
        width:100%;
        padding:0px;
    }
}