<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**
*  Converts photoshop line height (leading) to pixels
*
*  @param int $font-size
*  @param int $leading
*
*  @return relative value
*
*  EXAMPLE:
*  p {
*    line-height: line-height(44px, 54px);
*  }
**/
/**
*  Converts photoshop letter spacing to pixels
*  Spacing is divided by 1000 which gives an em value
*  this is then mutplied by default browser fontsize (typically 16px)
*
*  @param int $spacing
*  @param int $context (default: $base-fontsize)
*
*  @return em value
*
*  EXAMPLE:
*  p {
*    letter-spacing: letter-spacing(100px);
*  }
**/
/**
*  convert px font-size to viewport-width (vw)
*  Read the article: http://sassbreak.com/viewport-relative-headings-with-sass
*
*  @param int $target
*  @param int $context (calculate context based on $page-max value)
*
*  @return vw value
*
*  EXAMPLE:
*  h1 {
*    @include vw(72px);
*  }
**/
/*
 * Asset helper
 * via http://css-tricks.com/snippets/sass/simple-asset-helper-functions/
 *

USAGE:

@font-face {
  font-family: 'Unicorn Font';
  src: font('unicorn.eot?') format('eot'),
       font('unicorn.otf') format('truetype'),
       font('unicorn.woff') format('woff'),
       font('unicorn.svg#unicorn') format('svg');
  font-weight: normal;
  font-style: normal;
}

.foo {
  background-image: image('kittens.png');
}
 *
 *
 */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}

@media (max-width: 25em) {
  @-ms-viewport {
    width: 320px;
  }
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
main,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

html {
  box-sizing: border-box;
  font-size: 17px;
  font-family: Roboto, Verdana, Geneva, sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.5;
  background-color: #ffffff;
  color: #333333;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 80em) {
  html {
    font-size: 18px;
  }
}

@media only screen and (orientation: landscape), (orientation: portrait) {
  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
}

body {
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}

a {
  color: #000000;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(230, 0, 0, 0.3);
  text-decoration-color: #BC0600;
  text-decoration-thickness: 2px
}

a:visited {
  color: #D51616;
}

a:hover {
  color: #FF4817;
}

a:focus {
  color: #FF4817;
}

a:active {
  color: #333333;
}

a:hover, a:active {
  outline: 0;
}

a[href^="tel"] {
  color: #333333;
}

h1 &gt; a, h2 &gt; a, h3 &gt; a, h4 &gt; a, h5 &gt; a, h6 &gt; a {
  color: #D51616;
  font-size: 1em;
  text-decoration: none;
}

h1 {
  font-family: Roboto, Verdana, Geneva, sans-serif;
  line-height: 1.129;
  color: #00297C;
  font-size: 1.5rem;
  font-weight: bold;
}

h2 {
  font-family: Roboto, Verdana, Geneva, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4B5660;
  font-size: 1.25rem;
  font-weight: bold;
}

h3 {
  font-family: Roboto, Verdana, Geneva, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4B5660;
  margin-bottom: .15em;
  font-size: 1.25rem;
  font-weight: bold;
}

h4 {
  font-family: Roboto, Verdana, Geneva, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4B5660;
  margin-bottom: .25em;
}

h5 {
  font-family: Roboto, Verdana, Geneva, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4B5660;
  margin-bottom: .25em;
}

h6 {
  font-family: Roboto, Verdana, Geneva, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4B5660;
}

abbr[title] {
  text-decoration: none;
  border-bottom: none;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 2.5em;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: yellow;
  color: black;
}

p,
pre {
  margin: 0 0 1em;
}

p:last-child,
pre:last-child {
  margin-bottom: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  overflow: auto;
  white-space: pre-wrap;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl,
menu,
ol,
ul {
  margin: 0 0 1em;
}

dl:last-child,
menu:last-child,
ol:last-child,
ul:last-child {
  margin-bottom: 0;
}

dd {
  margin: 0 0 0 2.5em;
}

nav ul,
nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
  height: auto;
}

svg {
  overflow: visible;
}

svg:not(:root) {
  overflow: hidden;
}

::-moz-selection {
  background: #333333;
  color: white;
}

::selection {
  background: #333333;
  color: white;
}

figure {
  margin: 0;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

legend {
  border: 0;
  padding: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  border-radius: 0;
  background-image: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] &gt; input[type=button]::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td,
th {
  padding: 0;
}

.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br {
  display: none;
}

.hidden,
.is-hidden {
  display: none !important;
  visibility: hidden;
}

.vh,
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vh.focusable:active, .vh.focusable:focus,
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

textarea {
  resize: vertical;
}

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

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

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

.is-relative {
  position: relative;
}

.highlight {
  color: #D51616;
}

/* addition resets and defaults
 * ====================================================================
 */
a[href], button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

[role="button"] {
  cursor: pointer;
}

[aria-hidden="false"] {
  display: block;
}

[aria-hidden="true"] {
  display: none;
}

/*p a,*/
/*ul a,*/
/*ol a {*/
/*  color: #D51616;*/
/*}*/

ul ul,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: disc;
}

ol ol {
  list-style-type: inherit;
}

nav a {
  display: block;
  text-decoration: none;
}

figcaption {
  font-size: 0.875em;
  line-height: 1.5;
  margin: 1em 0;
}

address {
  font-style: normal;
}

hr {
  border-style: solid;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #999999;
  width: 100%;
  margin: 1em auto;
}

caption {
  caption-side: bottom;
}

caption:before,
caption:after {
  content: "\0020\2014\0020";
}

th, td {
  border-bottom: 1px solid white;
  padding: 0.25em 0;
  text-align: left;
  vertical-align: top;
}

th {
  border-bottom: 1px solid #d7dde2;
}

table ul {
  margin: 0;
  padding-left: 1em;
}

figure &gt; img {
  display: block;
  margin: 0 auto;
}

label, label .label {
  cursor: pointer;
}

svg {
  vertical-align: bottom;
}

svg polygon, svg path, svg rect, svg circle, svg line {
  fill: inherit;
}

path {
  vector-effect: non-scaling-stroke;
}

[role="button"] &gt; *,
button &gt; * {
  pointer-events: none;
}

.clearfix:before,
.cf:before, .btn-toolbar:before, .container:before, .clearfix:after,
.cf:after, .btn-toolbar:after, .container:after,
.formfields &gt; li:before,
.formfields .two-options:before,
.formfields .formFieldCheckboxMulti &gt; div:before,
[role="banner"]:before,
[role="main"]:before,
[role="complemetary"]:before,
[role="navigation"]:before,
[role="contentinfo"]:before,
.content:before,
.nav-breadcrumb:before,
.project-infos:before,
.person-overview .person-overview__item:before,
.person-overview .person-list__item:before,
.person-list .person-overview__item:before,
.person-list .person-list__item:before,
.formfields &gt; li:after,
.formfields .two-options:after,
.formfields .formFieldCheckboxMulti &gt; div:after,
[role="banner"]:after,
[role="main"]:after,
[role="complemetary"]:after,
[role="navigation"]:after,
[role="contentinfo"]:after,
.content:after,
.nav-breadcrumb:after,
.project-infos:after,
.person-overview .person-overview__item:after,
.person-overview .person-list__item:after,
.person-list .person-overview__item:after,
.person-list .person-list__item:after {
  content: "";
  display: table;
}

.clearfix:after,
.cf:after, .btn-toolbar:after, .container:after,
.formfields &gt; li:after,
.formfields .two-options:after,
.formfields .formFieldCheckboxMulti &gt; div:after,
[role="banner"]:after,
[role="main"]:after,
[role="complemetary"]:after,
[role="navigation"]:after,
[role="contentinfo"]:after,
.content:after,
.nav-breadcrumb:after,
.project-infos:after,
.person-overview .person-overview__item:after,
.person-overview .person-list__item:after,
.person-list .person-overview__item:after,
.person-list .person-list__item:after {
  clear: both;
}

.layer .slider-btn-prev,
.layer .slider-btn-next,
.layer .layer-close {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.formfields, .styled-list,
.nav-main, .nav-sub, .footer-nav, .nav-breadcrumb__list, .gallery-view__list,
.client-list,
.person-overview,
.person-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.person-info {
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.custom-select::after, .tcon {
  position: absolute;
  left: 4.17%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*@media (max-width: 48em) {*/
/*  .custom-select::after, .tcon {*/
/*    right: unset;*/
/*    left: 0;*/
/*    border: none!important;*/
/*  }*/
/*}*/

/* forms
 * ====================================================================
 */
.error-container {
  display: none;
  margin: 0 0 1em;
  padding: 1em;
}

label.error, label .error.label {
  color: red;
}

input.error {
  border: 1px solid red;
}

form ol, form ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

form li {
  clear: both;
  padding: 0;
}

.full,
.wide,
.half,
.small {
  box-sizing: border-box;
  float: left;
  clear: none;
}

.full input,
.wide input,
.half input,
.small input {
  box-sizing: border-box;
  width: 100%;
}

.full {
  width: 100%;
}

.wide {
  width: 73%;
}

.wide + .small {
  margin-left: 4%;
}

.half {
  width: 48%;
}

.half + .half {
  margin-left: 4%;
}

.half:nth-child(2n) {
  margin-left: 0;
}

.half.nl {
  float: none;
  clear: both;
  margin-left: 0;
}

.small {
  width: 23%;
  font-size: 1em;
}

.small + .wide {
  margin-left: 4%;
}

input[placeholder]::-webkit-input-placeholder,
textarea[placeholder]::-webkit-input-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]:focus::-webkit-input-placeholder,
textarea[placeholder]:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input[placeholder]:-moz-placeholder,
textarea[placeholder]:-moz-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]:focus:-moz-placeholder,
textarea[placeholder]:focus:-moz-placeholder {
  color: transparent !important;
}

input[placeholder]::-moz-placeholder,
textarea[placeholder]::-moz-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]:focus::-moz-placeholder,
textarea[placeholder]:focus::-moz-placeholder {
  color: transparent !important;
}

input[placeholder]:-ms-input-placeholder,
textarea[placeholder]:-ms-input-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]:focus:-ms-input-placeholder,
textarea[placeholder]:focus:-ms-input-placeholder {
  color: transparent !important;
}

input[placeholder]::input-placeholder,
textarea[placeholder]::input-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]:focus::input-placeholder,
textarea[placeholder]:focus::input-placeholder {
  color: transparent !important;
}

