@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500);

html, body {
	font-family: 'roboto', helvetica, helvetica lt std, helvetica neue, arial, sans-serif;
	margin: 0;
	padding: 0;
	border: none;
	background-color: white;
}

/* Code for Firefox */
::-moz-selection {
    color: white;
    background: #F26242;
}

::selection {
    color: white;
    background: #F26242;
}

a:link {color: #414042;}
a:visited {color:#414042;}
a:hover {color: #414042;}

.index_container {
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 0px 3.2% 0px 3.2%;
	max-width: 1650px;
	top: 0px;
	border: none;
}

.header {
	position: fixed;
	background-color: rgba(256,256,256,1);
	top: 0px;
	width: 100%;
	height: 70px;
	z-index: 100;
	border: none;
}

.header_inner {
	position: relative;
	max-width: 1650px;
	height: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin: 0px 6.4% 0px 0px;
	top: 0px;
	border: none;
}

.logo {
	position: absolute;
	width: 110px;
	left: 0px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index:10;
	border: none;
}

.logo img {
	width: 100%;
}

/* header nav */

.header ul {
	position: absolute;
	background-color: white;
	width: 100%;
	margin: 0px;
	padding: 0px;
	top: 100%;
	list-style: none;
	overflow: hidden;
	border: none;
}

.header ul .menu_divide {
	position: relative;
	height: 3px;
	width: 100%;
	background-color: #414042;
}

.header ul > li {
	position: relative;
	padding: 10px 0px;
	clear: both;
	text-align: center;
	border: none;
}

.header ul > li.unselected > a {
	position: relative;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 0.76em;
	color: #414042;
	padding: 1.5px 0px;
	border-bottom: 3px solid rgba(65, 65, 65, 0);
	-webkit-transition: border 0.3s ease;
	-moz-transition: border  0.3s ease;
	-ms-transition: border  0.3s ease;
	-o-transition: border  0.3s ease;
	transition: border  0.3s ease;
}

.header ul > li.unselected > a:hover {
	border-bottom: 3px solid rgba(65, 65, 65, 1);
}

.header ul > li.selected > a {
	cursor: pointer;
	outline: none;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 0.76em;
	color: #414042;
	padding: 1.5px 0px;
	border-bottom: 3px solid rgba(65, 65, 65, 1);
}

.header ul > li.icon_group > a {
	position: relative;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}

.header ul > li.icon_group > a img {
	width: 23.5px;
	padding: 0px 7.5px;
	border: none;
}

.icon_spacing {
	position: relative;
	width: 10px;
	border: none;
}

/* menu */

.header .menu {
	clear: both;
	width: 100.5%;
	/*border-top: 0px solid rgba(65, 65, 65, 1);*/
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	max-height: 0px;
	transition: max-height, border-top 0.1s ease;
	-webkit-transition: max-height 0.3s ease, border-top 0.3s ease;
	-moz-transition: max-height 0.3s ease, border-top  0.3s ease;
	-ms-transition: max-height 0.3s ease, border-top 0.3s ease;
	-o-transition: max-height 0.3s ease, border-top  0.3s ease;
}

/* menu icon */

.header .menu_icon {
	position: relative;
	cursor: pointer;
	display: inline-block;
	float: right;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 25px 0px 25px 25px;
	user-select: none;
	border: none;
}

.header .menu_icon .navicon {
	background: #414042;
	display: block;
	height: 3px;
	position: relative;
	transition: background .2s ease;
	width: 21px;
}

.header .menu_icon .navicon:before,
.header .menu_icon .navicon:after {
	background: #414042;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}

.header .menu_icon .navicon:before {
	top: 7px;
}

.header .menu_icon .navicon:after {
	top: -7px;
}

/* menu dropdown */

.header .menu_dropdown {
	display: none;
}

.menu_dropdown:checked ~ .menu {
	max-height: 400px;
	/*border-top: 3px solid rgba(65, 65, 65, 1);*/
}

.header .menu_dropdown:checked ~ .menu_icon .navicon {
	background: transparent;
}

.header .menu_dropdown:checked ~ .menu_icon .navicon:before {
	transform: rotate(-45deg);
}

.header .menu_dropdown:checked ~ .menu_icon .navicon:after {
	transform: rotate(45deg);
}

.header .menu_dropdown:checked ~ .menu_icon:not(.steps) .navicon:before,
.header .menu_dropdown:checked ~ .menu_icon:not(.steps) .navicon:after {
	top: 0;
}

[type="checkbox"], label {
	display: none;
}

/* start of content */

.content {
	position: relative;
	display: block;
	width:100%;
	top: 0px;
	margin-top: 70px;
	border: none;
}

.content_left_column {
	position: relative;
	clear: both;
	margin: 0px;
	padding: 0px;
	width: 100%;
	border: none;
}

.content_right_column {
	position: relative;
	clear: both;
	margin: 0px;
	padding: 0px;
	width: 100%;
	border: none;
}

.content_spacing {
	position: relative;
}

.content_left_column .content_spacing {
	margin: 0px 0px 2.5210% 0px;
	border: none;
}

.content_right_column .content_spacing {
	margin: 0px 0px 2.5210% 0px;
	border: none;
}

.content_overlay {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.45);
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity  0.3s ease;
	-ms-transition: opacity  0.3s ease;
	-o-transition: opacity  0.3s ease;
	transition: opacity  0.3s ease;
}

.content_spacing:hover .content_overlay {
	opacity: 1;	
}

.content_brief {
	position: absolute;
	width: 100%;
    text-align: center;
	font-size: 0.8em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: none;
}

.content_project {
	position: relative;
	text-decoration: none;
	font-weight: 300;
	font-size: 0.8em;
	color: #414042;
}

.content_about {
	position: relative;
	width: 100%;
	margin: auto;
	text-decoration: none;
	text-align: center;
	font-weight: 300;
	font-size: 0.8em;
	color: #414042;
}

.content_largetext {
	font-size: 1.7em;
}

.content_about_img {
	position: relative;
	display: block;
	margin: auto;
	padding: 30px;
	width: 245px;
	border-radius: 50%;
}

/* start of footer */

.footer {
	position: relative;
	display: block;
	width: 100%;
	height:70px;
	clear: both;
	border: none;
}

.footer_text {
	position: absolute;
	width: 100%;
    text-decoration: none;
	font-weight: 300;
	font-size: 0.75em;
	text-align: center;
	bottom: 10px;
}

/* for tablet */

@media only screen and (min-width: 640px) {
	
	.header {
		height: 82px;
	}
	
	.header ul {
		position: relative;
		width: auto;
		height: 50px;
		border: none;
	}
	
	.header ul .menu_divide {
		position: relative;
		height: 0px;
		width: 0px;
	}
	
	.header ul > li {
		clear: none;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		margin: 0px 0px 0px 30px;
		padding: 0px;
		float: left;
	}
	
	.header ul > li.unselected > a {
		font-size: 0.76em;
	}

	.header ul > li.unselected > a:hover {
		border-bottom: 3px solid rgba(65, 65, 65, 1);
	}

	.header ul > li.selected > a {
		font-size: 0.76em;
		border-bottom: 3px solid rgba(65, 65, 65, 1);
	}
	
	.header ul > li.icon_group > a img {
		width: 28px;
		padding: 0px;
	}
	
	.header ul > li.icon_group > a img.last {
		margin: 0px 0px 0px 15px;
		}
	
	.header .menu {
		position: relative;
		clear: none;
		float: right;
		max-height: none;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		width: auto;
		left: auto;
	}
	
	.header .menu_icon {
		display: none;
		top: 50px;
	}
	
    .logo {
		width: 130px;
	}
	
	/* menu */
	
	.menu_dropdown:checked ~ .menu {
		border: none;
	}
	
	/* content */
	
	.content {
		margin-top: 82px;
	}
	
	.content_left_column {
		clear: none;
		float: left;
		width: 59.6%;
	}

	.content_right_column {
		clear: none;
		float: right;
		width: 40.38%;
	}
	
	.content_left_column .content_spacing {
		margin: 0px 0px 1.4% 0px;
		border:  none;
	}
	
	.content_right_column .content_spacing {
		margin: 0px 0px 1.6% 2.24%;
		border: none;
	}
	
	.content_brief {
		font-size: 0.8em;
	}
	
	.content_project {
	font-size: 0.8em;
	}
	
	.content_about {
		font-size: 0.8em;
		max-width: 720px;
	}
	
	.content_largetext {
		font-size: 1.6em;
	}
	
	.content_about_img {
		padding: 45px;
		width: 340px;
	}
	
	/* footer */
	
	.footer {
		height: 82px;
	}
	
}

/* for desktop */

@media only screen and (min-width: 960px) {
	
	/* header */
	
	.header {
		height: 84px;
	}
	
	.header ul {
		height: 60px;
	}
	
	.header ul > li {
		margin: 0px 0px 0px 30px;
	}
	
	.header ul > li.unselected > a {
		font-size: 0.9em;
	}

	.header ul > li.selected > a {
		font-size: 0.9em;
	}
	
	.header ul > li.icon_group > a img {
		width: 33px;
	}
	
	.header ul > li.icon_group > a img.last {
		margin: 0px 0px 0px 23px;
		}
	
	.header .menu {
		position: relative;
		clear: none;
		float: right;
		max-height: none;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	
	.header .menu_icon {
		display: none;
		top: 50px;
	}
	
	.logo {
		width: 154px;
	}
	
	.content_brief {
		font-size: 0.94em;
	}

	.content_about {
		font-size: 0.94em;
		max-width: 740px;
	}
	
	.content_largetext {
		font-size: 1.8em;
	}
	
	.content_about_img {
		padding: 60px;
		width: 440px;
	}
	
	/* content */
	
	.content {
		margin-top: 84px;
	}
	
	/* footer */
	
	.footer {
		height: 84px;
	}

}