/*KEYFRAMES*/
.img-fluid {
  height: auto;
  max-width: 100%;
}
.obj-fit-cover{
  object-fit: cover;
}
@keyframes -webkit-floating {
  0% {
    -webkit-transform: translate3d(0,0,0);
  }
  50% {
    -webkit-transform: translate3d(0,-5%,0);
  }
}
@keyframes -moz-floating {
  0% {
    -moz-transform: translate3d(0,0,0);
  }
  50% {
    -moz-transform: translate3d(0,-5%,0);
  }
}
@keyframes floating {
  0% {
    transform: translate3d(0,0,0);
  }
  50% {
    transform: translate3d(0,-5%,0);
  }
}

/* source-sans-pro-300 - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url('../Fonts/source-sans-pro-v21-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
    url('../Fonts/source-sans-pro-v21-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../Fonts/source-sans-pro-v21-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('../Fonts/source-sans-pro-v21-latin-300.woff') format('woff'), /* Modern Browsers */
    url('../Fonts/source-sans-pro-v21-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../Fonts/source-sans-pro-v21-latin-300.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}

/* source-sans-pro-regular - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../Fonts/source-sans-pro-v21-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
    url('../Fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../Fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../Fonts/source-sans-pro-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../Fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../Fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}


/*OVERALL*/
body, html {
  margin: 0;
  padding: 0;
}

body {
  background-color: #03326c;
  color: #FFFFFF;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

/*ATTR*/
.full-height {
  height: 100%;
}
.no-pad {
  padding: 0;
}
.rel {
  position: relative;
}

/*INLINEBLOCK-RESET*/
a,p,li,h1,h2,h3,h4,h5,button,span {
  color: #FFFFFF;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: normal;
  word-wrap: break-word;
}
a.button {
  background-color: #e52713;
  border: 1px solid #e42612;
  font-weight: 600;
  margin-right: 5px;
  padding: 7px 15px;
  text-decoration: none;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  white-space: nowrap;
}
@media (max-width: 480px) {
  a.button {
    display: block;
    margin-bottom: 5px;
  }
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.button:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
a.button.download {
  background-image: url(/fileadmin/Images/down_a.png);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 6%;
  padding-left: 25px;
}
@media (max-width: 480px) {
  a.button.download {
    padding-left: 40px;
  }
}
div.col {
  letter-spacing: -4px;
}
* .inline {
  display: inline-block;
}

/*FONT-STYLE*/

* .uppercase-text {
  text-transform: uppercase;
}
* .normal-text {
  text-transform: none;
}
* .bold {
  font-weight: 600;
}
* .thin {
  font-weight: 300;
}

h1,h2,h3,h4,h5 {
  margin: 0;
}
* h1 {
  /*font-size: 66px;
  font-weight: 900;
  letter-spacing: 0.9px;
  padding: 0;*/
}
* h2 {
  font-size: 32px;
  font-weight: 600;
}
* h3, * h4 {
  background-color: #03326c;
  font-size: 48px;
  font-weight: 200;
  margin: 5px 0;
  padding: 2px 25px;
}
@media (min-width: 0px) and (max-width: 320px) {
  * h3, * h4 {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  * h3, * h4 {
    font-size: 24px;
  }
}
@media (min-width: 480px) and (max-width: 640px) {
  * h3, * h4 {
    font-size: 32px;
  }
}
* h3.subline, * h4.subline {
  background-color: #e52713;
}
* a > h3:hover {
  text-decoration: underline;
}
* h4 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0 0 15px;
  vertical-align: top;
}
* h4.normal {
  padding: 0;
}
* h5 {
  /*font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.1px;
  margin: 0 0 10px;*/
}

@media (min-width: 800px) {
  p.jobs {
    padding-left: 100px;
  }
}

* {
  box-sizing: border-box;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

/*LISTS*/

@media (min-width: 800px) {
  ul.jobs-padding {
    padding-left: 120px;
  }
}

ul.jobs {
  list-style-type: none;
  padding: 0;
}
ul.jobs > li {
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 15px 0;
  word-spacing: -4px;
}
ul.jobs > li h3 {
  font-size: 22px;
  font-weight: 600;
  padding: 5px 0 5px 5px;
  text-align: left;
  word-spacing: normal;
}
@media (min-width: 0px) and (max-width: 320px) {
  ul.jobs > li h3 {
    font-size: 18px;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  ul.jobs > li h3 {
    font-size: 20px;
  }
}
ul.jobs > li .col {
  vertical-align: middle;
}


/*FIELDSET/FORM*/

fieldset, div.Actions {
  border: 2px solid #F59C00;
  display: block;
  margin: 35px auto 0;
  padding: 25px 10px;
  width: 50%;
}
fieldset input {
  font-size: 18px;
  padding: 3px 5px;
  width: 100%;
}
input[type=submit] {
  background-color: #eb9200;
  border: 2px solid #F59C00;
  color: #FFFFFF;
  cursor: pointer;
  padding: 5px 10px;
}
input[type=submit]:hover {
  background-color: #F59C00;
}


/*NAVBAR*/



/*IMAGE BOX*/

section.image-box {
  /*background-attachment: fixed !important;
  background-color: transparent;*/
  /*background-position-x: center;
  background-position-y: 0;
  background-repeat: no-repeat;
  background-size: cover;*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  width: 100%;
  z-index: 0;
}
@media (min-width: 800px) {
  section.image-box {
    /*background-attachment: fixed;*/
  }
}
@media (min-width: 0px) and (max-width: 480px) {
  section.image-box {
    height: calc(50vh + 210px);
    min-height: 500px;
  }
  section.falling-skew-after + section.image-box {
    height: calc(50vh + 210px + 4vw);
    margin-bottom: -4vw;
    top: -4vw;
  }
}
@media (min-width: 480px) and (max-width: 800px) {
  section.image-box {
    height: calc(60vh + 210px);
    min-height: 500px;
  }
  section.falling-skew-after + section.image-box {
    height: calc(60vh + 210px + 4vw);
    margin-bottom: -4vw;
    top: -4vw;
  }
}
@media (min-width: 800px) and (max-width: 1600px) {
  section.image-box {
    height: calc(20vw + 210px);
    min-height: 700px;
  }
  section.falling-skew-after + section.image-box {
    height: calc(20vw + 210px);
    margin-bottom: -4vw;
    min-height: 700px;
    top: -4vw;
  }
}
@media (min-width: 1600px) {
  section.image-box {
    height: calc(45vw + 210px);
    min-height: 700px;
  }
  section.falling-skew-after + section.image-box {
    height: calc(45vw + 210px);
    margin-bottom: -4vw;
    min-height: 700px;
    top: -4vw;
  }
}


/*VIDEO TILE*/

div.video-tile, .extvideo {
  cursor: pointer;
  position: relative;
  width: 280px;
}
div.video-tile::after {
  background-image: url(/fileadmin/Images/play_btn.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  opacity: 0.65;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  inset: 0;
  z-index: 1;
  margin: 10px;
}
div.video-tile:hover::after {
  opacity: 1;
  margin: 5px;
}
a.video-tile {
  cursor: pointer;
}
a.video-tile:hover {
  text-decoration: underline;
}


/*FOOTER*/

footer {
  height: 300px;
  margin-top: 180px;
  width: 100%;
}
@media (max-width: 800px) {
  footer {
    background-image: none;
    margin-bottom: 50px;
    padding-left: 10px;
  }
}


/*SKEWS*/

*.falling-skew-before article, *.rising-skew-before article {
  position: relative;
  margin-bottom: -24vw;
  top: -12vw;
  z-index: 2;
}
@media (max-width: 800px) {
  *.falling-skew-before article, *.rising-skew-before article {
    margin-bottom: -12vw;
    top: -6vw;
  }
}

*.falling-skew-before::before, *.falling-skew-after::after, *.rising-skew-before::before, *.rising-skew-after::after {
  background-color: #03326c;
  content: ' ';
  display: block;
  height: 210px;
  position: relative;
}
@media (max-width: 800px) {
  *.falling-skew-before::before, *.falling-skew-after::after, *.rising-skew-before::before, *.rising-skew-after::after {
    height: 105px;
  }
}

*.falling-skew-before::before {
  top: -4vw;
  -webkit-transform: skewY(4deg);
  -moz-transform: skewY(4deg);
  -ms-transform: skewY(4deg);
  -o-transform: skewY(4deg);
  transform: skewY(4deg);
  width: 100%;
}
@media (max-width: 800px) {
  *.falling-skew-before::before {
    top: -4vw;
  }
}
*.falling-skew-before.shadow::before {
  -webkit-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  -ms-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  -o-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
}
*.rising-skew-before::before{
  top: -4vw;
  -webkit-transform: skewY(-4deg);
  -moz-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  -o-transform: skewY(-4deg);
  transform: skewY(-4deg);
  width: 100%;
}
@media (max-width: 800px) {
  *.rising-skew-before::before{
    top: -4vw;
  }
}
*.rising-skew-before.shadow::before {
  -webkit-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  -ms-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  -o-box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
  box-shadow: 0 -25px 25px 2px rgba(0,0,0,0.25);
}

*.rising-skew-after::after {
  top: 4vw;
  -webkit-transform: skewY(-4deg);
  -moz-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  -o-transform: skewY(-4deg);
  transform: skewY(-4deg);
  width: 100%;
  z-index: 1;
}
@media (max-width: 800px) {
  *.rising-skew-after::after {
    top: 2vw;
  }
}
*.rising-skew-after.shadow::after {
  -webkit-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -ms-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -o-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
}
*.falling-skew-after::after {
  top: 4vw;
  -webkit-transform: skewY(4deg);
  -moz-transform: skewY(4deg);
  -ms-transform: skewY(4deg);
  -o-transform: skewY(4deg);
  transform: skewY(4deg);
  width: 100%;
  z-index: 1;
}
@media (max-width: 800px) {
  *.falling-skew-after::after {
    top: 2vw;
  }
}
*.falling-skew-after.shadow::after {
  -webkit-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -ms-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -o-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
}

*.second-skew-layer {
  background-color: #e52713;
  bottom: -130px;
  -webkit-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -ms-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  -o-box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  box-shadow: 0 25px 25px 2px rgba(0,0,0,0.25);
  height: 210px;
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media (max-width: 800px) {
  *.second-skew-layer {
    bottom: -45px;
    height: 105px;
  }
}

*.rising-skew-after *.second-skew-layer {
  -webkit-transform: skewY(-5deg);
  -moz-transform: skewY(-5deg);
  -ms-transform: skewY(-5deg);
  -o-transform: skewY(-5deg);
  transform: skewY(-5deg);
}
*.falling-skew-after *.second-skew-layer {
  -webkit-transform: skewY(5deg);
  -moz-transform: skewY(5deg);
  -ms-transform: skewY(5deg);
  -o-transform: skewY(5deg);
  transform: skewY(5deg);
}


/*OVERLAYS*/

div.overlay-container {
  height: auto;
  position: fixed;
  top: 50%;
  -webkit-transform: translate3d(0,-50%,0);
  -moz-transform: translate3d(0,-50%,0);
  -ms-transform: translate3d(0,-50%,0);
  -o-transform: translate3d(0,-50%,0);
  transform: translate3d(0,-50%,0);
  right: 0;
  z-index: 10;
}
div.overlay-container div.overlay-button {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 65%;
  background-color: #e52713;
  -webkit-box-shadow: 0 0 15px 1px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 0 15px 1px rgba(0,0,0,0.25);
  -ms-box-shadow: 0 0 15px 1px rgba(0,0,0,0.25);
  -o-box-shadow: 0 0 15px 1px rgba(0,0,0,0.25);
  box-shadow: 0 0 15px 1px rgba(0,0,0,0.25);
  cursor: pointer;
  display: block;
  height: 55px;
  margin-bottom: 5px;
  width: 55px;
}
@media (max-width: 480px) {
  div.overlay-container div.overlay-button {
    height: 35px;
    width: 35px;
  }
}
div.overlay-container div.overlay-button.inv {
  background-color: #03326c;
}
div.overlay-container > div.overlay-button:last-child {
  margin-bottom: 0;
}

div.overlay-button.facebook {
  background-image: url('/fileadmin/Images/facebook_w.svg');
}
div.overlay-button.instagram {
  background-image: url('/fileadmin/Images/instagram_w.svg');
}
div.overlay-button.mail {
  background-image: url('/fileadmin/Images/mail.svg');
}
div.overlay-button.page-up {
  background-image: url(/fileadmin/Images/up_a.svg);
}


/*IMAGES*/

* img {
  display: block;
  margin: 15px 0 25px;
  padding: 0;
  width: 100%;
}

* img.simple {
  margin: 0;
}

* img.logo {
  margin-bottom: 55px;
  margin-top: 75px;
  width: 50%;
}


/*HIGHLIGHTING*/
.highlighted {
  background-color: #EEEEEE;
}

/*GRID*/

section {
  background-color: #03326c;
  overflow-y: visible;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  body > section:nth-child(2) {
    margin-top: -100px;
  }
}

@media (max-width: 980px) {
  .content {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .content {
    display: block;
    margin: 0 auto;
    width: 960px;
  }
}
.content.full-height {
  height: 100%;
}
.content.full-width, .full-width {
  width: 100%;
}
.content.rel {
  position: relative;
}
/*article > .row:first-child {
    padding-top: 0;
}*/
@media (min-width: 800px) {
  .row {
    height: auto;
    padding: 80px 0 35px;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .row {
    height: auto;
    padding: 35px 0 0;
    width: 100%;
  }
}
.row.no-pad {
  padding: 0;
}
.row.bottom-line {
  padding: 80px 0 30px;
}

.row.full-height {
  height: 100%;
}

.row.rel {
  position: relative;
}

.row .col {
  display: inline-block;
  padding: 0 10px;
  vertical-align: top;
}
@media (min-width: 800px) {
  .row .col.col-1 {
    width: 8.33333%;
  }
  .row .col.col-2 {
    width: 16.66666%;
  }
  .row .col.col-3 {
    width: 24.33333%;
  }
  .row .col.col-4 {
    width: 33%;
  }
  .row .col.col-5 {
    width: 41.66666%;
  }
  .row .col.col-6 {
    width: 49.66666%;
  }
  .row .col.col-7 {
    width: 58.33333%;
  }
  .row .col.col-8 {
    width: 66.66666%;
  }
  .row .col.col-9 {
    width: 74.99999%;
  }
  .row .col.col-10 {
    width: 83.33333%;
  }
  .row .col.col-11 {
    width: 91.66666%;
  }
  .row .col.col-12 {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .row .col {
    margin: 10px 0;
    padding: 0 15px;
  }
  .row .col.col-1, .row .col.col-2, .row .col.col-3, .row .col.col-4, .row .col.col-5, .row .col.col-6 {
    width: 50%;
  }
  .row .col.col-7, .row .col.col-8, .row .col.col-9, .row .col.col-10, .row .col.col-11, .row .col.col-12 {
    width: 100%;
  }

  .row div.col.mob-col-2 {
    width: 16.66666%;
  }
  .row div.col.mob-col-6 {
    width: 50%;
  }
  .row div.col.mob-col-10 {
    width: 83.33333%;
  }
  .row div.col.mob-col-12 {
    width: 100%;
  }
}


.row .col.med-pad-bottom {
  padding-bottom: 35px;
}

.row .col.med-pad-top {
  padding-top: 35px;
}

.row.no-margin {
  margin: 0;
}
.row .col.small-mg-top {
  margin-top: 35px;
}

.row .col.no-pad {
  padding: 0;
}
.row .col.no-pad-vertical {
  padding-bottom: 0;
  padding-top: 0;
}
.row .col.no-pad-horizontal {
  padding-left: 0;
  padding-right: 0;
}

* * .col.large-padding-top, .large-padding-top {
  padding-top: 140px;
}
@media (max-width: 480px) {
  article.large-padding-top {
    padding-top: 15px;
  }
}
* * .col.large-padding-bottom, .large-padding-bottom {
  padding-bottom: 140px;
}
* * .col.med-padding-top, .med-padding-top {
  padding-top: 90px;
}
* * .col.med-padding-bottom, .med-padding-bottom {
  padding-bottom: 90px;
}
* * .col.small-padding-top, .small-padding-top {
  padding-top: 35px;
}
* * .col.small-padding-bottom, .small-padding-bottom {
  padding-bottom: 35px;
}

@media (max-width: 800px) {
  .row .col.mobile-no-margin {
    margin: 0;
  }

  .row .col.mobile-no-padding {
    padding: 0;
  }
}

@media (min-width: 800px) {
  .row .col.med-mg-bottom {
    margin-bottom: 65px;
  }
}
.row .col.wrapping-headline {
  margin-bottom: 90px;
}

.row .col.horizontal-centered {
  display: block;
  margin: 0 auto;
}

.row .col.vertical-centered {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
section.image-box:first-of-type .row .content .col.vertical-centered {
  top: 40%;
}

.row .col.center-inline {
  text-align: center;
}

.row .col.floating-right, .floating-right {
  float: right;
}

@media (max-width: 800px) {
  .hidden-on-mobile {
    display: none;
    visibility: hidden;
  }
}

.row .col.light-highlight {
  background-color: #F7F7F7;
  margin: 0 0 125px;
}
@media (max-width: 800px) {
  .row .col.light-highlight {
    padding: 35px 20px;
  }
}
@media (min-width: 800px) {
  .row .col.light-highlight {
    padding: 50px 35px;
  }
}

.row .col.tile-box {
  border: 1px solid #EEEEEE;
  padding: 25px 0;
}
@media (min-width: 800px) {
  .row .col.tile-box {
    -webkit-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.1);
    -ms-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.1);
    -o-box-shadow: 0 10px 23px 0 rgba(0,0,0,0.1);
    box-shadow: 0 10px 23px 0 rgba(0,0,0,0.1);
    margin: 15px 0;
  }
}
.row div > .col.tile-box:last-child {
  margin-bottom: 85px;
}

* .val-middle {
  vertical-align: middle !important;
}
@media (min-width: 800px) {
  * .jobs-padding {
    padding-left: 100px;
  }
}
