/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

footer, header, main, nav, section {
	display: block;
}

body { 
	display: none;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.5;
	color: #444;
	text-align: left;
	background: #fff;
}

a {
	text-decoration: none!important;
	color: #444;
}

a:hover { 
	color: #222; 
}

ul img {
	margin: 3rem 0;
}

img { 
	max-width: 100%; 
}

p {
	color: #444;
}

h1 {
	color: #fff;
	font-size: 3.8rem;
	text-transform: uppercase;
	line-height: 3.8rem;
}

h2 {
	font-size: 2rem;
	text-transform: uppercase;
	line-height: 7rem;
}

h3 {
	color: #444;
	font-size: 1.5rem;
	text-transform: uppercase;
	line-height: 1.5rem;
}

h4 {
	color: #444;
	font-size: 0.9rem;
	line-height: 1.5rem;
	padding: 1rem 0 0 0;
}

@media (max-width: 1600px) {
	
	h1 {
		font-size: 3.5rem;
		line-height: 3.5rem;
	}
}

@media (max-width: 1200px) {
	
	h1 {
		font-size: 3rem;
		line-height: 3rem;
	}
}

@media (max-width: 900px) {
	
	h1 {
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
}

@media (max-width: 800px) {
	
	h1 {
		font-size: 2rem;
		line-height: 2rem;
	}
}

@media (max-width: 600px) {
	
	h1 {
		font-size: 1.7rem;
		line-height: 1.7rem;
	}
	
	h2 {
		font-size: 1.5rem;
	}
}

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-top: 0px;
	z-index: 1500;
}

.fas {
	color: rgba(137,198,176,1);
}

dl, dt, dd, ol, ul, li {
	margin: 0;
	padding: 0;
}

::-moz-selection {
	background: none;
	color: none;
	text-shadow: none;
}

::selection {
	background: none;
	color: none;
	text-shadow: none;
}

::-moz-selection {
	background: none; /* Firefox */
	color: none;
	text-shadow: none;
}

::-webkit-selection {
	background: none; /* Safari */
	color: none;
	text-shadow: none;
}

:active,
:focus { 
	outline: none !important;
}

/* Lazy Loading */

.lazy {
	opacity: 0;
}

.lazy:not(.initial) {
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
}

.lazy.initial,
.lazy.lazy-loaded,
.lazy.lazy-error {
	opacity: 1;
}

img.lazy {
	max-width: 100%;
	height: auto;
}

img.lazy:not([src]) {
	visibility: hidden;
}

/* HEADER */

header {
	position: relative;
	border-bottom: 1px solid #F5F5F5;
}

#header-wrap {
	position: relative;
	background: rgba(21,49,53,1);
	width: 100%;
}

.header-wrap-clone {
	display: none;
}

@media (min-width: 992px) {

	#header-wrap {
		position: relative;
		height: auto;
		z-index: 1600;
		-webkit-box-shadow: 0 0 0 rgba(0,0,0,0.1);
		        box-shadow: 0 0 0 rgba(0,0,0,0.1);
		-webkit-transition: height .2s ease 0s, background .3s ease 0s;
		-o-transition: height .2s ease 0s, background .3s ease 0s;
		transition: height .2s ease 0s, background .3s ease 0s;
		-webkit-backface-visibility: hidden;
		        backface-visibility: hidden;
		will-change: left, top, transform;
	}

	.sub-menu-container,
	.mega-menu-content {
		-webkit-transition: top .4s ease;
		-o-transition: top .4s ease;
		transition: top .4s ease;
	}
}

/* Top Bar */

.top-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 3rem;
	width: 100%;
	background: rgba(0,0,0,1);
	list-style: none;
	z-index: 2200;
	overflow: hidden;
}

.top-bar a {
	color: rgba(250,250,250,1);
	margin: 10px 10px;
	-webkit-transition: color 650ms ease;
	-o-transition: color 650ms ease;
	transition: color 650ms ease;
}

.top-bar a:hover {
	color: rgba(137,198,176,1);
}

@media (max-width: 1150px) {
	.display-none {
		display: none;
	}
    .top-bar {
        font-size: 0.8rem;
    }
}