input[placeholder]::-webkit-input-placeholder,
textarea[placeholder]::-webkit-input-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]::-moz-placeholder,
textarea[placeholder]::-moz-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]:-ms-input-placeholder,
textarea[placeholder]:-ms-input-placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]::placeholder,
textarea[placeholder]::placeholder {
  color: #999999;
  opacity: 1;
  text-overflow: ellipsis;
}

input[placeholder]:focus::-webkit-input-placeholder,
textarea[placeholder]:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input[placeholder]:focus::-moz-placeholder,
textarea[placeholder]:focus::-moz-placeholder {
  color: transparent !important;
}

input[placeholder]:focus:-ms-input-placeholder,
textarea[placeholder]:focus:-ms-input-placeholder {
  color: transparent !important;
}

input[placeholder]:focus::placeholder,
textarea[placeholder]:focus::placeholder {
  color: transparent !important;
}

fieldset.half + .half {
  margin-left: 4%;
}

fieldset sup {
  font-size: 1.2em;
  top: -0.2em;
  cursor: help;
}

label, label .label {
  padding: 0;
  margin: 0;
  display: inline-block;
  color: inherit;
  position: relative;
}

label .label {
  display: block;
  cursor: inherit;
  text-align: right;
}

label .label label, label .label .label {
  float: none;
  margin: 0;
  width: auto;
}

input,
select,
textarea,
button {
  width: 100%;
  font-size: 16px;
  padding: 0.5em;
  border: 1px solid #cccccc;
  color: #333333;
  background-color: #f7f7f7;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media (min-width: 80em) {
  input,
  select,
  textarea,
  button {
    font-size: 1em;
  }
}

input:focus,
textarea:focus {
  box-shadow: 0 0 0 1px #999999;
  color: black;
  outline: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
}

input[type="checkbox"] + .label-wrapper,
input[type="radio"] + .label-wrapper {
  float: left;
  display: inline;
  text-align: left;
  width: 94%;
  margin-left: 2%;
  padding-bottom: 0.5em;
}

textarea {
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
}

legend.label + input[type="checkbox"] {
  margin: 0.5em 0 0;
}

select {
  width: inherit;
  max-width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  border-radius: 0;
  background-image: none;
}

option {
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

input[type="checkbox"].focusable:active, input[type="checkbox"].focusable:focus,
input[type="radio"].focusable:active,
input[type="radio"].focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

input[type="checkbox"]:focus + label:before, label input[type="checkbox"]:focus + .label:before, input[type="checkbox"]:hover + label:before, label input[type="checkbox"]:hover + .label:before,
input[type="radio"]:focus + label:before, label
input[type="radio"]:focus + .label:before,
input[type="radio"]:hover + label:before, label
input[type="radio"]:hover + .label:before {
  border-color: black;
}

input[type="checkbox"]:active + label:before, label input[type="checkbox"]:active + .label:before,
input[type="radio"]:active + label:before, label
input[type="radio"]:active + .label:before {
  -webkit-transition-duration: 0;
  transition-duration: 0;
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}

input[type="checkbox"] + label, label input[type="checkbox"] + .label,
input[type="radio"] + label, label
input[type="radio"] + .label {
  position: relative;
  padding: 10px;
  padding-left: 2em;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
}

input[type="checkbox"] + label:before, label input[type="checkbox"] + .label:before,
input[type="radio"] + label:before, label
input[type="radio"] + .label:before {
  content: '';
  color: #333333;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -9px;
  border: 1px solid #999999;
  text-align: center;
}

input[type="checkbox"] + label:after, label input[type="checkbox"] + .label:after,
input[type="radio"] + label:after, label
input[type="radio"] + .label:after {
  content: '';
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
}

input[type="checkbox"] + label:after, label input[type="checkbox"] + .label:after {
  background-color: transparent;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-style: solid;
  border-top-width: 0;
  border-top-color: white;
  border-right-width: 0;
  border-right-color: white;
  border-bottom-width: 1px;
  border-bottom-color: #333333;
  border-left-width: 1px;
  border-left-color: #333333;
  -o-border-image: none;
  border-image: none;
  -webkit-transform: rotate(-45deg) scale(0);
  -ms-transform: rotate(-45deg) scale(0);
  transform: rotate(-45deg) scale(0);
  -webkit-transition: none;
  transition: none;
}

input[type="checkbox"]:checked + label:after, label input[type="checkbox"]:checked + .label:after {
  content: '';
  -webkit-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
}

input[type="radio"]:checked + label:before, label input[type="radio"]:checked + .label:before {
  -webkit-animation: borderscale 300ms ease-in;
  animation: borderscale 300ms ease-in;
  background-color: white;
}

input[type="radio"]:checked + label:after, label input[type="radio"]:checked + .label:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

input[type="radio"] + label:before, label input[type="radio"] + .label:before, input[type="radio"] + label:after, label input[type="radio"] + .label:after {
  border-radius: 50%;
}

input[type="checkbox"]:checked + label:before, label input[type="checkbox"]:checked + .label:before {
  -webkit-animation: borderscale 200ms ease-in;
  animation: borderscale 200ms ease-in;
}

input[type="checkbox"]:checked + label:after, label input[type="checkbox"]:checked + .label:after {
  -webkit-transform: rotate(-45deg) scale(1);
  -ms-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

@-webkit-keyframes borderscale {
  50% {
    box-shadow: 0 0 0 4px #333333;
  }
}

@keyframes borderscale {
  50% {
    box-shadow: 0 0 0 4px #333333;
  }
}

/* Container used for styling the custom select, the buttom class below adds the bg gradient, corners, etc. */
.custom-select {
  position: relative;
  display: inline-block;
  padding: 0;
  border: 1px solid #999999;
  background-color: white;
}

/* This is the native select, we're making everything but the text invisible so we can see the button styles in the wrapper */
.custom-select select {
  width: 100%;
  margin: 0;
  background: none;
  border: 1px solid transparent;
  outline: none;
  /* Remove select styling */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* Font size must the 16px or larger to prevent iOS page zoom on focus */
  line-height: 1.3;
}

/* Custom arrow sits on top of the select - could be an image, SVG, icon font, etc. or the arrow could just baked into the bg image on the select. Note this si a 2x image so it will look bad in browsers that don't support background-size. In production, you'd handle this resolution switch via media query but this is a demo. */
.custom-select::after {
  content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%228%22%20viewBox%3D%220%200%2016%208%22%3E%3Cpolygon%20fill%3D%22%234D4D4D%22%20points%3D%228%2C0%2016%2C0%2012%2C4%208%2C8%204%2C4%200%2C0%20%22/%3E%3C/svg%3E);
  width: 50px;
  z-index: 1;
  background-color: transparent;
  text-align: center;
  line-height: 1;
  pointer-events: none;
}

/* Hover style */
.custom-select select:focus {
  color: black;
  outline: none;
  border-radius: 0;
}

/* Set options to normal weight */
.custom-select option {
  font-weight: normal;
}

/* ------------------------------------  */
/* START OF UGLY BROWSER-SPECIFIC HACKS */
/* ----------------------------------  */
/* OPERA - Pre-Blink nix the custom arrow, go with a native select button to keep it simple. Targeted via this hack http://browserhacks.com/#hack-a3f166304aafed524566bc6814e1d5c7 */
x:-o-prefocus, .custom-select::after {
  display: none;
}

/* IE 10/11+ - This hides native dropdown button arrow so it will have the custom appearance, IE 9 and earlier get a native select - targeting media query hack via http://browserhacks.com/#hack-28f493d247a12ab654f6c3637f6978d5 - looking for better ways to achieve this targeting */
/* The second rule removes the odd blue bg color behind the text in the select button in IE 10/11 and sets the text color to match the focus style's - fix via http://stackoverflow.com/questions/17553300/change-ie-background-color-on-unopened-focused-select-box */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-select select::-ms-expand {
    display: none;
  }
  .custom-select select:focus::-ms-value {
    background: transparent;
    color: #1a1a1a;
  }
}

