/********************************************************************************
 * General stuff
 ********************************************************************************/

body {
  	font-family: d-din, sans-serif;
  	color: #444444;
	margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
  	font-family: d-din, sans-serif;
}

/********************************************************************************
 * Fonts
 ********************************************************************************/

@font-face {
  	font-family: d-din;
  	src: url(/assets/fonts/D-DIN.woff);
}
@font-face {
  	font-family: d-din-bold;
  	src: url(/assets/fonts/D-DIN-Bold.woff);
  	font-weight: bold;
}
@font-face {
  	font-family: d-din-italic;
  	src: url(/assets/fonts/D-DIN-Italic.woff);
 	font-weight: italic;
}

/********************************************************************************
 * Header
 ********************************************************************************/

#header {
  	transition: all 0.5s;
  	z-index: 997;
  	padding: 12px 0;
  	background-color: transparent;
}

#header .container {
	max-width: 94% !important;
}

/*
#header.header-scrolled {
  	border-color: #fff;
  	box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
  	background-color: #e0ecf0;
}
*/

#header .logo {
  	font-size: 28px;
  	margin: 0;
  	padding: 0;
  	line-height: 1;
  	font-weight: 300;
  	letter-spacing: 0.5px;
  	font-family: "Poppins", sans-serif;
	text-decoration: none !important;
}

#header .logo h1 {
  	font-family: "Poppins", sans-serif;
        color: white; 
        font-size: 27px; 
	font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0px;
        padding: 0 1%;
	text-decoration: none !important;
}

#header .logo a {
  	color: #16507b;
	text-decoration: none !important;
}

#header .logo img {
  	max-height: 78px;
  	transform: scale(0.8);
  	transition: all 1s;
}
#header.header-scrolled .logo img {
/*
  	transform: scale(0.7);
  	transition: all 1s;
*/
}

@media (max-width: 992px) {
  #header .logo {
    	font-size: 28px;
  }
}

/********************************************************************************
 * Navigation
 ********************************************************************************/

/* Desktop Navigation 
*/

.navbar {
  	padding: 0;
}

.navbar ul {
  	margin: 0;
  	padding: 0;
  	display: flex;
  	list-style: none;
  	align-items: center;
}

.navbar li {
  	position: relative;
}

.navbar a, .navbar a:focus {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	padding: 15px 0 15px 30px;
  	font-size: 14px;
  	color: white;
  	white-space: nowrap;
  	transition: 0.3s;
  	letter-spacing: 2px;
  	text-transform: uppercase;
  	font-weight: bold;
}

.navbar a i, .navbar a:focus i {
  	padding-top: 5px;
  	font-size: 12px;
  	line-height: 0;
  	margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  	color: white;
}
#navbar.navbar ul li.dropdown.active a span {
  	color: #2cbc63;
}
#navbar.navbar ul li.dropdown.active a i {
  	color: #2cbc63;
}

.navbar .getstarted {
  	background: #2487ce;
  	padding: 8px 20px;
  	margin-left: 30px;
  	border-radius: 4px;
  	color: #fff;
}

.navbar .getstarted:hover {
  	color: #fff;
  	background: #3194db;
}

.navbar .dropdown ul {
  	display: block;
  	position: absolute;
  	left: 14px;
  	top: calc(100% + 30px);
  	margin: 0;
  	padding: 10px 0;
  	z-index: 99;
  	opacity: 0;
  	visibility: hidden;
  	background: #fff;
  	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  	transition: 0.3s;
  	border-radius: 4px;
}

.navbar .dropdown ul li {
  	min-width: 200px;
}

.navbar .dropdown ul a {
  	padding: 10px 20px;
  	text-transform: none;
}

.navbar .dropdown ul a i {
  	font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: #2cbc63;
}

.navbar .dropdown:hover > ul {
  	opacity: 1;
  	top: 100%;
  	visibility: visible;
}

.navbar .dropdown .dropdown ul {
  	top: 0;
  	left: calc(100% - 30px);
  	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  	opacity: 1;
  	top: 0;
  	left: 100%;
  	visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    	left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    	left: -100%;
  }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  	color: white;
  	font-size: 28px;
  	cursor: pointer;
  	display: none;
  	line-height: 0;
  	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  	color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    	display: block;
  }
  .navbar ul {
    	display: none;
  }
}

.navbar-mobile {
  	position: fixed;
  	overflow: hidden;
  	top: 0;
  	right: 0;
  	left: 0;
  	bottom: 0;
  	/* background: rgba(0, 0, 0, 0.1); */
  	background: black;
  	transition: 0.3s;
  	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  	position: absolute;
  	top: 15px;
  	right: 15px;
}

.navbar-mobile ul {
  	display: block;
  	position: absolute;
  	top: 55px;
  	right: 15px;
  	bottom: 15px;
  	left: 15px;
  	padding: 10px 0;
  	background-color: #fff;
  	overflow-y: auto;
  	transition: 0.3s;
	opacity: 1;
}

.navbar-mobile a {
  	padding: 10px 20px;
  	font-size: 15px;
  	color: black;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  	color: #444;
}

.navbar-mobile .getstarted {
  	margin: 15px;
}