/* Logo Container */

.logo-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
    padding: 20px 0 0 0;
}

.logo-container > a > img {
    max-width: 900px;
    width: 100%;
    height: auto;
}


@media (max-width: 991.98px) {
	
	.logo img {
		width: 150px;
	}
}

/* Toggler Pushing Content */

#header-wrap > .container > .row {
    width: 100%;
}

#header-wrap > .container > .row > button {
    width: 100%;
}

#primary-menu-trigger {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
	cursor: pointer;
	font-size: 0.875rem;
	color: #fff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

/*  Navbar Toggler */

.navbar-toggler {
  border: none;
  background: transparent !important;
  margin-bottom: 0.5rem !important;
}

.navbar-toggler:focus {
  outline: none;
  background: transparent !important;
}

.icon-line-menu {
	font-size: 2rem;
	color: #fff;
}

.navbar-toggler {
	border: none;
	background: transparent !important;
  }
  
  .navbar-toggler:focus {
	outline: none;
	background: transparent !important;
  }
  
  .navbar-toggler .icon-line-menu {
	  font-size: 2rem;
  }

  /* Primary Menu */

.primary-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.menu-container {
	display: none;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	list-style: none;
	margin: 0;
	width: 100%;
}

.menu-item {
	position: relative;
}

.menu-button a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 9px 9px 9px 50px;
	padding: 0 20px;
	border: 2px solid #fff;
	border-radius: 1.4rem;
	height: 2.8rem;
	overflow: hidden;
	border-color: rgba(137,198,176,1); 
	background: rgba(137,198,176,0);
	-webkit-transition: background 650ms ease;
	-o-transition: background 650ms ease;
	transition: background 650ms ease;
}

.menu-button a:hover {
	background: rgba(137,198,176,0.3);
}

.menu-link {
	color: rgba(250,250,250,0.8);
	font-weight: 400;
	letter-spacing: 1px;
	-webkit-transition: color 650ms ease;
	-o-transition: color 650ms ease;
	transition: color 650ms ease;
}

.menu-link:hover {
	color: rgba(137,198,176,1);
}

.menu-button .menu-link:hover {
	color: #fff!important;
}

.sub-menu-container .menu-link {
	color: #444;
	display: block;
	padding: 10px 10px;
	line-height: 22px;
}

.menu-link i {
	position: relative;
	top: -1px;
	width: 16px;
	text-align: center;
	margin-right: 6px;
	vertical-align: top;
}

.sub-menu-container,
.mega-menu-content {
	position: relative;
	list-style: none;
	margin-bottom: 0;
	background: #fff;
}

.sub-menu-container .menu-link div {
	position: relative;
}

.sub-menu-container h4 {
	padding: 0;
	margin: 0;
}

li a {
	cursor: pointer;
}

.menu-item .sub-menu-trigger {
	display: block;
	position: absolute;
	cursor: pointer;
	outline: none;
	border: none;
	background: none;
	padding: 0;
	top: 9px;
	right: 0;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
}

.menu-link div > i.icon-angle-down {
	display: none;
}

/* Mega Menu */

