/* ------------------------------------------------------------------------------ */
/* ****************************************************************************** */
/* --------- (C) Copyright 2022/2023 by machtWeb | Reinhard Lange --------------- */
/* ---------------------- machtWeb.de | imail@machtWeb.de ----------------------- */
/* ------------------------------------------------------------------------------ */
/* update	->													  6.00/00 - 29-07-22
/* layout	-> startpage														  */
/* file 	-> design/design.css											  */
/* colors	-> http://www.color-hex.com											  */
/* ------------------------------------------------------------------------------ */
/* -------------------------------------------------------------- 6.00/00 - 29-07-22
/* ROOT																			  */
/* ------------------------------------------------------------------------------ */
@charset "UTF-8";

/*@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);*/
/*@import url(https://fonts.googleapis.com/css?family=Rajdhani:300&display=swap);*/
/* ------------------------------------------------------------------------------ */

/* COLORS - CUSTOMER */
/* main -> orange #ee741d - rgba(238,116,29,1) */
:root {
	--color-logo:#0077EA;
	--back-navi:#fff;
	}
/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 01-07-22 */
::selection				{color:white;background:var(--color-logo,#ee741d);} 
::-moz-selection		{color:white;background:var(--color-logo,#ee741d);}

html {
	box-sizing:border-box;
	/*font-size: 100%;*/
	block-size: 100%;
	/*overflow-y: auto;*/
	-webkit-overflow-scrolling:touch;
	text-rendering:optimizeSpeed;
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	}

*, *:before, *:after 	{box-sizing:inherit;margin:0;padding:0;}
body, html 				{margin:0;padding:0;font-size:100%;}
body					{/*overflow-y:scroll;*/  background: #fafafa;padding: 0;margin: 0;font-family:'Noto Sans', sans-serif;
	/* progress indicator - scrolling */
	/* link -> https://codepen.io/maddesigns/pen/qBOojWZ */
/* background-image: linear-gradient(to bottom, #fff 0%, #fff 100%), linear-gradient(to right top, rgba(238,116,29,1.0) 50%, #fff 50%);
  	background-size: auto, 100% calc(100% - 100vh + 3px);
  	background-position: 0 3px, 0 0;
  	background-attachment: fixed, scroll;
  	background-repeat: repeat-x, no-repeat;
	*/
	}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after	{content:'';display:table;}
.clearfix:after 					{clear:both;}


.content-wrapper {
	/*position: relative;
	margin:32px;
	border: 5px dashed red;*/
	}

* {
  box-sizing: border-box;
}


/* link		-> https://codepen.io/vixxofsweden/pen/xxGGYOE */

nav ul,
nav li {
	margin:0;
	padding:0;
	list-style:none;
 	background:var(--back-navi,#fff);
	}
	
nav a {
	display:block;
	text-decoration:none;
	}
nav a:hover,
nav a:visited {
	text-decoration:none;
	}
.menu-bar {
	display:flex;
 	background:var(--back-navi,#fff);
	}

.menu-link {
	position:relative;
	padding:16px 20px;
	background:var(--back-navi,#fff);
	color:#177E89;
	transition:background 0.2s, color 0.2s;
	z-index:1;
	}
.menu-link[aria-haspopup="true"] {
  	padding-right:40px;
	}
.menu-link[aria-haspopup="true"]:after {
  content:'';
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowRight.svg#accent');
  background-size: 14px;
  width: 14px;
  height: 14px;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.mega-menu-header {
	font-size:1.2em;
	text-transform:uppercase;
  	font-weight: bold;
  	color: #136a73;
	}
.mega-menu {
	background:var(--back-navi,#fff);
	z-index:10;
	}
.mega-menu--multiLevel {
	flex-direction:column;
	}
	
@media all and (min-width: 951px) {
  .nav {
    margin-top:50px;
    background:var(--back-navi,#fff);
	}
  .nav > nav {
    max-width:900px;
    margin:0 auto;
	}
  .menu [aria-haspopup="true"] ~ ul {
    display:none;
	}
  .menu-bar {
    position:relative;
	}
  .menu-bar > li > [aria-haspopup="true"]:after {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowBottom.svg#accent');
	}
  .menu-bar > li > [aria-haspopup="true"]:hover:after {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowBottom.svg#light');
	}
  .menu-bar > li > [aria-haspopup="true"]:focus ~ ul {
	display:flex;
	transform-origin:top;
	animation:dropdown 0.2s ease-out;
	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul:hover {
    display:flex;
  	}
  .menu-bar > li:focus-within > [aria-haspopup="true"] ~ ul {
    display:flex;
  	}
  .menu-bar > li > [aria-haspopup="true"]:focus,
  .menu-bar > li:focus-within > [aria-haspopup="true"],
  .menu-bar > li:hover > a {
    background: #177E89;
    color:#fff;
  	}
  .menu-bar > li > [aria-haspopup="true"]:focus:after,
  .menu-bar > li:focus-within > [aria-haspopup="true"]:after,
  .menu-bar > li:hover > a:after {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowTop.svg#light');
  	}
  .mega-menu {
    position:absolute;
    top:100%;
    left:0;
    width:100%;
  	}
  .mega-menu:hover {
    display:flex;
  	}
  .mega-menu a:hover {
    background:#dceced;
    color:#136a73;
  	}
  .mega-menu--multiLevel > li {
    width:33.33333333%;
  	}
  .mega-menu--multiLevel > li > [aria-haspopup="true"] ~ ul {
    left:33.33333333%;
    width:33.33333333%;
  	}
  .mega-menu--multiLevel > li > [aria-haspopup="true"] ~ ul ul {
    width:100%;
    left:100%;
  	}
  .mega-menu--multiLevel li:hover > [aria-haspopup="true"] ~ ul {
    display:block;
    transform-origin:left;
    animation:flyout 0.2s ease-out;
  	}
  .mega-menu--multiLevel li:focus-within > [aria-haspopup="true"] ~ ul {
    display:block;
  	}
  .mega-menu--multiLevel li:hover > [aria-haspopup="true"],
  .mega-menu--multiLevel li:focus-within > [aria-haspopup="true"],
  .mega-menu--multiLevel li:hover > a,
  .mega-menu--multiLevel li:focus-within > a {
    background:#dceced;
    color:#136a73;
  	}
  .mega-menu--multiLevel [aria-haspopup="true"] ~ ul,
  .mega-menu--multiLevel [aria-haspopup="true"] {
    border-left:1px solid #f0f0f0;
  	}
  .mega-menu--multiLevel [aria-haspopup="true"] ~ ul:hover,
  .mega-menu--multiLevel [aria-haspopup="true"]:hover {
    display:block;
  	}
  .mega-menu--multiLevel [aria-haspopup="true"] ~ ul {
    position:absolute;
    top:0;
    height:100%;
  	}
  .mega-menu--flat > * {
    flex:1;
  	}
  .mobile-menu-trigger,
  .mobile-menu-header,
  .mobile-menu-back-item {
    display:none;
  	}
}

@media all and (max-width: 950px) {
  .nav {
    padding:20px;
  	}
  .mobile-menu-trigger,
  .mobile-menu-header,
  .mobile-menu-back-item {
    display:block;
  	}
  .mobile-menu-trigger {
    padding:10px;
    border:0;
    border-radius:4px;
    background:#177E89;
    color:#fff;
    font-size:1.2em;
  	}
  .mobile-menu-header {
    order:-1;
    background:grey;
  	}
  .mobile-menu-header a {
    visibility:visible;
    padding:20px 25px;
    color:#fff;
  	}
  .menu-bar {
    position:fixed;
    flex-direction:column;
    top:0;
    left:-100%;
    width:350px;
    height:100vh;
    max-width:350px;
    max-width:90%;
    overflow-x:hidden;
    transition:left 0.3s;
    box-shadow:1px 0px 2px 0px rgba(0, 0, 0, 0.25);
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul {
    display:flex;
    position: absolute;
    flex-direction:column;
    background:var(--back-navi,#fff);
    left:100%;
    top:0;
    width:100%;
    max-height:100vh;
    transition:left 0.3s;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] {
    font-size:1.2em;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] ~ ul a {
    padding-left:40px;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] ~ ul a {
    padding-left:80px;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"] {
    color:#2a2a2a;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"]:after {
    content:'+';
    height:20px;
    line-height:1;
    font-size:1em;
    font-weight:normal;
    background:none;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"] ~ ul {
    max-height:0px;
    transform-origin:top;
    transform:scaleY(0);
    transition:max-height 0.1s;
  	}
  .mega-menu-content {
    padding:20px 25px;
  	}
  .mobile-menu-back-item {
    order:-1;
  	}
  .mobile-menu-back-item a {
    max-height:calc(1.4em + 40px);
    margin-top:calc(0px - (1.4em + 40px));
    pointer-events:none;
    background:#d9d9d9;
    color:#2a2a2a;
  	}
  .mobile-menu-back-item a:before {
    content:'';
    display:inline-block;
    width:14px;
    height:12px;
    margin-right:10px;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowLeft.svg#default');
    background-size:14px;
  	}
  .mobile-menu-trigger:focus ~ ul {
    left:0;
  	}
  .menu-bar:hover,
  .menu-bar:focus-within {
    left:0;
  	}
  .menu-bar > li > [aria-haspopup="true"]:focus ~ ul {
    left:0;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul {
    margin-top:calc(1.4em + 40px);
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul:hover,
  .menu-bar > li > [aria-haspopup="true"] ~ ul:focus-within {
    left:0;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"]:focus ~ ul {
    max-height:500px;
    animation:dropdown 0.3s forwards;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul li:focus-within > [aria-haspopup="true"] ~ ul {
    max-height:500px;
    transform:scaleY(1);
  	}
  .menu-bar > li:focus-within ~ .mobile-menu-header a {
    visibility:hidden;
  	}
}

@media all and (max-width: 950px) and (hover: none) {
  .mobile-menu-trigger:hover ~ ul {
    left:0;
  	}
  .menu-bar > li > [aria-haspopup="true"]:hover ~ ul {
    left:0;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul:hover {
    left:0;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"]:hover ~ ul {
    max-height:500px;
    animation:dropdown 0.3s forwards;
  	}
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"] ~ ul:hover {
    max-height:500px;
    transform:scaleY(1);
  	}
  .menu-bar > li:hover ~ .mobile-menu-header a {
    visibility:hidden;
  	}
}

@keyframes dropdown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes flyout {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ------------------------------------------------------------------------------ */
/* END */	
/* ------------------------------------------------------------------------------ */