@charset "utf-8";
/* CSS Document 
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,500,500i,800,800i&subset=latin-ext');*/

@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,300i,500,500i,700,700i&subset=latin-ext');
*, *::before, *::after {position: relative; box-sizing: border-box;}

body {
	margin: 0;
	padding: 0;
	background-color: /*#e1eff2*/white;
	background-image: url("images/concrete.png");
	font-family: /*'Montserrat'*/'Ubuntu',sans-serif;
	color: #192942;
	display: flex;
	flex-direction: column;
}
#flex {/**IE**/
  flex: 1 1 auto;
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
}
main {
	flex: 1 1 auto;
}
a {	color: #06f;
	text-decoration: none;
	background-image: linear-gradient(orange,orange);
	background-size: 100% 1px;
	background-repeat: no-repeat;
	background-position: center bottom 3px;
}
a.fullButton {
	text-align: center;
	display: block;
	background-image: none;
	padding: 5px 5px 25px;
}
a.fullButton::after {
	content: attr(data-value);
	display: inline-block;
	font-size: 16px;
	color: white;
	border-radius: 3px;
	background-color: orange;
	border: 1px solid #e07804;
	cursor: pointer;
	margin: auto;
	padding: 5px 10px;
	box-shadow: 0 1px 2px white;
}
orange {color: orange;}

ul, li {list-style: none; margin: 0; padding: 0; display: block;}
.LI::before, li:not(.liHead)::before {
	content: "";
	border-radius: 10%;
	height: 12px;
	width: 12px;
	background-color: orange;
	display: inline-block;
	margin-right: 10px;
}
.orange .LI::before, .orange li::before {
	background-color: white;
}
li.liHead {
	font-weight: bold;
	margin-bottom: 5px;
}
.wixIcon {
	stroke-width: 1px;
	width: 60px;
	height: 60px;
	stroke:rgb(4, 48, 75)
}

.logoPart {
	height: 12.5vw;
	background-color: white;
	width: 100%;
	max-width: 1624px;
	margin: auto;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	max-height: 125px;
	min-height: 90px;
	overflow: hidden;
}
.logoPart .logo {
	background-image: url(images/logo.svg);
	background-size: auto 60%;
	background-repeat: no-repeat;
	background-position: left center;
	position: absolute;
	top: 20px;
	left: 25px;
	bottom: 20px;
	width: calc(100% - 250px);
}
@media screen and (max-width:480px){
	.logoPart .logo {background-size: contain;}
} 

.logoPart .contact {
	float: right;
	text-align: right;
	padding: 25px 40px;
	color: gray;
}

.logoPart .contact a {
	display: block;
	margin-bottom: 5px;
}

[____________MAINMENU____________]{}
.mainMenu {
	background-color: rgb(252, 196, 44);
	height: 50px;
	font-size: 0;
	background-image: linear-gradient(90deg,orange 10%,#fcc42c 90%);
}
.mainMenu > input {
	display: none;
}
label[for="menuSwitch"] {
	position: absolute;
	top: 3px;
	left: 0;
	width: 140px;
	height: 44px;
	font-size: 16px;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 3px;
	background-color: #fcc42c;
	border: 1px solid #e07804;
	transition: all 0.3s 0.3s;
	z-index: 1;
	cursor: pointer;
	display: none;
}

#menuSwitch:checked ~ menu label[for="menuSwitch"] {
	height: 53px;
	border-radius: 3px 3px 0 0;
	border-bottom-color: #fcc42c;
	transition: all 0.3s;
}

label[for="menuSwitch"] i {
	display: inline-block;
	height: 32px;
	width: 32px;
	/* background-color: brown; */
	margin-right: 7px;
	margin-left: -5px;
}
label[for="menuSwitch"] i::before, label[for="menuSwitch"] i::after {
	position: absolute;
	left: 3px;
	right: 3px;
	content: "";
	height: calc(50% - 1px);
	box-shadow: 0 4px 0 0 currentColor inset,0 -4px 0 0 currentColor inset;
	transition: all 0.3s;
	transform: none;
}
label[for="menuSwitch"] i::before {top:3px}
label[for="menuSwitch"] i::after {bottom:3px}


#menuSwitch:checked ~ menu label[for="menuSwitch"] i::before, #menuSwitch:checked ~ menu label[for="menuSwitch"] i::after {
	height: 4px;
}
#menuSwitch:checked ~ menu label[for="menuSwitch"] i::before {
    top: calc(50% - 2px);
    transform: rotate(45deg);
}
#menuSwitch:checked ~ menu label[for="menuSwitch"] i::after {
	bottom: calc(50% - 2px);
	transform: rotate(-45deg);
}