@media (min-width: 992px) {
    
	#primary-menu-trigger {
		display: none;
		opacity: 0;
		pointer-events: none;
		z-index: 0;
	}
    
	.mega-menu-content .sub-menu-container {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.3%;
		        flex: 0 0 33.3%;
		max-width: 25%;
		text-align: center;
        font-size: 11px;
        margin: 0!important;
        padding: 0!important;
	}
    
    .mega-menu-content {
        padding: 0!important;
	}

	.menu-container {
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}

	.mega-menu { 
		position: inherit;
	}
	
	.sub-menu-container,
	.mega-menu-content {
		position: absolute;
		visibility: hidden;
		width: 400px;
		background: #fff;
		-webkit-box-shadow: 0px 13px 42px 11px rgba(0,0,0,0.5);
		        box-shadow: 0px 13px 42px 11px rgba(0,0,0,0.5);
		border-top: 5px solid rgba(137,198,176,1);
		z-index: 1700;
		top: 100%;
		left: 0;
		padding: 10px 20px 20px 20px;
	}
	
	.menu-link {
		margin: 5px;
	}

	/* Sub-Menu On-Hover Dropdown */
    
    .sub-menu-container,
	.primary-menu .mega-menu-content {
		display: block;
		opacity: 0;
		margin-top: 65px;
		z-index: -9999;
		-webkit-transition: opacity .3s ease, margin .5s ease;
		-o-transition: opacity .3s ease, margin .5s ease;
		transition: opacity .3s ease, margin .5s ease;
	}
    
    .menu-item:hover > .sub-menu-container,
    .menu-item:hover > .mega-menu-content {
		opacity: 1;
		visibility: visible;
		margin-top: 0;
		z-index: 1700;
		pointer-events: auto;
	}
    
    .menu-item:not(:hover) > .mega-menu-content > * {
		display: none;
	}

	.sub-menu-container .menu-item > .menu-link i {
		vertical-align: middle; 
	}

	.menu-link div > i.icon-angle-down {
		top: 0;		
		margin: 0 0 0 5px;
	}

	.menu-item .sub-menu-trigger {
		display: none;
	}

	.mega-menu-content {
		margin: 0;
		width: 100%;
		max-width: none;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
	}

	.mega-menu-content .sub-menu-container {
        padding: 20px;
		position: relative;
		display: block !important;
		visibility: visible !important;
		top: 0 !important;
		left: 0;
		width: auto;
		min-width: inherit;
		height: auto !important;
		list-style: none;
		border: 0;
		-webkit-box-shadow: none;
		        box-shadow: none;
		background: transparent;
		opacity: 1 !important;
		z-index: auto;
	}
}

@media (max-width: 991.98px) {

	.primary-menu {
		max-width: 100%;
	}

	.mega-menu-content .sub-menu-container {
		display: block !important;
        width: 100%;
        margin: 0 20px;
	}
	
	.menu-link {
		color: #fff;
		display: block;
		line-height: 22px;
		padding: 10px 10px;
		font-weight: 400;
		letter-spacing: 1px;
		-webkit-transition: color 650ms ease;
		-o-transition: color 650ms ease;
		transition: color 650ms ease;
	}
	
	.menu-link span {
		display: none;
	}
	
	.menu-button a {
		margin: 5rem 2rem;
	}

	header {
		overflow: hidden !important;
	}
}

/* Hero */

section {
	position: relative;
	display: block;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrapper;
	    flex-wrap: wrapper;
	width: 100%;
	z-index: 1200;
}

/* Particle */

#particles-js {
	width: 100%;
	height: 80vh;
	background-color: rgba(0,70,70,1);
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}


.hero {
	position: absolute;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	height: 100%;
}

.hero-container h1 {
	text-align: center;
	font-style: italic;
	font-size: calc(33px + (60 - 33) * ((100vw - 700px) / (1600 - 700)));
	line-height: calc(34px + (60 - 34) * ((100vw - 700px) / (1600 - 700)));
}

.hero-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
}

.hero-sub-container {
	width: 40%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.hero-sub-container .hero-sub-container-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 280px;
}

.hero-sub-container .hero-sub-container-button:nth-child(1) {
	margin: 0 10px 0 0;
}

.hero-sub-container .hero-sub-container-button:nth-child(2) {
	margin: 0 0 0 10px;
}

.hero-sub-container .hero-sub-container-button button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 0.9rem;
	letter-spacing: 1.5px;
	width: 100%;
	height: auto;
	margin: 5px 0px;
	padding: 15px;
	line-height: 1.2rem;;
	overflow: hidden;
	border: 0;
	color: #fff;
	background: rgba(0,0,0,0.3);
	cursor: pointer;
}

.hero-sub-container .hero-sub-container-button button:hover {
	background: rgba(0,0,0,0.6);
}

