/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	font-family: Montserrat, sans-serif;
	color: #444444;
}

a {
	color: #fc0;
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

a:hover {
	color: #fc0;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
}

h1, .h1 {
	margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

h2, .h2 {
	margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #464646;
}

@media (min-width: 992px) {
	h2, .h2 {
		font-size: 36px;
	}
}

.hyphens-break {
	overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.pos-rel {
	position: relative;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fc0;
	border-top-color: #ffe680;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background-image: linear-gradient(to right bottom, rgb(255,204,0), rgb(255,230,128));
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background-image: linear-gradient(to right bottom, rgb(255,230,128), rgb(255,204,0));
	color: #fff;
}


/*--------------------------------------------------------------
# Cookie Bar
--------------------------------------------------------------*/

.cookie-bar {
  position: fixed;
  display: table;
  background-color: white;
  padding: 10px;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  height: auto;
  text-align: center;
  font-size: 14px;
  z-index: 1000;
  line-height: 1.5;
  box-shadow: 0 -3px 6px rgba(0,0,0,.16), 0 0 6px rgba(0,0,0,.23);
}

.cookie-bar-message {
	display: table-cell;
	vertical-align: middle;
	padding: 5px 20px;
}

.cookie-bar-close {
  display: none;
}

.cookie-bar-close:checked + .cookie-bar {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: slideOutDown;
}

.cookie-message {
	position: fixed;
	display: table;
	background: #262626;
	padding: 10px 10px 10px 10px;
	width: 100%;
	bottom: 0;
	right: 0;
	left: 0;
	height: auto;
	text-align: center;
	font-size: 14px;
	z-index: 1000;
	line-height: 1.5;
	box-shadow: 0 -3px 6px rgba(0,0,0,.16), 0 0 6px rgba(0,0,0,.23);
}

.cookie-message p {
	display: table-cell;
	vertical-align: middle;
	padding: 5px 20px;
	color: #fc0;
	width: 70%;
}

.cookiebar-close {
	display: table-cell;
	vertical-align: middle;
	border: 2px solid #fc0;
	padding: 4px 10px;
	cursor: pointer;
	color: #fc0 !important;
	width: 10%;
}

@media (min-width: 576px) {
	.cookie-message {
		padding: 10px 20% 10px 10px;
	}
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	height: 100px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	background-image: linear-gradient(to right bottom, rgba(255,204,0,1), rgba(255,230,128,0.7));
}

#header.header-transparent {
	background: transparent;
}

#header.header-scrolled {
	background: rgba(255,255,255,0.8);
	height: 70px;
	border-bottom: 1px solid #767676;
}

#header .logo h1 a, #header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: 0;
	height: 50px;
	width: 250px;
}

@media (max-width: 768px) {
	#header .logo img {
		width: 180px;
	}
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.nav-menu, .nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #464646;
	padding: 10px 0 10px 25px;
	transition: 0.3s;
	font-size: 15px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}

.nav-menu > ul > li > a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 3px;
	left: 25px;
	background-color: #fc0;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
	visibility: visible;
	width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	text-decoration: none;
}

/* Mobile Navigation */

.mobile-nav-toggle {
	position: absolute;
	right: 15px;
	top: 8px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 30px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: #464646;
}

.mobile-nav {
	position: fixed;
	top: 68px;
	right: 30px;
	bottom: 15px;
	left: 30px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
	height: 291px;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #464646;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #fc0;
	text-decoration: none;
}

.mobile-nav .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down > a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down > a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background-image: linear-gradient(to right bottom, rgba(255,204,0,1), rgba(255,230,128,0.7));
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
	width: 100%;
	background: url("../img/envelopes.jpg");
	background-size: cover;
	position: relative;
	padding: 160px 0 0 0;
}

#hero:before {
	content: "";
	background-image: linear-gradient(to right bottom, rgba(255,204,0,1), rgba(216,173,0,0.5));
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero p {
	margin-bottom: 40px;
	font-size: 24px;
}

#hero .btn-get-started {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 10px;
	transition: 0.5s;
	background-image: linear-gradient(to right bottom, rgb(255,204,0), rgb(255,230,128));
	color: #464646;
	border: 1px solid #767676;
}

#hero .btn-get-started:hover {
	opacity: 1;
	background-image: linear-gradient(to right bottom, rgb(255,230,128), rgb(255,204,0));
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
	}
}

@media (max-width: 991px) {
	#hero {
		padding-top: 100px;
	}
	#hero .animated {
		-webkit-animation: none;
		animation: none;
	}
	#hero .hero-img {
		text-align: center;
	}
	#hero .hero-img img {
		max-width: 50%;
	}
	#hero h1 {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 10px;
	}
	#hero p {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 80%;
	}
}

@-webkit-keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}

.hero-waves {
	display: block;
	margin-top: 15px;
	width: 100%;
	height: 60px;
	z-index: 5;
	position: relative;
}

