@charset "UTF-8";

/* ---------------------------------------------------------------------------------------
Farbschema
--------------------------------------------------------------------------------------- */

/*
Blau Dunkel:  #00abc4
Blau Mittel:  #00abc4
Blau Hell:    #a1daf2

Grau Dunkel:  #2a2a2a
Grau Mittel:  #787878
Grau Hell:    #f2f2f2
*/

/* ---------------------------------------------------------------------------------------
Fonts
--------------------------------------------------------------------------------------- */
@font-face{
font-family:"DIN Next W02 Light";
src:url("../fonts/48e5a0e1-2d56-46e5-8fc4-3d6d5c973cbf.eot?#iefix");
src:url("../fonts/48e5a0e1-2d56-46e5-8fc4-3d6d5c973cbf.eot?#iefix") format("eot"),url("../fonts/074b86ea-3c33-4b3e-90da-76f8e2e20b6b.woff2") format("woff2"),url("../fonts/07d62b21-8d7a-4c36-be86-d32ab1089972.woff") format("woff"),url("../fonts/c0050890-bbed-44b9-94df-2611d72dbb06.ttf") format("truetype"),url("../fonts/9f774d17-c03a-418e-a375-34f3beecbc7a.svg#9f774d17-c03a-418e-a375-34f3beecbc7a") format("svg");
}
@font-face{
font-family:"DIN Next W02 Bold";
src:url("../fonts/50d13d4e-96c6-4412-a8fa-baa4814c5332.eot?#iefix");
src:url("../fonts/50d13d4e-96c6-4412-a8fa-baa4814c5332.eot?#iefix") format("eot"),url("../fonts/ae90c0fa-96b1-476c-83a6-34af1e0790fc.woff2") format("woff2"),url("../fonts/109143ca-57fb-459c-9814-3a68f0245ac3.woff") format("woff"),url("../fonts/c9fa50e2-c243-451a-b91b-ee74f341d7a8.ttf") format("truetype"),url("../fonts/1201bd6f-15f5-4b51-9c6f-c5c4b35d31f5.svg#1201bd6f-15f5-4b51-9c6f-c5c4b35d31f5") format("svg");
}
@font-face{
font-family:"HelveticaNeueW02-45Ligh";
src:url("../fonts/88fcd49a-13c7-4d0c-86b1-ad1e258bd75d.eot?#iefix");
src:url("../fonts/88fcd49a-13c7-4d0c-86b1-ad1e258bd75d.eot?#iefix") format("eot"),url("../fonts/7732d6de-bd05-4c17-ae43-99e9a02edf31.woff2") format("woff2"),url("../fonts/9a2e4855-380f-477f-950e-d98e8db54eac.woff") format("woff"),url("../fonts/fa82d0ee-4fbd-4cc9-bf9f-226ad1fcbae2.ttf") format("truetype"),url("../fonts/48d599a6-92b5-4d43-a4ac-8959f6971853.svg#48d599a6-92b5-4d43-a4ac-8959f6971853") format("svg");
}

/* ---------------------------------------------------------------------------------------
Globals
--------------------------------------------------------------------------------------- */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background: #fff;
	cursor: auto;
	color: #333;
	font-family: 'DIN Next W02 Light', sans-serif;
	font-size: 17px;
	line-height: 22px;
	position: relative;
}

img {
	height: auto;
	width: 100%;
}

/* ---------------------------------------------------------------------------------------
Headlines
--------------------------------------------------------------------------------------- */
h1 {
	color: #000;
	font-family:'DIN Next W02 Bold', sans-serif;
	font-size: 75px;
	font-weight: normal;
	line-height: 73px;
	margin: 0 0 0 0;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;

    max-width: 100%;
    /*word-wrap: break-word;*/
}

h2 {
	color: #000;
	font-family:'DIN Next W02 Bold', sans-serif;
	font-size: 36px;
	font-weight: normal;
	line-height: 40px;
	margin: 0 0 0 0;
	-webkit-font-smoothing: antialiased;
}

h3 {
	color: #000;
	font-family:'DIN Next W02 Bold', sans-serif;
	font-size: 28px;
	font-weight: normal;
	line-height: 32px;
	margin: 0 0 8px 0;
	-webkit-font-smoothing: antialiased;
}

h4 {
	color: #000;
	font-family:'DIN Next W02 Bold', sans-serif;
	font-size: 17px;
	font-weight: normal;
	line-height: 22px;
	margin: 0 0 0 0;
	-webkit-font-smoothing: antialiased;
}

