@charset "UTF-8";
/* CSS Document */

@font-face {
	font-family: 'SortsMillGoudy';
	font-style: normal;
	font-weight: 400;
	src: url('sortsmillgoudy-regular.ttf') format('truetype');
}
@font-face {
	font-family: 'SortsMillGoudy';
	font-style: italic;
	font-weight: 400;
	src: url('sortsmillgoudy-italic.ttf') format('truetype');
}


/* Media queries below; initial design for 320px minimum width (mobile-first approach) */


/* General formating of headers, body text and links */

html {
	min-width: 320px;
	overflow-x: hidden;
}

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "SortsMillGoudy", serif;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	letter-spacing: normal;
	color: black;
	text-decoration: none;
}

html {
	background-color: #e0e0e0;
}

html * {
	background-color: transparent;
}

h1,
h1 * {
	font-family: "SortsMillGoudy", serif;
	font-style: normal;
	font-size: 24px;
	line-height: 32px;
	margin: 10px 0 30px 0;
}

h2,
h2 * {
	font-family: "SortsMillGoudy", serif;
	font-style: normal;
	font-size: 14px;
}

table,
p,
p *,
li,
li * {
	font-family: "SortsMillGoudy", serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	margin: 0 0 20px 0;
}

p em,
li em {
	font-style: italic;
}

ul {
	list-style-position: inside;
}


/* Backgrounds, rulers and content widths */

.ControlBackground,
.Navigation,
.MainWarmGray,
.MainBrightWarmGray,
.MainWhite,
.Footer {
	max-width: 1200px;
	margin: auto;
}

.Navigation {
	position: relative;
	z-index: 500;
	background: #e0e0e0;
	padding: 30px 30px 30px 28px;
	overflow: hidden;
}

.MainWarmGray {
	position: relative;
	z-index: 500;
	background: #cac6c1;
	padding: 30px 30px 15px 30px;
	overflow: hidden;
}

.MainWhite {
	position: relative;
	z-index: 500;
	background: white;
	padding: 40px 30px 15px 30px;
	overflow: hidden;
}

.MainBrightWarmGray {
	position: relative;
	z-index: 500;
	background: #f3f2f1;
	padding: 30px 30px 15px 30px;
	overflow: hidden;
}

div.Scroll {
	position: fixed;
	left: 0;
	bottom: 10%;
	width: 100%;
	align-content: center;
	z-index: 200;
}

div.Scroll img {
	display: block;
	margin: auto;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-name: Wiggle;
	animation-timing-function: ease-in-out;
	opacity: 0.5;
	transition: opacity 0.5s;
}

div.Scroll:hover > img {
	opacity: 1.0;
}

@keyframes Wiggle {
	0% {transform: translateY(0);}
	50% {transform: translateY(8px);}
	100% {transform: translateY(0);}
}

.Ruler {
	stroke: #383838;
	stroke-width: 1px;
	stroke-linecap: round;
	width: 100%;
	height: 50px;
	display: block;
}



/* Consulting banner with animated logo (on MainWarmGray) */

.Logo {
	width: 80%;
	margin: 20px 15% 20px 5%;
}

.Cogwheel {
	fill: none;
	stroke: white;
	stroke-linecap: square;
	stroke-miterlimit: 3.86;
	stroke-width: 1.5px;
}

.Animation {
	animation-duration: 1.5s;
	animation-iteration-count: 1;
	transform: translateX(120px);
}

.Upper {
	animation-name: Upper;
}

@keyframes Upper {
	0% {transform: translateX(120px) rotate(-160deg); transform-origin: 24.34px 12.95px; animation-timing-function: ease-in-out;}
	99% {transform: translateX(120px) rotate(0deg); transform-origin: 24.34px 12.95px; animation-timing-function: steps(1);}
	100% {transform: translateX(120px) rotate(0deg); transform-origin: 24.34px 12.95px;}
}

.Lower {
	animation-name: Lower;
}

@keyframes Lower {
	0% {transform: translateX(120px) rotate(160deg); transform-origin: 19.52px 30.57px; animation-timing-function: ease-in-out;}
	99% {transform: translateX(120px) rotate(0deg); transform-origin: 19.52px 30.57px; animation-timing-function: steps(1);}
	100% {transform: translateX(120px) rotate(0deg); transform-origin: 19.52px 30.57px;}
}



