@charset "UTF-8";
/* ***************************************************************************************** */
/* (c) designschmiede - www.wirschmiedendesign.de  
/* based on framework BOOTSTRAP V4 
/* ***************************************************************************************** */		

/* navbar - colors
-------------------------------------------------------------------------------------- */
/* change the brand and text color */
#navbar_main_ver .navbar-custom .navbar-brand,
#navbar_main_ver .navbar-custom .navbar-text {
  color: rgba(95,95,95,1);}

/* change the link color */
#navbar_main_ver .navbar-custom .navbar-nav .nav-link {
  color: rgba(95,95,95,1);}

/* change the color of active or hovered links */
#navbar_main_ver .navbar-custom .nav-item.active .nav-link,
#navbar_main_ver .navbar-custom .nav-item:hover .nav-link {
  color: rgba(95,95,95,0.9);}

/* for dropdown only - change the color of droodown */
#navbar_main_ver .navbar-custom .dropdown-menu {
	background-color: transparent;
  border: none;
	font-size: 15px;}

#navbar_main_ver .navbar-custom .dropdown-item {
  color: rgba(95,95,95,1);}

#navbar_main_ver .navbar-custom .dropdown-item:hover,
#navbar_main_ver .navbar-custom .dropdown-item:focus {
  color: rgba(95,95,95,0.9);}

#navbar_main_ver .navbar-custom .dropdown-item:active {
	background-color: rgba(245,245,245,1.00);
	color: rgba(95,95,95,0.9);}

/* navbar - nav-links
------------------------------------------------------------------------------------- */
#navbar_main_ver .navbar {
	position: relative;}

#navbar_main_ver .navbar-nav {
	width: 220px;
	padding-right: 5px;}	

#navbar_main_ver .navbar .nav-item {
	padding: 3px 0 3px 0;
	border-bottom: solid 1px rgba(160,160,160,0.90);}

#navbar_main_ver .navbar .nav-item .nav-link {
	font-size: 16px;
	border-left: solid 3px transparent;
	-webkit-transform: translate3D(-35px,0,0);
					transform: translate3D(-35px,0,0); 
	-webkit-transition: transform 0.6s ease-in-out;
					transition: transform 0.6s ease-in-out;	}

.no-touchevents #navbar_main_ver .navbar .nav-item:hover .nav-link {
	-webkit-transform: translate3d(0,0,0);
					transform: translate3d(0,0,0);
	-webkit-transition-timing-function: ease-in-out;
					transition-timing-function: ease-in-out;}

#navbar_main_ver .navbar .nav-item.active .nav-link { 
  background: rgba(219,219,219,1);
  background: -moz-linear-gradient(left, rgba(219,219,219,1) 0%, rgba(219,219,219,1) 68%, rgba(219,219,219,0.1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(219,219,219,1)), color-stop(68%, rgba(219,219,219,1)), color-stop(100%, rgba(219,219,219,0.1)));
  background: -webkit-linear-gradient(left, rgba(219,219,219,1) 0%, rgba(219,219,219,1) 68%, rgba(219,219,219,0.1) 100%);
  background: -o-linear-gradient(left, rgba(219,219,219,1) 0%, rgba(219,219,219,1) 68%, rgba(219,219,219,0.1) 100%);
  background: -ms-linear-gradient(left, rgba(219,219,219,1) 0%, rgba(219,219,219,1) 68%, rgba(219,219,219,0.1) 100%);
  background: linear-gradient(to right, rgba(219,219,219,1) 0%, rgba(219,219,219,1) 68%, rgba(219,219,219,0.1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dbdbdb', endColorstr='#dbdbdb', GradientType=1 );
}

/* navbar - content wrapper
------------------------------------------------------------------------------------- */
#navbar_main_ver_content {
	width: calc(100% - 251px);
	position: relative;
	-webkit-transform: translate3d(251px,0,0);
					transform: translate3d(251px,0,0); 
	-webkit-transition: transform 0.7s ease-in-out;
					transition: transform 0.7s ease-in-out;}

@media screen and (max-width: 1200px) {
#navbar_main_ver_content {	
	width: 100%;
	-webkit-transform: translate3d(0,0,0);
					transform: translate3d(0,0,0);
	-webkit-transition-timing-function: ease-in-out;
					transition-timing-function: ease-in-out;
	padding-top: 35px;}} 

#navbar_main_ver_content > * {
	-webkit-transform: translateZ(0);
					transform: translateZ(0);}

/* navbar - general adjustments
-------------------------------------------------------------------------------------- */
#navbar_main_ver {
	position: fixed;
	z-index: 997;		
	height: 100vh;  /* will be updated via jQuery */
	box-shadow: 1px 0px 3px 0px rgba(0,0,0,0.75);		
	-webkit-transform: translate3D(0,0,0);
					transform: translate3D(0,0,0); 
	-webkit-transition: transform 0.7s ease-in-out;
					transition: transform 0.7s ease-in-out;
  overflow-y: scroll !important;
	-webkit-overflow-scrolling: touch;
  scrollbar-width: none;}		

