/*
    This provides a helper for easily adding breakpoint-aware properties an values.

    $properties:
        can be a single property `padding` or list of properties `(padding-left, padding-right)`
    $breakpoints:
        has to be a map of the breakpoint name defined in $breakpoints and the value to be set
        for the given properties, e.g. `(default: 100px, medium: 50px, small: 25px)`

    IMPORTANT: You should always give a "default". This will be the default value and not be wrapped in an @media (...)

    Example:
    ```
        @include responsive((
          margin-top,
          margin-bottom
        ), (
          default: 100px,
          medium: 50px,
          small: 25px
        ));
    ```
 */
html, body {
  margin: 0;
  width: 100%;
}

body {
  height: 100%;
}

* {
  box-sizing: border-box;
  outline: none;
}

.neos-backend span.neos-inline-editable {
  display: inline-block;
  min-width: 20px;
}

section.teaser {
  height: 420px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main_headline {
  color: #2C4CA9;
}

main {
  margin-top: 54px;
}

.main--no-teaser {
  margin-top: 117px;
}

.breadcrumb_wrapper ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb_wrapper li {
  margin-right: 18px;
}
.breadcrumb_wrapper li:after {
  content: ">";
}

html, body {
  font-size: 16px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}

h1 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
}

h2 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.text-align--center {
  text-align: center;
}

.text-align--left {
  text-align: left;
}

.text-align--right {
  text-align: right;
}

pre {
  max-width: 100%;
  overflow: hidden;
  white-space: normal;
}

p {
  word-break: break-word;
}

a {
  color: #2C4CA9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #172858;
  text-decoration: underline;
}

.button__outer {
  width: 100%;
}