@media screen and (max-width:1280px) {
    h1 {
        font-size: 62px;
        line-height: 70px;
    }

}

@media screen and (max-width:1040px) {
    h1 {
        font-size: 42px;
        line-height: 50px;
    }

    h2 {
        font-size: 24px;
        line-height: 28px;
    }

}

@media screen and (max-width:800px) {
    h1 {
        font-size: 36px;
        line-height: 40px;
    }

}

/* ---------------------------------------------------------------------------------------
Links
--------------------------------------------------------------------------------------- */
a:link {
	color: #00abc4;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
}

a:visited {
	color: #00abc4;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
}

a:hover {
	color: #000;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------------------------------------
Buttons
--------------------------------------------------------------------------------------- */
.btn {
	color: #00abc4 !important;
	font-family:'DIN Next W02 Bold', sans-serif;
	display: inline-block;
	font-weight: normal;
	margin-top: 10px;
}

.btn:before {
	background: url(../images/icon-arrow-right-blue.svg) no-repeat;
	background-size: 7px 10px;
	content: "";
	display: block;
	float: left;
	height: 10px;
	position: relative;
	top: 4px;
	width: 20px;
}

.btn:hover {
	color: #000 !important;
}

@media screen and (max-width: 1040px) {
.btn:before { top: 5px; }
}

@media screen and (max-width: 800px) {
.btn { margin-top: 7px; }
}

/* ---------------------------------------------------------------------------------------
Animation
--------------------------------------------------------------------------------------- */
.transition-0-25-ease {
	-webkit-transition: all 0.25s ease-in-out;
  	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

/* ---------------------------------------------------------------------------------------
Video Player
--------------------------------------------------------------------------------------- */
.player { height: 0; padding-bottom: 56%; position: relative; overflow: hidden; }
.player .play {position: absolute;top:50%;left: 50%;margin-left: -38px;margin-top:-28px; }
.player img {float: left;cursor: pointer;}
.player iframe {float: left; height: 100%; left: 0; position: absolute; top: 0; width: 100%; }
.player a.play { background: url('../images/icon-player.png') no-repeat 0 0; display: block; height: 0; overflow: hidden; }
.player a.play { background-position: 0 -60px;	width: 75px; padding-top: 55px; }
.player a.play:hover,.player:hover a.play { background-position:  0 0; }

/* ---------------------------------------------------------------------------------------
Grid 12 columns
--------------------------------------------------------------------------------------- */
.container { margin: 0 auto; }
.columns { float: left; }

@media screen and (min-width: 320px) and (max-width: 800px) {

    /* XS */
    .grid { padding: 0 20px; }
    .container { width: 100%;}

    .xs-12 {width: 100%;}
    .xs-11 {width: 91.6667%;}
    .xs-10 {width: 83.3333%;}
    .xs-9 {width: 75%;}
    .xs-8 {width: 66.6667%;}
    .xs-7 {width: 58.3333%;}
    .xs-6 {width: 50%;}
    .xs-5 {width: 41.6667%;}

    .xs-push-1 { position: relative; left: 8.3333%; }
    .xs-push-2 { position: relative; left: 16.6667%; }
    .xs-pull-1 { position: relative; left: -8.3333%; }
    .xs-pull-2 { position: relative; left: -16.6667%; }

}


@media screen and (min-width: 800px) {

/* SM */
.sm-1 { width: 60px; }
.sm-2 { width: 120px; }
.sm-3 { width: 180px; }
.sm-4 { width: 240px; }
.sm-5 { width: 300px; }
.sm-6 { width: 360px; }
.sm-7 { width: 420px; }
.sm-8 { width: 480px; }
.sm-9 { width: 540px; }
.sm-10 { width: 600px; }
.sm-11 { width: 660px; }
.sm-12 { width: 720px; }

.sm-push-1 { position: relative; left: 60px; }
.sm-push-2 { position: relative; left: 120px; }
.sm-pull-1 { position: relative; left: -60px; }
.sm-pull-2 { position: relative; left: -120px; }

.grid { padding: 0 20px; }
.columns { padding: 0 20px; }
.container { max-width: 760px; }
}


@media screen and (min-width: 1040px) {

/* MD */
.md-1 { width: 80px; }
.md-2 { width: 160px; }
.md-3 { width: 240px; }
.md-4 { width: 320px; }
.md-5 { width: 400px; }
.md-6 { width: 480px; }
.md-7 { width: 560px; }
.md-8 { width: 640px; }
.md-9 { width: 720px; }
.md-10 { width: 800px; }
.md-11 { width: 880px; }
.md-12 { width: 960px; }

.container { max-width: 1000px; }

.sm-push-1,
.sm-push-2,
.sm-pull-1,
.sm-pull-2 {
position: relative; left: 0; }

.md-push-1 { position: relative; left: 80px; }
.md-push-2 { position: relative; left: 160px; }
.md-push-3 { position: relative; left: 240px; }
.md-push-4 { position: relative; left: 320px; }
.md-push-5 { position: relative; left: 400px; }
.md-push-6 { position: relative; left: 480px; }
.md-push-7 { position: relative; left: 560px; }
.md-push-8 { position: relative; left: 640px; }
.md-push-9 { position: relative; left: 720px; }
.md-push-10 { position: relative; left: 800px; }
.md-push-11 { position: relative; left: 880px; }
.md-push-12 { position: relative; left: 960px; }
.md-pull-1 { position: relative; left: -80px; }
.md-pull-2 { position: relative; left: -160px; }
.md-pull-3 { position: relative; left: -240px; }
.md-pull-4 { position: relative; left: -320px; }
.md-pull-5 { position: relative; left: -400px; }
.md-pull-6 { position: relative; left: -480px; }
.md-pull-7 { position: relative; left: -560px; }
.md-pull-8 { position: relative; left: -640px; }
.md-pull-9 { position: relative; left: -720px; }
.md-pull-10 { position: relative; left: -800px; }
.md-pull-11 { position: relative; left: -880px; }
.md-pull-12 { position: relative; left: -960px; }
}


@media screen and (min-width: 1280px) {

/* LG */
.lg-1 { width: 100px; }
.lg-2 { width: 200px; }
.lg-3 { width: 300px; }
.lg-4 { width: 400px; }
.lg-5 { width: 500px; }
.lg-6 { width: 600px; }
.lg-7 { width: 700px; }
.lg-8 { width: 800px; }
.lg-9 { width: 900px; }
.lg-10 { width: 1000px; }
.lg-11 { width: 1100px; }
.lg-12 { width: 1200px; }

.container { max-width: 1240px; }

.md-push-1,
.md-push-2,
.md-pull-1,
.md-pull-2 {
position: relative; left: 0; }

.lg-push-1 { position: relative; left: 100px; }
.lg-push-2 { position: relative; left: 200px; }
.lg-push-3 { position: relative; left: 300px; }
.lg-push-4 { position: relative; left: 400px; }
.lg-push-5 { position: relative; left: 500px; }
.lg-push-6 { position: relative; left: 600px; }
.lg-push-7 { position: relative; left: 700px; }
.lg-push-8 { position: relative; left: 800px; }
.lg-push-9 { position: relative; left: 900px; }
.lg-push-10 { position: relative; left: 1000px; }
.lg-push-11 { position: relative; left: 1100px; }
.lg-push-12 { position: relative; left: 1200px; }
.lg-pull-1 { position: relative; left: -100px; }
.lg-pull-2 { position: relative; left: -200px; }
.lg-pull-3 { position: relative; left: -300px; }
.lg-pull-4 { position: relative; left: -400px; }
.lg-pull-5 { position: relative; left: -500px; }
.lg-pull-6 { position: relative; left: -600px; }
.lg-pull-7 { position: relative; left: -700px; }
.lg-pull-8 { position: relative; left: -800px; }
.lg-pull-9 { position: relative; left: -900px; }
.lg-pull-10 { position: relative; left: -1000px; }
.lg-pull-11 { position: relative; left: -1100px; }
.lg-pull-12 { position: relative; left: -1200px; }
}


@media screen and (min-width: 1520px) {

/* XL */
.xl-1 { width: 120px; }
.xl-2 { width: 240px; }
.xl-3 { width: 360px; }
.xl-4 { width: 480px; }
.xl-5 { width: 600px; }
.xl-6 { width: 720px; }
.xl-7 { width: 840px; }
.xl-8 { width: 960px; }
.xl-9 { width: 1080px; }
.xl-10 { width: 1200px; }
.xl-11 { width: 1320px; }
.xl-12 { width: 1440px; }

.container { max-width: 1480px; }

.xl-push-1 { position: relative; left: 120px; }
.xl-push-2 { position: relative; left: 240px; }
.xl-push-3 { position: relative; left: 360px; }
.xl-push-4 { position: relative; left: 480px; }
.xl-push-5 { position: relative; left: 600px; }
.xl-push-6 { position: relative; left: 720px; }
.xl-push-7 { position: relative; left: 840px; }
.xl-push-8 { position: relative; left: 960px; }
.xl-push-9 { position: relative; left: 1080px; }
.xl-push-10 { position: relative; left: 1200px; }
.xl-push-11 { position: relative; left: 1320px; }
.xl-push-12 { position: relative; left: 1440px; }
.xl-pull-1 { position: relative; left: -120px; }
.xl-pull-2 { position: relative; left: -240px; }
.xl-pull-3 { position: relative; left: -360px; }
.xl-pull-4 { position: relative; left: -480px; }
.xl-pull-5 { position: relative; left: -600px; }
.xl-pull-6 { position: relative; left: -720px; }
.xl-pull-7 { position: relative; left: -840px; }
.xl-pull-8 { position: relative; left: -960px; }
.xl-pull-9 { position: relative; left: -1080px; }
.xl-pull-10 { position: relative; left: -1200px; }
.xl-pull-11 { position: relative; left: -1320px; }
.xl-pull-12 { position: relative; left: -1440px; }
}
/* ---------------------------------------------------------------------------------------
Grid helper
--------------------------------------------------------------------------------------- */
@media screen and (min-width: 320px) {
.grid-helper {
	background-color: #F66;
	color: #fff;
	height: 40px;
	left: 0;
	position: fixed;
	top: 0;
	width: 40px;
	z-index: 200;
}

.grid-helper:before {
	content: "XS";
	display: block;
	float: left;
	font-size: 14px;
	font-weight: 700;
	margin-top: 5px;
	text-align: center;
	width: 40px;
}
}

@media screen and (min-width:800px) {
  .grid-helper {
    background-color: #6CC;
  }

  .grid-helper:before {
    content: "SM";
  }

}

@media screen and (min-width:1040px) {
  .grid-helper {
    background-color: #F63;
  }

  .grid-helper:before {
    content: "MD";
  }

}

@media screen and (min-width:1280px) {
  .grid-helper {
    background-color: #63F;
  }

  .grid-helper:before {
    content: "LG";
  }

}

@media screen and (min-width:1520px) {
  .grid-helper {
    background-color: #3CC;
  }

  .grid-helper:before {
    content: "XL";
  }

}

/* ---------------------------------------------------------------------------------------
Header
--------------------------------------------------------------------------------------- */
.menu  {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 23px 0;
  z-index: 1001;
  background-color: transparent;

  transition: -webkit-transform .25s, background-color .33s;
  transition: transform .25s, background-color .33s;
}

.menu--opaque {
    background-color: white;
}

.menu--pinned {
    position: fixed;
    top: -100px;
    /*background-color: rgba(255,255,255,0.9);*/
    background-color: white;

    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.menu--visible {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.menu--unpinned.menu--visible {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.menu--hidden {
    display: none;
}

.menu__innerlogo {
    position: relative;
}

.menu__innerlogo img {
    position: absolute;
    top: 29px;
    width: 208px
}

.menu__login,
.overlay li.menu__login {
    width: 235px;
    float: right;
    font-size: 1em;
    padding-top: 1.5em;
    padding-bottom: 1em;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin-top: 3.5em;
}


@media screen and (min-width: 1500px) {
    .menu .full-width,
    .menu__header.full-width,
    .menu__wrapper .full-width,
    .menu__innerlogo.full-width {
        max-width: 100%;
        padding-left: 120px;
        padding-right: 120px;
    }
}



/* ---------------------------------------------------------------------------------------
Navigation
--------------------------------------------------------------------------------------- */
.hamburger {
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger,
.hamburger:before,
.hamburger:after {
    content: '';
    width: 34px;
    border-top: 3px solid black;
}

.hamburger:before,
.hamburger:after {
    position: absolute;
    left: 0;
    right: 0;
}

.hamburger:before {
    top: 8px;
}

.hamburger:after {
    bottom: 10px;
}

.hamburger:hover,
.hamburger:hover:before,
.hamburger:hover:after {
    border-color: rgb(21, 114, 147);
}

/*.hamburger:before {
  position: absolute;
  top: 8px;
  left: 0;
	background: #000;
	box-shadow: 0 8px 0 0 #000, 0 16px 0 0 #000;
	content: "";
	display: block;
	height: 2px;
	width: 34px;
	-webkit-transition: all 0.25s ease-in-out;
  	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;

}

.hamburger:hover:before {
	background: #000;
	box-shadow: 0 8px 0 0 #000, 0 16px 0 0 #000;
	-webkit-transition: all 0.25s ease-in-out;
  	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}*/

.hamburger:focus { outline:0; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: -100px;
  right: 0;
	background: #00adc6;
	background: rgba(0,171,200,1);
	z-index: 10000;
}

.menu__header {
  padding-top: 25px;
}

.menu__open,
.menu__close {
  position: relative;
  top: 9px;
  float: right;
  width: 34px;
  height: 34px;
}

.menu__open {
    margin-top: 5px;
}

.menu__close {
  height: 40px;
  width: 40px;
  margin: -5px -3px 0 0;
  background: #000;
  border: none;

  transform: scale(.9);
  transition: transform .4s;
}

.menu__close:focus {
  outline: none;
}

.open .menu__close {
  transform: scale(1);
}

.menu__close img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  margin: -8px 0 0 -8px;

  transition: -webkit-transform 0s;
  transition: transform 0s;
}

.open .menu__close img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  transition: -webkit-transform .4s;
  transition: transform .4s;
}

.body--no-scrolling {
    overflow: hidden;
}

@media screen and (max-width: 1024px) and (max-height: 768px) {
    .body--no-scrolling {
        position: fixed;
        left: 0;
        right: 0;
    }
}


/* Overlay closing */
.overlay .overlay-close {
	background: #000;
	border: none;
	color: #fff;
	font-size: 24px;
	left: 4%;
	margin-left: 5px;
	height: 40px;
	overflow: hidden;
	padding: 0 12px;
	position: relative;
	top: 32px;
	width: 40px;
	z-index: 200;
}

.overlay .overlay-close img {
	left: 4%;
	margin-left: 17px;
	position: fixed;
	top: 44px;
	width: 16px;
}

/* Menu style */
.overlay .menu__wrapper {
  position: absolute;
  top: 104px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
}

.overlay ul {
	list-style: none;
	margin: 0 auto;
  text-align: right;

  transform: translateY(50px);
  transition: transform .4s  cubic-bezier(0.785, 0.000, 1.000, 0.750);
}

.overlay.open ul {
  transform: translateY(0px);
  transition: transform .5s cubic-bezier(0.000, 0.285, 0.180, 0.980) 0s;
}

.overlay ul li {
	display: block;
	font-size: 44px;
  line-height: 1em;
  margin: 0.6em 0 0;
}

@media screen and (max-width: 480px), screen and (max-height: 650px) {
  .overlay ul li {
    font-size: 24px;
  }
}

.overlay ul li a {
	display: block;
	color: #fff;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.overlay ul li a:hover, .overlay ul li a:focus {
	color: #000;
}



@media screen and (max-height: 400px), screen and (max-width: 500px) {
  header {
    padding: 20px 0;
  }

  .menu__open,
  .menu__close {
    top: 3px;
  }

  .menu__close {
    top: 1px;
  }

  .overlay .menu__wrapper {
    top: 79px;
  }
}



/* Effects */
.overlay-hugeinc {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s cubic-bezier(0.520, 0.010, 0.335, 0.290), visibility 0s 0.3s;
	transition: opacity 0.3s cubic-bezier(0.520, 0.010, 0.335, 0.290), visibility 0s 0.3s;
}

.overlay-hugeinc.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
  opacity: 1;
}

@media screen and (max-width:800px) {

  .overlay .overlay-close {
    left: 20px;
    margin-left: 0;
  }

  .overlay .overlay-close img {
    left: 15px;
  }

}


/* ---------------------------------------------------------------------------------------
Logo
--------------------s------------------------------------------------------------------- */
.logo {
  float: left;
  width: 244px;
}

@media screen and (max-width:800px) {
  .logo {
    float: right;
    width: 145px;
  }

}

@media screen and (max-width:540px) {
  .logo {
    width: 144px;
  }

}

/* ---------------------------------------------------------------------------------------
Social Media Icons
--------------------------------------------------------------------------------------- */
.social {
	float: right;
	margin: 0;
	padding: 0;
}

.social li {
	float: left;
	list-style: none;
	margin-left: 10px;
}

.social li a {
	display: block;
	height: 35px;
	width: 35px;
}

.social li a:hover {
	opacity: 0.99;
}

.social li a img {
	width: 35px;
}

@media screen and (max-width: 540px) {
.social { display: none; }
}

/* ---------------------------------------------------------------------------------------
backgrounds
--------------------------------------------------------------------------------------- */
.bluebg {
  background: #00abc4;
  float: left;
  position: relative;
  width: 100%
}

.bluebg p b,
.bluebg h3,
.bluebg a {
  color: #fff;
}

.bluebg a:hover {
  color: #000;
}

.bluebg p {
  color: #c2dfe8;
  line-height: 22px;
}

.greybg {
  background: #f2f2f2;
  float: left;
  position: relative;
  width: 100%
}
/* ---------------------------------------------------------------------------------------
Abbinder
--------------------------------------------------------------------------------------- */
article.jobprofil,
article.downloads,
article.bundesagentur {
  height: 150px;
}

@media screen and (max-height:1040px) {
  article.jobprofil,
  article.downloads,
  article.bundesagentur {
    height: 150px;
    margin-bottom: 30px;
  }

}

/* ---------------------------------------------------------------------------------------
Footer
--------------------------------------------------------------------------------------- */
footer {
  float: left;
  margin-top: 147px;
  width: 100%;
}

#footercontent {
  padding-top: 40px;
  width: 100%;
}

footer .initiatoren {
  float: left;
  width: 1100px;
}

footer .initiatoren--with-db {
  width: 100% !important;
}

footer .initiatoren .gesamtverband img {
  height: auto;
  width: 155px;
}

footer .initiatoren .schirmherrschaft img {
  height: auto;
  padding-right: 29px;
  width: 165px;
}

footer .initiatoren .deutsche-bank img {
  height: auto;
  width: 97px;
}

footer .initiatoren .gesamtverband {
  float: left;
  margin-bottom: 30px;
  margin-right: 2%;
  width: 48%;
}

footer .initiatoren--with-db .gesamtverband {
  margin-right: 0;
  width: 37.5%;
}

footer .initiatoren .schirmherrschaft {
  float: left;
  width: 50%
}

footer .initiatoren--with-db .schirmherrschaft {
  margin-bottom: 30px;
  width: 37.5%;
}

footer .initiatoren .deutsche-bank {
  float: left;
  width: 25%;
}

footer .initiatoren img {
  float: left;
  padding-right: 30px;
}

footer .initiatoren p {
  float: left;
  font-size: 13px;
  line-height: 18px;
  margin: 0;
  width: 340px;
}


@media screen and (min-width: 1040px) {
  footer .initiatoren--with-db .deutsche-bank p {
    width: 55%;
  }
}

.social-footer {
  float: right;
  list-style: none;
  position: relative;
  top: -20px;
}

.social-footer--bottom {
  top: -8px;
}

.social-footer li {
  float: left;
  height: 35px;
  margin-left: 20px;
  width: 35px;
}

.social-footer li img {
  height: 35px;
  width: 35px;
}

footer #copyline {
  float: left;
  font-size: 12px;
  margin-top: 37px;
  padding-top: 22px;
  margin-bottom: 80px;
  border-top: 2px solid #f2f2f2;
  width: 100%;
}

footer #copyline p {
  color: #aaa;
  float: left;
}

