/* SCHRIFTEN */

/* play-regular - latin */
@font-face {
  font-family: 'Play';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/play-v12-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/play-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/play-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/play-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/play-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/play-v12-latin-regular.svg#Play') format('svg'); /* Legacy iOS */
}

/* play-700 - latin */
@font-face {
  font-family: 'Play';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/play-v12-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/play-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/play-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/play-v12-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/play-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/play-v12-latin-700.svg#Play') format('svg'); /* Legacy iOS */
}


:root {
  --color-1: hsl(233, 100%, 17%);
  /* Blau #000b58 rgb(0, 11, 88) */
  --color-2: hsl(58, 100%, 39%);
  /* Gelbgrün #c6bf00 rgb(198, 191, 0) */
  --light-2: hsl(210, 15%, 95%);
  /* hellgraublau #f0f2f4 rgb(240, 242, 244) */
}

/* Allgemein */

body {
  font-family: 'Play', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: var(--color-1);
  color: #fff;
  position: relative;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

a {
  color:#0d54d9;
  border-bottom: 1px dotted #0d54d9;
  cursor: pointer;
  line-height: inherit;
  text-decoration: none;
  padding-bottom: 0.125rem;
}

a:hover,
a:focus {
  color: #083891;
  text-decoration: none;
  border-bottom: 1px dotted #083891;
}

footer a {
  color: var(--color-2);
  border-bottom: none;
}

footer a:hover, footer a:focus {
  color: var(--color-2);
  border-bottom: 1px dotted var(--color-2);
}

.hyphenate {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.emu-skipnav {
  display: block;
  padding: 1rem;
  text-align: center;
  outline: 0;
  z-index: 100;
}

.emu-skipnav-text {
  padding: .5em;
  outline: 1px dotted;
  z-index: 100;
}

/* Header Container */

.header-container {
  padding-top: 2rem;
}

.sicher {
  color: var(--color-2);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 2.5rem 2rem 0.25rem 2rem;
}

@media only screen and (min-width: 992px) {
  .header-container {
    margin-bottom: 1rem;
  }

  .sicher {
    padding-top: 2.75rem;
  }
}

/*
=================================
Navi und Canvas Area
=================================
*/

/* Menü Icon (Mainnav Trigger): Wechsel vom Hamburger zum Kreuz. */

.btn.emu-menu-icon {
  background-color: var(--color-2);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: border-radius 0.5s;
  width: 48px;
  z-index: 130;
}

.emu-line {
  background-color: #fff;
  position: absolute;
  left: 14px;
  height: 2px;
  width: 20px;
  border-radius: 2px;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}

.emu-line:nth-child(1) {
  top: 16px;
}

.emu-line:nth-child(2) {
  top: 23px;
}

.emu-line:nth-child(3) {
  top: 30px;
}

.emu-menu-icon.checked .emu-line:nth-child(1) {
  transform: translateY(7px) rotate(-45deg);
}

.emu-menu-icon.checked .emu-line:nth-child(2) {
  opacity: 0;
}

.emu-menu-icon.checked .emu-line:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
}


/* Navbar (Off Canvas), kommt von rechts. */

.emu-navbar {
  background: #f2f3f8;
  flex: 1 1 auto;
  position: fixed;
  top: 0;
  width: 19.5rem;
  right: -20rem;
  height: 100%;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  z-index: 20;
}

.emu-navbar.active {
  -webkit-transform: translate(-20rem, 0px);
  -moz-transform: translate(-20rem, 0px);
  -o-transform: translate(-20rem, 0px);
  -ms-transform: translate(-20rem, 0px);
  transform: translate(-20rem, 0px);
}

/* Menu Styles */

.emu-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.emu-menu a,
.emu-menu .btn {
  border-bottom: none;
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
  transition-property: none;
}

.emu-menu input,
.emu-menu select,
.emu-menu a,
.emu-menu button {
  margin-bottom: 0;
}

.emu-menu input {
  display: inline-block;
}

/* Hauptnavigation (Primary Nav) Menüpunkte. */

.emu-primarynav {
  display: flex;
  flex-flow: column nowrap;
  font-size: 1.125rem;
  margin-top: 6.125rem;
}

.emu-primarynav li {
  border-top: 1px solid var(--color-2);
  display: inline-block;
  list-style: outside none none;
}

.emu-primarynav > li:last-child {
  border-bottom: 1px solid var(--color-2);
}

.emu-primarynav a {
  padding: 1rem 1.5rem;
  color: var(--color-1);
  position: relative;
  text-decoration: none;
}

.emu-primarynav a:hover,
.emu-primarynav a:focus {
  color: var(--color-2);
  transition: all 0.35s ease;
}

.emu-navbar li.active a,
.nav-link.active {
  background-color: var(--color-2);
  color: #eee;
  cursor: default;
}

@media only screen and (min-width: 992px) {
  .emu-navbar,
  .emu-navbar.active {
    background: transparent;
    position: static;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    overflow: visible;
    box-shadow: none;
    transform: none;
    transition: none 0s ease 0s;
    padding-left: 2.5rem;
  }

  .emu-primarynav {
    font-size: 1.375rem;
    margin-top: 4rem;
  }

  .emu-primarynav li {
    border-top: none;
    margin: 0 1rem;
    padding: 0;
  }

  .emu-primarynav > li:last-child {
    border-bottom: none;
  }

  .emu-primarynav li.active a,
  .nav-link.active {
    background-color: transparent;
    color: var(--color-2);
  }

  .emu-primarynav a {
    padding: 0.5rem 0;
    color: #fff;
    text-transform: uppercase;
  }
}

.lichtpunkte {
  height: auto;
  overflow: hidden;
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .lichtpunkte {
    margin-top: 3rem;
    margin-left: -30px;
    overflow: visible;
  }
}

/* Main Content */

.mainheader {
  position: relative;
  background-color: var(--color-2);
  padding: 1rem 2rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mainheader::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 8px solid var(--color-1);
  border-right: 8px solid transparent;
}

.triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 8px solid var(--color-1);
  border-right: 8px solid transparent;
  z-index: 1000;
}