/* MainWhite */

.MainWhite {
	position: relative;
	display: block;
}

.MainWhite h1 {
	text-align: center;
}

.MainWhite h2 {
	text-align: center;
	margin: 30px 0 10px 0;
}

h2.Icon {
	text-align: left;
	line-height: 40px;
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;
	padding-left: 55px;
}


/* MainBrightWarmGray */

.RunIn {
	padding: 10% 0 0 30px !important;
	background-origin: content-box;
	background-position: right bottom;
	background-size: contain;
	background-repeat: no-repeat;
}

.RunIn p {
	margin-right: 45%;
}

p.Back {
	text-align: right;
}

.MainWhite p a,
.MainBrightWarmGray p a {
	display: inline;
	background-color: #cac6c1;
	padding-bottom: 3px;
}

.MainWhite p a span {
	font-family: "SortsMillGoudy", serif;
	display: inline;
	background-color: #ffffff;
	margin-bottom: 0;
	padding: 0 2px;
}

.MainBrightWarmGray p a span {
	font-family: "SortsMillGoudy", serif;
	display: inline;
	background-color: #f3f2f1;
	margin-bottom: 0;
	padding: 0 2px;
}

@media (hover:hover) {

	.MainWhite p a:hover > span,
	.MainBrightWarmGray p a:hover > span {
		background-color: #cac6c1;
	}
}



/* Control bar formating and behavior */

.ControlBackground,
.ControlPanel {
	width: 100%;
	background: #e0e0e0;
	padding: 0 20px;
}

.Control {
	padding: 5px 5px 5px 0;
	height: 28px;
}

.Control,
.Control * {
	position: relative;
	z-index: 900;
	width: 100%;
	text-decoration: none;
	overflow: visible;
	color: #383838;
	text-align: left;
	display: block;
}

.Control h1,
.Control h1 * {
	font-size: 14px;
	line-height: normal;
	text-align: left;
	margin-top: 0;
	margin-bottom: 0;
}

.Control h1 {
	padding-left: 20px;
}

.Control h1 span.Long {
	display: none;
}

.Control h1 span.Short {
	display: inline;
}

.Control h2,
.Control h2 * {
	margin-bottom: 10px;
	margin-top: 10px;
	text-align: left;
	font-size: 14px;
}

.Control h2 {
	display: block;
}

.Control section h2 a {
	display: inline;
	background-color: white;
	padding-bottom: 3px;
}

.Control section h2 a span {
	display: inline;
	background-color: #e0e0e0;
	margin-bottom: 0;
	padding: 5px 2px 0 2px;
}

.ControlMenu {
	position: relative;
	width: 120px;
	height: 18px;
	float: right;
	cursor: default;
	border: none;
	outline: none;
	clear: none;
	overflow-y: visible;
	display: block;
}

.ControlMenu section input[type=checkbox] {
	display: none;
}

.ControlInfo {
	width: 64px !important;
	float: left !important;
}

.ControlControl {
	background-image: none;
	background-size: 14px 14px;
	background-repeat: no-repeat;
	background-position: left;
	background-origin: content-box;
	padding-left: 10px;
}

.ControlControlLanguage {
	background-image: url(/images/language-gr.svg);
}

.ControlPanel {
	padding: 0 8px 0 28px;
	position: absolute;
	width: 220px;
	height: auto;
}

.ControlInfo section div.ControlPanel {
	width: 310px;
}

.ControlMenu:first-of-type section div.ControlPanel {
	width: 125px;
}

.ControlMenu section > .ControlPanel {
	max-height: 0;
	overflow-y: hidden;
	transition: max-height 0.5s;
}


div.ControlMenu section input[type=checkbox]:checked ~ div.ControlPanel {
	max-height: 160px;
}

div.ControlMenu section input[type=checkbox]:checked ~ label h1,
div.ControlMenu section input[type=checkbox]:checked ~ label h1 span {
	color: black;
}

div.ControlMenu section input[type=checkbox]:checked ~ label.ControlControl {
	background-image: url(/images/close-bk.svg);
}