.hero-sub-container:nth-child(2) {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.hero-input {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 580px;
	margin: 20px 0px;
	font-size: 0.9rem;
}

.hero-input input {
	width: 80%;
	border: 0;
	border-radius: 0%;
	padding: 0 0 0 20px;
	font-size: 0.9rem;
	font-style: italic;
	letter-spacing: 0.8px;
	background: rgba(255,255,255,0.8);
	height: 100%;
}

::-webkit-input-placeholder {
	color: #555;
}

::-moz-placeholder {
	color: #555;
}

:-ms-input-placeholder {
	color: #555;
}

::-ms-input-placeholder {
	color: #555;
}

::placeholder {
	color: #555;
}

.hero-input button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 20%;
	background: rgba(0,0,0,0.3);
	cursor: pointer;
	border: 0;
}

.hero-inout button:hover {
	background: rgba(0,0,0,0.6);
}

.fa-search {
	font-size: 1.2rem;
}

#angel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
	margin: 25px 0 0 0;
}

#angel > i {
	width: 100%;
	height: auto;
	color: #fff;
	cursor: pointer;
	font-size: 3rem;
	opacity: 1;
	-webkit-transition: opacity 650ms ease;
	-o-transition: opacity 650ms ease;
	transition: opacity 650ms ease;
}

#angel > i:hover {
	opacity: 0.5;
}

@media (max-width: 1450px) {

	.hero-sub-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}

	.hero-sub-container .hero-sub-container-button {
		width: 100%;
	}

	.hero-sub-container .hero-sub-container-button:nth-child(1), 
	.hero-sub-container .hero-sub-container-button:nth-child(2) {
		margin: 0 0 0 0;
	}

	.hero-input {
		width: 100%;
	}
}

@media (max-width: 1000px) {

	.hero-container {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}

@media (max-width: 700px) {

	.hero-sub-container {
		width: 70%;
	}

	#angel {
		margin: 0 0 0 0;
	}

	#angel > i {
		font-size: 2rem;
	}
}

/* Intro */

#intro {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#intro .flexbox .col-100 {
	margin: 0;
}

#intro .flexbox .col-100 {
	margin: 0 0 0 0;
}

#intro .flexbox .col-100 h4,
#intro .flexbox .col-100 p {
	font-size: 1.2rem;
}

@media (max-width: 991.98px) {
	
	#intro .flexbox .col-100 img {
		width: 140px;
		margin-top: 8rem;
	}
	
	#intro .flexbox .col-100 {
		padding: 0 1.5rem 0 1.5rem;
	}
}

@media (min-width: 992px) {
	
	#intro .flexbox .col-100 img {
		margin: 6rem 2rem 2rem 2rem;
	}
	#intro {
		height: 100vh;
	}
}

/* Flexbox */

.flexbox {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

/* Stellenangebote-container */

.stellenangebote-container {
	position: relative;
	top: 3.5rem;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #fff;
	background: rgba(137,198,176,1)
}

@media (max-width: 991.98px) {
	
	.stellenangebote-container {
		top: 2rem;
	}
}

.stellenangebote-container .fas {
	display: block;
	margin: auto;
	color: #fff;
	text-align: center;
}

.stellenangebote-container h2 {
	color: #fff;
}

#stellenangebote-container {
	padding: 1rem 0 0 0;
	width: 100%; 
	height: 100%;
	z-index: -1!important;
}

#cs-simple-container {
	display: none;
}

.cs-widget-advanced__suggestion-text {
	display: none;
} 

.clear {
	clear: both;
}

.bigger-in-mobile { 
	font-size: 270%; 
	margin-bottom: -10px; 
}

.cs-widget-filters__filter-wrapper:nth-child(4), 
.cs-widget-filters__filter-wrapper:nth-child(5) {
    display: none !important;
}

@media(max-width: 400px) {

	.cs-result__title {
        font-size: 1rem !important;
    }

	.cs-pagination__number-text {
        font-size: 1rem !important;
    }

	.cs-pagination__button .cs-icon {
        height: 12px;
    }
}

#cs-simple-container {
    display: none;
}

.cs-widget-filters__headline,
.cs-widget-filters__clear,
.cs-select--basic,
.cs-input,
.cs-result__title,
.cs-pagination__number-text,
.cs-input,
.cs-select--basic,
.cs-widget-filters__headline {
    font-size: 1rem !important;
}