@media (min-width: 768px) {
	.hero-waves {
		margin-top: 40px;
	}
}

@media (min-width: 992px) {
	.hero-waves {
		margin-top: 60px;
	}
}

.wave1 use {
	-webkit-animation: move-forever1 10s linear infinite;
	animation: move-forever1 10s linear infinite;
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

.wave2 use {
	-webkit-animation: move-forever2 8s linear infinite;
	animation: move-forever2 8s linear infinite;
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

.wave3 use {
	-webkit-animation: move-forever3 6s linear infinite;
	animation: move-forever3 6s linear infinite;
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
	0% {
		transform: translate(85px, 0%);
	}
	100% {
		transform: translate(-90px, 0%);
	}
}

@keyframes move-forever1 {
	0% {
		transform: translate(85px, 0%);
	}
	100% {
		transform: translate(-90px, 0%);
	}
}

@-webkit-keyframes move-forever2 {
	0% {
		transform: translate(-90px, 0%);
	}
	100% {
		transform: translate(85px, 0%);
	}
}

@keyframes move-forever2 {
	0% {
		transform: translate(-90px, 0%);
	}
	100% {
		transform: translate(85px, 0%);
	}
}

@-webkit-keyframes move-forever3 {
	0% {
		transform: translate(-90px, 0%);
	}
	100% {
		transform: translate(85px, 0%);
	}
}

@keyframes move-forever3 {
	0% {
		transform: translate(-90px, 0%);
	}
	100% {
		transform: translate(85px, 0%);
	}
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
	padding: 60px 0;
	overflow: hidden;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h3 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 18px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaaaaa;
	font-family: "Poppins", sans-serif;
}

.section-title h3::after {
	content: "";
	width: 50px;
	height: 1px;
	display: inline-block;
	background: #fc0;
	margin: 4px 10px;
}

/*.section-title-white {
	padding-bottom: 40px;
}

.section-title-white h3 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	font-family: "Poppins", sans-serif;
}

.section-title-white h3::after {
	content: "";
	width: 50px;
	height: 1px;
	display: inline-block;
	background: #fff;
	margin: 4px 10px;
}

.section-title-white h2 {
	color: #fff;
}*/

.section-title-dark h3 {
	color: #464646;
}

.section-title-dark h3::after {
	background: #464646;
}

@media (min-width: 1024px) {
	.section-title h3::after {
		width: 120px;
	}
	
	/*.section-title-white h3::after {
		width: 120px;
	}*/
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
	padding: 70px 0 60px;
}

.counts .count-box {
	padding: 45px 30px 25px 30px;
	width: 100%;
	position: relative;
	text-align: center;
	background: #f5f5ff;
	border-radius: 10px;
}

.counts .count-box i {
	position: absolute;
	top: -31px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 38px;
	background-image: linear-gradient(to right bottom, rgba(255,204,0,1), rgba(255,230,128,0.7));
	padding: 16px;
	color: #fff;
	border-radius: 10px;
}

.counts .count-box span {
	font-size: 36px;
	display: block;
	font-weight: 600;
	color: #464646;
}

.counts .count-box p {
	padding: 0;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
}


/*--------------------------------------------------------------
# Dienstleistung
--------------------------------------------------------------*/

.dienstleistung {
	padding: 80px 0;
	background: url("../img/dienstleistung.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.dienstleistung::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: linear-gradient(to right bottom, rgba(255,204,0,1), rgba(216,173,0,0.2));
}

.dienstleistung .col-white-transparent {
	background-color: rgba(255,255,255,.8);
	padding: 20px;
	border-radius: 10px;
}

@media (min-width: 1024px) {
	.dienstleistung {
		background-attachment: fixed;
	}
}


/*--------------------------------------------------------------
# Funktionen
--------------------------------------------------------------*/

.funktionen .funktionen-liste {
	padding: 0;
}

.funktionen .funktionen-liste ul {
	padding: 0;
	list-style: none;
}

.funktionen .funktionen-liste li + li {
	margin-top: 15px;
}

.funktionen .funktionen-liste li {
	padding: 20px;
	background: #f5f5ff;
	border-radius: 10px;
	position: relative;
}

.funktionen .funktionen-liste li i {
	top: 3px !important; 
}

.funktionen .funktionen-liste li i.before {
	position: absolute; 
	right: 0; 
	left: 20px; 
	top: 23px !important; 
	color: #fc0;
	font-size: 22px;
}

.funktionen .funktionen-liste a {
	display: block;
	position: relative;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	padding: 0 30px;
	outline: none;
}

.funktionen .funktionen-liste .icon-help {
	font-size: 24px;
	position: absolute;
	right: 0;
	left: 20px;
	color: #34e5a6;
}

.funktionen .funktionen-liste .icon-show, .funktionen .funktionen-liste .icon-close {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 0;
}

.funktionen .funktionen-liste p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}

.funktionen .funktionen-liste .icon-show {
	display: none;
}

.funktionen .funktionen-liste a.collapsed {
	color: #343a40;
}

.funktionen .funktionen-liste a.collapsed:hover {
	color: #fc0;
}

.funktionen .funktionen-liste a.collapsed .icon-show {
	display: inline-block;
}

.funktionen .funktionen-liste a.collapsed .icon-close {
	display: none;
}

@media (max-width: 1200px) {
	.funktionen .funktionen-liste {
		padding: 0;
	}
}


/*--------------------------------------------------------------
# Referenzen
--------------------------------------------------------------*/

.referenzen {
	padding: 40px 0;
	background: url("../img/referenzen.jpg") no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	color: white;
}

.referenzen::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: linear-gradient(to right bottom, rgba(255,204,0,1), rgba(216,173,0,0.5));
}

.referenzen img {
	max-width: 150px;
	filter: grayscale(100%);
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
	transition: all .2s ease-in-out;
}

.referenzen img:hover {
	filter: none;
	transform: scale(1.1);
}

.referenzen .dpost,
.referenzen .makita,
.referenzen .sony,
.referenzen .akdb {
	width: 100%;
}

.referenzen .edeka {
	width: 15%;
}

.referenzen .dbahn {
	width: 20%;
}

@media (min-width: 576px) {
	.referenzen img {
		max-width: 100%;
	}
	
	.referenzen .edeka {
		width: 60%;
	}

	.referenzen .dbahn {
		width: 70%;
	}
}

@media (min-width: 992px) {
	.referenzen {
		padding: 80px 0;
	}
}

@media (min-width: 1024px) {
	.referenzen {
		background-attachment: fixed;
	}
}


/*--------------------------------------------------------------
# Kontakt
--------------------------------------------------------------*/

.kontakt .info {
	width: 100%;
	background: #fff;
}

.kontakt .info i {
	font-size: 20px;
	color: white;
	float: left;
	width: 44px;
	height: 44px;
	background-image: linear-gradient(to right bottom, rgba(255,204,0,1), rgba(255,230,128,0.7));
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
}

.kontakt .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #464646;
}