footer #copyline nav {
  float: right;
}

footer #copyline nav li:first-child {
  padding: 0 14px 0 0;
}

footer #copyline nav li {
  float: left;
  list-style: none;
  margin: 0 0;
}

footer #copyline nav li:last-child {
  border-left: 1px solid #f2f2f2;
  padding-left: 14px;
}

footer #copyline .social-footer--bottom li:last-child {
  border-left: 0;
  padding-left: 0;
}

.centeredmenu {
  float: left;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 320px) {
#footercontent { margin: 0 20px; width: auto; }
}

@media screen and (min-width: 800px) {
#footercontent { margin: 0 auto; max-width: 680px; }
}

@media screen and (min-width: 1040px) {
#footercontent { max-width: 920px; }
}

@media screen and (min-width: 1280px) {
#footercontent { max-width: 1160px; }
}

@media screen and (min-width: 1520px) {
#footercontent { max-width: 1400px; }
}

@media screen and (max-width: 1520px) {
footer .initiatoren { width: 920px; }
footer .initiatoren p { width: 230px; }
footer #copyline { margin-top: 23px; }
}

@media screen and (max-width: 1280px) {
footer .initiatoren .gesamtverband { margin-right: 5%;  width: 45%; }
footer .initiatoren--with-db .gesamtverband { margin-right: 0; width: 33%; }
footer .initiatoren { width: 700px; }
footer .initiatoren p { width: 160px; }
footer .initiatoren--with-db p {width: 146px;}
footer #copyline { margin-top: 5px; }
}