.cs-widget-filters__container {
	display: none !important;
}

.cs-widget-advanced__container {
	background: #fff !important;
	margin-bottom: 120px;
}

/* Col */

.col-32 {
	width: 32%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
}

.col-50 {
	width: 50%;
}

.col-100 {
	width: 100%;
	text-align: center;
	padding: 0 10rem 0 10rem;
}

.col-32 img {
	width: 200px;
	height: 200px;
	border-radius: 100%;
	margin: 0 2rem;
}

.col-50 a, 
.col-100 a {
	color: #000;
}

@media (max-width: 991.98px) {
	
	.col-32 {
		width: 100%;
	}
	
	.col-32 img {
	width: 150px;
	height: 150px;
	margin: auto;
	}
}

@media screen and (max-width: 991.98px) {
	.col-50 {
		 width: 100%;
	}
}

/* Box */

.box {
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 2rem 5rem 2rem 5rem;
	background: #fff;
	opacity: 0.8;
}

@media (max-width: 991.98px) 
{
	.box {
		padding: 5rem 2rem 2rem 2rem;
	}
}

/* Btn */

.btn a {
	margin: auto;
	margin-top: 3rem;
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	height: 100%;
	width: 100%;
	max-width: 20rem;
	padding: 1rem;
	background: rgba(137,198,176,0);
	color: rgba(137,198,176,1);
	border: 2px solid rgba(137,198,176,1);
	border-radius: 3rem;
	-webkit-transition: all 650ms ease;
	-o-transition: all 650ms ease;
	transition: all 650ms ease;
}

.btn a:hover {
	background: rgba(137,198,176,1);
	color: rgba(250,250,250,1);
	border: 2px solid rgba(137,198,176,1);
}

/* p a */

p a {
	font-weight: 700;
	-webkit-transition: opacity 650ms ease;
	-o-transition: opacity 650ms ease;
	transition: opacity 650ms ease;
}

p a:hover {
	opacity: 0.7;
}

/* Button */

button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 20%;
	height: 3rem;
	color: rgba(137,198,176,1);
	background: rgba(0,0,0,0.4);
	border: 1px solid #fff;
	-webkit-transition: all 650ms ease;
	-o-transition: all 650ms ease;
	transition: all 650ms ease;
}

button .fas {
	color: #fff;
}

button:hover {
	background: rgba(0,0,0,0.6);
}

/* Copy */

#copy .flexbox .col-50 .box h4,
#copy .flexbox .col-50 .box p {
	font-size: 1.2rem;
}

/* Jetzt-bewerben */

#jetztbewerben {
	font-size: 1rem;
}

#jetztbewerben .flexbox .col-100 {
	padding: 6rem 6rem 2rem 6rem;
}

#jetztbewerben .flexbox .col-32 {
	display: block;
	text-align: center;
	padding: 2rem;
	color: rgba(0,0,0,.5);
}

#jetztbewerben .flexbox .col-32 img {
	height: 200px;
	width: 200px;
}

#jetztbewerben .flexbox .col-32 .btn a {
	display: block;
	margin-top: 2rem;
}

@media (min-width: 992px) {
	
	#jetztbewerben {
		height: 100vh;
	}
}

@media (max-width: 991.98px) {
	
	#jetztbewerben .flexbox .col-100 {
		padding: 3rem 1.5rem 2rem 1.5rem;
	}
}

/* Vorteile */

#vorteile {
	font-size: 1rem;
}

#vorteile .flexbox .col-50 {
	padding: 6rem 6rem 2rem 6rem;
	text-align: left;
}

@media (max-width: 991.98px) {
	
	#vorteile .flexbox .col-50 {
		padding: 3rem 1.5rem 0rem 1.5rem;
	}
	
	#vorteile .flexbox .col-50 .btn a {
		max-width: none;
	}
}

/* Slider */

#slider {
	padding: 2rem 0 0 0;
	margin: 0 auto;
	width: 800px;
	max-width: 100%;
	text-align: center;
}

#slider input[type=radio] {
	display: none;
}

