@charset "UTF-8";
/*!
 * Standard Styles v1.0.0 - (c) artif GmbH & Co. KG
 *
 * Keep the code clean:
 * - Remove unused directives and useless comments. Preserve tab indention.
 * - Think!
 * - Distinguish between block of different levels with different numbers of
 * empty lines. Mayor blocks three, inferior block two ...
 * - Document what you are doing. Comments are your friend.
 * - In general: Optimize readability for humans. Source optimization is done by
 * TYPO3 or other helpers.
 * - Prefer relative dimensions ('em' and '%') to static dimensions ('px'), but
 * think about your decision!
 * - Do not ever use IDs in your CSS
 * - Keep the selector specifity LOW! One level down maximum is preferred, e.g.
 * '.selector .selector', one selector only is best. This would be too much:
 * '.selector .selector .selector'
 * - Keep a BEM-inspired style: '.blockOne', '.blockOne__element',
 * '.blockOne--modifier' .. and JS seperate: '.js-functionality'
 * - See https://en.bem.info/methodology/ for more information
 */

/*
 * GLOBALS
 */
html {
  color: #8c8c8c;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 112.5%;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}


/*
 * Box-model
 *
 * "Ugh. If I say the width is 200px, gosh darn it, it's gonna be a 200px wide
 * box even if I have 20px of padding." - Paul Irish
 *
 * Sources:
 * - http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 * - http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}


/*
 * Vertical Rhythm
 *
 * To keep a harmonic vertical rhythm, all elements placed in text/content must
 * have the same bottom margin. Also, it's good to avoid that every element
 * comes with other margin values, so we set them here - the value is always
 * base font-size * line height.
 *
 * Add all site-specific elements you want to the selector, f.e. .box, .msg or
 * similar.
 */
h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre, hr {
  margin: 0 0 1.5rem 0;
}


/*
 * Headings
 *
 * When we define a headering we also define a corresponding class to go with it.
 * This allows us to apply, say, class="alpha" to a h3; a double-stranded
 * heading hierarchy.
 * Source: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 */
h1, .alpha,
h2, .beta,
h3, .gamma,
h4, .delta,
h5, .epsilon,
h6, .zeta {
  color: #272727;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
}

h1, .alpha {
  letter-spacing: -0.017em;
  font-size: 4rem;
}

h2, .beta {
  font-size: 2.857rem;
  letter-spacing: -0.023em;
}

h3, .gamma {
  font-size: 2.285rem;
  letter-spacing: -0.029em;
}

h4, .delta,
h5, .epsilon,
h6, .zeta {
  line-height: 1.4;
}

h4, .delta {
  font-size: 1.714rem;
  letter-spacing: -0.039em;
}

h5, .epsilon {
  font-size: 1.5rem;
  letter-spacing: -0.044em;
}

h6, .zeta {
  font-size: 1rem;
  letter-spacing: -0.067em;
}


/*
 * Media
 */
img,
video {
  max-width: 100%;
  height: auto;
}


/*
 * Lists
 */
ul,
ol {
  margin-left: 1.5rem;
}

li {
}

/* Remove unnecessary margins for nested lists */
ul ul,
ol ol {
  margin-bottom: 0;
}


/*
 * Quotes
 */
blockquote {
}

blockquote p {
}

cite {
}


/*
 * Tables
 */
table {
  border-collapse: collapse;
  width: 100%;
}

caption {
}

th,
tr {
  border-top: 1px solid #ddd;
  padding: 0.5rem 0.625rem;
  line-height: 1.33333333333;
  text-align: left;
  vertical-align: middle;
}

tr {
}

th {
  font-weight: 700;
}

td {
}


/*
 * Forms
 *
 * Form and inputs (text-like) elements get styled here, input[type="submit"] and
 * [type="button"] get their styles from the button class.
 */
fieldset {
  border: 0;
}

legend {
  color: #272727;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;

  font-size: 1.5rem;
  letter-spacing: -0.044em;

  margin: 0 0 1.5rem 0;
}

label {
  display: block;
}

/* Placeholder */
::-webkit-input-placeholder {
}

:-moz-placeholder {
}

::-moz-placeholder {
}

:-ms-input-placeholder {
}

/* Global fields */
input,
textarea,
select {
  height: 2.65em;
  border: 1px solid #ddd;
  padding: 0.65em;
  color: #555;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}

input {
  width: 100%;
}

/* Text input fields */
input[type=text],
input[type=url],
input[type=tel],
input[type=number],
input[type=color],
input[type=email],
input[type=search] {
}

/* Turn off number spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Radio buttons and checkboxes */
input[type=radio],
input[type=checkbox] {
  border: 0 none; /* remove square arround radio/check in IE */
}

input[type=radio] {
}

input[type=checkbox] {
}

/* Read-only and disabled input fields */
input[type=text][readonly],
input[type=url][readonly],
input[type=tel][readonly],
input[type=number][readonly],
input[type=color][readonly],
input[type=email][readonly],
input[type=search][readonly],
input[type=text][disabled],
input[type=url][disabled],
input[type=tel][disabled],
input[type=number][disabled],
input[type=color][disabled],
input[type=email][disabled],
input[type=search][disabled] {
}

/* Read-only and disabled radio buttons and checkboxes */
input[type=radio][readonly],
input[type=checkbox][readonly],
input[type=radio][disabled],
input[type=checkbox][disabled] {
}

/* Textarea */
textarea {
  width: 100%;
  min-height: 120px;
}

/* Select */
select {
}


/*
 * Text formatting
 */
a {
  color: #595959;
  transition: color 0.3s ease;
  text-decoration: none;
}

a:hover {
  color: #aaaaaa;
}

b,
strong {
}

i {
}

/* Address */
address {
  font-style: normal;
}



/*
 * HELPER & COMPONENTS
 *
 * Helpers and components are globally available elements that only need to be
 * defined/styled on time and than may be issued where ever needed. Examples
 * would be the often used "messaging system" and our container, row and width
 * classes. See Snippets.css for further examples.
 */

/*
 * Page layout
 */
.container {
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Modifier: Container width */
.container--small {
  max-width: 768px;
}


/*
 * Width classes
 *
 * These classes are examples used in our standard to control the width of the
 * column-classes. Define them suited to your project, like so:
 * .w[num]p := [num]% (preferred)
 * .w[num]px := [num]px
 *
 * Append size modifiers to your width-classes like shown and define media query
 * sizes like "--xl", "--l", "--m", "--s", "--xs"! With this scheme you're able
 * to switch widths based on media queries, i.e. a four column row gets a two
 * column and later a one column row. Only add things needed!
 *
 * See examples in the media query section at the end of this file.
 */
.w20p {
  width: 20%;
}

.w33p {
  width: 33.3333333333%;
}

.w50p {
  width: 50%;
}

.w60p {
  width: 60%;
}

.w80p {
  width: 80%;
}


/*
 * Row gutter modifier
 */
.row--wideGutter {
  margin-left: -2.5em;
}

.row--wideGutter > .col {
  padding-left: 2.5em;
}


/*
 * Logo
 */
.logo,
.logo__image {
  width: 112px;
  height: auto;
  display: block;
}


/*
 * Button component
 *
 * Allows us to style everything as buttons. We also use them
 * for input[type=submit]'s and input[type=buttons] as we don't want to
 * define button styles multiple times.
 *
 * Adjust and add design-stuff and modifiers like .button--full to your project
 * needs. Modifiers always complement the base class.
 *
 * Example:
 * ...
 * ...
 */
.button {
  width: auto;
  border: 0 none;
  display: inline-block;
  font: inherit;
  min-width: inherit;
  overflow: visible;
  padding: 0.563rem 1.125rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  transition: all 0.15s linear;
  font-size: 0.888rem;
}

.button:hover {
  cursor: pointer;
}

/* Primary */
.button--primary {
  border: 3px solid rgba(178, 178, 178 ,0.72);
  text-transform: uppercase;
}

.button--primary:hover {
  border-color: #464646;
  color: #464646;
}

/* Primary (negative) */
.button--primary-negative {
  color: #fff;
}

.button--primary-negative:hover {
  border-color: #fff;
  color: #fff;
}


/* Modifier: large */
.button--large {
  font-size: 1rem;
}

/* Modifier: full width */
.button--full {
  width: 100%;
  text-align: center;
}


/*
 * List component
 *
 * Used for standard list styles - style the design with your own component,
 * e.g. .main-navigation__item { background: blue; } etc.
 *
 * Example:
 *
 *
 *
 *       Our Work
 *
 *
 *           Example
 *
 *
 *
 *
 *
 *
 * In the end we might have more classes, but less CSS lines as we don't have to bother
 * with long, nested selectors (.nav > li > ul > li > a becomes .main-navigation__list--sub .main-navigation__link).
 * Also, it's more performant. ;)
 */
.list {
  margin: 0;
  list-style: none;
  padding: 0;
}

.list > li {
  display: inline-block;
}

/* Stacked list */
.list--stacked > li {
  display: block;
}


/*
 * Dropdown component
 */
.dropdown-item {
  position: relative;
}

.dropdown-item__link {
  cursor: pointer;
}

.dropdown-item:hover > .dropdown-item__list {
  display: block;
}

.dropdown-item__list {
  display: none;
  position: absolute;
  left: 0;
  /* Set your own z-index as needed. */
}

/* Right aligned dropdown-item */
.dropdown-item--right .dropdown-item__list {
  left: auto;
  right: 0;
}


/*
 * JS Dropdown component
 *
 * It's different to the regular 'dropdown' component in that it just opens when
 * the active class is triggered by JS. Used together with the 'Dropdown' JS class.
*/
.js-dropdown-item {
  position: relative;
}

.js-dropdown-item__link {
  cursor: pointer;
}

.js-dropdown-item--is-active > .js-dropdown-item__list {
  display: block;
}

.js-dropdown-item__list {
  display: none;
  position: absolute;
  left: 0;
  /* Set your own z-index as needed. */
}

/* Static positioned dropdown */
.js-dropdown-item--static {
  position: static;
}

.js-dropdown-item--static > .js-dropdown-item__list {
  position: static;
  left: auto;
}

/* Right aligned dropdown-item */
.js-dropdown-item--right .js-dropdown-item__list {
  left: auto;
  right: 0;
}


/*
 * Parallax element
 *
 * Displays a full width image with parallax effect.
 */
.parallax {
  height: 440px;
}

/* Modify .container for flexbox */
.parallax .container {
  -webkit-flex: 0 1 1200px;
  -ms-flex: 0 1 1200px;
  flex: 0 1 1200px;
}

/* Content */
.parallax__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 2.5rem 0;
}

.parallax__header {
  color: #fff;
  margin: 0;
}

/* Image */
.parallax__image {
  background: no-repeat 50% / cover;
}

/* JS-specific CSS */
.js-parallax {
  overflow: hidden;
  position: relative;
}

.js-parallax__image {
  position: absolute;
  height: 660px; /* .parallax height + (.parallax height / 2) */
  width: 100%;
  top: -110px; /* .parallax height / 4 */
}


/*
 * Parallax element (index page)
 */
.page--index .parallax {
  height: 640px;
}

/* JS-specific CSS */
.page--index .js-parallax__image {
  height: 960px; /* .parallax height + (.parallax height / 2) */
  top: -160px; /* .parallax height / 4 */
}


/*
 * Slider element
 */
.slider {
  position: relative;
}

.slider > div {
}

.slider,
.slider__item {
  height: 440px;
}

.slider__item {
  background: no-repeat 50% / cover;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 1px 30px rgba(0, 0, 0, 0.3);
  transition: opacity 200ms linear;
  margin-top: calc(-57px / 2);
  padding: 0 1rem;
}

@media(min-width: 480px) {
  .slider__arrow {
    font-size: 4rem;
    margin-top: calc(-72px / 2);
  }
}

.slider__arrow--disabled {
  opacity: 0.5;
}

.slider__arrow:hover {
  color: #fff;
}

.slider__arrow--prev {
  left: 0;
}

.slider__arrow--next {
  right: 0;
}


/*
 * Spacing helper
 */
.margin-bottom-huge {
  margin-bottom: 3.5rem;
}


/*
 * Text helper
 */
.text-center {
  text-align: center;
}


/*
 * Media component
 *
 * Place any media (f.e. an image) and a corresponding text side-by-side.
 *
 * Example:
 *
 *
 *
 *
 *
 *
 *     Lorem ipsum si dolor amet ...
 *
 *
 *
 * You can use modifier classes to modify the layout, f.e. making it
 * reversed (image right, text left).
 *
 */
.media,
.media__body {
  overflow: hidden;
}

.media__object {
  display: block;
  float: left;
  margin-right: 1.45rem; /* Set to your desired margin, f.e. to your vertical rhythm margin */
}

/* Reversed */
.media--reverse .media__object {
  float: right;
  margin: 0 0 0 1.45rem; /* Set to your desired margin, f.e. to your vertical rhythm margin */
}

/* "Loose" - text flows beneath the image */
.media--loose .media__body {
  overflow: initial;
}


/*
 * Image caption
 */
.image-caption {
  font-size: 0.88888888888rem;
  border: 1px solid #e0e0e0;
  border-top-width: 0;
  padding: 0.5rem .75rem;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,0.035);
}


/*
 * Scroll to top
 */
.scroll-to-top {
  z-index: 1000;
  bottom: 0.5rem;
  right: 0.5rem;
  position: fixed;
  border: 2px solid #272727;
  font-size: 25px;
  line-height: 27px;
  text-align: center;
  color: #272727;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  transition: all 400ms;
}

.scroll-to-top__icon {
  position: relative;
  top: 2px;
}

.scroll-to-top:hover {
  opacity: 1;
  color: #272727;
  border-color: #272727;
}

/* JS-specific */
.js-scroll-to-top--is-normal {
  -webkit-transform: translateY(45px);
  transform: translateY(45px); /* .scroll-to-top bottom value + height */
  opacity: 0;
  visibility: hidden;
}

.js-scroll-to-top--is-active {
  opacity: 0.375;
}


/*
 * Fluid iFrame
 *
 * Adapt the padding-bottom percentage value. You can calculate it
 * with (element height / element width) * 100 = padding-bottom value.
 *
 * Example:
 * <div class="responsive-iframe__wrap">
 *   <iframe class="responsive-iframe"></iframe>
 * </div>
 */
.fluid-iframe__wrap {
  position: relative;
  padding-bottom: 56%; /* Adapt to your needs. */
  height: 0;
  overflow: hidden;
}

.fluid-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/*
 * OFF CANVAS
 */
.off-canvas {
  background: #fff;
}

/*
 * Off canvas navigation
 */

.off-canvas-nav__link {
  border-bottom: 1px solid #0c6b97;
  background: #0d73a1;
  color: #fff;
  display: block;
  padding: .75rem 1.25rem;
}

.off-canvas-nav__link:hover {
  color: #fff;
}

.off-canvas-nav__link.is-active {
  background: #0c6b97;
}

/* Modify links when they're a dropdown */
.js-dropdown-item > .off-canvas-nav__link {
  padding: 0;
}

/* Modify dropdown links with icon to their right */
.off-canvas-nav__link--icon {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.off-canvas-nav__link-text {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 1rem;
  padding-left: 1.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}

.off-canvas-nav__link-icon {
  flex: 0 0 auto;
  padding: .75rem 1.25rem;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 175ms linear;
}

/* Modify navigation item icon when dropdown is active */
.js-dropdown-item--is-active > .off-canvas-nav__link .off-canvas-nav__link-icon {
  transform: rotateZ(180deg);
}


/* Level 2 */
.off-canvas-nav__list--sub-2 .off-canvas-nav__link {
  background: #fff;
  color: #888;
  border-bottom: 1px solid #f2f2f2;
}

.off-canvas-nav__list--sub-2 .off-canvas-nav__link.is-active {
  color: #0093a9;
}

.off-canvas-nav__list--sub-2 .js-dropdown-item--is-active > .off-canvas-nav__link {
  background: #0093a9;
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* Level 3 */
.off-canvas-nav__list--sub-3 {
  border-left: 7px solid #0093a9;
  font-size: .94444444444rem;
}

.off-canvas-nav__list--sub-3 .off-canvas-nav__link,
.off-canvas-nav__list--sub-3 .off-canvas-nav__link-text {
  padding-left: 2rem;
}

.off-canvas-nav__list--sub-3 .off-canvas-nav__link--icon {
  padding-left: 0;
}

.off-canvas-nav__list--sub-3 .off-canvas-nav__link.is-active,
.off-canvas-nav__list--sub-3 .js-dropdown-item--is-active > .off-canvas-nav__link {
  color: #0093a9;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}

.off-canvas-nav__list--sub-3 .off-canvas-nav__link.is-active {
  font-weight: 700;
}

/* Level 4 */
.off-canvas-nav__list--sub-4 {
  font-size: .88888888888rem;
  padding: .5rem 0;
}

.off-canvas-nav__list--sub-4 .off-canvas-nav__link,
.off-canvas-nav__list--sub-4 .off-canvas-nav__link.is-active {
  border-bottom: 0 none;
  color: #888;

}

.off-canvas-nav__list--sub-4 .off-canvas-nav__link,
.off-canvas-nav__list--sub-4 .off-canvas-nav__link-text {
  padding-left: 2.5rem;
}

.off-canvas-nav__list--sub-4 .off-canvas-nav__link--icon {
  padding-left: 0;
}


/*
 * PAGE
 */

/*
 * Page overlay
 */
.page-overlay {
  z-index: 5000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: visibility 0s ease, opacity .2s ease;
}

/* Open @ off canvas */
.offside-js--is-open .page-overlay {
  opacity: 0.3;
  visibility: visible;
}



/*
 * OFF CANVAS
 */
.offside {
  position: fixed;
  width: 80%;
  height: 100%;
  top: 0;
  z-index: 9999;
  overflow: auto;
  -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}


.offside--left {
  transform: translate3d(-100%, 0, 0);
}

.offside--right {
  transform: translate3d(100%, 0, 0);
  right: 0;
}

/* Active */
.offside--left.is-open {
  transform: translate3d(0, 0, 0);
}

.offside-js--is-left .offside-sliding-element {
  transform: translate3d(80%, 0, 0);
}

.offside--right.is-open {
  transform: translate3d(0, 0, 0);
}

.offside-js--is-right .offside-sliding-element {
  transform: translate3d(-80%, 0, 0);
}

/* Transitions */
.offside-js--interact .offside,
.offside-js--interact .offside-sliding-element {
  transition: transform .2s cubic-bezier(.16, .68, .43, .99);
  /* Improves performance issues on mobile */
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

/* Body overflow */
.offside-js--is-open {
  overflow: hidden;
}



/*
 * HEAD
 */
.head {
  padding: 0.5rem 0;
  background-color: #fff;
  box-shadow: 0 0.15em 0.35em 0 rgba(0,0,0,0.135);
}

.head__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

/*
 * Off canvas toggle
 */
.off-canvas-toggle {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0.55555555555rem 1rem;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
  border-radius: 4px;
  transition: box-shadow .3s ease, color .3s ease, background-color .3s ease;
  font-size: 1.33333333333rem;
}

.js-off-canvas-toggle--is-normal {
  color: #b7b7b7;
  background-color: #fff;
  box-shadow: inset 0 0 0 transparent,0 1px 5px rgba(0,0,0,0.25);
}

.js-off-canvas-toggle:hover,
.js-off-canvas-toggle--is-active {
  color: #919191;
  background-color: #f7f7f7;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, .25);
}

/*
 * Main nav
 */
.main-nav {
  margin-left: auto;
}


/*
 * TEASER
 */
.teaser {
}

/*
 * Image teaser
 */
.image-teaser {
  background-size: cover;
  background-position: center center;
  display: none;
  color: #fff;
  min-height: 570px;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* IE > 9 */
@media screen and (min-width:0\0) {
  .image-teaser {
    height: 570px;
  }
}

/* Modify .container for flexbox */
.image-teaser .container {
  -webkit-flex: 0 1 1200px;
  -ms-flex: 0 1 1200px;
  flex: 0 1 1200px;
}

.image-teaser__header {
  font-size: 2.7rem;
  text-shadow: 0 0 65px rgba(0, 0, 0, 0.6);
}

.image-teaser__header,
.image-teaser__header-link {
  color: inherit;
}

/* Content area */
.image-teaser__content {
  margin-bottom: 4.5rem;
}

.image-teaser__content .button {
  font-size: 1.05555555556rem;
}

.image-teaser__content .button--primary {
  color: #fff;
  text-shadow: 0 0 65px rgba(0, 0, 0, 0.6);
}

/* Only show the first image-teaser. Ever. */
.image-teaser:first-child {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}


/*
 * Standard teaser
 */
.standard-teaser {
  padding: 4.5rem 0 3.5rem;
}
.standard-teaser__header {
  margin: 0;
}



/*
 * MAIN AREA
 */
.main {
}

/*
 * News
 */

/* Global */
.article__image {
  display: block;
}

/* List */
.article__header-wrap {
  margin-bottom: 0.25rem;
}
.article__header {
  margin-bottom: 0;
}

.article__media-wrap {
  margin-bottom: 0.5rem;
}

/* Detail */
.news--detail .article__media-wrap {
  display: table;
  position: relative;
  top: 4px;
}

.news--detail .article__media-caption {
  display: table-caption;
  caption-side: bottom;
}

/*
 * Pagination
 */
.pagination {
  text-align: center;
  display: block;
}

.pagination__link {
  box-shadow: inset 0 0 0 transparent,0 0.1em 0.45em 0 rgba(0,0,0,0.25);
  border-radius: 4px;
  padding: .75rem 1rem;
  line-height: 1;
  color: #aaa;
}

.pagination__link:hover {
  color: #595959;
}

.pagination__link.is-active {
  background: #595959;
  color: #fff;
  box-shadow: inset 0 0.1em 0.35em rgba(0,0,0,0.65), 0 1px 0 0 rgba(255,255,255,0.95);
}



/*
 * FOOTER
 */
.foot {
  border-top: 1px solid #d4d4d4;
  background-color: #fff;
  box-shadow: 0 -0.125em 0.25em 0 rgba(0,0,0,0.075);
}

/*
 * Main section
 */
.footer__main-section {
  padding: 5rem 0;
}

.footer__main-section .ce-bodytext {
  margin-bottom: -1.5rem;
}

/*
 * Copyright section
 */
.footer__copy-section {
  color: #7a7a7a;
  font-size: 0.556rem;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 2rem 0 1rem 0;
  border-top: 1px solid #e0e0e0;
}

.footer__copy {
  margin-bottom: .5rem;
  display: block;
}

/*
 * Copy navigation
 */
.copy-nav__item--seperator {
  margin: 0 0.25rem;
}



/*
 * HIDDEN & VISIBLE
 *
 * Must be last as it has to overwrite other display-rules.
 */
.hidden {
  display: none;
}

.visible {
  display: block;
}

.visible--inline {
  display: inline;
}



/*
 * MEDIA QUERY - XS
 */
@media (min-width: 480px) {
  /*
   * TEASER
   */

  /*
   * Image teaser
   */
  .image-teaser__header {
    font-size: 4rem;
  }
}



/*
 * MEDIA QUERY - M
 */
@media (min-width: 768px) {
  /*
   * HELPER & COMPONENTS
   */

  /*
   * Page layout
   */
  .container--small {
    padding-left: 0;
    padding-right: 0;
  }

  .w33p--m {
    width: 33%;
  }

  .w50p--m {
    width: 50%;
  }

  .w100p--m {
    width: 100%;
  }


  /*
   * Logo
   */
  .logo {
  }


  /*
   * PAGE
   */
  .page {
    margin-top: 136px; /* Takes fixed header into account. */
  }



  /*
   * HEAD
   */
  .head {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: .5rem 0 0;
  }

  /*
   * Logo
   */
  .head .logo {
    position: absolute;
    top: 15px;
    right: 0;
  }

  .head .logo,
  .head .logo__image {
    width: 120px;
  }


  /**
   * Main navigation
   */
  .main-nav {
    width: 100%;
    height: 132px; /* Careful, magic number! */
    padding-top: 29px; /* Careful, magic number! */
    position: relative;
  }

  .main-nav__list--main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: calc(120px + 1rem); /* logo width + 1rem */
  }

  .main-nav .js-dropdown-item {
    position: static; /* Removes position: relative for main nav */
  }

  .main-nav__link {
    display: block;
    text-transform: uppercase;
    color: #8c8c8c;
    transition: none;
    padding: .6rem 1rem;
  }

  .main-nav__link:hover,
  .main-nav__link.is-active,
  .js-dropdown-item--is-active > .main-nav__link {
    background: #0d73a1;
    color: #fff;
  }

  /* Links with icons */
  .main-nav__link--icon {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-nav__link--icon .main-nav__link-text {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-right: 1rem;
  }

  .main-nav__link--icon .main-nav__link-icon {
    position: relative;
    top: 1px;
    line-height: 1;
  }

  .main-nav__list--main > .dropdown-item {
    position: static;
  }

  /* JS-specific */
  .main-nav__list--main > .js-open-sub-nav--is-active > .dropdown-item__list {
    display: block;
  }

  /* Sub navigation: level >= 2 */
  .main-nav__list--sub-2 {
    background: #0d73a1;
    width: 100%;
  }

  .main-nav__list--sub-2 .main-nav__item {
  }

  .main-nav__list--sub-2 .main-nav__item:last-of-type {
    margin-right: 0;
  }

  .main-nav__list--sub-2 .main-nav__link {
    color: #fff;
    padding: 0.75rem 1.25rem;
  }

  .main-nav__list--sub-2 .main-nav__link:hover,
  .main-nav__list--sub-2 .js-dropdown-item--is-active > .main-nav__link {
    background: #0093a9;
  }

  /* Sub navigation: level >= 3 */
  .main-nav__list--sub-3 {
    position: static;
    padding-left: 1.25rem;
  }

  .main-nav__list--sub-3 .main-nav__link {
    color: #6a6a6a;
    padding: .5rem 1rem;
  }

  .main-nav__list--sub-3 .main-nav__link:hover,
  .main-nav__list--sub-3 .main-nav__link.is-active,
  .main-nav__list--sub-3 .js-dropdown-item--is-active > .main-nav__link {
    color: #fff;
    background: #0093a9;
  }

  .main-nav__list--sub-3 .main-nav__item {
    margin: 0;
  }

  /* Mega-menu */
  .main-nav__mega-menu {
    background: #f2f2f2;
    min-height: 350px;
    width: 100%;
    padding-top: 1.25rem;
    position: absolute;
    left: 0;
    top: 100%;
  }

  /* Sub navigation: level >= 4 */
  .main-nav__list--sub-3 .main-nav__list--sub {
    top: 0;
    position: absolute;
    padding: 1.25rem 0 0 1.5rem;
    padding-top: 1.25rem; /* = mega-menu's padding-top */
  }

  .main-nav__list--sub-4 {
    left: 33.3333333333%;
  }

  /* Sub navigation: level >= 5 */
  .main-nav__list--sub-5.main-nav__list--sub-5 {
    left: 100%;
    width: 100%;
    padding-right: 1.25rem;
  }



  /*
   * HIDDEN & VISIBLE
   */
  .hidden--m {
    display: none;
  }

  .visible--m {
    display: block;
  }
}



/*
 * MEDIA QUERY - SPECIAL
 */
@media screen and (min-width: 1140px) {
  /*
   * HEAD
   */
  .head .logo {
    top: 0;
  }

  .head .logo,
  .head .logo__image {
    width: 150px;
  }
}


/*
 * MEDIA QUERY - XL
 */
@media (min-width: 1200px) {
  /*
   * HELPER & COMPONENTS
   */

  /*
   * Page layout
   */
  .container {
    padding-left: 0;
    padding-right: 0;
  }


  /*
   * Logo
   */
  .logo,
  .logo__image {
    width: 150px;
  }
}