.navbar-mobile .dropdown ul {
  	position: static;
  	display: none;
  	margin: 10px 20px;
  	padding: 10px 0;
  	z-index: 99;
  	opacity: 1;
  	visibility: visible;
  	background: #fff;
  	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  	color: #2487ce;
}

.navbar-mobile .dropdown > .dropdown-active {
  	display: block;
}

/********************************************************************************
 * Hero section
 ********************************************************************************/

.left-slider-h1 {
	font-family: d-din-bold, sans-serif;
	color: white; 
	text-transform: uppercase;
	letter-spacing: -3px;

	text-align: left !important;
	/* padding-left: 3.9% !important; */
	margin-left: 0.72%;
	font-size: 8.5em !important; 
	letter-spacing: -5px !important;
	line-height: 1em;
}
@media only screen and (max-width: 1020px) { .left-slider-h1 { font-size: 7em !important; } }
@media only screen and (max-width: 900px) { .left-slider-h1 { font-size: 6em !important; margin-left: 0.67%;} }
@media only screen and (max-width: 740px) { .left-slider-h1 { font-size: 5em !important; } }
@media only screen and (max-width: 630px) { .left-slider-h1 { font-size: 4em !important; letter-spacing: 1px !important; } }
@media only screen and (max-width: 470px) { .left-slider-h1 { font-size: 3.5em !important; } }


/********************************************************************************
 * Dark / light section
 ********************************************************************************/

.section-dark {
	background: black;
}

/********************************************************************************
 * Titles and text and vertical lines
 ********************************************************************************/

.v-line-separator-light {
  	border-right: 1px solid red;
  	height: 50px;
	width: 50%;
	margin: 30px 0px;
}

.t-sub-light,
.t-sub-dark {
	font-family: d-din;
	font-size: 12px;
	font-weight: 300;
	margin: 0 0 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.t-sub-light { color: white; }
.t-sub-dark { color: black; }

.t-main-light,
.t-main-dark {
	font-family: d-din-bold, sans-serif;
	font-size: 2.2em;
	margin: 0 0 10px;
	letter-spacing: 1px;
}
.t-main-light { color: white; }
.t-main-dark { color: black; }

.text-std-light,
.text-std-dark {
	font-family: d-din;
	color: white;
	font-size: 20px;
}

.text-std-light { color: white; }
.text-std-dark { color: #444; }

/* Parallax sections text styles
 */

.t-sub-light-par {
        font-family: d-din;
        font-size: 12px;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 2px;
	color: white;
}

.t-main-light-par {
        font-family: d-din-bold, sans-serif;
        font-size: 1.6em;
        letter-spacing: 1px;
	color: white;
}

.text-std-light-par {
        font-family: d-din-italic;
        color: white;
        font-size: 1.1em;
	color: white;
}

/********************************************************************************
 * Call to action services section
 ********************************************************************************/

.cta-title {
        font-family: d-din-bold, sans-serif;
        font-size: 1.5em;
        margin: 0 0 10px;
        letter-spacing: 1px;
        color: black;
	padding: 20px 0% 0px 0%;
	height: 15%;
}

.cta-text {
        font-family: d-din-italic;
        font-size: 1.1em;
        color: #444;
	padding: 20px 2% 0px 2%;
}

@media only screen and (max-width: 991px) {
    .cta-title {
        height: auto;
        padding: 0px;
    }   
    .cta-text {
	padding: 0px;
    }
}

/********************************************************************************
 * Misc Css
 ********************************************************************************/

.container-testimonial {
/*
	border: 1px solid rgba(177,222,0,0.25);
	border-radius: 5px;
*/
}

.text-kontakt {
        font-family: d-din-italic;
        font-size: 30px;
	line-height: 20px;
        color: #444;
}

.text-std-light a { text-decoration: none; color: white; }
.text-kontakt a { text-decoration: none; color: #444; }

.spec-left-center {
	padding-right: 40px !important;
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}
@media only screen and (max-width: 991px) {
	.spec-left-center {
		padding-right: 0px !important;
		text-align: center;
		margin-top: 30px !important;
	}
	.spec-image-center {
		margin-bottom: 30px !important;
	}
}

@media only screen and (max-width: 576px) {
	.spec-left-center {
		padding-right: 0px !important;
		text-align: center;
		margin-top: 30px !important;
		padding-left: 3% !important;
		padding-right: 3% !important;
	}
	.spec-image-center {
		margin-bottom: 30px !important;
		padding-left: 3% !important;
		padding-right: 3% !important;
	}
}

@media only screen and (max-width: 991px) {
	.mob-top-padding {
		padding-top: 30px !important;
	}
}

/* Slick slider dots style
 */

.slick-dots li button::before {
/*
	content: ' \2014';
*/
	color: #c0c0c0;
	opacity: 0.5;
	font-size: 8px;
	font-weight: 500;
	padding-top: 10px;
}
.slick-dots li.slick-active button::before {
	color: #c0c0c0;
	opacity: 0.95;
	padding-top: 10px;
}

/********************************************************************************
 * Carousell fade effects
 ********************************************************************************/

.carousel .carousel-item.active h1 {
  opacity: 1;
  transition: opacity 1s ease-in;
}

.carousel .carousel-item h1 {
  opacity: 0;
  display: block;
  left: 0;
  transition: opacity 1s ease-out;
}