#slider label {
	cursor: pointer;
	text-decoration: none;
}

#slider #overflow .inner h5,
#slider #overflow .inner p {
	color: #444;
	font-size: 1rem;
}

#slider #overflow .inner i {
	color: orange;
}
	
#slides {
	padding: 10px;
	position: relative;
	z-index: 1200;
}

#overflow {
	width: 100%;
	overflow: hidden;
}

#slide01:checked ~ #slides .inner {
	margin-left: 0;
}

#slide02:checked ~ #slides .inner {
	margin-left: -100%;
}

#slide03:checked ~ #slides .inner {
	margin-left: -200%;
}

#slide04:checked ~ #slides .inner {
	margin-left: -300%;
}

#slide05:checked ~ #slides .inner {
	margin-left: -400%;
}

#slide06:checked ~ #slides .inner {
	margin-left: -500%;
}

#slide07:checked ~ #slides .inner {
	margin-left: -600%;
}

#slide08:checked ~ #slides .inner {
	margin-left: -700%;
}

#slides .inner {
	-webkit-transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	-o-transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
	width: 800%;
	line-height: 30px;
	height: 400px;
}

#slides .slide {
	width: 12.5%;
	float: left;
	display: block;
	height: 100%;
	color: #fff;
}

.slide-content {
	padding: 1rem 4rem;
}

#bullets {
	margin: 100px 0 0;
	text-align: center;
}

#bullets label {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background: #ccc;
	border: 5px solid #444;
	margin: 0 10px;
}

#slide01:checked ~ #bullets label:nth-child(1),
#slide02:checked ~ #bullets label:nth-child(2),
#slide03:checked ~ #bullets label:nth-child(3),
#slide04:checked ~ #bullets label:nth-child(4),
#slide05:checked ~ #bullets label:nth-child(5),
#slide06:checked ~ #bullets label:nth-child(6),
#slide07:checked ~ #bullets label:nth-child(7),
#slide08:checked ~ #bullets label:nth-child(8) {
	background: #444;
	border: 5px solid #ccc;
}

/* Gute-gruende incl. accordion */

#gutegruende {
	font-size: 1rem;
}

#gutegruende .flexbox .col-50 {
	padding: 6rem 0 2rem 0;
	text-align: left;
}


#gutegruende .flexbox .col-50 p,
.accordion {
	margin: 0 4rem 0 0;
}

.accordion-header {
	padding: 1.5em 0;
	cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.accordion__item {
    border-bottom: 1px solid #3a4ba4;
}

.accordion__item .accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-header:hover {
  color: #888;
  position: relative;
  z-index: 1400;
}

.accordion-body {
  display: none;
}

.accordion-body__contents {
  padding: 1.5em 0;
}

.accordion__item.active:last-child .accordion-header {
  border-radius: none;
}

.accordion:first-child > .accordion__item > .accordion-header {
  border-bottom: 1px solid transparent;
}

.accordion__item > .accordion-header:after {
  content: "\f3d0";
  font-family: IonIcons;
  font-size: 1.2em;
  float: right;
  position: relative;
  top: -2px;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:after {
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}

.accordion__item .accordion__item .accordion-header {
  background: #f1f1f1;
  color: #353535;
}

@media screen and (max-width: 991.98px) {
	
  .accordion {
	  width: 100%;
	  margin: 0;
  }
	
	#gutegruende {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	#gutegruende .flexbox .col-50 {
		padding: 3rem 0 0 0;
	}
	
	#gutegruende .flexbox .col-50 .btn a {
		max-width: none;
	}
	
	#gutegruende .flexbox .col-50 p,
	.accordion {
	margin: 0;
	}
}

@media (min-width: 992px) {
	
	#gutegruende {
		height: 100vh;
	}
}

/* Form */

#list {
	font-size: 1rem;
}

#list .flexbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#list .flexbox .col-50 {
	padding: 6rem 0 2rem 0;
	text-align: left;
}

