 html {
     -moz-hyphens: auto;
     -o-hyphens: auto;
     -webkit-hyphens: auto;
     -ms-hyphens: auto;
     hyphens: auto;
}
 body {
     margin: 0 auto;
     overflow:scroll;
}
 * {
     box-sizing: border-box;
}
/* Typografie */
 @font-face {
     font-family: "HKGrotesk-Regular";
     src: url("../fonts/HKGrotesk-Regular.eot") format('eot'), url("../fonts/HKGrotesk-Regular.woff") format('woff'), url("../fonts/HKGrotesk-Regular.woff2") format('woff2');
     font-weight: 500;
     font-style: normal;
}
 @font-face {
     font-family: "HKGrotesk-Medium";
     src: url("../fonts/HKGrotesk-Medium.eot") format('eot'), url("../fonts/HKGrotesk-Medium.woff") format('woff'), url("../fonts/HKGrotesk-Medium.woff2") format('woff2');
     font-weight: 600;
     font-style: normal;
}
 .verdana_text {
     font-family: Verdana, sans-serif;
}
 p {
     font-family: "HKGrotesk-Regular";
     font-style: normal;
     font-weight: 500;
     font-size: 24px;
     line-height: 35px;
}
 h1 {
     font-family: "HKGrotesk-Medium";
     font-style: normal;
     font-weight: 600;
     font-size: 88px;
     line-height: 115px;
     color: #B9CC7E;
}
 h2 {
     font-family: "HKGrotesk-Medium";
     font-style: normal;
     font-weight: 600;
     font-size: 44px;
     line-height: 57px;
     color: #759B4B;
}
 h3 {
     font-family: "HKGrotesk-Medium";
     font-style: normal;
     font-weight: 600;
     font-size: 36px;
     line-height: 46px;
     color: #759B4B;
}
 h4 {
     font-family: "HKGrotesk-Medium", Verdana, sans-serif;
     font-style: normal;
     font-weight: 600;
     font-size: 60px;
     line-height: 85px;
     color: #FFFFFF;
}
 h5 {
     font-family: "HKGrotesk-Medium";
     font-style: normal;
     font-weight: 600;
     color: #759B4B;
     font-size: 50px;
     line-height: 57px;
}

 a:link {
     text-decoration: underline;
     color: #000000;
}
 a:visited {
     text-decoration: none;
     color: #000000;
}
 a:hover {
     text-decoration: underline;
     color: #AA4222;
}
 a:active {
     text-decoration: none;
     color: #000000;
}
/* Header */
 .header {
     font-family: "HKGrotesk-Medium";
     font-weight: 600;
     font-style: normal;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     background-color: #B9CC7E;
     color: #000;
     padding: 0px 50px;
     height: 25vh;
}
 .header-logo {
     flex-basis: 42%;
     max-width: 12vh;
}
 .header-menu {
     flex: 2 1 auto;
     flex-grow: 2;
     flex-shrink: 1;
     flex-basis: auto;
     display: grid;
     justify-content: space-around;
     align-items: center;
     max-width: 85%;
     font-size: 28px;
     line-height: 46px;
}
 .header-menu a {
     color: #000000;
}
 .header-menu a:hover {
     text-decoration: underline;
     color: #AA4222;
}
/* Burger Menü */
 .header-burger {
     flex: 1 1 auto;
     text-align: right;
     max-width: 5%;
}
 body.open, body:after {
     overflow: hidden;
}
 .b-nav, body:after {
     position: absolute;
     right: 0;
}
 .b-brand, .b-link {
     font-weight: 500;
     font-style: normal;
     font-size: 28px;
     line-height: 46px;
     margin-left: 0;
     text-decoration: none;
}
 @-webkit-keyframes slideInLeft {
     0% {
         -webkit-transform: translate3d(345px, 0, 0);
         transform: translate3d(345px, 0, 0);
         visibility: visible;
    }
     100% {
         -webkit-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
         visibility: visible;
    }
}
 @keyframes slideInLeft {
     0% {
         -webkit-transform: translate3d(345px, 0, 0);
         transform: translate3d(345px, 0, 0);
         visibility: visible;
    }
     100% {
         -webkit-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
         visibility: visible;
    }
}
 .b-nav {
     background: #B9CC7E none repeat scroll 0 0;
     position: absolute;
     top: 0;
     width: 30%;
     z-index: 12;
     height: 100vh;
     box-shadow: -5px 0px 28px rgba(117, 155, 75, 0.5);
}
 .b-nav:not(.open) {
     animation-duration: 0.4s;
     animation-fill-mode: both;
     -webkit-animation-name: slideOutLeft;
     animation-name: slideOutLeft;
     overflow: hidden;
}
 .b-nav {
     animation-duration: .4s;
     animation-fill-mode: both;
     -webkit-animation-name: slideInLeft;
     animation-name: slideInLeft;
}
 .b-nav ul {
     padding-left: 0px;
     padding-top: 3vh;
}
 li.menu-divider {
     color: #759B4B !important;
     font-weight: 500;
     font-style: normal;
     font-size: 28px;
     line-height: 46px;
     text-decoration: none;
}
 li.menu-divider-2 {
     color: #759B4B !important;
     font-weight: 500;
     font-style: normal;
     font-size: 28px;
     line-height: 46px;
     text-decoration: none;
     margin-top: 50px;
     border-top: 2px solid #759B4B;
}
 .b-nav li {
     color: #000;
     list-style-type: none;
     padding: 10px 10px 10px 0;
     text-align: left;
     -webkit-transform: translateX(345px);
     -ms-transform: translateX(345px);
     transform: translateX(345px);
}
 .b-nav a:hover {
     text-decoration: underline;
     color: #AA4222;
}
 .b-nav li:not(.open) {
     animation-duration: 0.4s;
     animation-fill-mode: both;
     -webkit-animation-name: slideOutLeft;
     animation-name: slideOutLeft;
}
 .b-nav li:not(.open), .b-nav.open li {
     -webkit-animation-duration: 0.4s;
     -webkit-animation-fill-mode: both;
}
 .b-nav li:first-child {
     margin-top: 0px;
}
 .b-nav.open {
     visibility: visible;
     animation-duration: 0.4s;
     animation-fill-mode: both;
     -webkit-animation-name: slideInLeft;
     animation-name: slideInLeft;
     overflow: auto;
}
 .b-nav:not(.open) {
     visibility: hidden;
     animation-duration: 0.4s;
     animation-fill-mode: backwards;
     -webkit-animation-name: slideOutLeft;
     animation-name: slideOutLeft;
     overflow: hidden;
}
 .b-nav.open li {
     padding-left: 30px;
     animation-duration: 0.2s;
     animation-fill-mode: both;
     -webkit-animation-name: slideInLeft;
     animation-name: slideInLeft;
}
 .b-link {
     background: 0 0;
     border-left: rgba(255, 255, 255, 0)solid 2px;
     color: #000;
     transition: all .4s ease;
     width: auto;
}
 .b-link, .b-menu {
     -webkit-transition: all .4s ease;
}
/*.b-link--active, .b-link:hover {
     border-left: #e00a12 solid 5px;
     padding-left: 30px 
}
 */
 .b-menu {
     cursor: pointer;
     height: 35px;
     position: relative;
     transition: all 0.4s ease 0s;
     width: 70px;
     z-index: 12;
}
 .b-bun--bottom, .b-bun--mid, .b-bun--top {
     height: 3px;
     width: 70px;
}
 .b-container.open .b-main, .b-menu:hover {
}
 .b-bun {
     background: #000;
     transition: all .4s ease;
}
 .b-brand, .b-bun {
     position: relative;
     -webkit-transition: all .4s ease;
}
 .b-bun--top {
     top: 0;
}
 .b-bun--mid {
     top: 12px;
}
 .b-bun--bottom {
     top: 24px;
}
 .b-brand {
     color: #2196f3;
     top: -21.43px;
     transition: all .4s ease;
     z-index: 13;
}
 .b-container {
     height: 35px;
}
 .b-container:hover:not(.open) .bun-bottom, .b-container:hover:not(.open) .bun-mid, .b-container:hover:not(.open) .bun-top {
     background: #2196f3;
}
 .b-container.open .b-bun--top {
     background: black;
     top: 9px;
     -webkit-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
     transform: rotate(45deg);
}
 .b-container.open .b-bun--mid {
     opacity: 0;
}
 .b-container.open .b-bun--bottom {
     background: black;
     top: 5px;
     -webkit-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
     transform: rotate(-45deg);
}
 .b-container.open .b-brand {
     color: #fff;
}
/* 2-columns Flexbox */
 .container {
     display: flex;
     flex-wrap: wrap;
     padding: 0px 50px;
}
 .col-1 {
     flex-basis: 42%;
}
 .col-2 {
     flex-basis: 58%;
     padding-left: 40px;
     max-width: 50%;
     padding-bottom: 40px;
}
/* Keyvisual Startseite */
 .keyvisual-claim {
     background-color: #fff;
     text-align: center;
     margin: 0 auto;
     width: 95vw;
     margin-top: 25px;
}
 .keyvisual-start {
     display: flex;
     flex-direction: column;
     height: 80vh;
     width: 99vw;
     background-color: #fff;
     background-image: url(../img/dot.svg);
     background-repeat: repeat;
     background-size: 30px 35px;
}
 .keyvisual-content {
     height: auto;
     padding: 10px;
     background-color: #fff;
     width: 95vw;
     margin: 0 auto;
}
 .keyvisual-content video {
     width: 30vw;
}
/* Seitentyp: Über uns */
 .uberuns {
     background-color: #B9CC7E;
     background-image: url("../img/micimo-bg-big.svg");
     background-blend-mode: multiply;
     background-size: cover;
     margin: auto;
     max-height: 100%;
}
/* Bereich Techonologien */
 .Techonologien {
     background-color:#fff;
     padding: 50px;
     margin-bottom: 40px;
}
 .Techonologien p {
     padding:0px;
}
/* Slider */
 .slider {
     width: 100%;
     height: 300px;
     position: relative;
     overflow: hidden;
}
 .slider img {
     width: 100%;
     height: 100%;
     object-fit: scale-down;
     position: absolute;
     top: 0;
     left: 0;
     opacity: 0;
     transition: opacity 1s ease-in-out;
}
 .slider img.active {
     opacity: 1;
}
 .prev, .next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     z-index: 999;
     width: 30px;
     height: 30px;
     background-image: url("../img/pfeil-links.svg");
     background-repeat: no-repeat;
     background-size: contain;
     cursor: pointer;
}
 .next {
     right: 0;
     background-image: url("../img/pfeil-rechts.svg");
}
/* Seitentyp Kernkompetenzen: migration */
 #migration .kernkompetenzen {
     background-color: #B9CC7E;
     background-image: url("../img/micimo-bg-mi.svg");
     background-blend-mode: multiply;
     background-size: cover;
     max-height: 100%;
     margin: auto;
     padding: 50px;
}
 #migration .container {
     display: flex;
     flex-wrap: wrap;
     padding: 0px;
}
 #migration .col-1 {
     height: inherit;
     background-color: #fff;
     background-image: url("../img/dot.svg");
     background-repeat: repeat;
     background-size: 30px 35px;
     min-height: 69vh;
}
 #migration .col-1 video {
     position: absolute;
     top: 32%;
     left: 4%;
     width: 33vw;
}
/* Footer */
 .footer {
     position: sticky;
     bottom: 0;
     left: 0;
     width: 100%;
     background-color: #759B4B;
     padding: 0px 20px;
     height: 6vh;
}
 .footer p {
     font-family: "HKGrotesk-Regular", sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 16px;
     line-height: 23px;
}
 .footer-container {
     display: flex;
     justify-content: space-between;
}
 .footer-left, .footer-right {
     flex: 1;
}
 .footer-left {
     text-align: left;
}
 .footer-right {
     text-align: right;
}
/* mobile styling */
 @media screen and (max-width: 768px) {
     html, body {
         max-width: 100%;
    }
    /* Typografie */
     .verdana_text {
         font-family: Verdana, sans-serif;
    }
     p {
         font-size: 22px;
         line-height: 35px;
    }
     h1 {
         font-size: 60px;
         line-height: 115px;
    }
     h2 {
         font-size: 40px;
         line-height: 52px;
    }
     h3 {
         font-size: 32px;
         line-height: 46px;
    }
     h4 {
         font-size: 40px;
         line-height: 52px;
    }
     h5 {
	 font-size: 45px;
         line-height: 52px;
    }
     .b-brand, .b-link {
         font-size: 24px;
         line-height: 46px;
    }
    /* Header */
     .header {
         padding: 0px 25px;
    }
     .header-logo {
         flex: 1 1 auto;
         max-width: 11vh;
    }
     .header-menu {
         display: none;
         flex-basis: 100%;
         max-width: 100%;
    }
     .header-burger {
         flex: 1 1 auto;
         text-align: right;
         max-width: 7vh;
    }
    /* Footer */
     .footer {
         position: relative;
         padding: 8px;
         height: 16vh;
    }
     .footer p{
         text-align: center;
    }
     .footer-container {
         display: block;
    }
     .footer-right {
         text-align: left;
    }
    /* Header */
     .b-nav {
         width: 90%;
    }
     .b-menu {
         width: 50px;
         max-width: 50px;
    }
     .b-bun--bottom, .b-bun--mid, .b-bun--top {
         height: 3px;
         width: 50px;
    }
     .b-nav.open li {
         padding-left: 14px;
    }
     .b-brand, .b-link {
         font-size: 20px;
         line-height: 31px;
    }
     li.menu-divider {
         font-size: 20px;
         line-height: 31px;
    }
    /* 2-columns Flexbox */
     .col-1, .col-2 {
         max-width: 100%;
         padding: 0px 10px;
         flex-basis: 100%;
    }
     .punkte .col-1 {
         display:none 
    }
     .container {
         display: flex;
         flex-wrap: wrap;
         padding: 10px;
         width: 98vw;
         min-height: 350px;
    }
    /* Keyvisual Startseite */
     .keyvisual-start {
         position: relative;
         height: fit-content;
         padding-bottom: 40px;
    }
     .keyvisual-content {
         display: flex;
         flex-direction: column;
         align-items: center;
         top: 45%;
         padding:0px;
         width: 84vw;
    }
     .keyvisual-claim {
         width: 84vw;
    }
     .keyvisual-content video {
         width: 84vw;
         padding-bottom: 30px;
    }
     .keyvisual img {
         margin-right: 0;
         margin-bottom: 10px;
         width: 80vw;
    }
    /* Seitentyp Kernkompetenzen: migraiton */
     #migration .container {
         display: flex;
         flex-wrap: wrap;
         padding: 0px;
    }
     #migration .col-1 {
         position: relative;
         min-height: 45vh;
         background-color: #fff;
         background-image: url("../img/dot.svg");
         background-repeat: repeat;
         background-size: 30px 35px;
    }
     #migration .col-1 video {
         position: absolute;
         top: 13%;
         left: 7%;
         width: 85%;
    }
     #migration .kernkompetenzen {
         padding: 20px;
    }
    /* Hintergrund nur Punkte */
     #migration .bg-leer{
         position: relative;
         min-height: 20vh !important;
         background-color: #fff;
         background-image: url("../img/dot.svg");
         background-repeat: repeat;
         background-size: 30px 35px;
    }
    /* Bereich Techonologien */
     .slider {
         width: 100%;
         height: 150px;
    }
     .Techonologien p {
         padding:0 10px;
         margin-left: 0px;
         flex-basis: 100%;
         max-width: 98%;
    }
    .prev, .next {
    top: 80%;
    width: 20px;
    height: 20px;
}
    /* Gegen duenne Linie mobil */
     video {
         -webkit-mask-image: -webkit-radial-gradient(white, black);
         -webkit-backface-visibility: hidden;
         -moz-backface-visibility: hidden;
    }
}