@media (hover:hover) {

	.Control section h2 a:hover {
		background-color: #cac6c1;
	}

	div.ControlMenu section:hover > .ControlPanel {
		max-height: 160px;
	}
}

div.ControlMenu section:hover > label h1,
div.ControlMenu section:hover > label h1 span {
	color: black;
}

div.ControlMenu section:hover > label.ControlControlLanguage {
	background-image: url(/images/language-bk.svg);
}



/* Navigation */

.Navigation p a {
	display: inline;
	background-color: white;
	padding-bottom: 3px;
}

.Navigation p a span {
	font-family: "SortsMillGoudy", serif;
	display: inline;
	background-color: #e0e0e0;
	margin-bottom: 0;
	padding: 0 2px;
}

@media (hover:hover) {

	.Navigation p a:hover {
		background-color: #cac6c1;
	}
}


/* Footer formatting */

div.Footer {
	padding: 1px 0;
	position: relative;
	height: auto;
	display: block;
	background: #cac6c1;
	z-index: 500;
}

div.Footer * {
	font-family: "SortsMillGoudy", serif;
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	color: #383838;
	line-height: 15px;
}

div.Footer h2,
div.Footer p {
	width: 100%;
	margin: 0 auto 20px auto;
	text-align: center;
}

.Footer h2 a {
	display: inline;
	background-color: #e0e0e0;
	padding-bottom: 3px;
}

.Footer h2 a span {
	display: inline;
	background-color: #cac6c1;
	margin-bottom: 0;
	padding: 0 2px;
}

@media (hover:hover) {

	.Footer h2 a:hover {
		background-color: #ffffff;
	}
}



/* Changes for wide viewports */


@media (min-width: 360px) {
	
	h1,
	h1 * {
		font-size: 28px;
		line-height: 36px;
	}

	h2,
	h2 * {
		font-size: 16px;
	}

	table,
	p,
	p *,
	li,
	li * {
		font-size: 14px;
		line-height: 20px;
	}
}


@media (min-width: 496px) {

	.RunIn {
		background-size: cover;
		background-position: right;
	}

	.Logo {
		width: 60%;
		margin: 20px 25% 20px 15%;
	}

	.ControlInfo {
		width: 240px !important;
	}
	
	.Control h1 span.Long {
		display: inline;
	}

	.Control h1 span.Short {
		display: none;
	}
}


@media (min-width: 650px) {

	.Main {
		padding: 0 50px;
	}
	
	.Control {
		padding: 5px 5px 5px 20px;
	}

	h2.Icon {
		padding-left: 80px;
	}
}


@media (min-width: 800px) {

	.Main {
		padding: 0 100px;
	}

	.Navigation {
		padding: 50px 25% 50px 25%;
	}

	.MainWarmGray {
		padding: 50px 25% 40px 25%;
	}

	.MainWhite {
		padding: 80px 25% 60px 25%;
	}

	.MainBrightWarmGray {
		padding: 30px 25% 120px 25%;
	}

	.RunIn {
		padding: 10% 0 0 25% !important;
	}

	.RunIn p {
		margin-right: 50%;
		margin-top: 0;
		margin-bottom: 80px;
	}

	.Logo {
		width: 90%;
		margin: 40px auto;
	}

	h1,
	h1 * {
		font-size: 48px;
		line-height: 64px;
		margin: 30px 0 60px 0;
	}

	h2,
	h2 * {
		font-size: 20px;
	}

	table,
	p,
	p *,
	li,
	li * {
		font-size: 16px;
		line-height: 24px;
	}

	h2.Icon {
		padding-left: 100px;
	}
}


@media (min-width: 1200px) {

	.Main {
		padding: 0 100px;
	}

	.Navigation {
		padding: 50px 300px 50px 298px;
	}

	.MainWarmGray {
		padding: 50px 300px 40px 300px;
	}

	.MainWhite {
		padding: 80px 300px 60px 300px;
	}

	.MainBrightWarmGray {
		padding: 30px 300px 120px 300px;
	}

	.RunIn {
		padding: 120px 0 0 300px !important;
	}

	.RunIn p {
		margin-right: 320px;
	}

	.Logo {
		width: 540px;
	}
}