@media screen and (max-width: 991.98px) {
	
	#list {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.form-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#template-contactform-service,
.form-col,
.form-col-100,
.form-widget {
	margin: 1rem 0 1rem 0;
}

.form-col {
	display: inline-block;
	width: 32%;
}

.form-process {
	display: block;
	width: 100%;
	height: 100%;
	background: center center no-repeat #FFF;
}

.form-process {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1300;
	background: transparent;
}

.form-process::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	opacity: 0.7;
	z-index: -1;
}

.css3-spinner {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2000;
	text-align: center;
	background: #FFF;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.css3-spinner {
	position: absolute;
	z-index: auto;
	background: transparent;
}

.css3-spinner > div {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -9px;
	margin-left: 13px;
	width: 18px;
	height: 18px;
	background: #DDD;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	        animation: bouncedelay 1.4s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.css3-spinner > .css3-spinner-scaler {
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	-webkit-animation: scaleout 1.0s infinite ease-in-out;
	        animation: scaleout 1.0s infinite ease-in-out;
}

/* Customize the label (the container) */

.form-check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Hide the browser's default checkbox */

.form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background: #eee;
}

/* On mouse-over, add a grey background color */

.form-check:hover input ~ .checkmark {
  background: #ccc;
}

/* When the checkbox is checked, add a blue background */

.form-check input:checked ~ .checkmark {
  background: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.form-check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.form-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
	color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
	display: block;
}

.form-inline .form-check {
	width: 100%;
}

.form-inline .form-check {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: auto;
	padding-left: 0;
	}

.form-inline .form-check-input {
	position: relative;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-top: 0;
	margin-right: 0.25rem;
	margin-left: 0;
	}

.sm-form-control {
	display: block;
	width: 100%;
	height: auto;
	padding: 8px 14px;
	font-size: 1rem;
	line-height: 1.4rem;
	color: #555555;
	background: #ffffff;
	background-image: none;
	border: 2px solid #DDD;
	border-radius: 0 !important;
	-webkit-transition: border-color ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s;
	transition: border-color ease-in-out .15s;
}

.sm-form-control:focus {
	border-color: #AAA;
	outline: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.sm-form-control::-moz-placeholder {
	color: #999;
	opacity: 1;
}

.sm-form-control:-ms-input-placeholder { color: #999; }
.sm-form-control::-webkit-input-placeholder { color: #999; }

.sm-form-control[disabled],
.sm-form-control[readonly],
fieldset[disabled] .sm-form-control {
	cursor: not-allowed;
	background: #eeeeee;
	opacity: 1;
}

.form-control.error,
.sm-form-control.error { 
	border-color: #E42C3E;
}

#feedback-form-botcheck {
	display: none;
}

.mfp-hide {
	display: none !important;
	}

#myModal1 {
    z-index: 9999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	background: #fff;
	padding: 0 0 5rem 0;
}

#myModal1 img {
	max-width: 280px;
	height: auto;
	margin: auto;
}

form .btn {
	margin-top: 3rem;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	height: 100%;
	width: 100%;
	max-width: 20rem;
	padding: 1rem;
	background: rgba(137,198,176,0);
	color: rgba(137,198,176,1);
	border: 2px solid rgba(137,198,176,1);
	border-radius: 3rem;
	-webkit-transition: all 650ms ease;
	-o-transition: all 650ms ease;
	transition: all 650ms ease;
}

form .btn:hover {
	background: rgba(137,198,176,1);
	color: rgba(250,250,250,1);
	border: 2px solid rgba(137,198,176,1);
}

@media screen and (min-width: 992px) {
	
	.form-widget {
		margin-right: 3rem;
	}
}

/* Datenschutz */

#datenschutz {
	padding: 12rem 0 0 0;
}

#datenschutz .flexbox .col-100 {
	padding: 6rem 6rem 2rem 6rem;
	text-align: left;
}

#datenschutz .flexbox .row .col-50 {
	padding: 6rem 2rem 2rem 6rem;
	text-align: left;
}


@media (max-width: 991.98px) {
	
	#datenschutz .flexbox .col-100 {
		padding: 3rem 1.5rem 2rem 1.5rem;
	}
	
	#datenschutz .flexbox .row .col-50 {
		padding: 0rem 1.5rem 0rem 1.5rem;
	}
}

