/* general */

* {
	font-family: 'Ubuntu', sans-serif;
	box-sizing: border-box;
}
body {
	margin: 0;
}

.backstep {
	width: 7vw;
	height: 7vw;
	border: 8px solid rgba(255, 255, 255, 0.9);
	border-top: 8px solid rgba(255, 255, 255, 0);
	border-right: 8px solid rgba(255, 255, 255, 0);
	position: fixed;
	top: 6vw;
	left: 6vw;
	z-index: 5;
	transform: rotate(45deg) translateX(-15vw);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.active-backstep.backstep {
	transform: rotate(45deg) translateX(0);
}
.active-backstep.backstep + header {
	transform: translateY(-100%);
}

/* header */
header {
	width: 100%;
	display: flex;
	position: fixed;
	top:0;
	left: 0;
	z-index: 4;
	transform: translateY(0);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
header #main-logo {
	width: 80%;
	padding: 2vw 8vw;
}
header .logo {
	width: 100%;
}
header .social-media {
	width: 100%;
	padding: 5vw 2vw;
	background-color: rgba(255, 255, 255, 0.2);
	display: flex;
    justify-content: left;
    align-content: center;
    position: fixed;
    left: 0;
    bottom: -100vh;
    z-index: 4;
    transform: translateX(100%);
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
header .step.active-media + .social-media {
	transform: translateX(0);
}
header .social-media a {
	line-height: 0;
}
header .social-media a img {
	width: 7vw;
	padding: 0vw;
	margin: 0 3vw;
/*	background-color: rgba(255, 255, 255, 0.2);
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;*/
}

/* navigation */
nav {
	width: 20%;
	padding: 5vw;
	position: relative;
}
nav::before,
nav::after {
	content: "";
	width: 100%;
	height: 50%;
	display: block;
	border-top: 4px solid rgba(255,255,255,1);
	border-bottom: 2px solid rgba(255,255,255,1);
	box-sizing: border-box;
}
nav::after {
	border-top: 2px solid rgba(255,255,255,1);
	border-bottom: 4px solid rgba(255,255,255,1);
}
nav ul {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 10vw;
	padding-bottom: 17vw;
	background-color: rgba(2, 148, 137, 0.99);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
    justify-content: left;
    align-content: center;
    flex-wrap: wrap;
    z-index: 3;
    transform: translateX(100%);
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
nav.active-media ul {
	top: 100%;
	transform: translateX(0);
}
nav ul li {
	width: 33.3%;
	height: 26.7vw;
	padding: 4vw;
	display: block;
}
nav ul li a {
	width: 100%;
	height: 100%;
	padding: 5vw;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	text-align: center;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
nav ul li a img {
	width: 100%;
}

/* section */
.section-outer {
	min-height: 40vh;
	background-color: rgba(2, 148, 137, 1);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.section-outer.active-media {
	min-height: 100vh;
}

/* section banner */
.banner {
	position: relative;
}
.banner-image {
	position: relative;
	line-height: 0;
}
.banner-image::before {
	content: "";
	background: -moz-linear-gradient(top, rgba(10, 10, 10, 0.3) 0%,  rgba(10, 10, 10, 0.3) 98%, rgba(10, 10, 10, 0.3) 100%);
	background: -webkit-linear-gradient(top, rgba(10, 10, 10, 0.3) 0%,rgba(10, 10, 10, 0.3) 98%,rgba(10, 10, 10, 0.3) 100%);
	background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%,rgba(10, 10, 10, 0.3) 98%,rgba(10, 10, 10, 0.3) 100%);
	position: absolute;
	top:0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.section-outer.active-media .banner-image::before {
	background: -moz-linear-gradient(top, rgba(2, 148, 137, 0) 0%,  rgba(2, 148, 137, 1) 98%, rgba(2, 148, 137, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(2, 148, 137, 0) 0%,rgba(2, 148, 137, 1) 98%,rgba(2, 148, 137, 1) 100%);
	background: linear-gradient(to bottom, rgba(2, 148, 137, 0) 0%,rgba(2, 148, 137, 1) 98%,rgba(2, 148, 137, 1) 100%);
}
.banner-image img {
	width: 100%;
}
.banner-text {
	color: #fff;
	padding: 10vw;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.active-media .banner-text {
	padding: 0 10vw;
}

/* section content */
.content {
	max-height: 0;
	min-height: 0;
	padding: 0 10vw;
	color: #fff;
    display: flex;
    align-items: center;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	overflow: hidden;
}
.active-media .content {
	max-height: 100vh;
	min-height: 40vh;
	padding: 10vw;
}
.content .content-outer {
}
.content .content-link {
	width: 100%;
	padding: 0;
	display: flex;
}
.content .content-link ul {
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
    justify-content: left;
    align-content: center;
    flex-wrap: wrap;
}
.content .content-link ul li {
	width: 25%;
	padding: 4vw;
	display: block;
}
.content .content-link a {
	padding: 3vw;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
	text-align: center;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.content .content-link ul li a img {
	width: 100%;
}

/* footer */
.footer {
	color: #fff;
	background-color: #333;
	padding: 2vw 10vw;
	text-align: center;
}
.footer p {
	margin: 0;
}