::-webkit-scrollbar {
  width: 0px;
  background: transparent; }

#navbar_main_ver.off {
	-webkit-transform: translate3d(-100%,0,0);
					transform: translate3d(-100%,0,0);
	-webkit-transition-timing-function: ease-in-out;
					transition-timing-function: ease-in-out;}

#navbar_main_ver > * {
	-webkit-transform: translateZ(0);
					transform: translateZ(0);}	

#navbar_main_ver .navbar.off {
	-webkit-animation-duration: 1s;
					animation-duration: 1s;
	-webkit-animation-fill-mode: both;
					animation-fill-mode: both;
	-webkit-animation-name: off;
					animation-name: off;}

@-webkit-keyframes off {
	from {
		opacity: 1;
		-webkit-transform: none;
						transform: none;}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0 , 0);
						transform: translate3d(-100%, 0 , 0);}}

@keyframes off {
	from {
		opacity: 1;
		-webkit-transform: none;
						transform: none;}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0 , 0);
						transform: translate3d(-100%, 0 , 0);}}

/* caret for dropdowns - click-anim
-------------------------------------------------------------------------------------- */
#navbar_main_ver .navbar .dropdown .dropdown-toggle[aria-expanded="true"]:after {
  -webkit-transform: rotate(180deg); 
	transform: rotate(180deg);}

#navbar_main_ver .navbar .dropdown .dropdown-toggle:after {
  -webkit-transform: none;
					transform: none;
	-webkit-transition: 0.5s;
					transition: 0.5s;}

/* caret for dropdowns - hover-anim
-------------------------------------------------------------------------------------- */
/* #navbar_hor .navbar .dropdown.caret .dropdown-toggle:after, 
#navbar_main_ver .navbar .dropdown.show .dropdown-toggle:after {
  -webkit-transform: rotate(180deg); 
					transform: rotate(180deg);}

#navbar_main_ver .navbar .dropdown .dropdown-toggle:after {
  -webkit-transform: none;
					transform: none;
	-webkit-transition: 0.5s;
					transition: 0.5s;}*/

/* navbar - nav-links - icons and img
------------------------------------------------------------------------------------- */
#navbar_main_ver i {
	min-width: 30px;
	text-align: center;}

#navbar_main_ver .i-overlay {
	position: absolute;
	width: 38px;
	height: 100%;
	top: 0;
	left: -20px;}

#navbar_main_ver .navbar-img {
	border-top: dashed 1px rgba(115,115,115,1.00);   
	position: absolute;
	margin: 10px 0;}

/* company-logo
-------------------------------------------------------------------------------------- */
#navbar_main_ver .company-logo {
	width: 270px;
	margin: 0 auto;
	padding: 25px 10px 20px 10px;}

/* topheader with 2cd-company-logo
-------------------------------------------------------------------------------------- 
#navbar_main_ver_wrapper .company-logo-2-wrapper {
  position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
  height: 90px;
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.75);
	z-index: 897!important;}

@media screen and (min-width: 1201px) {
#navbar_main_ver_wrapper .company-logo-2-wrapper {	
	display: none;}}	

#navbar_main_ver_wrapper .company-logo-2-wrapper .company-logo-2 {
	position: relative;
	width: 31rem;}

#navbar_main_ver_wrapper .company-logo-2-wrapper .company-logo-3 {
	position: relative;
	width: 19rem;}

@media screen and (max-width: 768px) {
#navbar_main_ver_wrapper .company-logo-2-wrapper .company-logo-2 {
	display: none;}}	 

@media screen and (min-width: 769px) {
#navbar_main_ver_wrapper .company-logo-2-wrapper .company-logo-3 {
	display: none;}}*/

/* contact-infos
-------------------------------------------------------------------------------------- */
#navbar_main_ver .contact-wrapper {
	margin: 15px 0 5px 0;}

#navbar_main_ver .contact {
	margin-left: 10px;
	font-size: 11px;
	font-weight: 300;
	line-height: 18px;}

/* hamburger-icon
-------------------------------------------------------------------------------------- */
#navbar_icon {
	position: fixed;
	cursor: pointer;
	width: 42px;
	right: 20px;
	top: 45px;
	padding: 0;
	display: none; 
	z-index: 999!important; 
	text-decoration: none;
	background-color: transparent;
	border: none;
	outline: none;}

#navbar_icon img {
	-webkit-transition: transform 0.8s;
					transition: transform 0.8s;}

#navbar_icon span {
	color: rgba(95,95,95,1.00);
	margin-top: 11px;
	font-size: 12px;
	display: block;}

#navbar_icon.responsive img {
	-webkit-transform: rotate(180deg);
					transform: rotate(180deg);}

@media screen and (max-width: 1200px) {
#navbar_icon {
	display: block;}} 	