/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {  border: 0;  font-size: 100%;  font: inherit;  vertical-align: baseline;  margin: 0;  padding: 0;}article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {  display: block;}body {  line-height: 1;}ol, ul {  list-style: none;}blockquote, q {  quotes: none;}blockquote:before, blockquote:after, q:before, q:after {  content: none;}table {  border-collapse: collapse;  border-spacing: 0;}strong, b {  font-weight: bold;}i {  font-style: italic;}u {  text-decoration: underline;}

html, body {
	width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0;
	color: #fff;
	background: #043a29;
}

body {
	background-color: #070707;
	background-image: url("desk.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
	background-attachment: fixed;
}

.top-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	border-bottom: 1px solid #0b3305;
	align-items: center;
	justify-content: center;
	height: 70px;
	padding: 10px 0;
	text-align: center;
	background: #000000bf;
}

a.top-tel {
	font-size: 30px;
    white-space: nowrap;
    margin-right: 20px;
    text-decoration: none;
}

a, a:link, a:visited {
	color: inherit;
}

h1 {
	margin: 0 0 0 60px;
	min-width: 410px;
	white-space: nowrap !important;
}

h1 img {
	height: 46px;
	float: left;
	margin-right: 15px;
	position: relative;
    top: 1px;
}

h1 div {
	display: inline-block;
}

h2 {
    padding-bottom: 10px;
}

h2 button {
	background: transparent;
    font: inherit;
    border: 0;
	cursor: pointer;
	padding: 0;
}

h2, h2 button {
	font-size: 34px;
	color: #14674c;
	transition: color 0.3s ease;
}

h2 button:hover {
	color: #1ca171;
}

h2 button[aria-expanded="true"] {
	color: #1ca171;
}

h2 button:focus,
h2 button:active {
	color: #1ca171;
}

h3 {
	margin: 10px 0 5px;
	font-weight: bold;
}

.name {
	display: block;
	font-size: 32px;
	line-height: 26px;
	font-weight: bold;
	margin: 0 auto;
	font-family: 'Playfair Display', serif;
	color: #fff;
}

.industry {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 300;
	margin-top: 10px;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 8.8px;
	color: #7e7e7e;
}

.industry:first-Letter {
	margin-left: 8.4px;
}

aside {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	justify-content: flex-end;
	left: 0;
	top: 0;
	bottom: 0;
	height: 100vh;
	width: 60px;
	background: #043a29;
	z-index: 9;
/*	overflow: hidden;*/
}

aside:hover {
	overflow: visible;
}

.aside-element {
	display: block;
	width: 60px;
	height: 30px;
	margin-bottom: 20px;
	
	font-size: 24px;
	line-height: 30px;
	white-space: nowrap;
	
	padding-left: 0;
    box-sizing: border-box;

	text-decoration: none;
	/*font-family: Raleway;*/
	transition: all .5s ease-in-out;

	background-color: #043a29;
	background-size: contain;
	background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.aside-element span {
	display: inline-block;
	background: #043a29;
	transition: all .5s ease-in-out;
	padding: 0 10px 0 10px;
    border-radius: 0 3px 3px 0;
	position: absolute;
    left: 60px;
    top: 0;
    z-index: -1;
}

.aside-slide span {
	font-size: 18px;
	height: 30px;
	transform-origin: left center;
	transition: all .5s ease;
	transform: translateX(-100%);
	opacity: 0;
}

.aside-slide:hover span,
.aside-slide:focus span,
.aside-slide:active span {
	transform: translateX(0%);
	opacity: 1 !important;
}

aside .tel {
	background-image: url("tel.svg");
}

aside .mail {
	background-image: url("mail.svg");
}

aside .geo {
	background-image: url("geo.svg");
}

.wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
    justify-content: center;
	padding-left: 10%;
	position: relative;
	top: 91px;
	height: calc(100vh - 91px);
	overflow: auto;
/*	transition: all 0.5s ease;*/
}

.wrapper.flex-start {
    justify-content: flex-start;
}

section {
	display: block;
	margin-bottom: 10px;
}

.content {
	font-family: Raleway;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.5em;
	width: 600px;
	max-width: 100%;
	padding-left: 20px;
	box-sizing: border-box;
	overflow: hidden;
	transition: height 0.4s ease;
}

.content ul {
	list-style: square;
	padding-left: 40px;
}

.bottom-img {
	display: none;
}

.rodo {
	font-size: 12px;
    line-height: 1.2em;
    margin-top: 20px;
}

@media (max-width: 1100px) {
	body {
		background-position: 65% 0;
	}

	.wrapper {
		padding-left: 100px;
		padding-right: 20px;
		max-width: 100vw;
	}

	section {
		max-width: 100%;
	}
}

@media (max-width: 710px) {
	h1 {
		margin: 0;
	}

	.wrapper {
		padding-left: 20px;
		padding-right: 20px;
		height: calc(100vh - 91px - 60px);
	}

	.contact {
		margin-bottom: 70px;
	}

	aside {
		flex-direction: row;
		align-items: center;
    	justify-content: flex-end;
		right: 0;
		bottom: 0;
		left: 0;
		top: auto;
		width: 100vw;
		height: 60px;
		overflow: auto;
	}

	.aside-element {
		margin-bottom: 0px;
		margin-right: 0;
	    box-sizing: border-box;
	    height: 60px;
	}

	.aside-slide span {
		display: none;
	}
}

@media (max-width: 600px) {
	h1.logo {
		min-width: 400px;
		transform: scale(0.8);
	}

	/*
	h1 img {
	    height: 35px;
	    margin-right: 8px;
	}

	.name {
		font-size: 22px;
		line-height: 18px;
	}
	
	.industry {
		font-size: 10px;
		letter-spacing: 4.8px;
	}

	.industry:first-Letter {
		margin-left: 4.4px;
	}
	*/
}

@media (max-height: 800px) {
	.wrapper {
		display: block;
		justify-content: flex-start;
		padding-top: 30px;
		padding-bottom: 100px;
		box-sizing: border-box;
	}
}

@media (max-width: 420px) {
	.top-header {
		background: #000;
		z-index: 10;
		justify-content: center;
	}
	
	h1 {
	    margin: 0 auto;
	}
	
	body {
		background: #000;
		overflow: auto;
		background-image: url(desk-v.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center bottom;
		background-attachment: local;
	}

	.wrapper {
		/*position: relative;
		height: auto;
		padding-top: 120px;
		margin-bottom: 60px;
		top: 0;
		overflow: visible;*/
	}
}

@media (max-height: 370px) {
	.aside-element span {
		display: none;
	}
}