.button, input.button {
  display: inline-block;
  height: 40px;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  margin-bottom: 40px;
  color: #fff;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 40px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  border: 1px solid #000;
  border-radius: 0;
  -webkit-appearance: none;
  background: none;
  background-color: #000;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.button:hover, .button:active, .button:focus, input.button:hover, input.button:active, input.button:focus {
  background-color: #fff;
  color: #000;
}
.button--secondary, input.button--secondary {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.button--secondary:hover, .button--secondary:active, .button--secondary:focus, input.button--secondary:hover, input.button--secondary:active, input.button--secondary:focus {
  background-color: #000;
  color: #fff;
}
.button--square, input.button--square {
  width: 40px;
  padding: 0;
  text-align: center;
}
.button--text, input.button--text {
  background-color: transparent;
  border: none;
  color: #fff;
}
.button--text:hover, input.button--text:hover {
  background-color: transparent;
  color: #fff;
}
.button--block, input.button--block {
  width: 100%;
}
.button--large, input.button--large {
  height: 48px;
  line-height: 48px;
}

.columns {
  margin-bottom: 40px;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.columns__cell {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  flex-basis: 100%;
  width: 100%;
}
.columns__cell--size-20 {
  width: 20%;
  flex-basis: 20%;
}
.columns__cell--size-25 {
  width: 25%;
  flex-basis: 25%;
}
.columns__cell--size-33 {
  width: 33%;
  flex-basis: 33%;
}
.columns__cell--size-40 {
  width: 40%;
  flex-basis: 40%;
}
.columns__cell--size-50 {
  width: 50%;
  flex-basis: 50%;
}
.columns__cell--size-60 {
  width: 60%;
  flex-basis: 60%;
}
.columns__cell--size-66 {
  width: 66%;
  flex-basis: 66%;
}
.columns__cell--size-75 {
  width: 75%;
  flex-basis: 75%;
}
.columns__cell--size-80 {
  width: 80%;
  flex-basis: 80%;
}
@media (max-width: 425px) {
  .columns__cell {
    flex-basis: 100% !important;
    width: 100% !important;
    margin-bottom: 40px;
  }
}

.columns.slider__slides {
  display: block;
}
@media (max-width: 425px) {
  .columns.slider__slides .columns__cell {
    margin-bottom: 20px;
  }
}

.container {
  position: relative;
  margin: auto;
  max-width: 1200px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 425px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 425px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.download {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  margin-top: 10px;
}

.download__icon {
  width: 18px;
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
  flex-grow: 0;
}

header {
  position: sticky;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #2C4CA9;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
}

.header_logos {
  display: flex;
  align-items: flex-end;
  margin-top: 120px;
}
@media (max-width: 425px) {
  .header_logos {
    align-items: flex-start;
  }
}
.header_logos img {
  width: auto;
  height: 100%;
}

.header__logo_main {
  height: 180px;
}
@media (max-width: 425px) {
  .header__logo_main {
    height: 110px;
  }
}

.header__logo_secondary {
  height: 110px;
  margin-bottom: 2px;
  margin-left: -37px;
  z-index: -1;
}
@media (max-width: 425px) {
  .header__logo_secondary {
    height: 70px;
    margin-bottom: 0;
    margin-left: 0;
  }
}

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

.image:before {
  content: "" !important;
}

.image--text-wrap-right {
  float: left;
  width: auto;
  margin-right: 20px;
  margin-bottom: 20px;
}

.image--text-wrap-left {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.image--icon-sized {
  width: 60px;
}

.image--33-sized {
  width: 33.333%;
}

.image--50-sized {
  width: 50%;
}

.image__placeholder {
  height: 200px;
  border: 1px dashed #000;
  line-height: 200px;
  vertical-align: middle;
}

.main-menu {
  z-index: 10000;
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  overflow: auto;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  background-color: #f1f1f1;
  color: #2C4CA9;
  transition: right 0.2s;
}

.main-menu--open {
  right: 0;
}

.main-menu__wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 210px;
}
@media (max-width: 425px) {
  .main-menu__wrapper {
    margin-top: 120px;
  }
}

.main-menu__abteilung__wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 9px;
}
@media (max-width: 425px) {
  .main-menu__abteilung__wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .main-menu__abteilung__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.main-menu__abteilung {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  transition: background-color 0.2s;
  cursor: pointer;
  color: #2C4CA9;
  text-decoration: none;
}
.main-menu__abteilung:hover, .main-menu__abteilung--current {
  background-color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.main-menu__abteilung .image {
  margin-top: 18px;
  width: 70px;
}
.main-menu__abteilung h3 {
  margin: 9px 0;
}

.main-menu__abteilung__sub {
  padding: 18px;
  border-radius: 18px;
  background-color: #fff;
}
.main-menu__abteilung__sub ul {
  margin: 0;
}

.main-menu__close-button {
  position: absolute;
  top: -90px;
  right: 32px;
  padding: 9px;
  width: 60px;
  height: 60px;
  font-size: 2.5rem;
  line-height: 2.5rem;
  border-radius: 30px;
  background-color: #2C4CA9;
  color: #fff;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.header__menu-toggle {
  padding: 18px;
  cursor: pointer;
}

.hamburger__line {
  margin: 6px 0;
  width: 28px;
  border: 1px solid #fff;
  border-radius: 10px;
}

.main-menu__wrapper ul {
  padding-left: 18px;
  list-style: none;
  font-size: 1.5rem;
}
.main-menu__wrapper ul li.current a {
  color: #172858;
  text-decoration: underline;
}

.team-selector {
  display: flex;
}

.team-selector__entry {
  position: relative;
  padding: 9px;
  background-color: #6482d7;
  cursor: pointer;
}
.team-selector__entry a {
  color: #f1f1f1;
}
.team-selector__entry:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-left: 20px solid #6482d7;
  border-bottom: 22px solid transparent;
}
.team-selector__entry--current {
  background-color: #2C4CA9;
}
.team-selector__entry--current:after {
  border-left-color: #2C4CA9;
}
.team-selector__entry:not(:first-of-type) {
  padding-left: 26px;
}
.team-selector__entry:hover {
  background-color: #2C4CA9;
}
.team-selector__entry:hover:after {
  border-left-color: #2C4CA9;
}

.team-selector__entry__arrow {
  width: 44px;
  height: 44px;
  background-color: red;
  transform: rotate(45deg);
}


@media all and (orientation: landscape) {
  .HideOnMobile {	
    display: block;
  }
  .ShowOnMobile {	
    display: none;
	z-index: -1000;
  }
}
  
@media all and (orientation: portrait) {
  .HideOnMobile {	
    display: none;
	z-index: -1000;
  }
  .ShowOnMobile {	
    display: block;
  }
}

/*# sourceMappingURL=bundle.css.map */