.mainMenu menu {
	display: block;
	height: 100%;
	width: 100%;
	max-width: 1624px;
	margin: auto;
	padding: 0;
	background-image: linear-gradient(90deg, transparent,rgba(240, 121, 15, 0.4) 65px,rgb(252, 196, 44),rgb(252, 196, 44)65px),linear-gradient(90deg,#fcc42c,orange);
	background-repeat: no-repeat;
	background-size: 100px 100%, 100%;
	background-position: right top;
	white-space: nowrap;
	overflow: hidden;
	max-height: 50px;
	transition: max-height 0.3s;
	text-align: center;
}
.mainMenu a {
	font-size: 14px;
	font-weight: bold;
	height: 100%;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #192942;
	padding: 0 15px;
	transition: all 0.3s;
	background-image: radial-gradient(ellipse at center bottom, rgb(251, 215, 119) 40%, transparent 51%);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 120% 0;
	vertical-align: top;
	line-height: 0.95;
	box-shadow: 0 0 0 0 rgba(255,255,255,0.50) inset;
	border: 0px solid transparent;
}
.mainMenu a:first-of-type {
	margin-left: -40px;
}
.mainMenu a:hover {
	background-size: 200% 1000%;
}
.mainMenu a.current {
	box-shadow: 0 -5px 0 0 white inset;
}

.mainMenu a br {display: none;}
.mainMenu a .BR::after {
	content: "/";
	padding: 0 2px;
	font-weight: bold;
	color: white;
}
@media screen and (max-width:800px){
	.mainMenu a {padding: 0 10px;}
	.mainMenu a br {display:block;}
	.mainMenu a .BR {display: none;}}

.mainMenu a[href*="linkedin"] {
	font-size: 0;
	width: 32px;
	background-color: rgb(252, 196, 44);
	transform: skew(-30deg) translateX(-25px);
	transform-origin: bottom;
	background-image: linear-gradient(rgb(0, 115, 176),rgb(0, 115, 176));
	background-size: 25% 25%;
	background-repeat: no-repeat;
	background-position: bottom 3px right;
	padding-right: 30px;
	position: absolute;
	right: 0;
	top: 0;
}
.mainMenu a[href*="linkedin"]::before {
	position: absolute;
	content: "";
	background-color: rgb(0, 115, 176);
	top: 3px;
	bottom: 3px;
	width: 70%;
	left: 4px;
	border-radius: 3px 0 0 3px;
}
.mainMenu a[href*="linkedin"]::after {
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	background-color: rgb(0, 115, 176);
	content: "in";
	font-size: 14px;
	color: white;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: left;
	border-radius: 0 3px 3px 0;
	transform: skew(30deg);
	transform-origin: top;
	width: 70%;
}

@media screen and (max-width:600px){
	label[for="menuSwitch"] {display: flex;}
	.mainMenu menu {
	height: auto;
	z-index: 1;
	top: 0px;
	margin-left: 10px;
	width: calc(100% - 20px);
	padding-top: 55px;
	background-color: transparent;
	background-image: none;
	}
	#menuSwitch:checked ~ menu {
	max-height: 500px;
	transition: max-height 0.3s 0.3s;
	box-shadow: 0 6px 4px rgba(0, 0, 0, 0.2);
	}
	.mainMenu menu::before {
		position: absolute;
		top: 55px;
		left: 0;
		right: 0;
		bottom: 0;
		content: "";
		background-color: #fcc42c;
		box-shadow: 0 0 0 1px #e07804 inset;
	}
	.mainMenu a {
		display: flex;
		height: 40px;
		padding-left: 20px;
		border-bottom: 1px solid #e07804;
		justify-content: center;
		text-align: center;
	}
	.mainMenu a:first-of-type {
		margin-left: 0;
	}
	.mainMenu a.current {
		box-shadow: 10px 0 0 0 white inset,-10px 0 0 0 white inset;
	}
	.mainMenu a:first-of-type.current {box-shadow: 0 1px 0 0 #e07804 inset,-1px 0 0 0 #e07804 inset, 10px 0 0 0 white inset,-10px 0 0 0 white inset}
	.mainMenu a.current::before,.mainMenu a.current::after {
	position: absolute;
	content: "";
	border-style: solid;
	top:1px;
	}
	.mainMenu a.current::before {border-width: 19px 0px 19px 19px;border-color: transparent transparent transparent white;left: 10px;}
	.mainMenu a.current::after {border-width: 19px 19px 19px 0px;border-color: transparent white transparent transparent;right: 10px;}
	.mainMenu a .BR {display: inline-block;}
	.mainMenu a[href*="linkedin"] {
    top: 0;
    z-index: 100;
    height: 50px;
    border: none;
}}

.hero {
	width: 100%;
	height: 25vw;
	max-height: 25vh;
	min-height: 150px;
	box-shadow: 0 50px 200px rgba(0, 0, 0, 0.5) inset;
	background-image: radial-gradient(ellipse at center bottom,#16618a, #112539);
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero::after {
	position: absolute;
	left: 0;
	right: 0;
	content: "";
	height: 5px;
	background-image: linear-gradient(transparent,rgba(0, 0, 0, 0.3));
	bottom: 0;
	border-bottom: 1px solid white;
}
.hero.bigger {
	height: 50vw;
	max-height: calc(100vh - 400px);
	min-height: 300px;
}
.hero.big {
	height: calc(100vh - 260px);
	max-height: 100vh;
	min-height: 300px;
}
.hero.mini {
	height: 12.5vw;
	max-height: 12.5vh;
	min-height: 75px;
}
.hero figure {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0;
	margin: 0;
	background-size: cover;
	background-position: center;
}
.hero figure.orange::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background-color: #2d1801;
	opacity: 0.75;
}
.heroContent {
	color: white;
	text-align: center;
}
.heroContent.glass {
	width: 75%;
	max-width: 800px;
	font-size: 18px;
	text-align: left;
	background-color: rgba(35, 66, 86, 0.8);
	padding: 25px;
	box-shadow: 0 0 100px 1px rgba(255, 255, 255, 0.125) inset,0 0 0px 1px rgba(255, 255, 255, 0.25);
	font-weight: lighter;
	background-image: url(images/soft2.png);
}

/*.hero.big .heroContent {
	text-shadow: rgb(4, 48, 75) 2px 0px 0px, rgb(4, 48, 75) 1.75px 0.966667px 0px, rgb(4, 48, 75) 1.08333px 1.68333px 0px, rgb(4, 48, 75) 0.133333px 2px 0px, rgb(4, 48, 75) -0.833333px 1.81667px 0px, rgb(4, 48, 75) -1.6px 1.2px 0px, rgb(4, 48, 75) -1.98333px 0.283333px 0px, rgb(4, 48, 75) -1.86667px -0.7px 0px, rgb(4, 48, 75) -1.3px -1.51667px 0px, rgb(4, 48, 75) -0.416667px -1.95px 0px, rgb(4, 48, 75) 0.566667px -1.91667px 0px, rgb(4, 48, 75) 1.41667px -1.41667px 0px, rgb(4, 48, 75) 1.91667px -0.566667px 0px;
	text-shadow: rgb(4, 48, 75) 3px 0px 0px, rgb(4, 48, 75) 2.83333px 0.983333px 0px, rgb(4, 48, 75) 2.35px 1.85px 0px, rgb(4, 48, 75) 1.61667px 2.51667px 0px, rgb(4, 48, 75) 0.7px 2.91667px 0px, rgb(4, 48, 75) -0.283333px 2.98333px 0px, rgb(4, 48, 75) -1.25px 2.73333px 0px, rgb(4, 48, 75) -2.06667px 2.16667px 0px, rgb(4, 48, 75) -2.66667px 1.36667px 0px, rgb(4, 48, 75) -2.96667px 0.416667px 0px, rgb(4, 48, 75) -2.95px -0.566667px 0px, rgb(4, 48, 75) -2.6px -1.5px 0px, rgb(4, 48, 75) -1.96667px -2.26667px 0px, rgb(4, 48, 75) -1.11667px -2.78333px 0px, rgb(4, 48, 75) -0.133333px -3px 0px, rgb(4, 48, 75) 0.85px -2.88333px 0px, rgb(4, 48, 75) 1.75px -2.43333px 0px, rgb(4, 48, 75) 2.45px -1.73333px 0px, rgb(4, 48, 75) 2.88333px -0.833333px 0px, rgb(4, 48, 75) 0 0 1px,rgb(4, 48, 75) 0 0 5px,rgb(4, 48, 75) 0 0 10px,rgb(4, 48, 75) 0 0 20px; 
	text-shadow: rgb(4, 48, 75) 5px 0px 0px, rgb(4, 48, 75) 4.9px 1px 0px, rgb(4, 48, 75) 4.6px 1.95px 0px, rgb(4, 48, 75) 4.13333px 2.81667px 0px, rgb(4, 48, 75) 3.48333px 3.58333px 0px, rgb(4, 48, 75) 2.7px 4.2px 0px, rgb(4, 48, 75) 1.81667px 4.66667px 0px, rgb(4, 48, 75) 0.85px 4.93333px 0px, rgb(4, 48, 75) -0.15px 5px 0px, rgb(4, 48, 75) -1.13333px 4.86667px 0px, rgb(4, 48, 75) -2.08333px 4.55px 0px, rgb(4, 48, 75) -2.95px 4.05px 0px, rgb(4, 48, 75) -3.68333px 3.38333px 0px, rgb(4, 48, 75) -4.28333px 2.58333px 0px, rgb(4, 48, 75) -4.71667px 1.66667px 0px, rgb(4, 48, 75) -4.95px 0.7px 0px, rgb(4, 48, 75) -4.98333px -0.3px 0px, rgb(4, 48, 75) -4.83333px -1.28333px 0px, rgb(4, 48, 75) -4.48333px -2.21667px 0px, rgb(4, 48, 75) -3.95px -3.06667px 0px, rgb(4, 48, 75) -3.26667px -3.78333px 0px, rgb(4, 48, 75) -2.45px -4.35px 0px, rgb(4, 48, 75) -1.53333px -4.75px 0px, rgb(4, 48, 75) -0.566667px -4.96667px 0px, rgb(4, 48, 75) 0.433333px -4.98333px 0px, rgb(4, 48, 75) 1.41667px -4.8px 0px, rgb(4, 48, 75) 2.35px -4.41667px 0px, rgb(4, 48, 75) 3.16667px -3.86667px 0px, rgb(4, 48, 75) 3.88333px -3.15px 0px, rgb(4, 48, 75) 4.43333px -2.31667px 0px, rgb(4, 48, 75) 4.8px -1.4px 0px, rgb(4, 48, 75) 4.98333px -0.416667px 0px;}*/

.heroContent h1 {
	font-size: 3vw;
	margin: 0;
	color: #ffc52d;
	font-weight: normal;
}


@media (max-width: 1066.66667px) {
  .heroContent h1 {font-size: 32px;}}
@media (min-width: 1666.66667px) {
  .heroContent h1 {font-size: 50px;}}

.heroContent h2 {
	letter-spacing: 2px;
	margin: 0;
}

section.bigOrange {
	width: 100%;
	box-shadow: 0 -50px 200px rgb(255, 165, 0) inset, 0 1px 0 0 #e07804 inset;
	background-image: radial-gradient(ellipse at center bottom,#ffa500,#ffc52d);
	padding: 25px 25px 50px;
}

.bigOrange .heroContent {
	color: #192934;
	margin: auto;
	max-width: 600px;
	font-weight: lighter;
}
.bigOrange .heroContent b {font-weight: bold;}

[____________CARDSET____________]{}
.cardSet {
	display: block;
	text-align: center;
	padding: 20px 0 25px;
}
.cardSet.vertical {
	display: flex;
	justify-content: space-around;
	max-width: 1200px;
	margin: auto;
	flex-flow: row wrap;
}
@media screen and (max-width:1000px){.cardSet.vertical {max-width: 719px;}}
@media screen and (max-width:1000px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
	.cardSet.vertical {display:block;}
	.verticalCard {margin:0 7px 15px;}
}


.hero ~ .cardSet::before, .hero ~ .duoPage::before, .hero ~ .bigBlue::before {
	content: "";
	height: 32px;
	width: 32px;
	position: absolute;
	top: -16px;
	left: calc(50% - 16px);
	transform: rotate(45deg);
	box-shadow: 1px 1px 0 0 white inset, -3px -3px 2px rgba(0, 0, 0, 0.2);
}
.hero ~ .cardSet::before, .hero ~ .duoPage::before {
	background-color: white;
	background-image: url("images/concrete.png");}

.hero ~ .cardSet.orange::before, .hero ~ .duoPage.orange::before {
	background-color: #ffc52d;
	background-image: none;
}
.hero ~ .bigBlue::before {
	background-image: url(images/soft2.png);
	background-color: rgb(22, 97, 137);
	box-shadow: -3px -3px 2px rgba(0, 0, 0, 0.2);
}

.cardSet .year {
	display: block;
	width: 100%;
}
.cardSet .year + .year {
	margin-top: 15px;
}
.cardSet .year::before {
	content: attr(data-year);
	display: block;
	margin: auto;
	text-align: left;
	max-width: 1620px;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: -1px;
	box-shadow: 0 -1px rgba(0, 0, 0, 0.3) inset, 0 1px white;
}
@media screen and (max-width:1643px) {.cardSet .year::before {max-width: 800px;}}
@media screen and (max-width:830px) {.cardSet .year::before {padding-left: 15px;}}
.referenceCard {
	background-color: white;
	margin: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	padding: 0 0 25px 0;
	max-width: 800px;
	display: inline-block;
	width: calc(100% - 20px);
	vertical-align: top;
	min-height: 200px;
	text-align: left;
}
	
.referenceCard h2 {
	padding: 10px 15px 15px 15px;
	font-size: 16px;
	margin: 0;
	width:50%;
}
	
.referenceCard .row {
	width: 50%;
	padding: 2px 15px 2px 125px;
	font-size: 14px;
}
	
.referenceCard .row h3 {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	padding: 2px 10px;
	text-align: right;
	width: 115px;
	border-right: orange solid 3px;
	bottom: 0;
	font-size: 14px;
	color: gray;
	line-height: 20px;
	font-weight: normal;
}

@media screen and (max-width:600px){
	.referenceCard .row {
	padding: 2px 10px 2px 30px;
	background-image: linear-gradient(orange,orange);
	background-repeat: no-repeat;
	background-size: 3px 100%;
	background-position: 18px 10px;}
	.referenceCard .row h3 {
	position: static;
	text-align: left;
	background-color: white;
	padding: 5px 15px 0 15px;
	width: 100%;
	border-right: none;
	margin-left: -30px;
}}


.verticalCard {
	display: inline-block;
	vertical-align: top;
	width: 240px;
	background-color: white;
	padding: 0 20px;
	height: 450px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	text-align: left;
	font-weight: lighter;
	margin-bottom: 15px;
}

.referenceCard figure {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	background-color: #263544;
	padding: 0;
	margin: 0;
}

.verticalCard figure {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	padding: 0;
	margin: 0;
	background-color: #263544;
}

.duoPage {
	text-align: center;
	padding: 25px 0 50px;
}
.duoPage.orange {
	background-color: #ffc52d;
	background-image: radial-gradient(ellipse at center bottom, #f3a10c 20%, transparent 60%);
	background-size: 200% 95%;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.duoPage.orange > div {
	background-color: #feb517;
	box-shadow: 0 0 0 1px rgba(239, 152, 4, 0.6) inset, 0 5px 15px rgba(239, 152, 4, 0.6);
	background-image: linear-gradient(#183e51,#183e51);
	background-repeat: no-repeat;
	background-size: 100% 10px;
}
.duoPage > div {
	width: calc(50vw - 31px);
	display: inline-block;
	margin: 10px;
	padding: 25px 15px 50px;
	vertical-align: top;
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	max-width: 625px;
	min-width: 333px;
}

.duoPage h2 {
	display: inline-block;
	/* border-top: 2px solid orange; */
	background-image: linear-gradient(orange,orange);
	background-size: 100% 3px;
	background-position: center 31px;
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
	font-size: 24px;
	line-height: 32px;
}
.duoPage.orange h2 {
	color: white;
	background-image: linear-gradient(white,white);
}
.duoPage h2 small {
	display: block;
	opacity: 0.75;
	font-weight: lighter;
	letter-spacing: 1px;
	font-size: 16px;
}
.duoPage .numbers {
	margin: 10px 0 25px;
}
.duoPage .row {
	text-align: left;
	display: inline-block;
	width: 300px;
	/*box-shadow: 0 0 0 1px inset;*/
	white-space: nowrap;
}
.duoPage .row h3 {
	display: inline-block;
	font-size: 14px;
	letter-spacing: 1px;
	color: gray;
	margin: 0;
	padding: 0;
	font-weight: normal;
	text-align: right;
	padding-right: 5px;
	width: 70px;
	border-right: 2px solid orange;
	margin-right: 5px;
}	

.duoPage ul {
	text-align: left;
	max-width: 420px;
	margin: 0 auto 25px;
	padding-left: 25px;
}
.duoPage li {
	text-indent: -23px;
}


[____________HOBSLID____________]{}

.runStop {
	height: 16px;
	width: 16px;
	/*border-radius: 100%;*/
	overflow: hidden;
	color: white;
	outline: 1px solid white;
	outline-offset: 2px;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
}
.runStop:hover {
	outline-offset: -11px;
	outline: 14px solid rgba(255, 255, 255, 0.5);
}
.runStop::before {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: "";
	background-image: linear-gradient(currentColor,currentColor),linear-gradient(currentColor,currentColor);
	background-repeat: no-repeat;
	background-size: 20% 100%, 20% 100%;
	background-position: right 25% top, 25% top;
	transform: scaleY(0.8);
	transition: all 0.3s;

}
.stopped .runStop::before {
	background-size: 100% 20%, 20% 100%;
	background-position: left bottom, right top;
	transform: translateX(-30%) rotate(-45deg);
}
.hobSlid {
	height: 100%;
	width: 100%;
}
.hobSlid.fullscreen {
	position: fixed;
	background-color: #0e1420;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
}
.hobSlid > input {
	display: none;
}
.hobSlidLabels {
	color: white;
	position: absolute;
	bottom: 1px;
	height: 24px;
	left: calc(50% + 14px);
	white-space: nowrap;
	transform: translateX(-50%);
	text-align: left;
}
.hobSlidLabels::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: currentColor;
	border-radius: 100%;
	transition: all 0.3s;
	transform: scale(0.6);
}
.hobSlid.changed-fast .hobSlidLabels::before {transform: /*translateY(-10px) */scale(0.1);}
.hobSlidLabels label {
	display: inline-block;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	cursor: pointer;
	vertical-align: top;
	transition: all 0.3s;
	background-color: transparent;
	box-shadow: 0 0 0 2px currentColor inset;
	border: 1px solid transparent;
}
.hobSlidLabels label:not(:last-of-type)::after {
	content: "";
	height: 2px;
	width: 2px;
	background-color: currentColor;
	position: absolute;
	top: calc(50% - 1px);
	right: -2px;
}
.hobSlidLabels label:hover {
	box-shadow: 0 0 0 10px rgba(255,255,255,0.50) inset;
}
	
.hobSlidSlides {
	height: 100%;
	white-space: nowrap;
	position: absolute;
	width: 100%;
	overflow: hidden;
	/*transition: all 0.45s;*/
}
.hobSlid.fullscreen .hobSlidSlides {
	height: calc(100% - 30px);
}
/*.hobSlid.changed-slow .hobSlidSlides {opacity: 0;}*/

.hobSlidSlides .slidePositioner {
	width: 0;
	height: 0;
	display: inline-block;
	transition: margin-left 1s;
}

.hobSlid .slide:not(.visible) {opacity: 0;}
	
.hobSlid .slide {
	display: inline-flex;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	vertical-align: top;
	transition: all 1s;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hobSlid.fullscreen .slide {background-size: contain;}
	
.hobSlidSlides .hobSlidContent {
	max-width: 100%;
	display: block;
	white-space: normal;
	padding: 25px;
}
.hobSlidSlides .hobSlidContent:empty, .hobSlid.deminified .hobSlidContent {
	display: none;
}

.hobSlidLabels .runStop {
	vertical-align: top;
	margin-top: 0px;
	margin-right: -8px;
	margin-left: -8px;
	transform: translate(-16px,2px);
}

.hobSlid.mini:not(.fullscreen) .hobSlidLabels {
  bottom: auto;
  top: 5px;
  left: auto;
  right: 5px;
  transform: none;
  /*! box-shadow: 0 0 0 1px inset; */
  width: 76px;
  overflow: hidden;
}
.hobSlid.mini:not(.fullscreen) .labelPositioner {
	display: block;
	height: 0;
	width: 0;
	transition: all 0.3s;
}
.hobSlid.mini:not(.fullscreen) .hobSlidLabels label {
  display: flex;
  justify-content: flex-end;
  border-radius: 0;
  box-shadow: none;
  left: 24px;
  padding: 0;
  border: none;
  top: -24px;
  height: 24px;
  align-items: center;
}
.hobSlid.mini:not(.fullscreen) .hobSlidLabels label::after {
  content: attr(data-slidenumber);
  position: static;
  background-color: transparent;
  color: currentColor;
  height: auto;
  width: auto;
  padding-right: 2px;
}
	
.hobSlid.mini:not(.fullscreen) .hobSlidLabels::before {
  display: none;
}
.hobSlid.mini:not(.fullscreen) .hobSlidLabels  .runStop {
  transform: none;
  margin: 4px;
}

.hobSlid.mini:not(.fullscreen) .hobSlidLabels::after {
  content: "/"attr(data-slidescount);
  position: absolute;
  top: 0;
  right: 0;
  height: 24px;
  width: 32px;
  display: flex;
  align-items: center;
  color: currentColor;
}
.hobSlid.mini .hobSlidSlides > div, .hobSlid.fullscreen .hobSlidSlides > div {
	align-items: flex-end;
}
.hobSlid.mini .hobSlidSlides .hobSlidContent, .hobSlid.fullscreen .hobSlidContent {
	padding: 15px;
	background-color: rgba(0,0,0,0.50);
	width: 100%;
	font-size: 0.8em;
	line-height: 0.9;
	color: white;
}
section.bigOrange {
	box-shadow: 0 -50px 200px rgb(255, 165, 0) inset, 0 1px 0 0 #e07804 inset;
	background-image: radial-gradient(ellipse at center bottom,#ffa500,#ffc52d);
}
[____________FOOTER____________]{}
footer {
	display: block;
	width: 100%;
	background-color: white;
	text-align: center;
	padding: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	font-size: 0;
}
footer > div:last-child {
	background-color: #0f2e43;
	color: white;
	padding: 15px;
	width: 100%;
	margin: 25px 0 0;
	font-size: 15px;
}

.contactBox {
	border-style: solid;
	border-width: 10px 7px;
	border-color: #fec42c transparent transparent;
	display: inline-block;
	padding: 0;
	margin: 0;
	top: -1px;
}

.contactBox > div {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	width: 150px;
	/* box-shadow: 0 0 0 1px inset; */
	font-size: 15px;
}

.contactBox > div:nth-child(2) {
	margin: 0 10vw;
}

.contactBox > div:not(:first-child) h3 {
	font-size: 13px;
	color: gray;
	padding: 0;
	margin: 15px 0 5px;
	letter-spacing: 1px;
}
.contactBox > div:first-child h3 {
	margin: 15px 0;
	color: rgb(4, 48, 75);
}

.contactBox label {
	width: 50px;
	display: inline-block;
	text-align: right;
	padding-right: 10px;
	font-weight: bold;
	font-size: 13px;
	color: gray;
	letter-spacing: 1px;
}

@media screen and (max-width:600px){
	.contactBox > div {	margin: 0 15px !important;}
}

[____________BIGBLUE_FORM___________]{}

.bigBlue {
	padding: 15px 15px 50px 15px;
	margin: 0;
	background-image: url(images/soft2.png), radial-gradient(ellipse at center top,#16618a, transparent),linear-gradient(#16618a 32px,#112539);
	margin-top: -1px;
}
section form {
	margin: 15px auto 25px;
	width: 100%;
	max-width: 600px;
	font-size: 0;
}
form > div {
	display: inline-block;
	width: 100%;
	font-size: 15px;
	vertical-align: top;
}

form > .halfRow {width: calc(50% - 2px);}
form > .halfRow:nth-of-type(2n+1) {margin-right: 2px;}
form > .halfRow:nth-of-type(2n) {margin-left: 2px;}

form input {
	width: 100%;
	padding: 5px 5px 5px 10px;
	border: none;
	margin: 0;
	height: 32px;
	border-radius: 3px;
}
input[type="submit"] {
	font-size: 16px;
	color: #192942;
	background-color: orange;
	border: 1px solid #e07804;
	cursor: pointer;
	padding: 5px 10px;
	box-shadow: 0 1px 2px rgba(255, 255, 255, 0.25),0 -1px 2px rgba(0, 0, 0, 0.25);
	font-family: /*'Montserrat'*/'Ubuntu',sans-serif;
}
form textarea {
	width: 100%;
	height: 300px;
	padding: 5px 10px;
	border: none;
	border-radius: 3px;
}
form label {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	height: 32px;
	display: flex;
	align-items: center;
	padding-left: 10px;
	transform: none;
	transform-origin: left;
	opacity: 0.5;
	transition: all 0.3s;
}
form .error, form .success {
	margin: 5px 0;
	border-radius: 3px;
	color: white;
	z-index: 1;
	transition: all 0.3s;
	text-align: center;
	padding: 5px;
	font-size: 10px;
	opacity: 1;
}

form .error	{background-color: #ff002d;}
form .success {background-color: forestgreen;}

form .error:not(.visible), form *:not(#email):valid ~ .error, form .success:not(.visible) {
	padding: 0;
	font-size: 0;
	opacity: 0;
}
form .error::before, form .success::before {
	position: absolute;
	content: "";
	width: 12px;
	height: 12px;
	top: -6px;
	left: calc(50% - 6px);
	background-color: inherit;
	transform: rotate(45deg) scale(1);
	z-index: -1;
	transition: transform 0.3s;
}
form .error:not(.visible)::before, form *:not(#email):valid ~ .error::before, form .success:not(.visible)::before  {transform: rotate(45deg) scale(0);}

#mail_success.visible, #mail_fail.visible {font-size: 15px;}

:focus + label, :valid + label {
	transform: scaleX(0);
	opacity: 0;
}

.mapContainer {height: 33vh; min-height: 300px;}
.mapContainer::after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 8px;
	content: "";
	background-image: linear-gradient(transparent,#192942);
	z-index: 1;
	pointer-events: none;
	opacity: 0.25;
}
.mapa {height: 100% !important; width:100% !important}
.weidmannMark {
    box-shadow: 0 0 0 3px orange;
    border-radius: 100%;
    height: 2px;
    width: 2px;
    margin-left: -1px;
    margin-top: -1px;
}
div#weidmannMark::after {
    position: absolute;
    top: -7px;
    left: -7px;
    content: "";
    height: 0;
    width: 0;
    border-width: 8px;
    border-style: solid;
    border-color: currentColor transparent transparent;
}
div#weidmannMark::before {
    position: absolute;
    height: 32px;
    width: 32px;
    background-color: white;
    content: "";
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 -3px 0 0 rgba(25, 41, 66, 1) inset, 0 0 0 1px rgba(25, 41, 66, 0.6) inset;
    top: -39px;
    left: -15px;
    border-radius: 3px;
    background-image: url(images/w.svg);
    background-size: contain;
}

.hobSlid > input:nth-of-type(1):checked ~ .hobSlidSlides .slidePositioner {margin-left: 0;}
.hobSlid > input:nth-of-type(2):checked ~ .hobSlidSlides .slidePositioner {margin-left: -100%;}	
.hobSlid > input:nth-of-type(3):checked ~ .hobSlidSlides .slidePositioner {margin-left: -200%;}
.hobSlid > input:nth-of-type(4):checked ~ .hobSlidSlides .slidePositioner {margin-left: -300%;}	
.hobSlid > input:nth-of-type(5):checked ~ .hobSlidSlides .slidePositioner {margin-left: -400%;}
.hobSlid > input:nth-of-type(6):checked ~ .hobSlidSlides .slidePositioner {margin-left: -500%;}	
.hobSlid > input:nth-of-type(7):checked ~ .hobSlidSlides .slidePositioner {margin-left: -600%;}
.hobSlid > input:nth-of-type(8):checked ~ .hobSlidSlides .slidePositioner {margin-left: -700%;}	
.hobSlid > input:nth-of-type(9):checked ~ .hobSlidSlides .slidePositioner {margin-left: -800%;}
.hobSlid > input:nth-of-type(10):checked ~ .hobSlidSlides .slidePositioner {margin-left: -900%;}
.hobSlid > input:nth-of-type(11):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1000%;}
.hobSlid > input:nth-of-type(12):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1100%;}	
.hobSlid > input:nth-of-type(13):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1200%;}
.hobSlid > input:nth-of-type(14):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1300%;}	
.hobSlid > input:nth-of-type(15):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1400%;}
.hobSlid > input:nth-of-type(16):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1500%;}	
.hobSlid > input:nth-of-type(17):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1600%;}
.hobSlid > input:nth-of-type(18):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1700%;}	
.hobSlid > input:nth-of-type(19):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1800%;}
.hobSlid > input:nth-of-type(20):checked ~ .hobSlidSlides .slidePositioner {margin-left: -1900%;}
	