@media only screen and (min-width: 992px) {
  .mainheader::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 30px solid var(--color-1);
    border-left: 30px solid transparent;
  }
}


/* .mainheader {
  clip-path: polygon(700px 0%, 100% 30px, 100% 100%, 6px 100%, 0% 110px, 0% 0%);
} */

/* .mainheader {
  background: linear-gradient(45deg, transparent 6px, var(--color-2) 0) bottom left;
} */

.mainheader h1 {
  color: #222;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #dad200;
  margin: 0;
}

.maincontent {
  position: relative;
  background-color: #fff;
  color: #000633;
  padding: 1rem 2rem;
}

.maincontent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 8px solid var(--color-1);
  border-right: 8px solid transparent;
}

.maincontent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 8px solid var(--color-1);
  border-right: 8px solid transparent;
}

.article-header {
  border-top: 1px dotted var(--color-1);
  border-bottom: 1px dotted var(--color-1);
  padding: 0.625rem 0 0.5rem 0;
  margin: 2rem 0 1rem 0;
}

h2 {
  color: var(--color-2);
  font-size: 1.75rem;
  text-transform: uppercase;
}

.article-header h2 {
  line-height: 1;
  margin: 0;
}

.overline {
  display: block;
  color: var(--color-1);
  font-size: 1rem;
  letter-spacing: 1px;
}

.article-contact {
  position: relative;
  background-color: var(--color-2);
  color: #222;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 1rem 2rem 0.5rem;
  margin-top: 0.25rem;
}

.article-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 8px solid var(--color-1);
  border-right: 8px solid transparent;
}

.article-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 30px solid var(--color-1);
  border-left: 30px solid transparent;
}

@media (min-width: 768px) {
  .mainheader h1 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1200px) {
  .mainheader h1 {
    font-size: 2rem;
  }
}

/* Footer */



/* Page-Top + Scroll to Anker */

.emu-page-top-button {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 2.5rem;
}

.btn.emu-page-top {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M0 10.5l3 3 5-5 5 5 3-3-8-8z'%3E%3C/path%3E%3C/svg%3E") rgba(186, 163, 96, 0.4) no-repeat center;
    /* IcoMoon Ultimate - 1208-arrow-up.svg */
}
