:root {
	--black: #000000;
	--white: #FFFFFF;
	--mostly_black: #303030;
	--dark_grey: #999999;
	--strong_blue: #105cb6;
	--light_blue: #e5edf7;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	text-decoration: none;
	list-style: none;
	font-size: 16px;
}

html,body {
	height: 100%;
}

body {
}

.main_wrapper {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	height: 100%;
	overflow-x:hidden !important;
}

.header_wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	align-items: center;
	background-color: var(--mostly_black);
	padding: 0px 0px 0px 0px;
	height: 4em;
}

.main_menu_button{
	margin: .25em 0px 0px 1.5em;
}

.main_menu_logo {
	display: block;
	position: relative;
	left: .5em;
	color: var(--white);
	font-size: 2em;
}

#main_menu_toggle
{
	display: block;
	position: relative;
	//top: 1.3em;
	//left: 2em;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
	font-family: 'Heebo', sans-serif;
}

#main_menu_toggle a
{
	text-decoration: none;
	color: var(--white);
	transition: color 0.3s ease;
}

#main_menu_toggle a:hover
{
	color: var(--strong_blue);
}


#main_menu_toggle input
{
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
	-webkit-touch-callout: none;
}

#main_menu_toggle span
{
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: var(--white);
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
			  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
			  opacity 0.55s ease;
}

#main_menu_toggle span:first-child
{
	transform-origin: 0% 0%;
}

#main_menu_toggle span:nth-last-child(2)
{
	transform-origin: 0% 100%;
}

#main_menu_toggle input:checked ~ span
{
	opacity: 1;
	transform: rotate(45deg) translate(-2px, -1px);
	background: var(--white);
}

#main_menu_toggle input:checked ~ span:nth-last-child(3)
{
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

#main_menu_toggle input:checked ~ span:nth-last-child(2)
{
	transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
	position: absolute;
	width: 300px;
	margin: -100px 0 0 -50px;
	padding: 50px;
	padding-top: 125px;
	background: var(--mostly_black);
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(-100%, 0);
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
	padding: 10px 0;
	font-size: 22px;
}

#main_menu_toggle input:checked ~ ul
{
	transform: none;
}

.body_wrapper {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
}

.body01_wrapper {
	display: flex;
	flex-direction: column;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	font-size: .8em;
	text-align: left;
	margin: 1em 0px 0px 0px;
	min-height: 100%;
	width: 25%;
}

.body02_wrapper {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	min-height: 100%;
	margin: 1em 0px 0px 0px;
	width: 50%;
}

.body03_wrapper {
	display: flex;
	flex-direction: column;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	font-size: .8em;
	text-align: left;
	margin: 1em 0px 0px 0px;
	min-height: 100%;
	width: 25%;
}

.footer_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
}

.footer {
	display: flex;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #D0D0D0;
	background-color: #F0F0F0;
	height: 4em;
	justify-content: center;
	align-items: center;
	font-size: .8em;
}

.footer_top {
	display: flex;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #e5edf7;
	margin: 1em 1em 0em 1em;
	padding: 0em 0em 0em 0em;
	height: 4em;
	justify-content: center;
	align-items: center;
	font-size: .8em;
}



@font-face {
    font-family: 'BebasNeueRegular';
    src: url('../fonts/BebasNeue-webfont.eot');
    src: url('../fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/BebasNeue-webfont.woff') format('woff'),
         url('../fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('../fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* MENU */
#menu ul li {
	float: left;
	list-style: none;
	padding-top: .55em;
	padding-left: .5em;
}

#menu ul li a {
	padding: 0px 5px;
	font-size: 2.2em;
	color: #e0e0e0;
}

#menu ul li a:hover {
	background-color: #606060;
}

.menu a {
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
}

a {
	color: #105cb6;
	cursor: pointer;
	text-decoration: none;
}

html {
	height: 100%;
}

body {
	color: #444;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 75%;
	height: 100%;
}

.contact a {
	text-decoration: none;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
}
.contact h2 {
	text-align: center;
	text-decoration: none;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 48px;
	color: #000000;
}

.contact ul li {
	list-style: none;
	font-size: 2em;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	text-align: center;
}

.contact a {
	font-size: 1em;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	text-align: center;
	color: #444;
}

.services h2 {
	text-align: center;
	text-decoration: none;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 48px;
	color: #000000;
}

.services ul li {
	list-style: none;
	font-size: 2em;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	text-align: center;
}

.contact p {
	text-align: justify;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 2em;
	color: #444;
}

div.contact {
	//border: 1px dotted;
	margin-top: 50px;
	height: auto;
	width: 500px;
	border: 0px solid;
	padding: 0px;
	margin-left: auto;
	margin-right: auto;
}

div.services {
	//border: 1px dotted;
	margin-top: 50px;
	height: auto;
	width: 500px;
	padding: 0px;
	margin-left: auto;
	margin-right: auto;
}

div.index_title {
	//border: 1px dotted;
	width: 450px;
	margin-top: 250px;
	margin-left: auto;
	margin-right: auto;
}

div.title {
	//border: 1px dotted;
	width: 450px;
	//margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
}

div.menu {
	//border: 1px dotted;
	height: 40px;
	background-color: #303030;
	//width: 1024px;
	min-width: 1024px;
}



div.wrapper {
	//border: 1px dotted;
	width: 100%;
	//width: 1024px;
	height: 100%;
}

div.portfolio {
	//border: 1px dotted;
	margin-top: 25px;
	display: inline-block;
}

.portfolio a {
	font-size: 25px;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	color: #000000
}

div.portfolio_image {
	//border: 1px dotted;
	float: left;
}

.portfolio_image img {
	display: block;
	width: 450px;
}

div.click {
	//border: 1px dotted;
	width: 300px;
	padding-right: 25px;
	float: left;
	text-align: right;
}

.click h1 {
	text-align: right;
	font-style: italic;
	color: #707070;
}

.click p {
	text-align: right;
	font-size: 16px;
	color: #000000;
}

#copyright {
	font-size: 10px;
}

div.portfolio_image img {
	//max-width: 100%;
	//max-height: 100%;
}

p.index_title {
	text-decoration: none;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 90px;
	text-align: center;
	color: #000000;
}

p.index_description {
	text-decoration: none;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 30px;
	text-align: center;
	color: #000000;
}

#portfolio ul li {
	padding: 0;
	margin: 0;
	list-style: none;
	height: auto;
	overflow: hidden;
	float: left;
}

.center_ad_index {
	
}

.google_AdSense_index_sub_wrapper {
	width: 482px;
	margin: auto;
}

.google_AdSense_body03_sub_wrapper {
	width: 162px;
	margin: auto;
}

@media(min-width: 800px) { 
	.google_ad_wrapper_index_bottom {
		width: 472px;
	}
	
	.google_ad_wrapper_body03 {
		width: 162px;
	}
}