@media screen and (min-width: 801px) and (max-width: 1040px) {
  .footer-kontakt-impressum {margin-top: -10px;}
}

@media screen and (max-width: 1039px) {
footer { margin-top: 12px; }
footer .initiatoren {  width: 470px; }
footer .initiatoren p { width: 180px; }
footer .initiatoren .gesamtverband p { margin-top: 40px; }
footer .initiatoren img { margin-bottom: 20px;}
footer #copyline p { width: 50%; }
}

@media screen and (max-width: 800px) {
footer { margin-top: 0;}
footer .initiatoren {  width: 100%; }
footer .initiatoren .gesamtverband,
footer .initiatoren .schirmherrschaft,
footer .initiatoren .deutsche-bank,
footer .initiatoren p {
  width: 100%;
}
footer .initiatoren .gesamtverband { margin-right: 0; }
footer .initiatoren .gesamtverband p { margin-top: 2px; }
footer .initiatoren .schirmherrschaft img { margin-left: -65px; margin-bottom: 15px; margin-top: 2px; padding-right: 0; width: 130px; }
footer .initiatoren .gesamtverband img { margin-left: -75px; margin-bottom: 17px; width: 150px; }
footer .initiatoren .deutsche-bank img { margin-left: -49px; }
footer .initiatoren img { position: relative; left: 50%; margin-bottom: 20px;}
footer #copyline p { width: 100%; }
footer #copyline nav { clear: both; float: left; margin-top: 20px; position: relative; left: 50%; }
footer #copyline nav ul { margin: -10px 0 0 0; padding: 0; position: relative; left: -50%; }
footer #copyline nav li {  margin: 0 0; }
footer ul.social-footer { clear: left; float: left; margin-left: -10px; left: 50%; padding: 0; position: relative; text-align: center; top: 10px; }
footer ul.social-footer li { position: relative; right: 50%; }
footer #copyline { margin-top: 26px; margin-bottom: 32px }
}