/* FOOTER */

.footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	background: rgba(21,49,53,1);
	padding: 4%;
	margin-top: 10rem;
}

.footer-head, 
.footer-bottom {
	color: #fff;
	width: 100%;
	padding: 1% 2% 1% 0;
}

.footer-head p {
	color: #fff;
}

.footer-col li a {
	color: rgba(250,250,250,1);
	-webkit-transition: color 650ms ease;
	-o-transition: color 650ms ease;
	transition: color 650ms ease;
}

.footer-col li a:hover {
	color: rgba(137,198,176,1);
}

.footer .footer-head h2 {
	line-height: 3rem;
}

.footer-col:nth-child(1) {
	width: 100%;
	padding: 0;
}

.footer-col:nth-child(2) {
	width: 40%;
	padding: 1% 5% 1% 0;
}

.footer-col:nth-child(3),
.footer-col:nth-child(4),
.footer-col:nth-child(5) {
	width: 20%;
	padding: 1% 2% 1% 0;
}

.footer-col h3 {
	font-size: 1.2rem;
}

.footer-col h3, 
.footer-col p, 
.footer-col a, 
.footer-col li,
.footer-bottom p {
	color: #fff;
	list-style: none;
	line-height: 2rem;
}

.footer-bottom img {
	margin: 2rem 0 2rem 0;
	max-width: 420px;
	max-height: 100px;
}

@media (max-width: 1300px) {
    
	.footer-col:nth-child(2) {
		width: 100%;
	}
    
    .footer-col:nth-child(3),
    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        width: 25%;
    }
}

@media (max-width: 850px) {
    
    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        width: 50%;
}
    .footer-col:nth-child(5),
    .footer-col:nth-child(6) {
        width: 50%;
    }
}

@media (min-width: 992px) {
	
	.footer {
		background-image: url(img/doggies.png);
		background-repeat: no-repeat;
		background-position: bottom right;
	}
}

/* Social icons */

.social-icon {
	display: block;
	float: left;
	text-align: center !important;
	font-size: 28px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	cursor: pointer;
	font-style: normal;
	margin: 0 5px 5px 0;
	width: 40px;
	height: 40px;
	font-size: 1rem;
	line-height: 38px !important;
	text-shadow: none;
	border: 1px solid #AAA;
	border-radius: 3px;
	overflow: hidden;
    background: #444;
	color: #fff !important;
	border-color: transparent;
}

.social-icon i { 
    color: #fff;
	display: block;
	position: relative;
}

body:not(.device-touch) .social-icon i {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.social-icon:hover i:first-child { margin-top: -38px; }

.social-icon:hover {
	color: #555;
	border-color: transparent;
}

/* Buttom-to-top */

#buttom-to-top {
    display: none;
    width: auto;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2300;
    cursor: pointer;
    opacity: 1.0;
	background: rgba(0,0,0,0.3);
	width: 50px;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 6px;
	-webkit-transition: background .2s linear;
	-o-transition: background .2s linear;
	transition: background .2s linear;
}

#buttom-to-top .icon-angle-up {
	color: #fff;
}

#buttom-to-top:hover 
{
    background: rgba(0,0,0,0.5);
}

@media (max-width: 991.98px) {
	
	#bottom-to-top {
		right: 10px;
		bottom: 10px;
	}
}

/* Cookiebar */

#CybotCookiebotDialogHeader {
	display: none !important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton:not(:last-of-type),
#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton, 
#CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyContentControlsWrapper:not(.CybotCookiebotDialogHide)+#CybotCookiebotDialogBodyButtonsWrapper .CybotCookiebotDialogBodyButton,
#CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton:not(:last-of-type), 
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:not(:first-of-type) {
	background: #fff !important; 
	color: #000 !important;
	border: 1px solid #000 !important;
}


@media screen and (min-width: 601px) {
	#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton:not(:last-of-type), 
	#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton, 
	#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:not(:first-of-type) {
	background: #fff !important; 
	color: #000 !important;
	border: 1px solid #000 !important; 
	}
}	