/* FIREFOX won't let us hide the native select arrow, so we have to make it wider than needed and clip it via overflow on the parent container. The percentage width is a fallback since FF 4+ supports calc() so we can just add a fixed amount of extra width to push the native arrow out of view. We're applying this hack across all FF versions because all the previous hacks were too fragile and complex. You might want to consider not using this hack and using the native select arrow in FF. Note this makes the menus wider than the select button because they display at the specified width and aren't clipped. Targeting hack via http://browserhacks.com/#hack-758bff81c5c32351b02e10480b5ed48e */
/* Show only the native arrow */
@-moz-document url-prefix() {
  .custom-select {
    overflow: hidden;
  }
  .custom-select select {
    width: 105%;
    width: calc(100% + em);
  }
  .custom-select select option {
    max-width: 100%;
  }
}

/* Firefox focus has odd artifacts around the text, this kills that. See https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-focusring */
.custom-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 black;
}

/* ------------------------------------  */
/*  END OF UGLY BROWSER-SPECIFIC HACKS  */
/* ------------------------------------  */
.formfields &gt; li {
  padding-left: 0;
  padding-bottom: 0;
  margin: 0;
  position: relative;
}

@media (min-width: 64em) {
  .formfields &gt; li {
    padding-bottom: 0.25em;
    padding-top: 0.25em;
  }
}

.formfields &gt; li:before {
  content: none;
}

.formfields label, .formfields label .label, label .formfields .label,
.formfields .label {
  padding: 0.5em 0;
  display: block;
}

@media (min-width: 48em) {
  .formfields label, .formfields label .label, label .formfields .label,
  .formfields .label {
    float: left;
    margin-right: 2%;
    text-align: right;
    width: 28%;
  }
}

@media (min-width: 48em) {
  .formfields [type="text"],
  .formfields [type="date"],
  .formfields [type="tel"],
  .formfields [type="email"],
  .formfields [type="password"],
  .formfields [type="number"],
  .formfields select,
  .formfields textarea,
  .formfields .options {
    float: left;
    width: 70%;
    margin: 0;
  }
}

.formfields [type="checkbox"]:focus,
.formfields [type="radio"]:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

.formfields select {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%228%22%20viewBox%3D%220%200%2016%208%22%3E%3Cpolygon%20fill%3D%22%234D4D4D%22%20points%3D%228%2C0%2016%2C0%2012%2C4%208%2C8%204%2C4%200%2C0%20%22/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  padding-right: 1.5em;
  min-width: 100%;
}

@media (min-width: 48em) {
  .formfields select {
    min-width: 0;
  }
}

.formfields + input[type="submit"] {
  padding: 0.5em 2em;
  width: auto;
}

@media (min-width: 48em) {
  .formfields + input[type="submit"] {
    margin-left: 30%;
  }
}

.formfields .options label, .formfields .options label .label, label .formfields .options .label {
  float: none;
  text-align: left;
}

.formfields .two-options &gt; div {
  float: left;
  width: 50%;
}

.formfields .two-options &gt; div &gt; input {
  display: inline-block;
}

.formfields .two-options &gt; div &gt; label, .formfields label .two-options &gt; div &gt; .label, label .formfields .two-options &gt; div &gt; .label {
  display: inline-block;
}

.formfields .birthday-wrapper {
  white-space: nowrap;
}

.formfields .birthday-wrapper input,
.formfields .birthday-wrapper select {
  float: none;
  vertical-align: bottom;
}

.formfields [readonly] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  padding: 0;
  background: none;
  border: none;
  width: auto;
}

.formfields .textarea-counter {
  width: 40px;
  text-align: right;
}

@media (min-width: 48em) {
  .formfields .textarea-counter {
    float: none;
    margin-left: 30%;
  }
}

@media (min-width: 48em) {
  .formfields .single-input-wrapper {
    float: none;
    clear: both;
    margin-left: 30%;
  }
}

.formfields .formButton {
  width: auto;
  background-color: #333333;
  color: white;
  margin-top: 2em;
}

a.formButton {
  apearance: button;
  background-color: #f7f7f7;
  color: white;
  margin-top: 2em;
  border: 1px solid #cccccc;
  color: #333333;
  padding: 0.5em 2em 0.5em 2em;
  text-decoration: none;
}

.formfields #benutzernameInfoFeld {
  display: inline-block;
  padding: 0.5em 0;
}