.slidernavi a.prev{background-position: -199px 0;width: 34px;padding-top: 34px;}
.slidernavi a.next{background-position: -239px 0;width: 34px;padding-top: 34px;}


/* Alert */
.alert {margin-bottom: 18px; padding: 8px 35px 8px 14px; border: 1px solid #fbeed5; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;}
.alert-success { border-color: #d6e9c6; background-color: #dff0d8;color: #468847; }
.alert-error { border-color: #eed3d7; background-color: #f2dede;color: #b94a48; }
.alert-info { border-color: #bce8f1; background-color: #d9edf7;color: #3a87ad; }


/* vCard */
.vcard h4 {margin-bottom: 5px;}
.vcard p {margin-bottom: 0; margin-top: 0px;}
.vcard .note {margin-bottom: 4px;}
.vcard .adr {margin-bottom: 4px;}
.vcard .email {margin-top: 4px;}

/* ---------------------------------------------------------------------------------------
Impressum
--------------------------------------------------------------------------------------- */
#impressum { float: left; margin: 145px 0 100px 0; width: 100%; }
#impressum h2 { margin-bottom: 120px; }
#impressum article {margin-bottom: 40px;}
#impressum img {margin: 15px 0; width: auto;}
#impressum li {margin-bottom: 5px;}
.vertretungsberechtigte ul { list-style: none; padding: 0; }

#impressum .wegmeister-logo {
  width: 150px;
}

#impressum .gesamtverband-logo {
  width: 180px;
}

@media screen and (max-width: 800px) {
#impressum { margin: 83px 0 55px 0; }
#impressum h2 { margin-bottom: 82px; }
}

/* ---------------------------------------------------------------------------------------
Kontakt
--------------------------------------------------------------------------------------- */
#kontakt { float: left; margin: 145px 0 100px 0; width: 100%; }
#kontakt h2 {margin-bottom: 20px;}
#kontakt article {margin-bottom: 40px;}
#kontakt .vcard {margin-bottom: 20px;}
#kontaktform {margin-bottom: 40px;}
#kontaktform div {float: left;}
#kontaktform label {display: block; width: 150px; padding: 5px 0;}
#kontaktform input,
#kontaktform textarea {display: inline-block; width: 327px; height: 38px; padding: 10px; margin-bottom: 9px; font-size: 14px; line-height: 18px; color: #555; background-color: white; border: 1px solid #CCC;}
#kontaktform div {margin-top: 20px;}
#kontaktform div:first-child {margin-right: 25px;}
#kontaktform textarea {width: 679px; height: auto; resize: vertical;}
#kontaktform input.btn { color: #fff !important; float: right; padding: 12px 20px; margin-top: -4px; width: auto; text-transform: uppercase; letter-spacing: 1px; border: none; background-color: #00abc4;}
#kontaktform .asterisktext {clear: both; line-height: 30px; padding-top: 10px; color: #aaa;}
#kontaktform .alert {display: block; margin-bottom: 3px; padding: 5px 15px;}
#kontakt .popupmap {width: 100%; height: 350px; background-color: #f2f2f2;}

@media screen and (max-width: 1520px) {
#kontaktform input { width: 317px; }
#kontaktform textarea {width: 657px;}
}

@media screen and (max-width: 1280px) {
#kontaktform input { width: 247px; }
#kontaktform textarea {width: 520px;}
}

@media screen and (max-width: 1040px) {
#kontaktform input { width: 177px; }
#kontaktform textarea {width: 380px;}
}

@media screen and (max-width: 800px) {
#kontakt { margin: 95px 0 40px 0;}
.formular { width: 100%; }
#kontaktform input, #kontaktform div { width: 100%; }
#kontaktform div { margin-top: 10px; }
#kontaktform textarea {width: 100%;}
}

@media screen and (max-width: 550px) {
#kontaktform input.btn { margin: 20px 0 60px 0; width: 100%; }
}


/*************************** IE ********************************/
/* IE 7 */
*+html .bluebg {height: 360px; margin-top: 40px;}
*+html #einblickausbildung {margin-top: 0px;}
*+html #ausbildungsdetails .jobdetails li,
*+html #praktikadetails    .jobdetails li {margin-left: 25px;}
*+html .liste li {margin-left: 0 !important;}
*+html .scroller .scrollbar {margin-left: -60px;}

/*************************** Print ********************************/

@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow:none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group; /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  header #login {
    display: none;
  }

  footer {
    display: none;
  }
}