.kontakt .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #464646;
}

.kontakt .info .email, .kontakt .info .phone {
	margin-top: 40px;
}

.kontakt .php-email-form {
	width: 100%;
	background: #fff;
}

.kontakt .php-email-form .form-group {
	padding-bottom: 8px;
}

.kontakt .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.kontakt .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.kontakt .php-email-form .error-message br + br {
	margin-top: 25px;
}

.kontakt .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.kontakt .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.kontakt .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.kontakt .php-email-form input, .kontakt .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.kontakt .php-email-form input {
	height: 44px;
}

.kontakt .php-email-form textarea {
	padding: 10px 12px;
}

.kontakt .php-email-form button[type="submit"] {
	background-image: linear-gradient(to right bottom, rgb(255,204,0), rgb(255,230,128));
	border: 0;
	padding: 10px 30px;
	color: #464646;
	transition: 0.4s;
	border-radius: 50px;
}

.kontakt .php-email-form button[type="submit"]:hover {
	background-image: linear-gradient(to right bottom, rgb(255,230,128), rgb(255,204,0));
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* GOOGLE MAPS */

.map-container {
	height:0; 
	position:relative; 
	padding-bottom:20%; 
	overflow:hidden;
}

.map-iframe {
	border:0; 
	width:100% !important; 
	height:100% !important; 
	top:0; left:0; 
	position:absolute;
}

@media(max-width:1250px) {
	.map-container {
		padding-bottom:30%; 
	}
}

@media(max-width:768px) {
	.map-container {
		padding-bottom:40%; 
	}
}

@media(max-width:450px) {
	.map-container {
		padding-bottom:50%; 
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	background: #262626;
	padding: 0 0 15px 0;
	color: #fff;
	font-size: 14px;
}

#footer a {
	color: white;
	-webkit-transition: opacity 2.0s ease-in;
    -moz-transition: opacity 2.0s ease-in;
    -o-transition: opacity 2.0s ease-in;
    opacity: 1;
}

#footer a:hover {
	color: #fc0;
	-webkit-transition: opacity 2.0s ease-in;
    -moz-transition: opacity 2.0s ease-in;
    -o-transition: opacity 2.0s ease-in;
    opacity: 1;
}

#footer .footer-top {
	padding: 30px 0 30px 0;
}

#footer .footer-top .footer-info.logo img {
	max-width: 350px;
}

#footer .footer-top .footer-links {
	margin-top: 30px;
	text-align: right;
}

#footer .copyright {
	border-top: 1px solid #363636;
	text-align: center;
	padding-top: 15px;
	font-size: 13px;
}

@media (max-width: 992px) {
	#footer .footer-top .footer-info.logo {
		text-align: center;
	}

	#footer .footer-top .footer-links {
		margin-top: 20px;
		text-align: center;
	}
}

@media (max-width: 1200px) {
	#footer .footer-top .footer-links {
		margin-top: 25px;
	}
}