@media (min-width: 48em) {
  .formfields .formFieldCheckboxMulti {
    float: left;
    width: 70%;
    margin: 0;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}

.formfields .formFieldCheckboxMulti &gt; div &gt; label, .formfields label .formFieldCheckboxMulti &gt; div &gt; .label, label .formfields .formFieldCheckboxMulti &gt; div &gt; .label {
  padding-top: 0;
  padding-bottom: 0.1em;
}

.formfields .helpText {
  opacity: 0;
  clear: both;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  background-color: #f7f7f7;
  will-change: max-height, opacity;
  padding: 0.5em;
}

.tippText {
  clear: both;
  overflow: hidden;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  background-color: #f7f7f7;
  padding: 0.5em;
  display: none;
}

@media (min-width: 48em) {
  .formfields .helpText {
    margin-left: 30%;
  }
}

@media (min-width: 48em) {
  .tippText {
    margin-left: 30%;
  }
}

@media (min-width: 64em) {
  .formfields .helpText {
    position: absolute;
    top: 0;
    left: 105%;
    width: 50%;
    margin-left: 0;
  }
}

.formfields textarea:focus ~ .helpText,
.formfields select:focus ~ .helpText,
.formfields input:focus ~ .helpText {
  opacity: 1;
  max-height: 99em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

@media (min-width: 64em) {
  .formfields textarea:focus ~ .helpText,
  .formfields select:focus ~ .helpText,
  .formfields input:focus ~ .helpText {
    margin: 0;
  }
}

/* Layout
 * ===================================================================
 */
.container {
  min-height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /*overflow-x: hidden;*/
  position: relative;
}

@media (min-width: 48em) {
  .custom-class{
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 48em) {
  .container-desktop{
    max-width: 1320px;
    margin-left: auto!important;
    margin-right: auto!important;
  }
  .content-desktop{
    width: 100%!important;
    margin-right: 0!important;
    /*display: flex;*/
    /*flex-direction: column;*/
  }
}

[role="banner"] {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  display: flex;
  position: fixed;
  top: 0;
  z-index: 100;
  background-image: -webkit-linear-gradient(top, #e9e7ef 85%, #d5d2dd 100%);
}

@media (min-width: 37.5em) {
  [role="banner"] {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    display: flex;
  }
}

/*@media (min-width: 48em) {*/
/*  [role="banner"] {*/
/*    width: 94.4444444444%;*/
/*    float: right;*/
/*    margin-left: 0;*/
/*    margin-right: 2.7777777778%;*/
/*    clear: none;*/
/*    position: relative;*/
/*    background-image: none;*/
/*  }*/
/*}*/

[role="main"] {
  width: 91.6666666667%;
  float: right;
  margin-left: 0;
  margin-right: 4.1666666667%;
  clear: none;
  margin-bottom: 2em;
}

@media (min-width: 37.5em) {
  [role="main"] {
    width: 91.6666666667%;
    float: right;
    margin-left: 0;
    margin-right: 4.1666666667%;
    clear: none;
  }
}

@media (min-width: 48em) {
  [role="main"] {
    width: 94.4444444444%;
    float: right;
    margin-left: 0;
    margin-right: 2.7777777778%;
    clear: none;
  }
}

@media (min-width: 37.5em) {
  .layout-twocols [role="main"] {
    width: 91.6666666667%;
    float: right;
    margin-left: 0;
    margin-right: 4.1666666667%;
    clear: none;
  }
}

@media (min-width: 64em) {
  .layout-twocols [role="main"] {
    width: 61.1111111111%;
    float: left;
    margin-right: -100%;
    margin-left: 2.7777777778%;
    clear: none;
    clear: both;
    margin-bottom: 0;
  }
}

[role="complemetary"] {
  width: 91.6666666667%;
  float: right;
  margin-left: 0;
  margin-right: 4.1666666667%;
  clear: none;
}

@media (min-width: 37.5em) {
  .layout-twocols [role="complemetary"] {
    width: 91.6666666667%;
    float: right;
    margin-left: 0;
    margin-right: 4.1666666667%;
    clear: none;
  }
}

@media (min-width: 64em) {
  .layout-twocols [role="complemetary"] {
    width: 27.7777777778%;
    float: right;
    margin-left: 0;
    margin-right: 2.7777777778%;
    clear: none;
  }
}

[role="navigation"] {
  width: 91.6666666667%;
  float: right;
  margin-left: 0;
  margin-right: 4.1666666667%;
  clear: none;
}

@media (min-width: 37.5em) {
  [role="navigation"] {
    width: 91.6666666667%;
    float: right;
    margin-left: 0;
    margin-right: 4.1666666667%;
    clear: none;
  }
}

@media (min-width: 48em) {
  [role="navigation"] {
    width: 94.4444444444%;
    float: right;
    margin-left: 0;
    margin-right: 2.7777777778%;
    clear: none;
  }
}

[role="contentinfo"] {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  background-color: black;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  clear: both;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
}

[role="contentinfo"] &gt; div {
  width: 91.6666666667%;
  clear: right;
  float: right;
  margin-left: 0;
  margin-right: 4.1666666667%;
  padding: 1.5em 0;
  color: lightgrey;
}

[role="contentinfo"] &gt; div:nth-child(2) {
  padding-top: 0.5em;
}

[role="contentinfo"] a {
  color: #e6e6e6;
  text-decoration-color: #e6e6e6;
}

@media (min-width: 37.5em) {
  [role="contentinfo"] {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
  [role="contentinfo"] &gt; div {
    width: 91.6666666667%;
    clear: right;
    float: right;
    margin-left: 0;
    margin-right: 4.1666666667%;
  }
}

@media (min-width: 48em) {
  [role="contentinfo"] {
    width: 94.4444444444%;
    float: right;
    margin-left: 0;
    margin-right: 2.7777777778%;
    clear: none;
    background: black!important;
    border: 1px solid #B7B7B7;
    border-radius: 5px;
    padding-bottom: 0;
    position: relative;
    z-index: 0;
  }
  [role="contentinfo"]:before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    bottom: 0;
    background: black;
    right: 0;
    width: 200%;
    height: 100%;
    z-index: -1;
    display: block;
  }
}

@media (min-width: 64em) {
  [role="contentinfo"] {
    width: 94.4444444444%;
    float: right;
    margin-left: 0;
    margin-right: 2.7777777778%;
    clear: none;
    clear: both;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
  [role="contentinfo"] &gt; div {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 27.7777777778%;
    -ms-flex: 1 0 27.7777777778%;
    flex: 1 0 27.7777777778%;
    margin: 0;
    padding: 2em 2.0833333333%;
  }
  [role="contentinfo"] &gt; div:nth-child(2) {
    flex: 0 0 100%;
    padding-bottom: 0;
  }
  [role="contentinfo"] &gt; div:first-of-type {
    border-left: none;
  }
  [role="contentinfo"] &gt; div:last-of-type {
    border-right: none;
  }
  [role="contentinfo"] &gt; div:nth-child(3) {
    padding-top: 2em;
  }
}

.content {
  width: 100%;
  float: right;
  margin-left: 0;
  margin-right: 0;
  clear: none;
  padding-top: 53px;
  padding-bottom: 1em;
  background-color: #ffffff;
  clear: both;
}

@media (min-width: 37.5em) {
  .content {
    width: 100%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
    padding-top: 53px;
  }
}

@media (min-width: 48em) {
  .content {
    width: 94.4444444444%;
    float: right;
    margin-left: 0;
    margin-right: 2.7777777778%;
    clear: none;
    clear: both;
    padding-top: 53px;
    background: #ffffff;
  }
}

@media (min-width: 64em) {
  .content {
    padding-top: 2em;
    padding-bottom: 5em;
  }
}

.logo {
  width: 58.3333333333%;
  float: left;
  margin-right: auto;
  margin-left:auto;
  clear: none;
  position: relative;
  height: 0;
  padding-top: 20px;
  width: 58.3333333333%;
  margin-top: 15px;
  margin-bottom: 18px;
  max-width: 222px;
  max-height: 55px;
}

.logo img {
  display: block;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  margin: 0;
  padding: 0;
}

@media (min-width: 37.5em) {
  .logo {
    width: 41.6666666667%;
    float: left;
    margin-right: auto;
    margin-left:auto;
    clear: none;
    position: relative;
    height: 0;
    padding-top: 20px;
    width: 41.6666666667%;
    margin-top: 15px;
    margin-bottom: 18px;
  }
  .logo img {
    display: block;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 64em) {
  .logo {
    width: 27.7777777778%;
    float: left;
    clear: none;
    position: relative;
    height: 0;
    padding-top: 6.9444444444%;
    width: 22.7777777778%;
    margin-top: 1em;
    margin-bottom: 1em;
    max-width: 100%;
    display: none;
  }
  .logo img {
    display: block;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    margin: 0;
    padding: 0;
  }
}

.logo &gt; img {
  max-height: 100%;
}

.client-name {
  display: block;
  color: #e6e6e6;
  font-weight: bold;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0;
}

.client-name &gt; em {
  display: block;
  color: #333333;
  font-style: normal;
}

.styled-list &gt; li {
  padding-bottom: 0.25em;
  padding-left: 1em;
  position: relative;
}

.styled-list &gt; li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  line-height: 1;
  position: absolute;
  left: 0.1875em;
  top: 0.625em;
  background-color: white;
  border: 1px solid #979797;
  box-shadow: inset -1px -1px 0 #d0d0d0, 1px 1px 0 #ececec;


}







.btn-link {
  background: none;
  border: none;
  color: #00297C;
  padding: 0;
  text-decoration: underline;
}

.btn-link:focus, .btn-link:hover {
  color: #D51616;
}

@media (min-width: 37.5em) {
  .btn-toggle-menu {
    display: none;
  }
}

/* Navigations
 * ===================================================================
 */
/*! responsive-nav.js 1.0.40 by @viljamis */
.js .nav-collapse,
.js .nav-collapse .dropdown ul {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
}

.nav-collapse.opened,
.nav-collapse .dropdown.opened ul {
  max-height: 9999px;
}

.nav-collapse .dropdown.opened &gt; ul,
.nav-collapse .dropdown .dropdown.opened &gt; ul {
  position: relative;
}

.nav-toggle,
.dropdown-toggle {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav-toggle {
  position: absolute;
  top: 1em;
  right: 1em;
}

@media (min-width: 64em) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed,
  .js .nav-collapse.closed .dropdown ul {
    max-height: none;
    overflow: visible;
    padding-top: 1.625em;
    padding-bottom: 1.625em;
    position: sticky!important;
    background: #e9e7ef;
    top: 0;
    z-index: 100;
  }
  .nav-toggle {
    display: none;
  }
  .js .nav-collapse:before {
    position: absolute;
    top: 0;
    left: -50%;
    bottom: 0;
    background: #e9e7ef;
    right: 0;
    width: 200%;
    height: 100%;
    z-index: -1;
    display: block;
  }
}

.tcon {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 25px;
  background: transparent;
  outline: none;
  border-radius: 5px;
  padding: 0;
  box-sizing: content-box;
}

@media (min-width: 64em) {
  .tcon {
    display: none;
  }
}

.tcon &gt; * {
  display: block;
}

.tcon:hover, .tcon:focus {
  outline: none;
}

.tcon::-moz-focus-inner {
  border: 0;
}

.tcon-menu__lines {
  display: inline-block;
  height: 3px;
  width: 24px;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #333333;
  position: relative;
}

.tcon-menu__lines::before, .tcon-menu__lines::after {
  display: inline-block;
  height: 3px;
  width: 24px;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #333333;
  content: '';
  position: absolute;
  left: 0;
  -webkit-transform-origin: 1.7142857143px center;
  -ms-transform-origin: 1.7142857143px center;
  transform-origin: 1.7142857143px center;
  width: 100%;
}

.tcon-menu__lines::before {
  top: 6px;
}

.tcon-menu__lines::after {
  top: -6px;
}

.active .tcon-menu__lines {
  -webkit-transform: scale3d(0.6, 0.6, 0.6);
  transform: scale3d(0.6, 0.6, 0.6);
}

.tcon-menu--xbutterfly .tcon-menu__lines::before, .tcon-menu--xbutterfly .tcon-menu__lines::after {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: top .3s .6s ease, -webkit-transform .3s ease;
  transition: top .3s .6s ease, transform .3s ease;
}

.tcon-menu--xbutterfly.active .tcon-menu__lines {
  background: transparent;
  margin-right: 1px;
}

.tcon-menu--xbutterfly.active .tcon-menu__lines::before, .tcon-menu--xbutterfly.active .tcon-menu__lines::after {
  background-color: #3a383d;
  top: 0;
  -webkit-transition: top .3s ease, -webkit-transform .3s .5s ease;
  transition: top .3s ease, transform .3s .5s ease;
  width: 25px;
}

.tcon-menu--xbutterfly.active .tcon-menu__lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}

.tcon-menu--xbutterfly.active .tcon-menu__lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

.tcon-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.tcon-visuallyhidden:active, .tcon-visuallyhidden:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.nav-main {
  padding-bottom: 1px;
  padding-top: 20px;
  background: #e9e7ef;
}

@media (min-width: 64em) {
  .nav-main {
    padding-bottom: 0;
    margin-bottom: -1px;
    vertical-align: middle;
    padding-top: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.nav-main__item {
  position: relative;
  margin: 1.3em calc(4.17% + 12px) 1em calc(4.17% + 12px);
  border-bottom: 1px solid #d2cdda;
  text-transform: uppercase;
}

@media (min-width: 64em) {
  .nav-main__item {
    display: inline-block;
    margin: 0;
    border-bottom: none;
    vertical-align: bottom;
  }
  .nav-main__item:nth-child(2) &gt; a{
    margin-left: 60px;
  }
}

.nav-main__item &gt; a,
.nav-main__item &gt; h3 {
  color: #000000;
  font-size: 1em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  border-radius: 5px;
}

@media (min-width: 64em) {
  .nav-main__item &gt; a,
  .nav-main__item &gt; h3 {
    border-radius: 5px 5px 0 0;
    padding: 0.25em 0;
    margin: 0;
    color: #000000;
  }
  .nav-main__item:nth-child(1) a{
    margin-left: 0;
  }
}

.no-touchevents .nav-main__item:focus .nav-sub,
.no-touchevents .nav-main__item:hover .nav-sub {
  left: auto;
}

.nav-main__item.has-dropdown &gt; h3 {
  display: none;
}

@media (min-width: 64em) {
  .nav-main__item.has-dropdown &gt; h3 {
    border-radius: 5px 5px 0 0;
    cursor: default;
    display: block;
  }
  .nav-main__item.has-dropdown:hover .dropdown {
    display: block;
  }
}

.nav-main__item.has-dropdown:hover .dropdown {
  left: auto;
}

.nav-main__item .is-visible + .dropdown {
  left: auto;
}

.nav-sub {
  border-top-width: 0;
  border-radius: 0 0 5px 5px;
  display: none;
}

@media (min-width: 64em) {
  .nav-sub {
    position: absolute;
    left: -999em;
    top: 103%;
    min-width: 11em;
    z-index: 2;
    background-color: #e9e7ef;
    border: 1px solid #C0CFD7;
  }
}

@media (min-width: 64em) {
  .nav-sub__item {
    border-top: 1px solid #d2cdda;
  }
}

.nav-sub__item:first-child {
  border-top: none;
}

.nav-sub__item:last-child a {
  border-radius: 0 0 5px 5px;
}

.nav-sub__item &gt; a {
  color: #383838;
  padding: 0.75em 0;
  margin-left: 0.75em;
}

@media (min-width: 64em) {
  .nav-sub__item &gt; a {
    color: #000000;
    padding: 0.25em 0;
    margin-left: 0.75em;
    background: #e9e7ef;
  }
}

.nav-sub__item:last-child {
  padding-bottom: 0.75em;
}

@media (min-width: 64em) {
  .nav-sub__item:last-child {
    padding-bottom: 0;
  }
  .nav-sub__item &gt; a:focus, .nav-sub__item &gt; a:hover {
    background-color: #fbfae4;
    color: #BC0600;
  }
}

.nav-sub__item &gt; a:focus, .nav-sub__item &gt; a:hover {
  background-color: unset;
  color: #D51616;
}

.is-active &gt; a,
.is-active &gt; h3 {
  font-weight: bold;
  position: relative;
  width: fit-content;
}

.is-active &gt; a::before{
  position: absolute;
  bottom: -11px;
  left: 0;
  content: " ";
  width: 100%;
  height: 3px;
  background: #BC0600;
  z-index: 0;
}

@media (max-width: 64em) {
  .nav-sub .is-active &gt; a::before{
    position: absolute;
    bottom: 1px;
    left: 0;
    content: " ";
    width: 100%;
    height: 3px;
    background: #BC0600;
    z-index: 0;
  }
  .is-active .toggle-container &gt; h3{
    position: relative;
  }
  .is-active .toggle-container &gt; h3::before{
    position: absolute;
    bottom: -11px;
    left: 0;
    content: " ";
    width: 100%;
    height: 3px;
    background: #BC0600;
    z-index: 0;
  }
}

@media (min-width: 64em) {
  .is-active &gt; a::before,
  .is-active &gt; h3::before{
    position: absolute;
    bottom: -1px;
    left: 0;
    content: " ";
    width: 100%;
    height: 3px;
    background: #BC0600;
    z-index: 0;
  }
}

.nav-language {
  margin: 1em 0 1em calc(4.17% + 12px);
}

@media (min-width: 64em) {
  .nav-language {
    display: inline-block;
    margin: 0.25em;
    margin-left: 1.25em;
    vertical-align: middle;
  }
}

@media (min-width: 80em) {
  .nav-language {
    margin-left: 2.25em;
  }
}

.nav-language &gt; span {
  color: #999999;
}

.nav-language &gt; a {
  border-left: 1px solid #999999;
  display: inline;
  margin-left: 0.25em;
  padding: 0 0.5em;
}

.nav-language &gt; a:first-of-type {
  border-left: none;
  margin-right: -0.5em;
}

.touch .footer-nav {
  margin-top: -0.5em;
}

.footer-nav &gt; li {
  position: relative;
}

.footer-nav &gt; li:before {
  content: "\00BB";
  position: absolute;
  top: 0;
  left: 0;
}

.no-touch .footer-nav &gt; li:before {
  top: 0.5em;
}

.footer-nav &gt; li &gt; a {
  display: block;
  margin-left: 1em;
}

.no-touch .footer-nav &gt; li &gt; a {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.nav-breadcrumb {
  width: 91.6666666667%;
  float: right;
  margin-left: 0;
  margin-right: 4.1666666667%;
  clear: none;
}

@media (min-width: 37.5em) {
  .nav-breadcrumb {
    width: 91.6666666667%;
    float: right;
    margin-left: 0;
    margin-right: 4.1666666667%;
    clear: none;
  }
}

@media (min-width: 48em) {
  .nav-breadcrumb {
    width: 94.4444444444%;
    float: right;
    margin-left: 0;
    margin-right: 2.7777777778%;
    clear: none;
  }
}

@media (max-width: 63.95em) {
  .nav-breadcrumb {
    margin-top: 2em;
  }
}

.nav-breadcrumb__list {
  font-size: 0.875rem;
}

.nav-breadcrumb__item {
  display: inline;
  min-height: 44px;
}

.nav-breadcrumb__item:not(:last-child):after {
  content: ' &gt; ';
}

.nav-breadcrumb__item &gt; a {
  color: #333333;
}

@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.slideshow-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 42.8571428571%;
  margin-bottom: 2em;
  margin-top: -1px;
}

@media (min-width: 48em) {
  .slideshow-wrapper {
    margin-top: -1em;
  }
}

@media (min-width: 64em) {
  .slideshow-wrapper {
    margin-top: -3em;
  }
}

@media (max-width: 63.95em) {
  .slideshow-wrapper {
    margin-bottom: 0;
  }
}

.slideshow-wrapper &gt; figure {
  -webkit-animation: slideShow 48s linear 1 0s;
  animation: slideShow 48s linear 1 0s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  will-change: opacity, transform;
}

.slideshow-wrapper &gt; figure &gt; img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

figure:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

figure:nth-child(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

figure:nth-child(3) {
  -webkit-animation-delay: 13s;
  animation-delay: 13s;
}

figure:nth-child(4) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}

figure:nth-child(5) {
  -webkit-animation-delay: 27s;
  animation-delay: 27s;
}

figure:nth-child(6) {
  -webkit-animation-delay: 34s;
  animation-delay: 34s;
}

figure:nth-child(7) {
  -webkit-animation-delay: 41s;
  animation-delay: 41s;
}
/*
figure:nth-child(8) {
  -webkit-animation-delay: 42s;
          animation-delay: 42s;
}

figure:nth-child(9) {
  -webkit-animation-delay: 48s;
          animation-delay: 48s;
}

figure:nth-child(10) {
  -webkit-animation-delay: 54s;
          animation-delay: 54s;
}

figure:nth-child(11) {
  -webkit-animation-delay: 60s;
          animation-delay: 60s;
}
*/
figure:nth-child(1) {
  opacity: 1;
}

@media (min-width: 48em) {
  .client-list {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 3em;
    -moz-column-gap: 3em;
    column-gap: 3em;
  }
}

@media (min-width: 64em) {
  .client-list {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
    -webkit-column-gap: 3em;
    -moz-column-gap: 3em;
    column-gap: 3em;
  }
}

@media (min-width: 80em) {
  .client-list {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
    -webkit-column-gap: 3em;
    -moz-column-gap: 3em;
    column-gap: 3em;
  }
}

.client-list &gt; li {
  padding-left: 0;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.client-list &gt; li:before {
  content: none;
}

.client-list &gt; li:first-child h3 {
  margin-top: 0;
}

.overflow-gallery {
  width: auto !important;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  font-size: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 0.5rem 0 0;
}

.overflow-gallery figure {
  display: inline-block;
}

.overflow-gallery img {
  max-width: none;
}

.project-infos &gt; dt {
  font-weight: bold;
}

@media (min-width: 64em) {
  .project-infos &gt; dt {
    float: left;
    clear: left;
    width: 200px;
  }
}

.project-infos &gt; dd {
  margin-left: 0;
}

.person-overview,
.person-list {
  font-size: 0.8125rem;
  max-width: 100%;
  min-width: 100%;
  clear: left;
}

@media (min-width: 80em) {
  .person-overview,
  .person-list {
    font-size: 1rem;
  }
}

.person-overview .person-overview__item,
.person-overview .person-list__item,
.person-list .person-overview__item,
.person-list .person-list__item {
  background-color: white;
  border-top: 1px solid #cccccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5em 0;
  position: relative;
}

.no-flexbox.flexboxlegacy .person-overview .person-overview__item, .no-flexbox.flexboxlegacy
.person-overview .person-list__item, .no-flexbox.flexboxlegacy
.person-list .person-overview__item, .no-flexbox.flexboxlegacy
.person-list .person-list__item {
  display: block;
}

.no-flexbox.flexboxlegacy .person-overview .person-overview__item &gt; *, .no-flexbox.flexboxlegacy
.person-overview .person-list__item &gt; *, .no-flexbox.flexboxlegacy
.person-list .person-overview__item &gt; *, .no-flexbox.flexboxlegacy
.person-list .person-list__item &gt; * {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  float: left;
}

.person-overview .person-overview__item .overflow-gallery,
.person-overview .person-list__item .overflow-gallery,
.person-list .person-overview__item .overflow-gallery,
.person-list .person-list__item .overflow-gallery {
  display: none;
}

.person-overview .person-overview__item:before,
.person-overview .person-list__item:before,
.person-list .person-overview__item:before,
.person-list .person-list__item:before {
  display: none;
}

.person-overview .person-list__item,
.person-list .person-list__item {
  background-color: #f7f7f7;
  padding-bottom: 0;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.person-overview .responsive-break,
.person-list .responsive-break {
  display: none;
}

@media (min-width: 48em) {
  .person-overview .responsive-break,
  .person-list .responsive-break {
    display: block;
  }
}

@media (min-width: 64em) {
  .person-overview .responsive-break,
  .person-list .responsive-break {
    display: none;
  }
}

@media (min-width: 64em) {
  .person-overview .responsive-break,
  .person-list .responsive-break {
    width: 0%;
  }
}

.js .person-overview {
  display: none;
}

.js .person-overview.is-open {
  display: block;
}

.person-list__toggle,
.person-overview__toggle {
  background: none;
  border: none;
  min-width: 32px;
  min-height: 48px;
  padding: 0;
  width: auto;
}

.person-list__toggle svg,
.person-overview__toggle svg {
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
}

.person-list__toggle &gt; span,
.person-overview__toggle &gt; span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}

.person-list__toggle[aria-pressed="true"] svg,
.person-overview__toggle[aria-pressed="true"] svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.person-list__toggle[aria-pressed="true"] ~ .person-overview__toggle--all,
.person-overview__toggle[aria-pressed="true"] ~ .person-overview__toggle--all {
  display: block;
}

.person-list__toggle:focus,
.person-overview__toggle:focus {
  outline: none;
}

.person-overview__toggle--all {
  display: none;
  background-color: white;
  border: none;
  border-top: 1px solid #cccccc;
  font-size: 0.875rem;
  padding: 0.5em 0;
  text-align: left;
}

.person-overview__toggle--all:focus {
  outline: none;
}

.person-overview__toggle--all[aria-pressed="true"] &gt; svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.person-overview__toggle--all &gt; svg {
  box-sizing: content-box;
  padding: 0.25em;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
}

.person-category {
  display: inline-block;
  vertical-align: top;
  padding-bottom: 0.5em;
  font-weight: bold;
  font-size: 0.875rem;
  display: inline-block;
  -webkit-box-flex: 2;
  -webkit-flex: 2 1 0px;
  -ms-flex: 2 1 0px;
  flex: 2 1 0px;
}

.no-flexbox.flexboxlegacy .person-category {
  width: 85%;
  padding-top: 0.5em;
}

.person-category-place {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding-left: 1.5rem;
  margin-bottom: 0.5em;
  white-space: nowrap;
}

@media (min-width: 64em) {
  .person-category-place {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    padding-left: 0;
    text-align: right;
  }
}

.person-image {
  display: inline-block;
  width: 52px;
  height: 48px;
  border-left: 4px solid transparent;
  margin-top: 2px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.person-image.status-1 {
  border-color: #60E800;
}

.person-image.status-2 {
  border-color: #98ff4f;
}

.person-image.status-3 {
  border-color: #b6ff82;
}

.person-image.status-4 {
  border-color: #FFE043;
}

.person-image.status-5 {
  border-color: #fff1a9;
}

.person-image.status-6 {
  border-color: transparent;
}

.person-image.status-7 {
  border-color: #ff8080;
}

.person-image.status-8 {
  border-color: #ff4d4d;
}

.person-image.status-9 {
  border-color: #D51616;
}

.person-image &gt; img {
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.person-info {
  display: inline-block;
  -webkit-box-flex: 2;
  -webkit-flex: 2 1 30%;
  -ms-flex: 2 1 30%;
  flex: 2 1 30%;
  line-height: 1.4;
  padding: 0 0.25em;
}

.no-flexbox.flexboxlegacy .person-info {
  width: 45%;
}

@media (min-width: 37.5em) {
  .person-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}

@media (min-width: 48em) {
  .person-info {
    -webkit-box-flex: 1.5;
    -webkit-flex: 1.5 1 0px;
    -ms-flex: 1.5 1 0px;
    flex: 1.5 1 0px;
    max-width: 40%;
  }
}

@media (min-width: 64em) {
  .person-info {
    display: table;
    max-width: none;
    width: 50%;
    white-space: normal;
  }
}

.person-info &gt; * {
  pointer-events: none;
}

@media (min-width: 64em) {
  .person-name {
    display: table-cell;
    width: 40%;
  }
}

.person-id {
  display: block;
  font-size: 0.6875rem;
  font-weight: normal;
  white-space: nowrap;
}

@media (min-width: 48em) {
  .person-id {
    display: inline-block;
  }
}

@media (min-width: 64em) {
  .person-id {
    display: block;
  }
}

@media (min-width: 80em) {
  .person-id {
    font-size: 0.875rem;
  }
}

.person-status,
.person-age,
.person-height {
  display: none;
  text-align: center;
}

@media (min-width: 48em) {
  .person-status,
  .person-age,
  .person-height {
    display: inline-block;
  }
}

@media (min-width: 64em) {
  .person-status,
  .person-age,
  .person-height {
    display: table-cell;
    width: 20%;
    vertical-align: middle;
  }
}

.person-status {
  display: block;
  font-size: 0.6875rem;
  text-align: left;
}

@media (min-width: 64em) {
  .person-status {
    display: table-cell;
    width: 20%;
    vertical-align: middle;
    font-size: 0.875rem;
  }
}

.person-height {
  border-left: 1px solid currentColor;
  padding-left: 0.25em;
}

@media (min-width: 64em) {
  .person-height {
    border-left: none;
  }
}

.person-fav,
.person-pdf,
.person-note {
  color: #333333;
  min-width: 38px;
  min-height: 38px;
  padding: 0.5em;
  text-align: right;
  display: inline-block;
  vertical-align: top;
}

.person-fav &gt; svg,
.person-pdf &gt; svg,
.person-note &gt; svg {
  pointer-events: none;
}

.person-fav.is-faved &gt; svg {
  color: #FFE043;
  fill: #FFE043;
}

.person-note {
  display: none;
  background: none;
  border: none;
  width: auto;
  position: relative;
}

@media (min-width: 37.5em) {
  .person-note {
    display: inline-block;
  }
}

.person-note-new-message {
  position: absolute;
  bottom: 1em;
  right: 0.5em;
  background-color: #FFE043;
  color: black;
  font-size: 0.6875rem;
  border-radius: 50%;
  line-height: 1.1;
  width: 1.25em;
  height: 1.25em;
  text-align: center;
}

.person-location {
  display: none;
}

@media (min-width: 37.5em) {
  .person-location {
    display: inline-block;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
  .no-flexbox.flexboxlegacy .person-location {
    min-width: 35%;
    min-height: 2.5em;
    padding-top: 0.5em;
  }
}

.person-notes {
  display: none;
  min-width: 100%;
  padding-left: 1.5rem;
}

.person-notes button {
  width: auto;
  margin-top: 1em;
}

.no-flexbox.flexboxlegacy .action-bar {
  position: absolute;
  top: 1em;
  right: 0;
}

.person-overview__item.notes-open .person-notes {
  display: block;
}

.person-overview__item.notes-open .action-bar {
  text-align: right;
  min-width: 100%;
}

@media (min-width: 64em) {
  .person-overview__item.notes-open .action-bar {
    position: absolute;
    top: 1em;
    right: 0;
  }
}

.person-overview__item.is-open .person-overview__toggle svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
}

.person-overview__item.is-open .overflow-gallery {
  display: block;
  min-width: 100%;
}

.person-overview__item.is-open .person-age,
.person-overview__item.is-open .person-height,
.person-overview__item.is-open .person-location {
  display: inline-block;
}

@media (min-width: 64em) {
  .person-overview__item.is-open .person-age,
  .person-overview__item.is-open .person-height {
    display: table-cell;
  }
}

@media (min-width: 64em) {
  .person-overview__item.is-open .person-location {
    max-width: 35%;
  }
}

.person-overview__item.is-open .action-bar {
  text-align: right;
  min-width: 100%;
  position: static;
}

@media (min-width: 64em) {
  .person-overview__item.is-open .action-bar {
    min-width: auto;
    position: absolute;
    top: 1em;
    right: 0;
  }
}

@media (max-width: 37.4375em) {
  .person-overview .person-overview__item.is-open {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .person-overview__item.is-open .person-info {
    white-space: normal;
    overflow: visible;
  }
  .no-flexbox.flexboxlegacy .person-overview__item.is-open .person-info {
    width: 70%;
  }
  .person-overview__item.is-open .person-age {
    margin-left: -56px;
    margin-top: 0.5em;
  }
  .person-overview__item.is-open .person-note {
    display: inline-block;
  }
  .person-overview__item.is-open .person-location {
    min-width: 100%;
    padding-left: 1.5rem;
  }
}

@media (max-width: 47.9375em) {
  .hide-on-mobile {
    display: none !important;
  }
}

.gallery-view__filter {
  color: #cccccc;
}

@media (min-width: 48em) {
  .gallery-view__filter {
    font-size: 1.125rem;
  }
}

.gallery-view__filter &gt; a {
  color: #cccccc;
  text-decoration: none;
}

.gallery-view__filter &gt; a:focus, .gallery-view__filter &gt; a:hover {
  color: #999999;
}

.gallery-view__filter &gt; a.is-active {
  color: #333333;
}

.gallery-view__filter &gt; a.is-active:focus, .gallery-view__filter &gt; a.is-active:hover {
  color: #999999;
}

.gallery-view__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.5em;
}

.gallery-view__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0.5em;
  min-width: 50%;
}

@media (min-width: 37.5em) {
  .gallery-view__item {
    min-width: 33.3333333333%;
  }
}

@media (min-width: 48em) {
  .gallery-view__item {
    min-width: 25%;
  }
}

.gallery-view__imgwrap {
  display: block;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-view__imgwrap &gt; img {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  will-change: transform;
  -webkit-transition: -webkit-transform 300ms ease-in;
  transition: transform 300ms ease-in;
}

.gallery-view__link {
  display: block;
}

.gallery-view__link:focus img, .gallery-view__link:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery-view__link:focus .gallery-view__name, .gallery-view__link:hover .gallery-view__name {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.gallery-view__name {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 0.875rem;
  line-height: 1.214285714;
  padding: 0.25em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
}

@media (min-width: 80em) {
  .gallery-view__name {
    font-weight: bold;
    font-size: 1.3125rem;
    will-change: transform;
    -webkit-transition: -webkit-transform 100ms ease-out;
    transition: transform 100ms ease-out;
  }
  .no-touchevents .gallery-view__name {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    transform: translateY(200%);
  }
}

.gallery-view__btn {
  background-color: #333333;
  color: white;
  display: block;
  max-width: 200px;
  margin: 1em auto;
  -webkit-transition: background-color 200ms ease-out;
  transition: background-color 200ms ease-out;
}

.gallery-view__btn:focus, .gallery-view__btn:hover {
  background-color: black;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* &lt;button&gt; css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../img/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../img/default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}

.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../img/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint &amp; create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/**
 * Swiper 3.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: November 7, 2015
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical &gt; .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow &gt; .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode &gt; .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/*
.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: 0.2;
}
button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
	background: #fff;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}
*/
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical &gt; .swiper-pagination {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical &gt; .swiper-pagination .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal &gt; .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal &gt; .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

/* 3D Container */
/* Scrollbar */
/* Preloader */
.swiper-container {
  overflow: visible;
}

.swiper-wrapper {
  box-sizing: border-box;
}

.swiper-slide {
  background-color: white;
}

.image-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  margin-bottom: 1em;
}

.image-container &gt; img {
  width: 86px;
  height: 130px;
  display: inline-block;
}

.sedcard .person-fav {
  padding: 0;
  min-width: 0;
}

.sedcard .person-fav:focus &gt; svg, .sedcard .person-fav:hover &gt; svg, .sedcard .person-fav:active &gt; svg {
  color: #FFE043;
  fill: #FFE043;
}

.sedcard__shortinfo &gt; dt,
.sedcard__shortinfo &gt; dd {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 48%;
}

@media (min-width: 64em) {
  .sedcard__shortinfo &gt; dt,
  .sedcard__shortinfo &gt; dd {
    display: inline-block;
    width: auto;
  }
}

@media (min-width: 64em) {
  .sedcard__shortinfo &gt; dt {
    color: #999999;
    margin-left: 1em;
  }
}

.sedcard__shortinfo &gt; dd {
  padding-left: 1em;
}

@media (min-width: 64em) {
  .sedcard__shortinfo &gt; dd {
    padding-left: 0;
  }
}

.sedcard__shortinfo &gt; dd:first-of-type {
  width: 100%;
  padding-left: 0;
}

@media (min-width: 64em) {
  .sedcard__shortinfo &gt; dd:first-of-type {
    width: auto;
  }
}

.sedcard__imglist {
  -webkit-columns: 3 120px;
  -moz-columns: 3 120px;
  columns: 3 120px;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  white-space: normal;
  font-size: 16px;
}

.sedcard__imgwrap {
  display: block !important;
  margin-bottom: 1em;
}

.sedcard__imgwrap &gt; a {
  display: block;
}

.sedcard__imgwrap &gt; a &gt; img {
  width: 100%;
}

.faq__item {
  background-color: #f7f7f7;
  border-top: 1px solid #cccccc;
  margin-bottom: 1em;
  padding: 1em;
}

.faq__title {
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style-type: none;
}

.faq__title:focus {
  outline: none;
}

.faq__title:before {
  background-image: url("../img/icons/expand.svg");
  background-position: 50%;
  content: '\25B6';
  color: transparent;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  -webkit-transition: -webkit-transform 250ms ease-out 0s;
  transition: transform 250ms ease-out 0s;
  will-change: transform;
}

.faq__title[aria-pressed="true"]:before,
[open] .faq__title:before {
  content: '\25BC';
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq__title::-webkit-details-marker {
  display: none;
}

.faq__content {
  margin-left: 2.1875rem;
}

.faq__content p {
  margin-top: 1em;
  margin-bottom: 1em;
}

.social-links {
  -webkit-columns: 2 7.8125em;
  -moz-columns: 2 7.8125em;
  columns: 2 7.8125em;
}

.social-links &gt; a {
  color: black;
  display: block;
  padding: 0.5em 0;
  text-decoration: none;
  -webkit-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
  vertical-align: middle;
  white-space: nowrap;
}

.social-links &gt; a:focus, .social-links &gt; a:hover {
  color: #D51616;
}

.social-links &gt; a:focus [class*="icon"], .social-links &gt; a:hover [class*="icon"] {
  fill: #D51616;
}

.social-links [class*="icon"] {
  fill: #333333;
  vertical-align: inherit;
  -webkit-transition: fill 200ms ease-out;
  transition: fill 200ms ease-out;
}

.layer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 110;
  background-color: rgba(255, 255, 255, 0.9);
}

.layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 111;
}

.layer[aria-hidden="true"] {
  display: none;
}

.layer[aria-hidden="true"] + .layer-overlay {
  display: none;
}

.layer .slider-btn-prev,
.layer .slider-btn-next,
.layer .layer-close {
  line-height: 1;
  color: #D51616;
  position: absolute;
  z-index: 11;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  -webkit-transition: background-color 150ms ease-out;
  transition: background-color 150ms ease-out;
}

.layer .slider-btn-prev:focus, .layer .slider-btn-prev:hover,
.layer .slider-btn-next:focus,
.layer .slider-btn-next:hover,
.layer .layer-close:focus,
.layer .layer-close:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.layer .layer-close {
  background-image: url("../img/icons/close.svg");
  top: -48px;
  right: 0.5%;
}

.layer .is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.layer .is-disabled:focus, .layer .is-disabled:hover {
  background-color: transparent;
}

.layer-content {
  min-height: 50vh;
  background: white url("../img/l.gif") no-repeat 50%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  top: 5em;
  z-index: 112;
}

@media (min-width: 80em) {
  .layer-content {
    top: 6em;
  }
}

.layer-content .slider-btn-prev {
  top: -48px;
  left: 25%;
  background-image: url("../img/icons/chevron_right.svg");
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media (min-width: 48em) {
  .layer-content .slider-btn-prev {
    left: 40%;
  }
}

@media (min-width: 64em) {
  .layer-content .slider-btn-prev {
    top: 0;
    left: 0.5%;
  }
}

.layer-content .slider-btn-next {
  top: -48px;
  right: 25%;
  background-image: url("../img/icons/chevron_right.svg");
}

@media (min-width: 48em) {
  .layer-content .slider-btn-next {
    right: 40%;
  }
}

@media (min-width: 64em) {
  .layer-content .slider-btn-next {
    top: 0;
    right: 0.5%;
  }
}

.layer-content .nav-breadcrumb {
  display: none;
}

.layer-content .swiper-slide {
  padding: 0 4.1666666667%;
}

@media (min-width: 48em) {
  .layer-content .swiper-slide {
    padding: 0 2.7777777778%;
  }
}

.layer-content .swiper-slide .sedcard {
  opacity: 0.4;
  padding: 0 4.1666666667%;
}

@media (min-width: 48em) {
  .layer-content .swiper-slide .sedcard {
    padding: 0 2.7777777778%;
  }
}

.layer-content .swiper-slide-active .sedcard {
  opacity: 1;
}

/* endif*/
@media (min-width: 20em) {
  head {
    font-family: tiny-1;
  }
}

@media (min-width: 30em) {
  head {
    font-family: small-2;
  }
}

@media (min-width: 37.5em) {
  head {
    font-family: medium-3;
  }
}

@media (min-width: 48em) {
  head {
    font-family: large-4;
  }
}

@media (min-width: 64em) {
  head {
    font-family: xlarge-5;
  }
}

@media (min-width: 80em) {
  head {
    font-family: xxlarge-6;
  }
}

@media (min-width: 100em) {
  head {
    font-family: huge-7;
  }
}

.nav-collapse.opened{
  position: fixed!important;
  top: 53px;
  left: 0;
  width: 100%;
  background: rgb(255, 255, 255);
  overflow: auto;
  clip: inherit;
  z-index: 1000;
}

@media (min-width: 37.5em) {
  .nav-collapse.opened{
    position: fixed!important;
    top: 53px;
    left: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    overflow: auto;
    clip: inherit;
    z-index: 1000;
  }
}

body .nav-collapse.opened{
  height: 100%;
  max-height: none!important;
}

.tcon.active{
  border: 1px solid #b0b1bd;
  padding: 0;
  box-sizing: border-box;
}

footer &gt; hr{
  width: 200%;
  transform: translateX(-25%);
  margin: 0;
  border-bottom: 1px solid #272729;
}

@media (min-width: 64em) {
  footer &gt; hr{
    display: none;
  }
}

.footer-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0!important;
}

.footer-logo a{
  margin-top: 25px;
}

.footer-logo img{
  filter: brightness(0) invert(1);
}

@media (min-width: 48em) {
  .footer-logo .logo{
    display: flex;
  }
}

.toggle-container{
  display: flex;
  justify-content: space-between;
}

@media (min-width: 64em) {
  .toggle-container{
    display: none;
  }
}

.toggle-container img{
  width: 15px;
  margin-right: 0.75em;
  margin-bottom: 10px;
  cursor: pointer;
}

.sub-heading{
  color: #000000;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0;
  cursor: pointer;
}

.show-submenu{
  transform: rotate(180Deg);
}

.logo-desktop{
  display: none;
}

@media (min-width: 64em) {
  .logo-desktop{
    width: 25%;
    display: flex;
    justify-content: flex-start;
  }
}

.logo-desktop img{
  width: 270px;
  margin-bottom: 10px;
}

.image-wrap-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 48em) {
  .image-wrap-container{
    max-width: 100%;
    flex-wrap: nowrap;
  }
  .image-wrap-container .last-image{
    display: none;
  }
}

.contact-us{
  display: block;
}


@media (min-width: 37.5em) {
  .contact-us{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 100%!important;
  }
}

.contact-us p{
  font-size: 40px;
  font-family: 'Conthrax-sb';
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 64em) {
  .contact-us p{
    font-size: 50px;
  }
}

.contact-us a{
  width: max-content;
  background-color: rgb(214, 32, 39);
  border: none;
  font-size: 20px;
  font-family: 'Roboto';
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 40px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 20px;
}

@media (max-width: 37.5em) {
  .contact-us a{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}

/* Own Autocomplete */

div.ownAutocomplete {
  clear: both;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  position: relative;
  margin: 0;
  z-index: 100;
}

@media (min-width: 20em) {
  div.ownAutocomplete {
    width: 100%;
    margin-left: 0;
    margin-top: 0.3em;
  }
}

@media (min-width: 30em) {
  div.ownAutocomplete {
    width: 100%;
    margin-left: 0;
    margin-top: 0.3em;
  }
}

@media (min-width: 37.5em) {
  div.ownAutocomplete {
    width: 100%;
    margin-left: 0;
    margin-top: 0.3em;
  }
}

@media (min-width: 48em) {
  div.ownAutocomplete {
    width: 70%;
    margin-left: 30%;
  }
}

@media (min-width: 64em) {
  div.ownAutocomplete {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    margin-left: 30%;
    margin-top: 2.4em;
  }
}

div.ownAutocomplete ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  max-height: 99em;
  overflow:auto;
}

div.ownAutocomplete li {
  padding: 0.4em;
  cursor: pointer;
}

div.ownAutocomplete li:hover {
  background-color: #f7f7f7;
}
</pre></body></html>