/* Teaser Fix */

#kursfindernavi {
  text-decoration: none;
  position: absolute;
  right: 170px;
  top: 0;
  padding: 4px 8px;
  font-size: 0.7em;
  color: #787878;
  text-transform: uppercase;
}




/* Layout Fixes */

.full-width {
  max-width: 1400px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}

.slider__container {
  padding: 0 20px;
}

.menu__logo {
    position: relative;
    top: 6px;
    width: 172px;
}

.menu--pinned .menu__logo {
    top: 5px;
}

@media screen and (max-width: 350px) {
  .menu__logo {
    width: 180px;
  }
}


@media screen and (min-width: 1080px) {
  .full-width {
      padding-left: 100px;
      padding-right: 100px;
  }

  .slider__container {
    padding: 0 80px;
  }
}


@media screen and (min-width: 820px) {
  .column--onethird {
    display: inline-block;
    width: 33.333%;
    vertical-align: top;
  }

  .column__inner {
    padding-right: 40px;
  }
}

@media screen and (max-width: 820px) {
  .column--onethird {
    max-width: 300px;
    margin: 0 auto 80px;
  }
}

@media screen and (max-height: 400px), screen and (max-width: 500px) {
  .menu__logo {
    top: 6px;
    width: 148px;
  }
}



.slick-slide .play[style] {
    left: 0 !important;
}