.hobSlid > input:nth-of-type(1):checked ~ .hobSlidLabels::before {margin-left: 0;}
.hobSlid > input:nth-of-type(2):checked ~ .hobSlidLabels::before {margin-left: 20px;}	
.hobSlid > input:nth-of-type(3):checked ~ .hobSlidLabels::before {margin-left: 40px;}	
.hobSlid > input:nth-of-type(4):checked ~ .hobSlidLabels::before {margin-left: 60px;}	
.hobSlid > input:nth-of-type(5):checked ~ .hobSlidLabels::before {margin-left: 80px;}
.hobSlid > input:nth-of-type(6):checked ~ .hobSlidLabels::before {margin-left: 100px;}	
.hobSlid > input:nth-of-type(7):checked ~ .hobSlidLabels::before {margin-left: 120px;}
.hobSlid > input:nth-of-type(8):checked ~ .hobSlidLabels::before {margin-left: 140px;}	
.hobSlid > input:nth-of-type(9):checked ~ .hobSlidLabels::before {margin-left: 160px;}
.hobSlid > input:nth-of-type(10):checked ~ .hobSlidLabels::before {margin-left: 180px;}
.hobSlid > input:nth-of-type(11):checked ~ .hobSlidLabels::before {margin-left: 200px;}	
.hobSlid > input:nth-of-type(12):checked ~ .hobSlidLabels::before {margin-left: 220px;}	
.hobSlid > input:nth-of-type(13):checked ~ .hobSlidLabels::before {margin-left: 240px;}	
.hobSlid > input:nth-of-type(14):checked ~ .hobSlidLabels::before {margin-left: 260px;}
.hobSlid > input:nth-of-type(15):checked ~ .hobSlidLabels::before {margin-left: 280px;}	
.hobSlid > input:nth-of-type(16):checked ~ .hobSlidLabels::before {margin-left: 300px;}
.hobSlid > input:nth-of-type(17):checked ~ .hobSlidLabels::before {margin-left: 320px;}	
.hobSlid > input:nth-of-type(18):checked ~ .hobSlidLabels::before {margin-left: 340px;}
.hobSlid > input:nth-of-type(19):checked ~ .hobSlidLabels::before {margin-left: 360px;}	
.hobSlid > input:nth-of-type(20):checked ~ .hobSlidLabels::before {margin-left: 380px;}
	
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(1):checked ~ .hobSlidLabels  .labelPositioner {margin-top: 0;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(2):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -24px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(3):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -48px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(4):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -72px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(5):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -96px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(6):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -120px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(7):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -144px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(8):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -168px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(9):checked ~ .hobSlidLabels  .labelPositioner {margin-top: -192px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(10):checked ~ .hobSlidLabels .labelPositioner {margin-top: -216px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(11):checked ~ .hobSlidLabels .labelPositioner {margin-top: -240px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(12):checked ~ .hobSlidLabels .labelPositioner {margin-top: -264px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(13):checked ~ .hobSlidLabels .labelPositioner {margin-top: -288px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(14):checked ~ .hobSlidLabels .labelPositioner {margin-top: -312px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(15):checked ~ .hobSlidLabels .labelPositioner {margin-top: -336px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(16):checked ~ .hobSlidLabels .labelPositioner {margin-top: -360px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(17):checked ~ .hobSlidLabels .labelPositioner {margin-top: -384px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(18):checked ~ .hobSlidLabels .labelPositioner {margin-top: -408px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(19):checked ~ .hobSlidLabels .labelPositioner {margin-top: -432px;}
.hobSlid.mini:not(.fullscreen) > input:nth-of-type(20):checked ~ .hobSlidLabels .labelPositioner {margin-top: -456px;}


