
/* @group basic */
	
body {
	font: 400 16px/26px 'Ubuntu';
	letter-spacing: 0px;
	color: #070707;
	background: #ECEDEC;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#siteframe {
	position: absolute; 
	top: 50%; 
	left: 0; 
	right: 0;
	transform: translate(0,-50%);
}
#wrap {
	max-width: 936px;
    margin: 0 auto;
	padding: 65px 20px 65px 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
#logo {
	max-width: 350px; 
}
#logo img {
	display: block; 
	width: 100%; 
	height: auto;
}
.text_wrap {
	max-width: 640px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.text {
	display: inline-block;
	max-width: 63%;
	padding: 0 0 0 50px; 
	box-sizing: border-box;
}
ul {
	margin: 0;
	margin-top: 13px;
	padding: 0;
}
.text ul li {
	font: 400 16px/26px "Ubuntu";
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #F49B23;
	list-style-type: none;
}
h2 {
	font: 400 16px/26px "Ubuntu";
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #F49B23;
	margin-bottom: 30px;
}
p {
	margin: 0 0 10px;
}
a {
	color: #070707;
	text-decoration: underline;
	text-underline-position: under;
	text-decoration-thickness: 1px;
	-webkit-transition: all 0.2s ease-out;
	   -moz-transition: all 0.2s ease-out;
	     -o-transition: all 0.2s ease-out;
	        transition: all 0.2s ease-out;
}
a:hover {
	color: #F49B23;
}

/* @end */

/* @group rwd */
	
@media screen and (max-width: 1050px) {
	
	#wrap {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#logo {
		padding: 0 50px 20px 0;
	}
	.text_wrap {
		margin: 0 -25px;
	}
	.text {
		padding: 0 25px; 
	}
}	

@media screen and (max-width: 650px) {
	
	#siteframe {
		position: static; 
		transform: translate(0,0);
	}
	#wrap {
		padding: 40px 20px 15px;
	}
	#logo {
		padding: 0 0 20px 0;
	}
	.text_wrap {
		flex-direction: column;
		max-width: 320px;
		align-items: center;
	}
	.text {
		display: block;
		max-width: 100%;
		padding: 0 0 35px;
		text-align: center;
	}
	h2 {
		margin: 0 0 10px;
	}
}

/* @end */