/*.menu--light .menu__logo {
    opacity: 0.5;
}*/

.menu--light .hamburger,
.menu--light .hamburger:before,
.menu--light .hamburger:after {
    border-color: white;
}

@media screen and (min-width: 1500px) {
    /*.menu {
        top: 25px;
    }*/

    .menu--pinned {
        top: -100px;
    }

    /*.keyvisual__text {
        top: 250px !important;
    }*/

    body #teaser {
        margin-top: 230px;
        margin-bottom: 190px;
    }

    body #karte + #teaser {
        margin: 25px 0 95px 0;
    }
}


@media screen and (min-width: 800px) {
    .menu__logo {
        width: 208px;
    }
}

@media screen and (max-width: 800px) {
    .menu__innerlogo .menu__logo {
        width: 172px;
    }
}

@media screen and (max-height: 400px), screen and (max-width: 500px) {
    .menu__innerlogo .menu__logo {
        width: 148px;
    }
}



.slick,
.slick *,
.slick-slide {
    cursor: -webkit-grab;
    cursor: grab;
}




.box {
    display: block;
    color: white !important;
    -webkit-font-smoothing: subpixel-antialiased !important;
}

.box span {
    color: white !important;
    -webkit-font-smoothing: antialiased !important;
}

.box span:before {
    background: url(../images/icon-arrow-right.svg) no-repeat;
    background-size: 10px 10px;
    height: 10px;
    width: 20px;
}




@media screen and (max-width: 500px) {
    .company-name {
        width: 100%;
        word-wrap: break-word;
    }
}
