@charset "UTF-8";
/* ==========================================================================
   Basic setup and variables
   ========================================================================== */
/* ==========================================================================
   Configuration for SCSS-Framework
   ========================================================================== */
/* ==========================================================================
   Configuration within the project files
   ========================================================================== */
/* ==========================================================================
   Font Variables
   ========================================================================== */
/* ==========================================================================
   Icons
   ========================================================================== */
/* ==========================================================================
   Spacing Variables
   ========================================================================== */
/* ==========================================================================
   Theme Variables
   ========================================================================== */
/* ==========================================================================
   Import cps-scss-Framework from node_modules
   ========================================================================== */
/**
    * http://meyerweb.com/eric/tools/css/reset/
    * v2.0 | 20110126
    * License: none (public domain)
    * Changes applied:
    *   - border: 0 just for img, abbr and acronym (not every element)
    */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img,
abbr,
acronym,
iframe {
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before,
q:after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

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

html {
  font-size: 16px;
}

@media screen and (min-width: 1100px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1300px) {
  html {
    font-size: 20px;
  }
}

.o-grid {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

@media screen and (min-width: 500px) {
  .o-grid {
    max-width: 92%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid {
    max-width: 92%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid {
    max-width: 92%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid {
    max-width: 92%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid {
    max-width: 1200px;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid {
    max-width: 1200px;
  }
}

.o-grid--fluid {
  max-width: none;
}

.o-grid__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.o-grid__row--start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.o-grid__row--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.o-grid__row--end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.o-grid__row--around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.o-grid__row--between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 500px) {
  .o-grid__row--start\@xs {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-grid__row--center\@xs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .o-grid__row--end\@xs {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .o-grid__row--around\@xs {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .o-grid__row--between\@xs {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__row--start\@sm {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-grid__row--center\@sm {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .o-grid__row--end\@sm {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .o-grid__row--around\@sm {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .o-grid__row--between\@sm {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__row--start\@md {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-grid__row--center\@md {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .o-grid__row--end\@md {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .o-grid__row--around\@md {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .o-grid__row--between\@md {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__row--start\@lg {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-grid__row--center\@lg {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .o-grid__row--end\@lg {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .o-grid__row--around\@lg {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .o-grid__row--between\@lg {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__row--start\@xl {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-grid__row--center\@xl {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .o-grid__row--end\@xl {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .o-grid__row--around\@xl {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .o-grid__row--between\@xl {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__row--start\@xxl {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .o-grid__row--center\@xxl {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .o-grid__row--end\@xxl {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .o-grid__row--around\@xxl {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .o-grid__row--between\@xxl {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.o-grid__row--top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.o-grid__row--middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.o-grid__row--bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (min-width: 500px) {
  .o-grid__row--top\@xs {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .o-grid__row--middle\@xs {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-grid__row--bottom\@xs {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__row--top\@sm {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .o-grid__row--middle\@sm {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-grid__row--bottom\@sm {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__row--top\@md {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .o-grid__row--middle\@md {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-grid__row--bottom\@md {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__row--top\@lg {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .o-grid__row--middle\@lg {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-grid__row--bottom\@lg {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__row--top\@xl {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .o-grid__row--middle\@xl {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-grid__row--bottom\@xl {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__row--top\@xxl {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .o-grid__row--middle\@xxl {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .o-grid__row--bottom\@xxl {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.o-grid [class*='o-grid__col:'] {
  padding-left: 10px;
  padding-right: 10px;
}

.o-grid__col {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.o-grid__col--first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
     -moz-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (min-width: 500px) {
  .o-grid__col--first\@xs {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--first\@sm {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--first\@md {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--first\@lg {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--first\@xl {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--first\@xxl {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.o-grid__col--last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 500px) {
  .o-grid__col--last\@xs {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--last\@sm {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--last\@md {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--last\@lg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--last\@xl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--last\@xxl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.o-grid__col--offset\:1 {
  margin-left: 8.33333%;
}

.o-grid__col--offset\:2 {
  margin-left: 16.66667%;
}

.o-grid__col--offset\:3 {
  margin-left: 25%;
}

.o-grid__col--offset\:4 {
  margin-left: 33.33333%;
}

.o-grid__col--offset\:5 {
  margin-left: 41.66667%;
}

.o-grid__col--offset\:6 {
  margin-left: 50%;
}

.o-grid__col--offset\:7 {
  margin-left: 58.33333%;
}

.o-grid__col--offset\:8 {
  margin-left: 66.66667%;
}

.o-grid__col--offset\:9 {
  margin-left: 75%;
}

.o-grid__col--offset\:10 {
  margin-left: 83.33333%;
}

.o-grid__col--offset\:11 {
  margin-left: 91.66667%;
}

.o-grid__col--offset\:12 {
  margin-left: 100%;
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:1\@xs {
    margin-left: 8.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:2\@xs {
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:3\@xs {
    margin-left: 25%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:4\@xs {
    margin-left: 33.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:5\@xs {
    margin-left: 41.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:6\@xs {
    margin-left: 50%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:7\@xs {
    margin-left: 58.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:8\@xs {
    margin-left: 66.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:9\@xs {
    margin-left: 75%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:10\@xs {
    margin-left: 83.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:11\@xs {
    margin-left: 91.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col--offset\:12\@xs {
    margin-left: 100%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:1\@sm {
    margin-left: 8.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:2\@sm {
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:3\@sm {
    margin-left: 25%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:4\@sm {
    margin-left: 33.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:5\@sm {
    margin-left: 41.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:6\@sm {
    margin-left: 50%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:7\@sm {
    margin-left: 58.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:8\@sm {
    margin-left: 66.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:9\@sm {
    margin-left: 75%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:10\@sm {
    margin-left: 83.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:11\@sm {
    margin-left: 91.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col--offset\:12\@sm {
    margin-left: 100%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:1\@md {
    margin-left: 8.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:2\@md {
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:3\@md {
    margin-left: 25%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:4\@md {
    margin-left: 33.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:5\@md {
    margin-left: 41.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:6\@md {
    margin-left: 50%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:7\@md {
    margin-left: 58.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:8\@md {
    margin-left: 66.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:9\@md {
    margin-left: 75%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:10\@md {
    margin-left: 83.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:11\@md {
    margin-left: 91.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col--offset\:12\@md {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:1\@lg {
    margin-left: 8.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:2\@lg {
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:3\@lg {
    margin-left: 25%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:4\@lg {
    margin-left: 33.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:5\@lg {
    margin-left: 41.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:6\@lg {
    margin-left: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:7\@lg {
    margin-left: 58.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:8\@lg {
    margin-left: 66.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:9\@lg {
    margin-left: 75%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:10\@lg {
    margin-left: 83.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:11\@lg {
    margin-left: 91.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col--offset\:12\@lg {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:1\@xl {
    margin-left: 8.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:2\@xl {
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:3\@xl {
    margin-left: 25%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:4\@xl {
    margin-left: 33.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:5\@xl {
    margin-left: 41.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:6\@xl {
    margin-left: 50%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:7\@xl {
    margin-left: 58.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:8\@xl {
    margin-left: 66.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:9\@xl {
    margin-left: 75%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:10\@xl {
    margin-left: 83.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:11\@xl {
    margin-left: 91.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col--offset\:12\@xl {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:1\@xxl {
    margin-left: 8.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:2\@xxl {
    margin-left: 16.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:3\@xxl {
    margin-left: 25%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:4\@xxl {
    margin-left: 33.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:5\@xxl {
    margin-left: 41.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:6\@xxl {
    margin-left: 50%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:7\@xxl {
    margin-left: 58.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:8\@xxl {
    margin-left: 66.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:9\@xxl {
    margin-left: 75%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:10\@xxl {
    margin-left: 83.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:11\@xxl {
    margin-left: 91.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col--offset\:12\@xxl {
    margin-left: 100%;
  }
}

.o-grid__col\:1 {
  -webkit-flex-basis: 8.33333%;
      -ms-flex-preferred-size: 8.33333%;
          flex-basis: 8.33333%;
  max-width: 8.33333%;
}

.o-grid__col\:2 {
  -webkit-flex-basis: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
          flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.o-grid__col\:3 {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%;
}

.o-grid__col\:4 {
  -webkit-flex-basis: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
          flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.o-grid__col\:5 {
  -webkit-flex-basis: 41.66667%;
      -ms-flex-preferred-size: 41.66667%;
          flex-basis: 41.66667%;
  max-width: 41.66667%;
}

.o-grid__col\:6 {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 50%;
}

.o-grid__col\:7 {
  -webkit-flex-basis: 58.33333%;
      -ms-flex-preferred-size: 58.33333%;
          flex-basis: 58.33333%;
  max-width: 58.33333%;
}

.o-grid__col\:8 {
  -webkit-flex-basis: 66.66667%;
      -ms-flex-preferred-size: 66.66667%;
          flex-basis: 66.66667%;
  max-width: 66.66667%;
}

.o-grid__col\:9 {
  -webkit-flex-basis: 75%;
      -ms-flex-preferred-size: 75%;
          flex-basis: 75%;
  max-width: 75%;
}

.o-grid__col\:10 {
  -webkit-flex-basis: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
          flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.o-grid__col\:11 {
  -webkit-flex-basis: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
          flex-basis: 91.66667%;
  max-width: 91.66667%;
}

.o-grid__col\:12 {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 500px) {
  .o-grid__col\:1\@xs {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:2\@xs {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:3\@xs {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:4\@xs {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:5\@xs {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:6\@xs {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:7\@xs {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:8\@xs {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:9\@xs {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:10\@xs {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:11\@xs {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 500px) {
  .o-grid__col\:12\@xs {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:1\@sm {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:2\@sm {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:3\@sm {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:4\@sm {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:5\@sm {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:6\@sm {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:7\@sm {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:8\@sm {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:9\@sm {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:10\@sm {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:11\@sm {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 700px) {
  .o-grid__col\:12\@sm {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:1\@md {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:2\@md {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:3\@md {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:4\@md {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:5\@md {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:6\@md {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:7\@md {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:8\@md {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:9\@md {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:10\@md {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:11\@md {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 900px) {
  .o-grid__col\:12\@md {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:1\@lg {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:2\@lg {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:3\@lg {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:4\@lg {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:5\@lg {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:6\@lg {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:7\@lg {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:8\@lg {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:9\@lg {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:10\@lg {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:11\@lg {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 1100px) {
  .o-grid__col\:12\@lg {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:1\@xl {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:2\@xl {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:3\@xl {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:4\@xl {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:5\@xl {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:6\@xl {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:7\@xl {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:8\@xl {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:9\@xl {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:10\@xl {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:11\@xl {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 1300px) {
  .o-grid__col\:12\@xl {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:1\@xxl {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:2\@xxl {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:3\@xxl {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:4\@xxl {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:5\@xxl {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:6\@xxl {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:7\@xxl {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:8\@xxl {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:9\@xxl {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:10\@xxl {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:11\@xxl {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
}

@media screen and (min-width: 1700px) {
  .o-grid__col\:12\@xxl {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%;
  }
}

.u-accessibility {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.u-aspect-ratio-21x9 {
  position: relative;
}

.u-aspect-ratio-21x9:before {
  content: '';
  display: block;
  padding-top: 42.85714%;
  width: 100%;
}

.u-aspect-ratio-21x9 > * {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.u-aspect-ratio-16x9 {
  position: relative;
}

.u-aspect-ratio-16x9:before {
  content: '';
  display: block;
  padding-top: 56.25%;
  width: 100%;
}

.u-aspect-ratio-16x9 > * {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.u-clearfix:before, .u-clearfix:after {
  clear: both;
  content: '';
  display: table;
}

.u-color-bg\:brand {
  background-color: #002157;
}

.u-color-bg\:primary {
  background-color: #151515;
}

.u-color-bg\:secondary {
  background-color: #535353;
}

.u-color-bg\:facebook {
  background-color: #39579a;
}

.u-color-bg\:linkedin {
  background-color: #3076b0;
}

.u-color-bg\:instagram {
  background-color: #bc2a8d;
}

.u-color-bg\:twitter {
  background-color: #50abf1;
}

.u-color-bg\:whatsapp {
  background-color: #04c164;
}

.u-color-bg\:xing {
  background-color: #286366;
}

.u-color-bg\:white {
  background-color: #fff;
}

.u-color-bg\:g1 {
  background-color: #eee;
}

.u-color-bg\:g2 {
  background-color: #ccc;
}

.u-color-bg\:g3 {
  background-color: #aaa;
}

.u-color-bg\:g4 {
  background-color: #888;
}

.u-color-bg\:g5 {
  background-color: #666;
}

.u-color-bg\:g6 {
  background-color: #444;
}

.u-color-bg\:g7 {
  background-color: #333;
}

.u-color-bg\:black {
  background-color: #000;
}

.u-color-bg\:positive {
  background-color: #060;
}

.u-color-bg\:caution {
  background-color: #f5ce2a;
}

.u-color-bg\:negative {
  background-color: #be2c00;
}

.u-color-bg\:neutral {
  background-color: #ccc;
}

@media screen and (min-width: 500px) {
  .u-color-bg\:brand\@xs {
    background-color: #002157;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:primary\@xs {
    background-color: #151515;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:secondary\@xs {
    background-color: #535353;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:facebook\@xs {
    background-color: #39579a;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:linkedin\@xs {
    background-color: #3076b0;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:instagram\@xs {
    background-color: #bc2a8d;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:twitter\@xs {
    background-color: #50abf1;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:whatsapp\@xs {
    background-color: #04c164;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:xing\@xs {
    background-color: #286366;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:white\@xs {
    background-color: #fff;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:g1\@xs {
    background-color: #eee;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:g2\@xs {
    background-color: #ccc;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:g3\@xs {
    background-color: #aaa;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:g4\@xs {
    background-color: #888;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:g5\@xs {
    background-color: #666;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:g6\@xs {
    background-color: #444;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:g7\@xs {
    background-color: #333;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:black\@xs {
    background-color: #000;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:positive\@xs {
    background-color: #060;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:caution\@xs {
    background-color: #f5ce2a;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:negative\@xs {
    background-color: #be2c00;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bg\:neutral\@xs {
    background-color: #ccc;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:brand\@sm {
    background-color: #002157;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:primary\@sm {
    background-color: #151515;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:secondary\@sm {
    background-color: #535353;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:facebook\@sm {
    background-color: #39579a;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:linkedin\@sm {
    background-color: #3076b0;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:instagram\@sm {
    background-color: #bc2a8d;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:twitter\@sm {
    background-color: #50abf1;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:whatsapp\@sm {
    background-color: #04c164;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:xing\@sm {
    background-color: #286366;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:white\@sm {
    background-color: #fff;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:g1\@sm {
    background-color: #eee;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:g2\@sm {
    background-color: #ccc;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:g3\@sm {
    background-color: #aaa;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:g4\@sm {
    background-color: #888;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:g5\@sm {
    background-color: #666;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:g6\@sm {
    background-color: #444;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:g7\@sm {
    background-color: #333;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:black\@sm {
    background-color: #000;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:positive\@sm {
    background-color: #060;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:caution\@sm {
    background-color: #f5ce2a;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:negative\@sm {
    background-color: #be2c00;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bg\:neutral\@sm {
    background-color: #ccc;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:brand\@md {
    background-color: #002157;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:primary\@md {
    background-color: #151515;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:secondary\@md {
    background-color: #535353;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:facebook\@md {
    background-color: #39579a;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:linkedin\@md {
    background-color: #3076b0;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:instagram\@md {
    background-color: #bc2a8d;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:twitter\@md {
    background-color: #50abf1;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:whatsapp\@md {
    background-color: #04c164;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:xing\@md {
    background-color: #286366;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:white\@md {
    background-color: #fff;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:g1\@md {
    background-color: #eee;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:g2\@md {
    background-color: #ccc;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:g3\@md {
    background-color: #aaa;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:g4\@md {
    background-color: #888;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:g5\@md {
    background-color: #666;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:g6\@md {
    background-color: #444;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:g7\@md {
    background-color: #333;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:black\@md {
    background-color: #000;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:positive\@md {
    background-color: #060;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:caution\@md {
    background-color: #f5ce2a;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:negative\@md {
    background-color: #be2c00;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bg\:neutral\@md {
    background-color: #ccc;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:brand\@lg {
    background-color: #002157;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:primary\@lg {
    background-color: #151515;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:secondary\@lg {
    background-color: #535353;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:facebook\@lg {
    background-color: #39579a;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:linkedin\@lg {
    background-color: #3076b0;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:instagram\@lg {
    background-color: #bc2a8d;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:twitter\@lg {
    background-color: #50abf1;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:whatsapp\@lg {
    background-color: #04c164;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:xing\@lg {
    background-color: #286366;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:white\@lg {
    background-color: #fff;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:g1\@lg {
    background-color: #eee;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:g2\@lg {
    background-color: #ccc;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:g3\@lg {
    background-color: #aaa;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:g4\@lg {
    background-color: #888;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:g5\@lg {
    background-color: #666;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:g6\@lg {
    background-color: #444;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:g7\@lg {
    background-color: #333;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:black\@lg {
    background-color: #000;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:positive\@lg {
    background-color: #060;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:caution\@lg {
    background-color: #f5ce2a;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:negative\@lg {
    background-color: #be2c00;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bg\:neutral\@lg {
    background-color: #ccc;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:brand\@xl {
    background-color: #002157;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:primary\@xl {
    background-color: #151515;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:secondary\@xl {
    background-color: #535353;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:facebook\@xl {
    background-color: #39579a;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:linkedin\@xl {
    background-color: #3076b0;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:instagram\@xl {
    background-color: #bc2a8d;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:twitter\@xl {
    background-color: #50abf1;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:whatsapp\@xl {
    background-color: #04c164;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:xing\@xl {
    background-color: #286366;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:white\@xl {
    background-color: #fff;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:g1\@xl {
    background-color: #eee;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:g2\@xl {
    background-color: #ccc;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:g3\@xl {
    background-color: #aaa;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:g4\@xl {
    background-color: #888;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:g5\@xl {
    background-color: #666;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:g6\@xl {
    background-color: #444;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:g7\@xl {
    background-color: #333;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:black\@xl {
    background-color: #000;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:positive\@xl {
    background-color: #060;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:caution\@xl {
    background-color: #f5ce2a;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:negative\@xl {
    background-color: #be2c00;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bg\:neutral\@xl {
    background-color: #ccc;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:brand\@xxl {
    background-color: #002157;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:primary\@xxl {
    background-color: #151515;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:secondary\@xxl {
    background-color: #535353;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:facebook\@xxl {
    background-color: #39579a;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:linkedin\@xxl {
    background-color: #3076b0;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:instagram\@xxl {
    background-color: #bc2a8d;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:twitter\@xxl {
    background-color: #50abf1;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:whatsapp\@xxl {
    background-color: #04c164;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:xing\@xxl {
    background-color: #286366;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:white\@xxl {
    background-color: #fff;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:g1\@xxl {
    background-color: #eee;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:g2\@xxl {
    background-color: #ccc;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:g3\@xxl {
    background-color: #aaa;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:g4\@xxl {
    background-color: #888;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:g5\@xxl {
    background-color: #666;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:g6\@xxl {
    background-color: #444;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:g7\@xxl {
    background-color: #333;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:black\@xxl {
    background-color: #000;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:positive\@xxl {
    background-color: #060;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:caution\@xxl {
    background-color: #f5ce2a;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:negative\@xxl {
    background-color: #be2c00;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bg\:neutral\@xxl {
    background-color: #ccc;
  }
}

.u-color-bo\:brand {
  border-color: #002157;
}

.u-color-bo\:primary {
  border-color: #151515;
}

.u-color-bo\:secondary {
  border-color: #535353;
}

.u-color-bo\:facebook {
  border-color: #39579a;
}

.u-color-bo\:linkedin {
  border-color: #3076b0;
}

.u-color-bo\:instagram {
  border-color: #bc2a8d;
}

.u-color-bo\:twitter {
  border-color: #50abf1;
}

.u-color-bo\:whatsapp {
  border-color: #04c164;
}

.u-color-bo\:xing {
  border-color: #286366;
}

.u-color-bo\:white {
  border-color: #fff;
}

.u-color-bo\:g1 {
  border-color: #eee;
}

.u-color-bo\:g2 {
  border-color: #ccc;
}

.u-color-bo\:g3 {
  border-color: #aaa;
}

.u-color-bo\:g4 {
  border-color: #888;
}

.u-color-bo\:g5 {
  border-color: #666;
}

.u-color-bo\:g6 {
  border-color: #444;
}

.u-color-bo\:g7 {
  border-color: #333;
}

.u-color-bo\:black {
  border-color: #000;
}

.u-color-bo\:positive {
  border-color: #060;
}

.u-color-bo\:caution {
  border-color: #f5ce2a;
}

.u-color-bo\:negative {
  border-color: #be2c00;
}

.u-color-bo\:neutral {
  border-color: #ccc;
}

@media screen and (min-width: 500px) {
  .u-color-bo\:brand\@xs {
    border-color: #002157;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:primary\@xs {
    border-color: #151515;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:secondary\@xs {
    border-color: #535353;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:facebook\@xs {
    border-color: #39579a;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:linkedin\@xs {
    border-color: #3076b0;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:instagram\@xs {
    border-color: #bc2a8d;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:twitter\@xs {
    border-color: #50abf1;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:whatsapp\@xs {
    border-color: #04c164;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:xing\@xs {
    border-color: #286366;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:white\@xs {
    border-color: #fff;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:g1\@xs {
    border-color: #eee;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:g2\@xs {
    border-color: #ccc;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:g3\@xs {
    border-color: #aaa;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:g4\@xs {
    border-color: #888;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:g5\@xs {
    border-color: #666;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:g6\@xs {
    border-color: #444;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:g7\@xs {
    border-color: #333;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:black\@xs {
    border-color: #000;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:positive\@xs {
    border-color: #060;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:caution\@xs {
    border-color: #f5ce2a;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:negative\@xs {
    border-color: #be2c00;
  }
}

@media screen and (min-width: 500px) {
  .u-color-bo\:neutral\@xs {
    border-color: #ccc;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:brand\@sm {
    border-color: #002157;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:primary\@sm {
    border-color: #151515;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:secondary\@sm {
    border-color: #535353;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:facebook\@sm {
    border-color: #39579a;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:linkedin\@sm {
    border-color: #3076b0;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:instagram\@sm {
    border-color: #bc2a8d;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:twitter\@sm {
    border-color: #50abf1;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:whatsapp\@sm {
    border-color: #04c164;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:xing\@sm {
    border-color: #286366;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:white\@sm {
    border-color: #fff;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:g1\@sm {
    border-color: #eee;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:g2\@sm {
    border-color: #ccc;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:g3\@sm {
    border-color: #aaa;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:g4\@sm {
    border-color: #888;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:g5\@sm {
    border-color: #666;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:g6\@sm {
    border-color: #444;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:g7\@sm {
    border-color: #333;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:black\@sm {
    border-color: #000;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:positive\@sm {
    border-color: #060;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:caution\@sm {
    border-color: #f5ce2a;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:negative\@sm {
    border-color: #be2c00;
  }
}

@media screen and (min-width: 700px) {
  .u-color-bo\:neutral\@sm {
    border-color: #ccc;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:brand\@md {
    border-color: #002157;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:primary\@md {
    border-color: #151515;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:secondary\@md {
    border-color: #535353;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:facebook\@md {
    border-color: #39579a;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:linkedin\@md {
    border-color: #3076b0;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:instagram\@md {
    border-color: #bc2a8d;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:twitter\@md {
    border-color: #50abf1;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:whatsapp\@md {
    border-color: #04c164;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:xing\@md {
    border-color: #286366;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:white\@md {
    border-color: #fff;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:g1\@md {
    border-color: #eee;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:g2\@md {
    border-color: #ccc;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:g3\@md {
    border-color: #aaa;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:g4\@md {
    border-color: #888;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:g5\@md {
    border-color: #666;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:g6\@md {
    border-color: #444;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:g7\@md {
    border-color: #333;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:black\@md {
    border-color: #000;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:positive\@md {
    border-color: #060;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:caution\@md {
    border-color: #f5ce2a;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:negative\@md {
    border-color: #be2c00;
  }
}

@media screen and (min-width: 900px) {
  .u-color-bo\:neutral\@md {
    border-color: #ccc;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:brand\@lg {
    border-color: #002157;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:primary\@lg {
    border-color: #151515;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:secondary\@lg {
    border-color: #535353;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:facebook\@lg {
    border-color: #39579a;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:linkedin\@lg {
    border-color: #3076b0;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:instagram\@lg {
    border-color: #bc2a8d;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:twitter\@lg {
    border-color: #50abf1;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:whatsapp\@lg {
    border-color: #04c164;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:xing\@lg {
    border-color: #286366;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:white\@lg {
    border-color: #fff;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:g1\@lg {
    border-color: #eee;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:g2\@lg {
    border-color: #ccc;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:g3\@lg {
    border-color: #aaa;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:g4\@lg {
    border-color: #888;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:g5\@lg {
    border-color: #666;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:g6\@lg {
    border-color: #444;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:g7\@lg {
    border-color: #333;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:black\@lg {
    border-color: #000;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:positive\@lg {
    border-color: #060;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:caution\@lg {
    border-color: #f5ce2a;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:negative\@lg {
    border-color: #be2c00;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-bo\:neutral\@lg {
    border-color: #ccc;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:brand\@xl {
    border-color: #002157;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:primary\@xl {
    border-color: #151515;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:secondary\@xl {
    border-color: #535353;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:facebook\@xl {
    border-color: #39579a;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:linkedin\@xl {
    border-color: #3076b0;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:instagram\@xl {
    border-color: #bc2a8d;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:twitter\@xl {
    border-color: #50abf1;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:whatsapp\@xl {
    border-color: #04c164;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:xing\@xl {
    border-color: #286366;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:white\@xl {
    border-color: #fff;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:g1\@xl {
    border-color: #eee;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:g2\@xl {
    border-color: #ccc;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:g3\@xl {
    border-color: #aaa;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:g4\@xl {
    border-color: #888;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:g5\@xl {
    border-color: #666;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:g6\@xl {
    border-color: #444;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:g7\@xl {
    border-color: #333;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:black\@xl {
    border-color: #000;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:positive\@xl {
    border-color: #060;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:caution\@xl {
    border-color: #f5ce2a;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:negative\@xl {
    border-color: #be2c00;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-bo\:neutral\@xl {
    border-color: #ccc;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:brand\@xxl {
    border-color: #002157;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:primary\@xxl {
    border-color: #151515;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:secondary\@xxl {
    border-color: #535353;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:facebook\@xxl {
    border-color: #39579a;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:linkedin\@xxl {
    border-color: #3076b0;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:instagram\@xxl {
    border-color: #bc2a8d;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:twitter\@xxl {
    border-color: #50abf1;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:whatsapp\@xxl {
    border-color: #04c164;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:xing\@xxl {
    border-color: #286366;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:white\@xxl {
    border-color: #fff;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:g1\@xxl {
    border-color: #eee;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:g2\@xxl {
    border-color: #ccc;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:g3\@xxl {
    border-color: #aaa;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:g4\@xxl {
    border-color: #888;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:g5\@xxl {
    border-color: #666;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:g6\@xxl {
    border-color: #444;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:g7\@xxl {
    border-color: #333;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:black\@xxl {
    border-color: #000;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:positive\@xxl {
    border-color: #060;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:caution\@xxl {
    border-color: #f5ce2a;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:negative\@xxl {
    border-color: #be2c00;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-bo\:neutral\@xxl {
    border-color: #ccc;
  }
}

.u-color-c\:brand {
  color: #002157;
}

.u-color-c\:primary {
  color: #151515;
}

.u-color-c\:secondary {
  color: #535353;
}

.u-color-c\:facebook {
  color: #39579a;
}

.u-color-c\:linkedin {
  color: #3076b0;
}

.u-color-c\:instagram {
  color: #bc2a8d;
}

.u-color-c\:twitter {
  color: #50abf1;
}

.u-color-c\:whatsapp {
  color: #04c164;
}

.u-color-c\:xing {
  color: #286366;
}

.u-color-c\:white {
  color: #fff;
}

.u-color-c\:g1 {
  color: #eee;
}

.u-color-c\:g2 {
  color: #ccc;
}

.u-color-c\:g3 {
  color: #aaa;
}

.u-color-c\:g4 {
  color: #888;
}

.u-color-c\:g5 {
  color: #666;
}

.u-color-c\:g6 {
  color: #444;
}

.u-color-c\:g7 {
  color: #333;
}

.u-color-c\:black {
  color: #000;
}

.u-color-c\:positive {
  color: #060;
}

.u-color-c\:caution {
  color: #f5ce2a;
}

.u-color-c\:negative {
  color: #be2c00;
}

.u-color-c\:neutral {
  color: #ccc;
}

@media screen and (min-width: 500px) {
  .u-color-c\:brand\@xs {
    color: #002157;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:primary\@xs {
    color: #151515;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:secondary\@xs {
    color: #535353;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:facebook\@xs {
    color: #39579a;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:linkedin\@xs {
    color: #3076b0;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:instagram\@xs {
    color: #bc2a8d;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:twitter\@xs {
    color: #50abf1;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:whatsapp\@xs {
    color: #04c164;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:xing\@xs {
    color: #286366;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:white\@xs {
    color: #fff;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:g1\@xs {
    color: #eee;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:g2\@xs {
    color: #ccc;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:g3\@xs {
    color: #aaa;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:g4\@xs {
    color: #888;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:g5\@xs {
    color: #666;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:g6\@xs {
    color: #444;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:g7\@xs {
    color: #333;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:black\@xs {
    color: #000;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:positive\@xs {
    color: #060;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:caution\@xs {
    color: #f5ce2a;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:negative\@xs {
    color: #be2c00;
  }
}

@media screen and (min-width: 500px) {
  .u-color-c\:neutral\@xs {
    color: #ccc;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:brand\@sm {
    color: #002157;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:primary\@sm {
    color: #151515;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:secondary\@sm {
    color: #535353;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:facebook\@sm {
    color: #39579a;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:linkedin\@sm {
    color: #3076b0;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:instagram\@sm {
    color: #bc2a8d;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:twitter\@sm {
    color: #50abf1;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:whatsapp\@sm {
    color: #04c164;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:xing\@sm {
    color: #286366;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:white\@sm {
    color: #fff;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:g1\@sm {
    color: #eee;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:g2\@sm {
    color: #ccc;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:g3\@sm {
    color: #aaa;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:g4\@sm {
    color: #888;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:g5\@sm {
    color: #666;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:g6\@sm {
    color: #444;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:g7\@sm {
    color: #333;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:black\@sm {
    color: #000;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:positive\@sm {
    color: #060;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:caution\@sm {
    color: #f5ce2a;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:negative\@sm {
    color: #be2c00;
  }
}

@media screen and (min-width: 700px) {
  .u-color-c\:neutral\@sm {
    color: #ccc;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:brand\@md {
    color: #002157;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:primary\@md {
    color: #151515;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:secondary\@md {
    color: #535353;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:facebook\@md {
    color: #39579a;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:linkedin\@md {
    color: #3076b0;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:instagram\@md {
    color: #bc2a8d;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:twitter\@md {
    color: #50abf1;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:whatsapp\@md {
    color: #04c164;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:xing\@md {
    color: #286366;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:white\@md {
    color: #fff;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:g1\@md {
    color: #eee;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:g2\@md {
    color: #ccc;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:g3\@md {
    color: #aaa;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:g4\@md {
    color: #888;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:g5\@md {
    color: #666;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:g6\@md {
    color: #444;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:g7\@md {
    color: #333;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:black\@md {
    color: #000;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:positive\@md {
    color: #060;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:caution\@md {
    color: #f5ce2a;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:negative\@md {
    color: #be2c00;
  }
}

@media screen and (min-width: 900px) {
  .u-color-c\:neutral\@md {
    color: #ccc;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:brand\@lg {
    color: #002157;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:primary\@lg {
    color: #151515;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:secondary\@lg {
    color: #535353;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:facebook\@lg {
    color: #39579a;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:linkedin\@lg {
    color: #3076b0;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:instagram\@lg {
    color: #bc2a8d;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:twitter\@lg {
    color: #50abf1;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:whatsapp\@lg {
    color: #04c164;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:xing\@lg {
    color: #286366;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:white\@lg {
    color: #fff;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:g1\@lg {
    color: #eee;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:g2\@lg {
    color: #ccc;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:g3\@lg {
    color: #aaa;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:g4\@lg {
    color: #888;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:g5\@lg {
    color: #666;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:g6\@lg {
    color: #444;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:g7\@lg {
    color: #333;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:black\@lg {
    color: #000;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:positive\@lg {
    color: #060;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:caution\@lg {
    color: #f5ce2a;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:negative\@lg {
    color: #be2c00;
  }
}

@media screen and (min-width: 1100px) {
  .u-color-c\:neutral\@lg {
    color: #ccc;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:brand\@xl {
    color: #002157;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:primary\@xl {
    color: #151515;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:secondary\@xl {
    color: #535353;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:facebook\@xl {
    color: #39579a;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:linkedin\@xl {
    color: #3076b0;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:instagram\@xl {
    color: #bc2a8d;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:twitter\@xl {
    color: #50abf1;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:whatsapp\@xl {
    color: #04c164;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:xing\@xl {
    color: #286366;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:white\@xl {
    color: #fff;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:g1\@xl {
    color: #eee;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:g2\@xl {
    color: #ccc;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:g3\@xl {
    color: #aaa;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:g4\@xl {
    color: #888;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:g5\@xl {
    color: #666;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:g6\@xl {
    color: #444;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:g7\@xl {
    color: #333;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:black\@xl {
    color: #000;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:positive\@xl {
    color: #060;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:caution\@xl {
    color: #f5ce2a;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:negative\@xl {
    color: #be2c00;
  }
}

@media screen and (min-width: 1300px) {
  .u-color-c\:neutral\@xl {
    color: #ccc;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:brand\@xxl {
    color: #002157;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:primary\@xxl {
    color: #151515;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:secondary\@xxl {
    color: #535353;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:facebook\@xxl {
    color: #39579a;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:linkedin\@xxl {
    color: #3076b0;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:instagram\@xxl {
    color: #bc2a8d;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:twitter\@xxl {
    color: #50abf1;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:whatsapp\@xxl {
    color: #04c164;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:xing\@xxl {
    color: #286366;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:white\@xxl {
    color: #fff;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:g1\@xxl {
    color: #eee;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:g2\@xxl {
    color: #ccc;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:g3\@xxl {
    color: #aaa;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:g4\@xxl {
    color: #888;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:g5\@xxl {
    color: #666;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:g6\@xxl {
    color: #444;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:g7\@xxl {
    color: #333;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:black\@xxl {
    color: #000;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:positive\@xxl {
    color: #060;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:caution\@xxl {
    color: #f5ce2a;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:negative\@xxl {
    color: #be2c00;
  }
}

@media screen and (min-width: 1700px) {
  .u-color-c\:neutral\@xxl {
    color: #ccc;
  }
}

.u-reset-button {
  background: none;
  border: 0;
  color: inherit;
  cursor: default;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  text-align: left;
  text-transform: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.u-reset-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.h-text-truncate {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.u-typo\:s {
  font-size: 0.75019rem;
  line-height: 1.3;
}

.u-typo\:m,
body {
  font-size: 1rem;
  line-height: 1.3;
}

.u-typo\:l {
  font-size: 1.333rem;
  line-height: 1.2;
}

.u-typo\:xl {
  font-size: 1.77689rem;
  line-height: 1.2;
}

.u-typo\:xxl {
  font-size: 2.36859rem;
  line-height: 1.2;
}

@media screen and (min-width: 500px) {
  .u-typo\:s\@xs {
    font-size: 0.75019rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 500px) {
  .u-typo\:m\@xs {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 500px) {
  .u-typo\:l\@xs {
    font-size: 1.333rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 500px) {
  .u-typo\:xl\@xs {
    font-size: 1.77689rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 500px) {
  .u-typo\:xxl\@xs {
    font-size: 2.36859rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 700px) {
  .u-typo\:s\@sm {
    font-size: 0.75019rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 700px) {
  .u-typo\:m\@sm {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 700px) {
  .u-typo\:l\@sm {
    font-size: 1.333rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 700px) {
  .u-typo\:xl\@sm {
    font-size: 1.77689rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 700px) {
  .u-typo\:xxl\@sm {
    font-size: 2.36859rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 900px) {
  .u-typo\:s\@md {
    font-size: 0.75019rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 900px) {
  .u-typo\:m\@md {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 900px) {
  .u-typo\:l\@md {
    font-size: 1.333rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 900px) {
  .u-typo\:xl\@md {
    font-size: 1.77689rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 900px) {
  .u-typo\:xxl\@md {
    font-size: 2.36859rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1100px) {
  .u-typo\:s\@lg {
    font-size: 0.75019rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 1100px) {
  .u-typo\:m\@lg {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 1100px) {
  .u-typo\:l\@lg {
    font-size: 1.333rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1100px) {
  .u-typo\:xl\@lg {
    font-size: 1.77689rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1100px) {
  .u-typo\:xxl\@lg {
    font-size: 2.36859rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1300px) {
  .u-typo\:s\@xl {
    font-size: 0.75019rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 1300px) {
  .u-typo\:m\@xl {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 1300px) {
  .u-typo\:l\@xl {
    font-size: 1.333rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1300px) {
  .u-typo\:xl\@xl {
    font-size: 1.77689rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1300px) {
  .u-typo\:xxl\@xl {
    font-size: 2.36859rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1700px) {
  .u-typo\:s\@xxl {
    font-size: 0.75019rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 1700px) {
  .u-typo\:m\@xxl {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 1700px) {
  .u-typo\:l\@xxl {
    font-size: 1.333rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1700px) {
  .u-typo\:xl\@xxl {
    font-size: 1.77689rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1700px) {
  .u-typo\:xxl\@xxl {
    font-size: 2.36859rem;
    line-height: 1.2;
  }
}

/* ==========================================================================
   Functions and Mixins
   ========================================================================== */
/**
 * Themes
 * http://sassmeister.com/gist/e99b7a8c01ef87d0dff8
 *
 * usage:'@include theme() {
 *  color: $t-primary;
 * }'
 */
/* ==========================================================================
   Generic stuff (e.g. box-sizing, reset-css)
   ========================================================================== */
/* ==========================================================================
   Font File Declaration (@font-face)
   ========================================================================== */
@font-face {
  font-family: "SourceSansProRegular";
  src: url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-regular.eot?") format("eot"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-regular.ttf") format("truetype"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-regular.woff") format("woff"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "SourceSansProSemibold";
  src: url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-600.eot?") format("eot"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-600.ttf") format("truetype"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-600.woff") format("woff"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/source-sans-pro-v21-latin-ext_latin/source-sans-pro-v21-latin-ext_latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "RobotoRegular";
  src: url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-regular.eot?") format("eot"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-regular.svg#RobotoRegular") format("svg"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-regular.ttf") format("truetype"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-regular.woff") format("woff"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-regular.woff2") format("woff2");
}

@font-face {
  font-family: "RobotoBold";
  src: url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-bold.eot?") format("eot"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-bold.svg#RobotoBold") format("svg"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-bold.ttf") format("truetype"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-bold.woff") format("woff"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto/roboto-bold.woff2") format("woff2");
}

@font-face {
  font-family: "RobotoSlabBold";
  src: url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto-slab/roboto-slab-bold.eot?") format("eot"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto-slab/roboto-slab-bold.svg#RobotoSlabBold") format("svg"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto-slab/roboto-slab-bold.ttf") format("truetype"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto-slab/roboto-slab-bold.woff") format("woff"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/roboto-slab/roboto-slab-bold.woff2") format("woff2");
}

@font-face {
  font-family: "PoppinsSemiBold";
  src: url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/poppins/poppins-semi-bold.eot?") format("eot"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/poppins/poppins-semi-bold.svg#PoppinsSemiBold") format("svg"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/poppins/poppins-semi-bold.ttf") format("truetype"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/poppins/poppins-semi-bold.woff") format("woff"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/poppins/poppins-semi-bold.woff2") format("woff2");
}

@font-face {
  font-family: "IconFont";
  src: url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/icon-font/icon-font.eot?") format("eot"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/icon-font/icon-font.svg#IconFont") format("svg"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/icon-font/icon-font.ttf") format("truetype"), url("/typo3conf/ext/ihkoms_sitepackage/Resources/Public/Frontend/_Default/fonts/icon-font/icon-font.woff") format("woff");
}

/* ==========================================================================
   Breakpoint Match with Javascript with 'font-family-hack'
        IMPORTANT: every breakpoint is used in order to control the sorting
        of Media Queries when we use a "Combine Media Queries" Tool (this
        will be the first "hit" for the Tool and is therefore the leading
        sorting/order!
   ========================================================================== */
html {
  font-family: 'xxs';
}

@media screen and (min-width: 500px) {
  html {
    font-family: 'xs';
  }
}

@media screen and (min-width: 700px) {
  html {
    font-family: 'sm';
  }
}

@media screen and (min-width: 900px) {
  html {
    font-family: 'md';
  }
}

@media screen and (min-width: 1100px) {
  html {
    font-family: 'lg';
  }
}

@media screen and (min-width: 1300px) {
  html {
    font-family: 'xl';
  }
}

@media screen and (min-width: 1700px) {
  html {
    font-family: 'xxl';
  }
}

body:after {
  content: 'xxs';
  display: none;
}

@media screen and (min-width: 500px) {
  body:after {
    content: 'xs';
  }
}

@media screen and (min-width: 700px) {
  body:after {
    content: 'sm';
  }
}

@media screen and (min-width: 900px) {
  body:after {
    content: 'md';
  }
}

@media screen and (min-width: 1100px) {
  body:after {
    content: 'lg';
  }
}

@media screen and (min-width: 1300px) {
  body:after {
    content: 'xl';
  }
}

@media screen and (min-width: 1700px) {
  body:after {
    content: 'xxl';
  }
}

/* ==========================================================================
   Bare and unclassed HTML elements (e.g. image, a, h1)
   ========================================================================== */
/* ==========================================================================
   Configuration for SCSS-Framework
   ========================================================================== */
/* ==========================================================================
   Configuration within the project files
   ========================================================================== */
/* ==========================================================================
   Font Variables
   ========================================================================== */
/* ==========================================================================
   Icons
   ========================================================================== */
/* ==========================================================================
   Spacing Variables
   ========================================================================== */
/* ==========================================================================
   Theme Variables
   ========================================================================== */
/**
 * Themes
 * http://sassmeister.com/gist/e99b7a8c01ef87d0dff8
 *
 * usage:'@include theme() {
 *  color: $t-primary;
 * }'
 */
/* ==========================================================================
   Base Styles (e.g. Unclassed HTML Elements)
   ========================================================================== */
body {
  color: #151515;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /**
     * Base Font Family
     */
  /**
     * Theme-1
     */
}

body.theme-1, body.theme-2, body.theme-3, body.theme-4, body.theme-5, body.theme-6, body.theme-7, body.theme-dark {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

body.theme-dark {
  background-color: #000;
  color: #fff;
}

body.theme-dark .u-color-bg\:white {
  background-color: #000;
}

body.theme-goffit {
  font-style: normal;
  font-family: "RobotoRegular", Arial, sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 1100px) {
  body.theme-goffit {
    font-size: .889rem;
  }
}

@media screen and (min-width: 1300px) {
  body.theme-goffit {
    font-size: .9rem;
  }
}

.theme-1 body {
  color: #002157;
}

a {
  text-decoration: underline;
}

.theme-1 a {
  color: #002157;
}

.theme-2 a {
  color: #c73400;
}

.theme-3 a {
  color: #0e6260;
}

.theme-4 a {
  color: #1e9acb;
}

.theme-5 a {
  color: #306b34;
}

.theme-6 a {
  color: #2d3e43;
}

.theme-7 a {
  color: #702e8e;
}

.theme-dark a {
  color: #62bebc;
}

.theme-goffit a {
  color: #127371;
}

a:hover, a:focus {
  text-decoration: none;
}

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

a:before, a:after,
a i:before,
a i:after {
  display: inline-block;
  text-decoration: underline;
}

a:before, a:after, a:hover:before, a:hover:after,
a i:before,
a i:after,
a i:hover:before,
a i:hover:after {
  text-decoration: none;
}

i,
cite,
address,
em,
dfn {
  font-style: italic;
}

hr {
  border: 0;
  border-bottom: 1px solid;
  margin: 0 0 1em;
}

.theme-1 hr {
  border-color: #c2d2e3;
}

.theme-2 hr {
  border-color: #ebccc1;
}

.theme-3 hr {
  border-color: #aeddda;
}

.theme-4 hr {
  border-color: #8fcae2;
}

.theme-5 hr {
  border-color: #83af86;
}

.theme-6 hr {
  border-color: #607176;
}

.theme-7 hr {
  border-color: #d6c9dd;
}

.theme-dark hr {
  border-color: #62bebc;
}

.theme-goffit hr {
  border-color: #dbeaea;
}

.theme-1 h1, .theme-1
h2, .theme-1
h3, .theme-1
h4 {
  color: #002157;
}

.theme-2 h1, .theme-2
h2, .theme-2
h3, .theme-2
h4 {
  color: #c73400;
}

.theme-3 h1, .theme-3
h2, .theme-3
h3, .theme-3
h4 {
  color: #0e6260;
}

.theme-4 h1, .theme-4
h2, .theme-4
h3, .theme-4
h4 {
  color: #1e9acb;
}

.theme-5 h1, .theme-5
h2, .theme-5
h3, .theme-5
h4 {
  color: #306b34;
}

.theme-6 h1, .theme-6
h2, .theme-6
h3, .theme-6
h4 {
  color: #2d3e43;
}

.theme-7 h1, .theme-7
h2, .theme-7
h3, .theme-7
h4 {
  color: #702e8e;
}

.theme-dark h1, .theme-dark
h2, .theme-dark
h3, .theme-dark
h4 {
  color: #62bebc;
}

.mfp-container h1, .mfp-container
h2, .mfp-container
h3, .mfp-container
h4 {
  color: #fff !important;
}

.theme-goffit h3, .theme-goffit
h4 {
  color: #127371;
}

iframe {
  width: 100% !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

object {
  pointer-events: none;
}

p {
  margin-bottom: 1em;
}

.theme-1 strong, .theme-1
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 strong, .theme-2
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 strong, .theme-3
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 strong, .theme-4
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 strong, .theme-5
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 strong, .theme-6
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 strong, .theme-7
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark strong, .theme-dark
b {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-goffit strong, .theme-goffit
b {
  font-style: normal;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 400;
}

sub,
sup {
  /* Specified in % so that the sup/sup is the
       right size relative to the surrounding text */
  font-size: 75%;
  /* Zero out the line-height so that it doesn't
       interfere with the positioning that follows */
  line-height: 0;
  /* Where the magic happens: makes all browsers position
       the sup/sup properly, relative to the surrounding text */
  position: relative;
  /* Note that if you're using Eric Meyer's reset.css, this
       is already set and you can remove this rule */
  vertical-align: baseline;
}

sup {
  /* Move the superscripted text up */
  top: -.5em;
}

sub {
  /* Move the subscripted text down, but only
       half as far down as the superscript moved up */
  bottom: -.25em;
}

/* ==========================================================================
   Styling for non-cosmetic design patterns (e.g. wrapper, layouts, sections)
   ========================================================================== */
/* ==========================================================================
   Configuration for SCSS-Framework
   ========================================================================== */
/* ==========================================================================
   Configuration within the project files
   ========================================================================== */
/* ==========================================================================
   Font Variables
   ========================================================================== */
/* ==========================================================================
   Icons
   ========================================================================== */
/* ==========================================================================
   Spacing Variables
   ========================================================================== */
/* ==========================================================================
   Theme Variables
   ========================================================================== */
/**
 * Themes
 * http://sassmeister.com/gist/e99b7a8c01ef87d0dff8
 *
 * usage:'@include theme() {
 *  color: $t-primary;
 * }'
 */
/* ==========================================================================
   Styling for non-cosmetic design patterns (e.g. wrapper, layouts, sections)
   ========================================================================== */
/* ==========================================================================
   Content Area + Content Items within
   ========================================================================== */
/* ==========================================================================
   Icons
   ========================================================================== */
.o-icons {
  /**
     * Icon Font
     */
  /**
     * Icons
     */
  /**
     * Themes
     */
}

.o-icons:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'IconFont' !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.o-icons--arrow-left:before {
  content: "";
}

.o-icons--arrow-right:before {
  content: "";
}

.o-icons--arrow2-down:before {
  content: "";
}

.o-icons--arrow2-left:before {
  content: "";
}

.o-icons--arrow2-right:before {
  content: "";
}

.o-icons--arrow2-up:before {
  content: "";
}

.o-icons--caution:before {
  content: "";
}

.o-icons--check:before {
  content: "";
}

.o-icons--close:before {
  content: "";
}

.o-icons--download:before {
  content: "";
}

.o-icons--error:before {
  content: "";
}

.o-icons--extern:before {
  content: "";
}

.o-icons--facebook:before {
  content: "";
}

.o-icons--faq:before {
  content: "";
}

.o-icons--file:before {
  content: "";
}

.o-icons--info:before {
  content: "";
}

.o-icons--instagram:before {
  content: "";
}

.o-icons--linkedin:before {
  content: "";
}

.o-icons--mail:before {
  content: "";
}

.o-icons--phone:before {
  content: "";
}

.o-icons--pin:before {
  content: "";
}

.o-icons--print:before {
  content: "";
}

.o-icons--quote:before {
  content: "";
}

.o-icons--twitter:before {
  content: "";
}

.o-icons--whatsapp:before {
  content: "";
}

.o-icons--xing:before {
  content: "";
}

.theme-1 .o-icons {
  color: #002157;
}

.theme-2 .o-icons {
  color: #c73400;
}

.theme-3 .o-icons {
  color: #0e6260;
}

.theme-4 .o-icons {
  color: #1e9acb;
}

.theme-5 .o-icons {
  color: #306b34;
}

.theme-6 .o-icons {
  color: #2d3e43;
}

.theme-7 .o-icons {
  color: #702e8e;
}

.theme-dark .o-icons {
  color: #62bebc;
}

.theme-goffit .o-icons {
  color: #127371;
}

/* ==========================================================================
   Specific UI components (e.g. c-stage, c-text-media)
   ========================================================================== */
/* ==========================================================================
   Configuration for SCSS-Framework
   ========================================================================== */
/* ==========================================================================
   Configuration within the project files
   ========================================================================== */
/* ==========================================================================
   Font Variables
   ========================================================================== */
/* ==========================================================================
   Icons
   ========================================================================== */
/* ==========================================================================
   Spacing Variables
   ========================================================================== */
/* ==========================================================================
   Theme Variables
   ========================================================================== */
/**
 * Themes
 * http://sassmeister.com/gist/e99b7a8c01ef87d0dff8
 *
 * usage:'@include theme() {
 *  color: $t-primary;
 * }'
 */
/* ==========================================================================
   Specific UI components (e.g. c-stage, c-text-media)
   ========================================================================== */
/**
 * Base (Basic elements, styles, etc.)
 */
/* ==========================================================================
   App (separates "page" from "off canvas" content)
   ========================================================================== */
.c-app {
  /**
     * Off Canvas Area
     */
  /**
     * Main Area
     */
}

.c-app--page-title-hidden .c-page-title {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.c-app__off-canvas {
  background-color: #eee;
  height: 100vh;
  left: 0;
  max-width: 100%;
  position: fixed;
  top: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  width: 260px;
  z-index: 20;
}

@media screen and (min-width: 340px) {
  .c-app__off-canvas {
    width: 300px;
  }
}

@media screen and (min-width: 1700px) {
  .c-app__off-canvas {
    width: 400px;
  }
}

.theme-1 .c-app__off-canvas {
  background-color: #e4ebf0;
}

.theme-2 .c-app__off-canvas {
  background-color: #fff2e6;
}

.theme-3 .c-app__off-canvas {
  background-color: #e1f4f3;
}

.theme-4 .c-app__off-canvas {
  background-color: #d5e7ef;
}

.theme-5 .c-app__off-canvas {
  background-color: #dbeddc;
}

.theme-6 .c-app__off-canvas {
  background-color: #cddce0;
}

.theme-7 .c-app__off-canvas {
  background-color: #ece4f0;
}

.theme-dark .c-app__off-canvas {
  background-color: #232323;
}

.theme-goffit .c-app__off-canvas {
  background-color: #dbeaea;
}

.menu-is-open .c-app__off-canvas {
  -webkit-box-shadow: 6px 0 20px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 6px 0 20px 1px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 1300px) {
  .menu-is-open .c-app__off-canvas {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.c-app__main {
  -webkit-transition: margin-left 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: margin-left 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: margin-left 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

@media screen and (min-width: 1300px) {
  .menu-is-open .c-app__main {
    margin-left: 300px;
  }
}

@media screen and (min-width: 1700px) {
  .menu-is-open .c-app__main {
    margin-left: 400px;
  }
}

/* ==========================================================================
    Burger Sign
    ========================================================================== */
.c-burger {
  display: block;
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  width: 24px;
}

.c-burger__line {
  background-color: #888;
  display: block;
  height: 4px;
  position: absolute;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 24px;
}

.c-burger__line--top {
  left: 0;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0) rotate(0);
          transform: translate3d(0, 0, 0) rotate(0);
}

.menu-is-open .c-burger__line--top {
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
          transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

.c-burger__line--center {
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.menu-is-open .c-burger__line--center {
  opacity: 0;
}

.c-burger__line--bottom {
  bottom: 0;
  left: 0;
  top: auto;
  -webkit-transform: translate3d(0, 0, 0) rotate(0);
          transform: translate3d(0, 0, 0) rotate(0);
}

.menu-is-open .c-burger__line--bottom {
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, 50%, 0) rotate(-45deg);
          transform: translate3d(-50%, 50%, 0) rotate(-45deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.c-button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  line-height: 2.75;
  padding: 0 1.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: inherit;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  /**
     * Modifier
     */
  /**
     * Circle
     */
  /**
     * Icon only
     */
  /**
     * Disabled
     */
  /**
     * Sizing
     */
}

.theme-goffit .c-button {
  font-size: 18px;
  font-style: normal;
  font-family: "PoppinsSemiBold", Arial, sans-serif;
  font-weight: 400;
}

.c-button:hover, .c-button:active {
  outline: none;
}

.c-button:hover, .c-button:focus {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

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

.c-button--primary {
  background-color: #151515;
  border: 1px solid #151515;
  color: #fff;
}

.c-button--primary:hover, .c-button--primary:focus {
  background-color: #fff;
  border-color: #151515;
  color: #151515;
}

.theme-1 .c-button--primary {
  background-color: #002157;
  border-color: #002157;
  color: #fff;
}

.theme-1 .c-button--primary:hover, .theme-1 .c-button--primary:focus {
  background-color: #fff;
  border-color: #002157;
  color: #002157;
}

.theme-2 .c-button--primary {
  background-color: #c73400;
  border-color: #c73400;
  color: #fff;
}

.theme-2 .c-button--primary:hover, .theme-2 .c-button--primary:focus {
  background-color: #fff;
  border-color: #c73400;
  color: #c73400;
}

.theme-3 .c-button--primary {
  background-color: #0e6260;
  border-color: #0e6260;
  color: #fff;
}

.theme-3 .c-button--primary:hover, .theme-3 .c-button--primary:focus {
  background-color: #fff;
  border-color: #0e6260;
  color: #0e6260;
}

.theme-4 .c-button--primary {
  background-color: #1e9acb;
  border-color: #1e9acb;
  color: #fff;
}

.theme-4 .c-button--primary:hover, .theme-4 .c-button--primary:focus {
  background-color: #fff;
  border-color: #1e9acb;
  color: #1e9acb;
}

.theme-5 .c-button--primary {
  background-color: #306b34;
  border-color: #306b34;
  color: #fff;
}

.theme-5 .c-button--primary:hover, .theme-5 .c-button--primary:focus {
  background-color: #fff;
  border-color: #306b34;
  color: #306b34;
}

.theme-6 .c-button--primary {
  background-color: #2d3e43;
  border-color: #2d3e43;
  color: #fff;
}

.theme-6 .c-button--primary:hover, .theme-6 .c-button--primary:focus {
  background-color: #fff;
  border-color: #2d3e43;
  color: #2d3e43;
}

.theme-7 .c-button--primary {
  background-color: #702e8e;
  border-color: #702e8e;
  color: #fff;
}

.theme-7 .c-button--primary:hover, .theme-7 .c-button--primary:focus {
  background-color: #fff;
  border-color: #702e8e;
  color: #702e8e;
}

.theme-dark .c-button--primary {
  background-color: #62bebc;
  border-color: #62bebc;
  color: #fff;
}

.theme-dark .c-button--primary:hover, .theme-dark .c-button--primary:focus {
  background-color: #fff;
  border-color: #62bebc;
  color: #62bebc;
}

.theme-dark .c-button--primary {
  background-color: #62bebc;
  border: 1px solid #62bebc;
  color: #000;
}

.theme-dark .c-button--primary:hover, .theme-dark .c-button--primary:focus {
  background-color: #45a8a5;
  border-color: #45a8a5;
  color: #000;
}

.theme-goffit .c-button--primary {
  background-color: #127371;
  border-color: #127371;
  color: #fff;
}

.theme-goffit .c-button--primary:hover, .theme-goffit .c-button--primary:focus {
  background-color: #fff;
  border-color: #127371;
  color: #127371;
}

.c-button--secondary {
  background-color: #fff;
  border: 1px solid #fff;
  color: #151515;
}

.theme-1 .c-button--secondary {
  color: #002157;
}

.theme-2 .c-button--secondary {
  color: #c73400;
}

.theme-3 .c-button--secondary {
  color: #0e6260;
}

.theme-4 .c-button--secondary {
  color: #1e9acb;
}

.theme-5 .c-button--secondary {
  color: #306b34;
}

.theme-6 .c-button--secondary {
  color: #2d3e43;
}

.theme-7 .c-button--secondary {
  color: #702e8e;
}

.theme-dark .c-button--secondary {
  color: #62bebc;
}

.theme-dark .c-button--secondary {
  background-color: #932f7d;
  border: 1px solid #932f7d;
  color: #fff;
}

.theme-dark .c-button--secondary:hover, .theme-dark .c-button--secondary:focus {
  background-color: #80296d;
  border-color: #80296d;
  color: #fff;
}

.theme-goffit .c-button--secondary {
  color: #127371;
}

.c-button--ghost {
  background-color: transparent;
  border: 1px solid #151515;
  color: #151515;
}

.theme-1 .c-button--ghost {
  border-color: #002157;
  color: #002157;
}

.theme-2 .c-button--ghost {
  border-color: #c73400;
  color: #c73400;
}

.theme-3 .c-button--ghost {
  border-color: #0e6260;
  color: #0e6260;
}

.theme-4 .c-button--ghost {
  border-color: #1e9acb;
  color: #1e9acb;
}

.theme-5 .c-button--ghost {
  border-color: #306b34;
  color: #306b34;
}

.theme-6 .c-button--ghost {
  border-color: #2d3e43;
  color: #2d3e43;
}

.theme-7 .c-button--ghost {
  border-color: #702e8e;
  color: #702e8e;
}

.theme-dark .c-button--ghost {
  border-color: #62bebc;
  color: #62bebc;
}

.theme-goffit .c-button--ghost {
  border-color: #127371;
  color: #127371;
}

.c-button--primary, .c-button--secondary, .c-button--ghost {
  border-radius: 4px;
}

.theme-goffit .c-button--primary, .theme-goffit .c-button--secondary, .theme-goffit .c-button--ghost {
  border-radius: 0;
  border-width: 2px;
}

.theme-goffit .c-button--primary:not(.c-button--icon):not(.c-scroll-next):not(.c-scroll-top), .theme-goffit .c-button--secondary:not(.c-button--icon):not(.c-scroll-next):not(.c-scroll-top), .theme-goffit .c-button--ghost:not(.c-button--icon):not(.c-scroll-next):not(.c-scroll-top) {
  line-height: 3.6;
}

.c-button--circle {
  border-radius: 50% !important;
}

.c-button--icon {
  height: 3rem;
  line-height: 3;
  overflow: hidden;
  padding: 0;
  width: 3rem;
}

.c-button[disabled], .c-button[disable='true'], .c-button.disabled {
  background: #fff;
  border: 1px solid #ccc;
  color: #ccc;
  pointer-events: none;
}

.theme-1 .c-button[disabled], .theme-1 .c-button[disable='true'], .theme-1 .c-button.disabled {
  border-color: #c2d2e3;
  color: #c2d2e3;
}

.theme-2 .c-button[disabled], .theme-2 .c-button[disable='true'], .theme-2 .c-button.disabled {
  border-color: #ebccc1;
  color: #ebccc1;
}

.theme-3 .c-button[disabled], .theme-3 .c-button[disable='true'], .theme-3 .c-button.disabled {
  border-color: #aeddda;
  color: #aeddda;
}

.theme-4 .c-button[disabled], .theme-4 .c-button[disable='true'], .theme-4 .c-button.disabled {
  border-color: #8fcae2;
  color: #8fcae2;
}

.theme-5 .c-button[disabled], .theme-5 .c-button[disable='true'], .theme-5 .c-button.disabled {
  border-color: #83af86;
  color: #83af86;
}

.theme-6 .c-button[disabled], .theme-6 .c-button[disable='true'], .theme-6 .c-button.disabled {
  border-color: #607176;
  color: #607176;
}

.theme-7 .c-button[disabled], .theme-7 .c-button[disable='true'], .theme-7 .c-button.disabled {
  border-color: #d6c9dd;
  color: #d6c9dd;
}

.theme-dark .c-button[disabled], .theme-dark .c-button[disable='true'], .theme-dark .c-button.disabled {
  border-color: #62bebc;
  color: #62bebc;
}

.c-button--large {
  line-height: 3.5;
  padding-left: 3em;
  padding-right: 3em !important;
}

/**
 * Group
 */
.c-button-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.c-button-group--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-button-group--right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-button-group .c-button {
  margin-bottom: 1rem;
}

.c-button-group--left .c-button {
  margin-right: 1rem;
}

.c-button-group--left .c-button:last-of-type {
  margin-right: 0;
}

.c-button-group--right .c-button + .c-button {
  margin-left: 1rem;
}

.c-button-group--center .c-button {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/**
 * Scroll Buttons
 */
.c-scroll-next,
.c-scroll-top {
  font-size: 12px !important;
  line-height: 1;
  height: 50px;
  min-width: 50px;
  text-transform: uppercase;
  white-space: normal;
  z-index: 1;
}

@media screen and (min-width: 0) and (max-width: 1100px) {
  .c-scroll-next,
  .c-scroll-top {
    display: none !important;
  }
}

.c-scroll-next:before,
.c-scroll-top:before {
  font-size: 16px;
  -webkit-transform: translate(-50%, 0) !important;
      -ms-transform: translate(-50%, 0) !important;
          transform: translate(-50%, 0) !important;
}

.c-button-group .c-scroll-next, .c-button-group
.c-scroll-top {
  bottom: 10px;
  margin: 0 !important;
  position: fixed;
}

.c-scroll-top {
  padding: 15px 0 0;
}

.c-scroll-top:before {
  top: 6px !important;
}

.c-button-group .c-scroll-top {
  bottom: 10px;
  display: none;
}

/* todo: if ordered scroll functionality, otherwise remove
.c-scroll-next {
    padding: 0 0 15px;

    &:before {
        top: 26px !important;
    }
}
*/
/* ==========================================================================
   Copyright
   ========================================================================== */
.c-copyright {
  background-color: #888;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: .2em;
  position: absolute;
}

.theme-1 .c-copyright {
  background-color: rgba(0, 33, 87, 0.8);
}

.theme-2 .c-copyright {
  background-color: rgba(199, 52, 0, 0.8);
}

.theme-3 .c-copyright {
  background-color: rgba(14, 98, 96, 0.8);
}

.theme-4 .c-copyright {
  background-color: rgba(30, 154, 203, 0.8);
}

.theme-5 .c-copyright {
  background-color: rgba(48, 107, 52, 0.8);
}

.theme-6 .c-copyright {
  background-color: rgba(45, 62, 67, 0.8);
}

.theme-7 .c-copyright {
  background-color: rgba(112, 46, 142, 0.8);
}

.theme-dark .c-copyright {
  background-color: rgba(52, 101, 100, 0.8);
}

.theme-dark .c-copyright {
  background-color: #333333;
}

.theme-goffit .c-copyright {
  background-color: rgba(18, 115, 113, 0.8);
}

/* ==========================================================================
   Counter
   ========================================================================== */
.c-counter__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.c-counter__col {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 .8rem;
  position: relative;
}

@media screen and (min-width: 700px) {
  .c-counter__col {
    margin-right: .2rem;
    padding: .5rem .8rem;
  }
}

.theme-1 .c-counter__col {
  background-color: #c2d2e3;
}

.theme-2 .c-counter__col {
  background-color: #ebccc1;
}

.theme-3 .c-counter__col {
  background-color: #aeddda;
}

.theme-4 .c-counter__col {
  background-color: #8fcae2;
}

.theme-5 .c-counter__col {
  background-color: #83af86;
}

.theme-6 .c-counter__col {
  background-color: #607176;
}

.theme-7 .c-counter__col {
  background-color: #d6c9dd;
}

.theme-dark .c-counter__col {
  background-color: #62bebc;
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-counter__col:not(:last-of-type):before {
    background-color: #eee;
    content: '';
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
  }
}

.c-counter__number {
  font-size: 30px;
  line-height: 1;
}

@media screen and (min-width: 700px) {
  .c-counter__number {
    font-size: 40px;
  }
}

@media screen and (min-width: 1700px) {
  .c-counter__number {
    font-size: 50px;
  }
}

.c-counter__text {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 700px) {
  .c-counter__text {
    font-size: 15px;
  }
}

.theme-1 .c-counter {
  color: #002157;
}

.theme-dark .c-counter {
  color: #000;
}

.c-counter .no-js {
  display: none;
}

/* ==========================================================================
   Date
   ========================================================================== */
.c-date__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.c-date__col {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 .8rem;
  position: relative;
}

.c-date__col:not(:last-of-type):before {
  background-color: #eee;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}

.c-date__number {
  font-size: 30px;
  line-height: 1;
}

@media screen and (min-width: 700px) {
  .c-date__number {
    font-size: 40px;
  }
}

@media screen and (min-width: 1700px) {
  .c-date__number {
    font-size: 3rem;
  }
}

.c-date__text {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 700px) {
  .c-date__text {
    font-size: 15px;
  }
}

.theme-1 .c-date {
  color: #002157;
}

.theme-dark .c-date {
  color: #000;
}

/* ==========================================================================
    Download
    ========================================================================== */
.c-download {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.c-download__icon {
  margin-right: 1rem;
  margin-top: .2rem;
}

.c-download i {
  font-size: 2rem;
}

.c-download__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.c-download__meta .c-link,
.c-download__meta .c-download__data {
  margin-bottom: .25rem;
}

.c-download__meta .c-link {
  margin-right: .5rem;
}

.c-download__data {
  display: inline-block;
}

.c-download__data--file:before, .c-download__data--file:after {
  content: '|';
  display: inline-block;
  margin-right: .5rem;
}

.c-download__data--file:after {
  content: '-';
  margin-left: .5rem;
}

.c-download__data--size {
  color: #535353;
}

.theme-dark .c-download__data--size {
  color: #fff;
}

/* ==========================================================================
   Dropdown
   ========================================================================== */
.c-dropdown__content {
  display: none;
}

.no-js .c-dropdown__content {
  display: block;
}

.c-dropdown-toggle:before {
  -webkit-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
  -o-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
  transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

.c-dropdown-toggle[aria-expanded='true']:before {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.c-dropdown-toggle[aria-expanded='true'] + .c-dropdown__content {
  display: block;
}

/* ==========================================================================
   Figure
   ========================================================================== */
.c-figure__inner {
  overflow: hidden;
  position: relative;
}

.c-figure__figcaption {
  margin-top: 1em;
}

.c-figure__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.theme-1 .c-figure__overlay {
  background-color: rgba(0, 33, 87, 0.8);
}

.theme-2 .c-figure__overlay {
  background-color: rgba(199, 52, 0, 0.8);
}

.theme-3 .c-figure__overlay {
  background-color: rgba(14, 98, 96, 0.8);
}

.theme-4 .c-figure__overlay {
  background-color: rgba(30, 154, 203, 0.8);
}

.theme-5 .c-figure__overlay {
  background-color: rgba(48, 107, 52, 0.8);
}

.theme-6 .c-figure__overlay {
  background-color: rgba(45, 62, 67, 0.8);
}

.theme-7 .c-figure__overlay {
  background-color: rgba(112, 46, 142, 0.8);
}

.theme-dark .c-figure__overlay {
  background-color: rgba(52, 101, 100, 0.8);
}

.theme-goffit .c-figure__overlay {
  background-color: rgba(18, 115, 113, 0.8);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.c-footer {
  padding-top: 3rem;
  position: relative;
}

@media screen and (min-width: 500px) {
  .theme-goffit .c-footer {
    padding-bottom: 0;
  }
  .theme-goffit .c-footer:before {
    background-color: #fff;
    content: '';
    height: 2rem;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: skew(0deg, -1deg) translateY(-1rem);
        -ms-transform: skew(0deg, -1deg) translateY(-1rem);
            transform: skew(0deg, -1deg) translateY(-1rem);
    width: 100%;
  }
}

@media screen and (min-width: 500px) and (min-width: 2300px) {
  .theme-goffit .c-footer:before {
    display: none;
  }
}

@media screen and (min-width: 500px) {
  .theme-goffit .c-footer:before {
    border-top: 1px solid #dbeaea;
  }
}

.theme-1 .c-footer {
  border-top: 1px solid #c2d2e3;
}

.theme-2 .c-footer {
  border-top: 1px solid #ebccc1;
}

.theme-3 .c-footer {
  border-top: 1px solid #aeddda;
}

.theme-4 .c-footer {
  border-top: 1px solid #8fcae2;
}

.theme-5 .c-footer {
  border-top: 1px solid #83af86;
}

.theme-6 .c-footer {
  border-top: 1px solid #607176;
}

.theme-7 .c-footer {
  border-top: 1px solid #d6c9dd;
}

.theme-dark .c-footer {
  border-top: 1px solid #62bebc;
}

.c-footer__row {
  position: relative;
}

.c-footer__row--top {
  display: none;
}

@media screen and (min-width: 1100px) {
  .c-footer__row--top {
    display: block;
  }
}

.c-footer__row--center {
  padding-bottom: 3rem;
}

@media screen and (min-width: 1100px) {
  .c-footer__row--center {
    border-top: 1px solid;
    display: block;
    padding-bottom: .5rem;
    padding-top: .5rem;
  }
  .theme-1 .c-footer__row--center {
    border-color: #c2d2e3;
  }
  .theme-2 .c-footer__row--center {
    border-color: #ebccc1;
  }
  .theme-3 .c-footer__row--center {
    border-color: #aeddda;
  }
  .theme-4 .c-footer__row--center {
    border-color: #8fcae2;
  }
  .theme-5 .c-footer__row--center {
    border-color: #83af86;
  }
  .theme-6 .c-footer__row--center {
    border-color: #607176;
  }
  .theme-7 .c-footer__row--center {
    border-color: #d6c9dd;
  }
  .theme-dark .c-footer__row--center {
    border-color: #62bebc;
  }
  .theme-goffit .c-footer__row--center {
    border: 0;
    padding-bottom: 2rem;
  }
}

.c-footer__row--bottom {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.theme-1 .c-footer__row--bottom {
  background-color: #eaf0f5;
}

.theme-2 .c-footer__row--bottom {
  background-color: #fff8f2;
}

.theme-3 .c-footer__row--bottom {
  background-color: #e1f4f3;
}

.theme-4 .c-footer__row--bottom {
  background-color: #eaf4f8;
}

.theme-5 .c-footer__row--bottom {
  background-color: #eaf5eb;
}

.theme-6 .c-footer__row--bottom {
  background-color: #eaf4f8;
}

.theme-7 .c-footer__row--bottom {
  background-color: #f6f2f8;
}

.theme-dark .c-footer__row--bottom {
  background-color: #1d1d1d;
}

.theme-dark .c-footer__row--bottom {
  background-color: #fff;
}

.theme-goffit .c-footer__row--bottom {
  background-color: #127371;
}

.theme-goffit .c-footer__row--bottom h2,
.theme-goffit .c-footer__row--bottom h3,
.theme-goffit .c-footer__row--bottom h4 {
  color: #fff;
}

@media screen and (min-width: 500px) {
  .theme-goffit .c-footer__row--bottom {
    padding-bottom: 2rem;
  }
  .theme-goffit .c-footer__row--bottom:before {
    background-color: #127371;
    content: '';
    height: 2rem;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: skew(0deg, -1deg) translateY(-1rem);
        -ms-transform: skew(0deg, -1deg) translateY(-1rem);
            transform: skew(0deg, -1deg) translateY(-1rem);
    width: 100%;
  }
}

@media screen and (min-width: 500px) and (min-width: 2300px) {
  .theme-goffit .c-footer__row--bottom:before {
    display: none;
  }
}

/* ==========================================================================
   Form
   ========================================================================== */
.c-form {
  /**
     * Textarea
     */
  /**
     * Select
     */
  /**
     * Checkbox & Radio Button
     */
  /**
     * Messages / Required Text
     */
}

.c-form__fieldset {
  border: 0;
}

.c-form__fieldset + .c-form__fieldset {
  margin-top: 3rem;
}

.c-form__legend {
  margin-bottom: 2rem;
}

.c-form__group {
  margin-bottom: 1rem;
}

.c-form__label,
.c-form__checkfields legend {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.c-form__input-container {
  position: relative;
}

.c-form__input {
  border: 1px solid;
  font-family: inherit;
  font-size: inherit;
  display: block;
  max-width: 100%;
  padding: 0.4rem 0.5rem;
  width: 100%;
}

.c-form__input:not([type='checkbox']), .c-form__input:not([type='radio']) {
  border-radius: 0;
}

.c-form__input:focus {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  outline: none;
}

.c-form__input::-ms-clear {
  display: none;
}

.c-form__icon {
  line-height: 1;
  position: absolute;
  right: .5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-form__icon ~ .c-form__input {
  padding-right: 2rem;
}

.c-form__select-arrow {
  border-bottom: 2px solid;
  border-left: 2px solid;
  height: .6rem;
  pointer-events: none;
  position: absolute;
  right: .5rem;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-100%);
      -ms-transform: rotate(-45deg) translateY(-100%);
          transform: rotate(-45deg) translateY(-100%);
  width: .6rem;
}

.c-form textarea {
  font-family: inherit;
  height: 10rem;
  line-height: inherit;
  width: 100% !important;
}

.c-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #151515;
}

.theme-1 .c-form select {
  color: #002157;
}

.c-form select:hover {
  cursor: pointer;
}

.c-form select::-ms-expand {
  display: none;
}

.c-form select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.c-form__checkfields label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0.25rem;
  padding-left: 1.5rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.c-form__checkfields input {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.c-form__checkfields input + label:before, .c-form__checkfields input + label:after {
  display: inline-block;
  position: absolute;
}

.c-form__checkfields input + label:before {
  border: 1px solid;
  content: '';
  height: 16px;
  left: 0;
  top: .3rem;
  width: 16px;
}

.c-form__checkfields input + label:after {
  content: none;
}

.c-form__checkfields input:checked + label:after {
  content: '';
}

.c-form__checkfields input[type='checkbox'] + label:after {
  height: 5px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  left: 3px;
  top: -webkit-calc(.3rem + 4px);
  top: calc(.3rem + 4px);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 10px;
}

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

.c-form__checkfields input[type='radio'] + label:after {
  height: 8px;
  left: 4px;
  top: -webkit-calc(.3rem + 4px);
  top: calc(.3rem + 4px);
  width: 8px;
}

.c-form__bodytext p:last-child {
  margin-bottom: 0;
}

.c-form .c-form__required,
.c-form .c-form__msg {
  display: inline-block;
}

/* ==========================================================================
   Theme (Colors / Messages / Validation)
   ========================================================================== */
.c-form {
  /**
     * Placeholder
     */
  /**
     * Validation Colors
     */
  /**
     * Input
     */
  /**
     * Select
     */
  /**
     * Checkbox & Radio Button
     */
}

.c-form__legend {
  color: inherit;
}

.c-form__label {
  color: inherit;
}

.c-form ::-webkit-input-placeholder {
  color: #151515;
}

.c-form :-moz-placeholder {
  color: #151515;
}

.c-form ::-moz-placeholder {
  color: #151515;
}

.c-form :-ms-input-placeholder {
  color: #151515;
}

.c-form ::-ms-input-placeholder {
  color: #151515;
}

.c-form ::placeholder {
  color: #151515;
}

.theme-1 .c-form ::-webkit-input-placeholder {
  color: #002157;
}

.theme-1 .c-form :-moz-placeholder {
  color: #002157;
}

.theme-1 .c-form ::-moz-placeholder {
  color: #002157;
}

.theme-1 .c-form :-ms-input-placeholder {
  color: #002157;
}

.theme-1 .c-form ::-ms-input-placeholder {
  color: #002157;
}

.theme-1 .c-form ::placeholder {
  color: #002157;
}

.c-form__group.is-valid .c-form__input,
.c-form__group.is-valid .c-form__msg {
  color: #060;
}

.c-form__group.is-valid .c-form__input {
  border-color: #060;
}

.c-form__group.is-error .c-form__input,
.c-form__group.is-error .c-form__msg {
  color: #be2c00;
}

.c-form__group.is-error .c-form__input,
.c-form__group.is-error .c-form__checkfields input + label:before,
.c-form__group.is-error .c-form__checkfields [type='checkbox'] + label:after {
  border-color: #be2c00;
}

.c-form__group.is-error .c-form__checkfields input + label {
  color: #be2c00;
}

.c-form__group.is-error .c-form__checkfields [type='radio'] + label:after {
  background-color: #be2c00;
}

.c-form__input {
  background-color: #fff;
  border-color: #ccc;
  color: #151515;
}

.theme-1 .c-form__input {
  border-color: #c2d2e3;
}

.theme-2 .c-form__input {
  border-color: #ebccc1;
}

.theme-3 .c-form__input {
  border-color: #aeddda;
}

.theme-4 .c-form__input {
  border-color: #8fcae2;
}

.theme-5 .c-form__input {
  border-color: #83af86;
}

.theme-6 .c-form__input {
  border-color: #607176;
}

.theme-7 .c-form__input {
  border-color: #d6c9dd;
}

.theme-dark .c-form__input {
  border-color: #62bebc;
}

.c-form__input:focus {
  background-color: #fff;
  color: #151515;
}

.c-form__input:focus::-webkit-input-placeholder {
  color: #151515;
}

.c-form__input:focus:-moz-placeholder {
  color: #151515;
}

.c-form__input:focus::-moz-placeholder {
  color: #151515;
}

.c-form__input:focus:-ms-input-placeholder {
  color: #151515;
}

.c-form__input:focus::-ms-input-placeholder {
  color: #151515;
}

.c-form__input:focus::placeholder {
  color: #151515;
}

.theme-1 .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-1 .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-1 .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-1 .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-1 .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-1 .c-form__input:focus::placeholder {
  color: #002157;
}

.theme-2 .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-2 .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-2 .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-2 .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-2 .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-2 .c-form__input:focus::placeholder {
  color: #002157;
}

.theme-3 .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-3 .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-3 .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-3 .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-3 .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-3 .c-form__input:focus::placeholder {
  color: #002157;
}

.theme-4 .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-4 .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-4 .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-4 .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-4 .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-4 .c-form__input:focus::placeholder {
  color: #002157;
}

.theme-5 .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-5 .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-5 .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-5 .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-5 .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-5 .c-form__input:focus::placeholder {
  color: #002157;
}

.theme-6 .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-6 .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-6 .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-6 .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-6 .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-6 .c-form__input:focus::placeholder {
  color: #002157;
}

.theme-7 .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-7 .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-7 .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-7 .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-7 .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-7 .c-form__input:focus::placeholder {
  color: #002157;
}

.theme-dark .c-form__input:focus::-webkit-input-placeholder {
  color: #002157;
}

.theme-dark .c-form__input:focus:-moz-placeholder {
  color: #002157;
}

.theme-dark .c-form__input:focus::-moz-placeholder {
  color: #002157;
}

.theme-dark .c-form__input:focus:-ms-input-placeholder {
  color: #002157;
}

.theme-dark .c-form__input:focus::-ms-input-placeholder {
  color: #002157;
}

.theme-dark .c-form__input:focus::placeholder {
  color: #002157;
}

.c-form__input:focus ~ .c-form__icon {
  color: #ccc;
}

.c-form__icon {
  color: #ccc;
}

.c-form select {
  background-color: #fff;
}

.c-form__checkfields input[type='checkbox']:focus + label:before, .c-form__checkfields input[type='radio']:focus + label:before {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  border-color: #ccc !important;
}

.c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #ccc;
}

.theme-1 .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #002157;
}

.theme-2 .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #c73400;
}

.theme-3 .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #0e6260;
}

.theme-4 .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #1e9acb;
}

.theme-5 .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #306b34;
}

.theme-6 .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #2d3e43;
}

.theme-7 .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #702e8e;
}

.theme-dark .c-form__checkfields input[type='checkbox'] + label:after {
  border-color: #62bebc;
}

.c-form__checkfields input[type='radio'] + label:after {
  background-color: #ccc;
}

.theme-1 .c-form__checkfields input[type='radio'] + label:after {
  background-color: #002157;
}

.theme-2 .c-form__checkfields input[type='radio'] + label:after {
  background-color: #c73400;
}

.theme-3 .c-form__checkfields input[type='radio'] + label:after {
  background-color: #0e6260;
}

.theme-4 .c-form__checkfields input[type='radio'] + label:after {
  background-color: #1e9acb;
}

.theme-5 .c-form__checkfields input[type='radio'] + label:after {
  background-color: #306b34;
}

.theme-6 .c-form__checkfields input[type='radio'] + label:after {
  background-color: #2d3e43;
}

.theme-7 .c-form__checkfields input[type='radio'] + label:after {
  background-color: #702e8e;
}

.theme-dark .c-form__checkfields input[type='radio'] + label:after {
  background-color: #62bebc;
}

/* ==========================================================================
   Header
   ========================================================================== */
.c-header {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-header .c-counter__inner,
  .c-header .c-date__inner {
    background-color: #eee;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 9px 0;
  }
  .theme-1 .c-header .c-counter__inner, .theme-1
  .c-header .c-date__inner {
    background-color: #c2d2e3;
  }
  .theme-2 .c-header .c-counter__inner, .theme-2
  .c-header .c-date__inner {
    background-color: #ebccc1;
  }
  .theme-3 .c-header .c-counter__inner, .theme-3
  .c-header .c-date__inner {
    background-color: #aeddda;
  }
  .theme-4 .c-header .c-counter__inner, .theme-4
  .c-header .c-date__inner {
    background-color: #8fcae2;
  }
  .theme-5 .c-header .c-counter__inner, .theme-5
  .c-header .c-date__inner {
    background-color: #83af86;
  }
  .theme-6 .c-header .c-counter__inner, .theme-6
  .c-header .c-date__inner {
    background-color: #607176;
  }
  .theme-7 .c-header .c-counter__inner, .theme-7
  .c-header .c-date__inner {
    background-color: #d6c9dd;
  }
  .theme-dark .c-header .c-counter__inner, .theme-dark
  .c-header .c-date__inner {
    background-color: #62bebc;
  }
  .theme-1 .c-header .c-counter__col:before, .theme-1
  .c-header .c-date__col:before {
    background-color: #002157;
  }
  .theme-2 .c-header .c-counter__col:before, .theme-2
  .c-header .c-date__col:before {
    background-color: #c73400;
  }
  .theme-3 .c-header .c-counter__col:before, .theme-3
  .c-header .c-date__col:before {
    background-color: #0e6260;
  }
  .theme-4 .c-header .c-counter__col:before, .theme-4
  .c-header .c-date__col:before {
    background-color: #1e9acb;
  }
  .theme-5 .c-header .c-counter__col:before, .theme-5
  .c-header .c-date__col:before {
    background-color: #306b34;
  }
  .theme-6 .c-header .c-counter__col:before, .theme-6
  .c-header .c-date__col:before {
    background-color: #2d3e43;
  }
  .theme-7 .c-header .c-counter__col:before, .theme-7
  .c-header .c-date__col:before {
    background-color: #702e8e;
  }
  .theme-dark .c-header .c-counter__col:before, .theme-dark
  .c-header .c-date__col:before {
    background-color: #62bebc;
  }
}

/**
 * Header Classic
 */
.c-header--classic {
  /**
     * Classic Header Components
     */
}

@media screen and (min-width: 700px) {
  .c-header--classic .c-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

.c-header--classic .c-header__col--first {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
}

@media screen and (min-width: 700px) {
  .c-header--classic .c-header__col {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 90px;
    width: 100%;
  }
}

@media screen and (min-width: 1700px) {
  .c-header--classic .c-header__col {
    height: 145px;
  }
}

@media screen and (min-width: 700px) {
  .c-header--classic .c-header__col--last {
    width: 0;
  }
}

@media screen and (min-width: 1100px) {
  .c-header--classic .c-header__col--last {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
}

.c-header--classic .c-header__service {
  border-left: 1px solid #eee;
  display: none;
  height: 100%;
  margin-left: 1rem;
  min-width: 150px;
  max-width: 300px;
  overflow: hidden;
  padding-left: 1.5rem;
}

@media screen and (min-width: 1100px) {
  .c-header--classic .c-header__service {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-header--classic .c-header__row--bottom {
  border-top: 1px solid #eee;
  display: none;
}

@media screen and (min-width: 1100px) {
  .c-header--classic .c-header__row--bottom {
    display: block;
  }
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-header--classic .c-counter__inner,
  .c-header--classic .c-date__inner {
    margin-left: -webkit-calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
    margin-right: -webkit-calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

@media screen and (min-width: 700px) and (max-width: 1099px) {
  .c-header--classic .c-counter,
  .c-header--classic .c-date {
    left: 0;
    padding-left: 64px;
    position: absolute;
  }
}

.c-header--classic .c-logo {
  position: absolute;
  right: 10px;
}

@media screen and (min-width: 700px) {
  .c-header--classic .c-logo {
    right: 0;
  }
}

@media screen and (min-width: 1100px) {
  .c-header--classic .c-logo {
    position: static;
  }
}

.c-header--classic .c-logo,
.c-header--classic .c-logo__image {
  height: 45px;
}

.logo-large .c-header--classic .c-logo, .logo-large
.c-header--classic .c-logo__image {
  height: 55px;
}

@media screen and (min-width: 700px) {
  .c-header--classic .c-logo,
  .c-header--classic .c-logo__image {
    height: 52px;
  }
  .logo-large .c-header--classic .c-logo, .logo-large
  .c-header--classic .c-logo__image {
    height: 80px;
  }
}

@media screen and (min-width: 1700px) {
  .c-header--classic .c-logo,
  .c-header--classic .c-logo__image {
    height: 70px;
  }
  .logo-large .c-header--classic .c-logo, .logo-large
  .c-header--classic .c-logo__image {
    height: 120px;
  }
}

.c-header--classic .c-logo-ihk,
.c-header--classic .c-logo-ihk__image {
  height: 40px;
}

/**
 * Header Hero
 */
.c-header--hero {
  /**
     * Hero Header Components
     */
}

@media screen and (min-width: 700px) {
  .c-header--hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-header--hero .c-header__col--first {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 700px) {
  .c-header--hero .c-header__col {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 90px;
  }
}

@media screen and (min-width: 1700px) {
  .c-header--hero .c-header__col {
    height: 145px;
  }
}

.c-header--hero .c-sticker {
  display: none;
  height: 100%;
  margin-bottom: 0;
  position: relative;
  width: 120px;
}

.c-header--hero .c-sticker__label {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-header--hero .c-logo,
.c-header--hero .c-logo__image,
.c-header--hero .c-logo-ihk,
.c-header--hero .c-logo-ihk__image {
  height: 45px;
}

.c-header--hero .c-logo {
  margin-right: 10px;
}

.c-header--hero .c-logo-ihk {
  display: none;
  margin-right: 2.5rem;
}

@media screen and (min-width: 1100px) {
  .c-header--hero .c-logo-ihk {
    display: block;
  }
}

@media screen and (min-width: 700px) {
  .c-header--hero .c-logo,
  .c-header--hero .c-logo__image,
  .c-header--hero .c-logo-ihk,
  .c-header--hero .c-logo-ihk__image {
    height: 52px;
  }
  .c-header--hero .c-sticker,
  .c-header--hero .c-counter,
  .c-header--hero .c-date {
    margin-left: -webkit-calc(90px + 1rem);
    margin-left: calc(90px + 1rem);
  }
}

@media screen and (min-width: 1100px) {
  .page-onepager .c-header--hero .c-sticker {
    margin-left: 0;
  }
  .page-onepager .c-header--hero .c-counter, .page-onepager
  .c-header--hero .c-date {
    margin-left: 1rem;
  }
  .c-header--hero .c-logo {
    margin-right: 2.5rem;
  }
}

@media screen and (min-width: 1700px) {
  .c-header--hero .c-sticker {
    display: block;
    margin-left: 145px;
  }
  .c-header--hero .c-counter,
  .c-header--hero .c-date {
    margin-left: -webkit-calc(145px + 1rem);
    margin-left: calc(145px + 1rem);
  }
  .c-header--hero .c-sticker + .c-counter,
  .c-header--hero .c-sticker + .c-date {
    margin-left: 1rem;
  }
  .c-header--hero .c-logo,
  .c-header--hero .c-logo__image,
  .c-header--hero .c-logo-ihk,
  .c-header--hero .c-logo-ihk__image {
    height: 70px;
  }
}

/**
 * Header Simple (Goffit)
 */
.c-header--simple {
  /**
     * Simple Header Components
     */
}

.theme-goffit .c-header--simple {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-header--simple .c-header__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

@media screen and (min-width: 700px) {
  .c-header--simple .c-header__inner {
    height: 90px;
  }
}

@media screen and (min-width: 1100px) {
  .c-header--simple .c-header__inner {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .theme-goffit .c-header--simple .c-header__inner {
    height: 145px;
  }
}

@media screen and (min-width: 1700px) {
  .c-header--simple .c-header__inner {
    height: 145px;
  }
  .theme-goffit .c-header--simple .c-header__inner {
    height: 200px;
  }
}

@media screen and (min-width: 1100px) {
  .c-header--simple .c-header__col--first {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
  }
}

.c-header--simple .c-header__col--last {
  display: none;
  -webkit-flex-basis: 80%;
      -ms-flex-preferred-size: 80%;
          flex-basis: 80%;
}

@media screen and (min-width: 1100px) {
  .c-header--simple .c-header__col--last {
    display: block;
  }
}

.c-header--simple .c-logo,
.c-header--simple .c-logo__image {
  height: 45px;
}

.theme-goffit .c-header--simple .c-logo, .theme-goffit
.c-header--simple .c-logo__image {
  height: 60px;
}

@media screen and (min-width: 700px) {
  .theme-goffit .c-header--simple .c-logo, .theme-goffit
  .c-header--simple .c-logo__image {
    height: 80px;
  }
}

@media screen and (min-width: 1100px) {
  .theme-goffit .c-header--simple .c-logo, .theme-goffit
  .c-header--simple .c-logo__image {
    height: 100px;
  }
}

@media screen and (min-width: 1700px) {
  .theme-goffit .c-header--simple .c-logo, .theme-goffit
  .c-header--simple .c-logo__image {
    height: 120px;
  }
}

/* ==========================================================================
   Kicker
   ========================================================================== */
.c-kicker {
  background-color: #ccc;
  border-radius: 1rem;
  display: inline-block;
  font-size: 16px;
  padding: .3125em .8em;
}

.theme-goffit .c-kicker {
  background-color: #dbeaea;
}

/* ==========================================================================
   Link Styles
   ========================================================================== */
.c-link.disabled {
  color: #ccc;
  pointer-events: none;
}

.theme-1 .c-link.disabled {
  color: #c2d2e3;
}

.theme-2 .c-link.disabled {
  color: #ebccc1;
}

.theme-3 .c-link.disabled {
  color: #aeddda;
}

.theme-4 .c-link.disabled {
  color: #8fcae2;
}

.theme-5 .c-link.disabled {
  color: #83af86;
}

.theme-6 .c-link.disabled {
  color: #607176;
}

.theme-7 .c-link.disabled {
  color: #d6c9dd;
}

.theme-dark .c-link.disabled {
  color: #62bebc;
}

.c-link-icon {
  height: 1rem;
  line-height: 1;
  text-decoration: none;
}

/* ==========================================================================
   Logo
   ========================================================================== */
/* ==========================================================================
   Main
   ========================================================================== */
.c-main .c-breadcrumb {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-main .c-breadcrumb {
    display: none;
  }
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-main__article {
    padding-top: 2rem;
  }
}

.page-home .c-main__article,
.page-onepager .c-main__article {
  padding-top: 0;
}

@media screen and (min-width: 900px) {
  .c-main__aside {
    padding-left: 1rem;
  }
}

@media screen and (min-width: 0) and (max-width: 899px) {
  .c-main__aside .c-menu-sub {
    display: none;
  }
}

/* ==========================================================================
   Page Title
   ========================================================================== */
.c-page-title p {
  color: #535353;
}

.theme-1 .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-page-title p {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-page-title p {
  color: #fff;
}

.c-page-title__sub {
  margin-top: -0.5em;
  padding-bottom: 0.5em;
}

.page-onepager .c-page-title {
  margin-top: 5rem;
}

/* ==========================================================================
   Scroll Icon
   ========================================================================== */
.c-scroll-icon {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  border: solid 2px;
  bottom: 3rem;
  color: #151515;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 44px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
}

.c-scroll-icon:after {
  -webkit-animation: icon-animate 2.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
          animation: icon-animate 2.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
  background-color: #151515;
  border-radius: 50%;
  content: '';
  height: 6px;
  width: 6px;
}

.c-hero-image--simple .c-scroll-icon {
  display: none;
}

@media screen and (min-width: 1100px) {
  .c-hero-image--simple .c-scroll-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@-webkit-keyframes icon-animate {
  0% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    opacity: 0;
  }
  30%,
  70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    opacity: 0;
  }
}

@keyframes icon-animate {
  0% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    opacity: 0;
  }
  30%,
  70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    opacity: 0;
  }
}

/* ==========================================================================
   Sticker
   ========================================================================== */
.c-sticker {
  background-color: #eee;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}

.theme-1 .c-sticker {
  background-color: #c2d2e3;
  color: #002157;
}

.theme-2 .c-sticker {
  background-color: #ebccc1;
  color: #c73400;
}

.theme-3 .c-sticker {
  background-color: #aeddda;
  color: #0e6260;
}

.theme-4 .c-sticker {
  background-color: #8fcae2;
  color: #1e9acb;
}

.theme-5 .c-sticker {
  background-color: #83af86;
  color: #306b34;
}

.theme-6 .c-sticker {
  background-color: #607176;
  color: #2d3e43;
}

.theme-7 .c-sticker {
  background-color: #d6c9dd;
  color: #702e8e;
}

.theme-dark .c-sticker {
  background-color: #62bebc;
  color: #62bebc;
}

.theme-dark .c-sticker {
  color: #000;
}

.c-header--hero .c-sticker {
  font-size: 28px;
  line-height: 1.1;
}

.c-hero-image--left .c-sticker {
  display: none;
  margin-bottom: 2.5rem;
  padding: .4em 1em;
}

@media screen and (min-width: 700px) {
  .c-hero-image--left .c-sticker {
    display: inline-block;
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-image--left .c-sticker {
    margin-bottom: 3rem;
  }
}

.c-sticker__arrow:before, .c-sticker__arrow:after {
  border-style: solid;
  border-width: 1.5rem 3rem 0 0;
  border-color: #eee transparent transparent transparent;
  content: '';
  height: 0;
  position: absolute;
  right: 0;
  top: 100%;
  width: 0;
}

.theme-1 .c-sticker__arrow:before {
  border-top-color: #9fb8d3;
}

.theme-2 .c-sticker__arrow:before {
  border-top-color: #dfac9a;
}

.theme-3 .c-sticker__arrow:before {
  border-top-color: #8aceca;
}

.theme-4 .c-sticker__arrow:before {
  border-top-color: #66b7d8;
}

.theme-5 .c-sticker__arrow:before {
  border-top-color: #649b68;
}

.theme-6 .c-sticker__arrow:before {
  border-top-color: #49565a;
}

.theme-7 .c-sticker__arrow:before {
  border-top-color: #beaac9;
}

.theme-dark .c-sticker__arrow:before {
  border-top-color: #45a8a5;
}

.c-sticker__arrow:after {
  border-width: 0 2rem 1.5rem 0;
  border-color: transparent transparent #eee transparent;
  right: 1rem;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}

.theme-1 .c-sticker__arrow:after {
  border-bottom-color: #9fb8d3;
}

.theme-2 .c-sticker__arrow:after {
  border-bottom-color: #dfac9a;
}

.theme-3 .c-sticker__arrow:after {
  border-bottom-color: #8aceca;
}

.theme-4 .c-sticker__arrow:after {
  border-bottom-color: #66b7d8;
}

.theme-5 .c-sticker__arrow:after {
  border-bottom-color: #649b68;
}

.theme-6 .c-sticker__arrow:after {
  border-bottom-color: #49565a;
}

.theme-7 .c-sticker__arrow:after {
  border-bottom-color: #beaac9;
}

.theme-dark .c-sticker__arrow:after {
  border-bottom-color: #45a8a5;
}

.c-sticker--circle {
  border-radius: 50%;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
  height: 6rem;
  text-transform: none;
  width: 6rem;
}

.c-sticker--circle .c-sticker__inner {
  font-size: 1rem;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(15deg);
      -ms-transform: translate(-50%, -50%) rotate(15deg);
          transform: translate(-50%, -50%) rotate(15deg);
  width: 100%;
}

.c-sticker--circle .c-sticker__label {
  display: block;
}

.theme-goffit .c-sticker--circle {
  background-color: #127371;
  color: #fff;
  font-style: normal;
  font-family: "PoppinsSemiBold", Arial, sans-serif;
  font-weight: 400;
}

.theme-goffit.page-sub .c-sticker--circle {
  float: right;
  margin-bottom: 0;
  margin-top: -6rem;
  -webkit-transform: translateY(4rem);
      -ms-transform: translateY(4rem);
          transform: translateY(4rem);
}

@media screen and (min-width: 1700px) {
  .theme-goffit.page-sub .c-sticker--circle {
    -webkit-transform: translateY(2rem);
        -ms-transform: translateY(2rem);
            transform: translateY(2rem);
  }
}

.c-header--simple .c-sticker--circle {
  display: none;
}

@media screen and (min-width: 1900px) {
  .c-header--simple .c-sticker--circle {
    display: block;
    float: right;
    height: 12rem;
    margin-top: -12rem;
    -webkit-transform: translate(0, 15rem);
        -ms-transform: translate(0, 15rem);
            transform: translate(0, 15rem);
    width: 12rem;
  }
  .c-header--simple .c-sticker--circle .c-sticker__inner {
    font-size: 40px;
    line-height: 1;
  }
}

@media screen and (min-width: 2000px) {
  .c-header--simple .c-sticker--circle {
    -webkit-transform: translate(2rem, 15rem);
        -ms-transform: translate(2rem, 15rem);
            transform: translate(2rem, 15rem);
  }
}

/* ==========================================================================
   Trigger Menu Main
   ========================================================================== */
.c-trigger-menu-main {
  border-radius: 0;
  height: 4rem;
  position: relative;
  width: 4rem;
  /**
     * Off Canvas Trigger
     */
}

.theme-goffit .c-trigger-menu-main {
  background-color: #e66000;
  border-color: #e66000;
}

.theme-goffit .c-trigger-menu-main:hover, .theme-goffit .c-trigger-menu-main:focus, .theme-goffit .c-trigger-menu-main:active {
  border-color: #e66000;
}

.c-trigger-menu-main:hover, .c-trigger-menu-main:focus, .c-trigger-menu-main:active {
  background-color: #888;
}

.theme-1 .c-trigger-menu-main:hover, .theme-1 .c-trigger-menu-main:focus, .theme-1 .c-trigger-menu-main:active {
  background-color: #002157;
}

.theme-2 .c-trigger-menu-main:hover, .theme-2 .c-trigger-menu-main:focus, .theme-2 .c-trigger-menu-main:active {
  background-color: #c73400;
}

.theme-3 .c-trigger-menu-main:hover, .theme-3 .c-trigger-menu-main:focus, .theme-3 .c-trigger-menu-main:active {
  background-color: #0e6260;
}

.theme-4 .c-trigger-menu-main:hover, .theme-4 .c-trigger-menu-main:focus, .theme-4 .c-trigger-menu-main:active {
  background-color: #1e9acb;
}

.theme-5 .c-trigger-menu-main:hover, .theme-5 .c-trigger-menu-main:focus, .theme-5 .c-trigger-menu-main:active {
  background-color: #306b34;
}

.theme-6 .c-trigger-menu-main:hover, .theme-6 .c-trigger-menu-main:focus, .theme-6 .c-trigger-menu-main:active {
  background-color: #2d3e43;
}

.theme-7 .c-trigger-menu-main:hover, .theme-7 .c-trigger-menu-main:focus, .theme-7 .c-trigger-menu-main:active {
  background-color: #702e8e;
}

.theme-dark .c-trigger-menu-main:hover, .theme-dark .c-trigger-menu-main:focus, .theme-dark .c-trigger-menu-main:active {
  background-color: #62bebc;
}

.theme-goffit .c-trigger-menu-main:hover, .theme-goffit .c-trigger-menu-main:focus, .theme-goffit .c-trigger-menu-main:active {
  background-color: #e66000;
}

.c-trigger-menu-main .c-burger__line {
  background-color: #fff;
}

.theme-dark .c-trigger-menu-main .c-burger__line {
  background-color: #000;
}

@media screen and (min-width: 1100px) {
  .page-header-classic .c-trigger-menu-main,
  .page-header-hero.page-onepager .c-trigger-menu-main {
    display: none;
  }
}

.c-off-canvas .c-trigger-menu-main {
  height: 64px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 1;
}

@media screen and (min-width: 700px) {
  .c-off-canvas .c-trigger-menu-main {
    height: 90px;
    width: 90px;
  }
  .c-off-canvas .c-trigger-menu-main .c-burger,
  .c-off-canvas .c-trigger-menu-main .c-burger__line {
    width: 28px;
  }
}

@media screen and (min-width: 1700px) {
  .c-off-canvas .c-trigger-menu-main {
    height: 145px;
    width: 145px;
  }
  .c-off-canvas .c-trigger-menu-main .c-burger,
  .c-off-canvas .c-trigger-menu-main .c-burger__line {
    width: 34px;
  }
}

/**
 * Menus
 */
/* ==========================================================================
   Breadcrumb Menu
   ========================================================================== */
.c-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.c-breadcrumb__item:not(:last-child) {
  margin-right: 0.5em;
}

.c-breadcrumb a,
.c-breadcrumb span {
  font-size: .8rem;
}

.c-breadcrumb a.u-typo-icon\:right {
  padding-right: 1.5em;
}

.c-breadcrumb a:before {
  font-size: .5rem;
}

/* ==========================================================================
   Menu Footer
   ========================================================================== */
.c-menu-footer__item:not(:last-of-type) {
  margin-bottom: .5rem;
}

.c-menu-footer__link {
  text-decoration: none;
}

.theme-goffit .c-menu-footer__link {
  color: #151515;
}

/* ==========================================================================
   Menu Main
   ========================================================================== */
/**
 * Menu Placeholder
 */
.c-header--classic .c-menu-main-placeholder {
  height: -webkit-calc(3.25rem + 5px);
  height: calc(3.25rem + 5px);
  opacity: 0;
}

.c-header--classic .c-menu-main-placeholder.menu-is-loaded {
  opacity: 1;
  -webkit-transition: .3s opacity;
  -o-transition: .3s opacity;
  transition: .3s opacity;
}

/**
 * Menu Bar
 */
.c-menu-main--bar {
  /**
     * Onepager Menu
     */
  /**
     * Simple Header
     */
}

.c-menu-main--bar:before, .c-menu-main--bar:after {
  clear: both;
  content: '';
  display: table;
}

.c-menu-main--bar .c-menu-main__list--lvl2 {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  display: none;
  left: -2rem;
  min-width: 300px;
  padding: 1rem 2rem;
  position: absolute;
  top: 100%;
}

.c-menu-main--bar .c-menu-main__item--lvl1 {
  float: left;
  position: relative;
}

.c-menu-main--bar .c-menu-main__item--lvl1:not(:last-of-type) {
  margin-right: 2rem;
}

.c-menu-main--bar .c-menu-main__item--lvl1:hover .c-menu-main__list--lvl2 {
  display: block;
}

.c-menu-main--bar .c-menu-main__link {
  display: inline-block;
  text-decoration: none;
}

.c-menu-main--bar .c-menu-main__link--lvl1 {
  border-bottom: 5px solid transparent;
  line-height: 3.25;
}

.c-menu-main--bar .c-menu-main__link--lvl2 {
  padding: .5rem 0;
}

.theme-dark .c-menu-main--bar .c-menu-main__link {
  color: #000;
}

.theme-goffit .c-menu-main--bar .c-menu-main__link {
  color: #151515;
  font-size: 18px;
  font-style: normal;
  font-family: "PoppinsSemiBold", Arial, sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 1300px) {
  .theme-goffit .c-menu-main--bar .c-menu-main__link {
    font-size: 20px;
  }
}

.c-menu-main--bar [aria-current='true'] {
  border-bottom: 5px solid;
}

.theme-1 .c-menu-main--bar [aria-current='true'] {
  border-color: #c2d2e3;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .c-menu-main--bar [aria-current='true'] {
  border-color: #ebccc1;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .c-menu-main--bar [aria-current='true'] {
  border-color: #aeddda;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .c-menu-main--bar [aria-current='true'] {
  border-color: #8fcae2;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .c-menu-main--bar [aria-current='true'] {
  border-color: #83af86;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .c-menu-main--bar [aria-current='true'] {
  border-color: #607176;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .c-menu-main--bar [aria-current='true'] {
  border-color: #d6c9dd;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-menu-main--bar [aria-current='true'] {
  border-color: #62bebc;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-goffit .c-menu-main--bar [aria-current='true'] {
  border-color: #e66000;
  color: #127371;
}

.page-onepager .c-menu-main--bar .c-menu-main__list {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
}

.page-onepager .c-menu-main--bar .c-menu-main__item {
  float: none;
}

.page-onepager .c-menu-main--bar .c-menu-main__item:not(:last-of-type) .c-menu-main__link:after {
  background-color: #eee;
  content: '';
  display: block;
  height: 2rem;
  position: absolute;
  right: -1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
}

.page-onepager .c-menu-main--bar .c-menu-main__link {
  position: relative;
}

.c-header--simple .c-menu-main--bar .c-menu-main__list--lvl1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.theme-goffit .c-header--simple .c-menu-main--bar .c-menu-main__list--lvl2 {
  background-color: #fed500;
}

.c-header--simple .c-menu-main--bar .c-menu-main__item--lvl1 {
  float: none;
  margin-right: 0;
}

.c-header--simple .c-menu-main--bar .c-menu-main__item--lvl1:not(:first-of-type) {
  margin-left: 2rem;
}

.page-onepager .c-menu-main-placeholder {
  background-color: #fff;
  height: 3rem;
  margin: -3rem auto 0;
  margin-top: -3rem;
  max-width: 990px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 0) and (max-width: 1099px) {
  .page-onepager .c-menu-main-placeholder {
    display: none;
  }
}

/**
 * Off Canvas Container
 */
.c-off-canvas {
  position: relative;
}

.c-off-canvas__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  min-height: 100%;
  overflow-y: auto;
}

/**
 * Off Canvas Menu
 */
.c-menu-main--off-canvas .c-menu-main {
  position: relative;
}

.c-menu-main--off-canvas .c-menu-main__list--lvl1 {
  border-top: 1px solid;
  padding-top: -webkit-calc(64px - 1px);
  padding-top: calc(64px - 1px);
}

@media screen and (min-width: 700px) {
  .c-menu-main--off-canvas .c-menu-main__list--lvl1 {
    padding-top: -webkit-calc(90px - 1px);
    padding-top: calc(90px - 1px);
  }
}

@media screen and (min-width: 1700px) {
  .c-menu-main--off-canvas .c-menu-main__list--lvl1 {
    padding-top: -webkit-calc(145px - 1px);
    padding-top: calc(145px - 1px);
  }
}

.c-menu-main--off-canvas .c-menu-main__link {
  display: inline-block;
  text-decoration: none;
  width: 100%;
}

.c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  padding-left: 1.5rem;
}

.c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-bottom: 1px solid;
  margin-left: 3rem;
}

.c-menu-main--off-canvas .c-menu-main__item--lvl1 {
  border-bottom: 1px solid;
}

.c-menu-main--off-canvas .c-menu-main__item--lvl2:last-child .c-menu-main__link {
  border: none;
}

.c-menu-main--off-canvas .c-menu-main__item {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.c-menu-main--off-canvas .c-menu-main__list--lvl1,
.c-menu-main--off-canvas .c-menu-main__link,
.c-menu-main--off-canvas .c-menu-main__item {
  line-height: 3;
}

.theme-1 .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-1
.c-menu-main--off-canvas .c-menu-main__link, .theme-1
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #e4ebf0;
  color: #002157;
}

.theme-2 .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-2
.c-menu-main--off-canvas .c-menu-main__link, .theme-2
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #fff2e6;
  color: #c73400;
}

.theme-3 .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-3
.c-menu-main--off-canvas .c-menu-main__link, .theme-3
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #e1f4f3;
  color: #0e6260;
}

.theme-4 .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-4
.c-menu-main--off-canvas .c-menu-main__link, .theme-4
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #d5e7ef;
  color: #1e9acb;
}

.theme-5 .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-5
.c-menu-main--off-canvas .c-menu-main__link, .theme-5
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #dbeddc;
  color: #306b34;
}

.theme-6 .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-6
.c-menu-main--off-canvas .c-menu-main__link, .theme-6
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #cddce0;
  color: #2d3e43;
}

.theme-7 .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-7
.c-menu-main--off-canvas .c-menu-main__link, .theme-7
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #ece4f0;
  color: #702e8e;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-dark
.c-menu-main--off-canvas .c-menu-main__link, .theme-dark
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #232323;
  color: #62bebc;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-dark
.c-menu-main--off-canvas .c-menu-main__link, .theme-dark
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #1d1d1d;
  color: #fff;
}

.theme-goffit .c-menu-main--off-canvas .c-menu-main__list--lvl1, .theme-goffit
.c-menu-main--off-canvas .c-menu-main__link, .theme-goffit
.c-menu-main--off-canvas .c-menu-main__item {
  border-color: #dbeaea;
  color: #127371;
}

.c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #ccc;
}

.theme-1 .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #c2d2e3;
}

.theme-2 .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #ebccc1;
}

.theme-3 .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #aeddda;
}

.theme-4 .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #8fcae2;
}

.theme-5 .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #83af86;
}

.theme-6 .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #607176;
}

.theme-7 .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #d6c9dd;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #62bebc;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #000;
}

.theme-goffit .c-menu-main--off-canvas .c-menu-main__link--lvl1 {
  background-color: #ecf4f4;
}

.theme-1 .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #c2d2e3;
}

.theme-2 .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #ebccc1;
}

.theme-3 .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #aeddda;
}

.theme-4 .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #8fcae2;
}

.theme-5 .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #83af86;
}

.theme-6 .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #607176;
}

.theme-7 .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #d6c9dd;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #62bebc;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #fff;
}

.theme-goffit .c-menu-main--off-canvas .c-menu-main__link--lvl2 {
  border-color: #a1c9c9;
}

.theme-1 .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-menu-main--off-canvas [aria-current='true'] {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-goffit .c-menu-main--off-canvas [aria-current='true'] {
  font-style: normal;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 400;
}

.c-menu-main--off-canvas .c-menu-main__label,
.c-menu-main--off-canvas .c-logo-ihk {
  height: 64px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 700px) {
  .c-menu-main--off-canvas .c-menu-main__label,
  .c-menu-main--off-canvas .c-logo-ihk {
    height: 90px;
  }
}

@media screen and (min-width: 1700px) {
  .c-menu-main--off-canvas .c-menu-main__label,
  .c-menu-main--off-canvas .c-logo-ihk {
    height: 145px;
  }
}

.c-menu-main--off-canvas .c-menu-main__label {
  background: #ccc;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  left: 0;
  line-height: 1;
  margin-bottom: 0;
}

.c-menu-main--off-canvas .c-menu-main__label span {
  padding-left: 1.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.theme-1 .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #e4ebf0;
  color: #002157;
}

.theme-2 .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #fff2e6;
  color: #c73400;
}

.theme-3 .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #e1f4f3;
  color: #0e6260;
}

.theme-4 .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #d5e7ef;
  color: #1e9acb;
}

.theme-5 .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #dbeddc;
  color: #306b34;
}

.theme-6 .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #cddce0;
  color: #2d3e43;
}

.theme-7 .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #ece4f0;
  color: #702e8e;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #232323;
  color: #62bebc;
}

.theme-dark .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #1d1d1d;
  color: #fff;
}

.theme-goffit .c-menu-main--off-canvas .c-menu-main__label {
  background-color: #dbeaea;
  color: #127371;
  font-style: normal;
  font-family: "RobotoSlabBold", Arial, serif;
  font-weight: 400;
}

.c-menu-main--off-canvas .c-logo-ihk {
  right: 0;
}

.c-menu-main--off-canvas .c-logo-ihk img {
  max-height: 2.5rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
  .c-menu-main--off-canvas .c-logo-ihk {
    display: none;
  }
}

/* ==========================================================================
   Menu Meta
   ========================================================================== */
.c-menu-meta {
  text-align: center;
}

.c-menu-meta__item {
  margin: .5rem 0;
}

.c-menu-meta__link {
  display: inline-block;
  font-size: 20px;
  text-decoration: none;
}

@media screen and (min-width: 1100px) {
  .c-menu-meta__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-menu-meta__item {
    margin-right: 2rem;
  }
  .c-menu-meta__link {
    font-size: 15px;
  }
}

/* ==========================================================================
   Menu Social
   ========================================================================== */
.c-menu-social {
  /**
     * Hero Image and Slider positioning
     */
  /**
     * Colors
     */
  /**
     * Off Canvas
     */
}

.c-menu-social__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (min-width: 500px) {
  .c-menu-social--button .c-menu-social__list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-menu-social--button .c-menu-social__item {
  margin: .5rem 0;
  width: 100%;
}

@media screen and (min-width: 500px) {
  .c-menu-social--button .c-menu-social__item {
    margin: .5rem;
    min-width: 12.5rem;
    width: auto;
  }
}

.c-menu-social--icon .c-menu-social__item {
  margin-bottom: .5rem;
  margin-right: .5rem;
}

.c-menu-social--icon .c-menu-social__item:last-of-type {
  margin-right: 0;
}

.c-menu-social .c-link-icon {
  background-color: #ccc;
  font-size: 2rem;
  height: 2rem;
  width: 2rem;
}

.c-menu-social .c-link-icon:before {
  font-size: 1.25rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-menu-social .c-button {
  display: block;
  padding-left: 3em;
  padding-right: 2em;
  width: 100%;
}

@media screen and (min-width: 500px) {
  .c-menu-social .c-button {
    display: inline-block;
  }
}

.c-menu-social .c-button:before {
  font-size: 1.5rem;
  line-height: 1;
  padding-left: .5em;
}

.c-hero-image .c-menu-social,
.c-hero-slider .c-menu-social {
  display: none;
  position: absolute;
}

@media screen and (min-width: 1100px) {
  .c-hero-image .c-menu-social,
  .c-hero-slider .c-menu-social {
    display: block;
  }
}

.c-hero-image--center .c-menu-social,
.c-hero-slider .c-menu-social {
  right: 2.5rem;
  top: 2.5rem;
}

.c-hero-image--left .c-menu-social {
  bottom: 2rem;
  left: 1rem;
}

@media screen and (min-width: 1700px) {
  .c-hero-image--left .c-menu-social {
    bottom: 4rem;
    left: 5%;
  }
}

.c-hero-slider .c-menu-social {
  bottom: 0;
}

.theme-1 .c-off-canvas .c-menu-social [class*='facebook'], .theme-1
.c-hero-image .c-menu-social [class*='facebook'], .theme-1
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-1 .c-off-canvas .c-menu-social [class*='linkedin'], .theme-1
.c-hero-image .c-menu-social [class*='linkedin'], .theme-1
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-1 .c-off-canvas .c-menu-social [class*='instagram'], .theme-1
.c-hero-image .c-menu-social [class*='instagram'], .theme-1
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-1 .c-off-canvas .c-menu-social [class*='twitter'], .theme-1
.c-hero-image .c-menu-social [class*='twitter'], .theme-1
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-1 .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-1
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-1
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-1 .c-off-canvas .c-menu-social [class*='xing'], .theme-1
.c-hero-image .c-menu-social [class*='xing'], .theme-1
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-1 .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-1 .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-1 .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-1 .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-1 .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-1 .c-off-canvas .c-menu-social [class*='xing']:before, .theme-1
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-1
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-1
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-1
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-1
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-1
.c-hero-image .c-menu-social [class*='xing']:before, .theme-1
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-1
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-1
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-1
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-1
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-1
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-2 .c-off-canvas .c-menu-social [class*='facebook'], .theme-2
.c-hero-image .c-menu-social [class*='facebook'], .theme-2
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-2 .c-off-canvas .c-menu-social [class*='linkedin'], .theme-2
.c-hero-image .c-menu-social [class*='linkedin'], .theme-2
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-2 .c-off-canvas .c-menu-social [class*='instagram'], .theme-2
.c-hero-image .c-menu-social [class*='instagram'], .theme-2
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-2 .c-off-canvas .c-menu-social [class*='twitter'], .theme-2
.c-hero-image .c-menu-social [class*='twitter'], .theme-2
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-2 .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-2
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-2
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-2 .c-off-canvas .c-menu-social [class*='xing'], .theme-2
.c-hero-image .c-menu-social [class*='xing'], .theme-2
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-2 .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-2 .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-2 .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-2 .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-2 .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-2 .c-off-canvas .c-menu-social [class*='xing']:before, .theme-2
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-2
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-2
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-2
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-2
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-2
.c-hero-image .c-menu-social [class*='xing']:before, .theme-2
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-2
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-2
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-2
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-2
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-2
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-3 .c-off-canvas .c-menu-social [class*='facebook'], .theme-3
.c-hero-image .c-menu-social [class*='facebook'], .theme-3
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-3 .c-off-canvas .c-menu-social [class*='linkedin'], .theme-3
.c-hero-image .c-menu-social [class*='linkedin'], .theme-3
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-3 .c-off-canvas .c-menu-social [class*='instagram'], .theme-3
.c-hero-image .c-menu-social [class*='instagram'], .theme-3
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-3 .c-off-canvas .c-menu-social [class*='twitter'], .theme-3
.c-hero-image .c-menu-social [class*='twitter'], .theme-3
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-3 .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-3
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-3
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-3 .c-off-canvas .c-menu-social [class*='xing'], .theme-3
.c-hero-image .c-menu-social [class*='xing'], .theme-3
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-3 .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-3 .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-3 .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-3 .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-3 .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-3 .c-off-canvas .c-menu-social [class*='xing']:before, .theme-3
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-3
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-3
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-3
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-3
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-3
.c-hero-image .c-menu-social [class*='xing']:before, .theme-3
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-3
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-3
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-3
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-3
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-3
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-4 .c-off-canvas .c-menu-social [class*='facebook'], .theme-4
.c-hero-image .c-menu-social [class*='facebook'], .theme-4
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-4 .c-off-canvas .c-menu-social [class*='linkedin'], .theme-4
.c-hero-image .c-menu-social [class*='linkedin'], .theme-4
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-4 .c-off-canvas .c-menu-social [class*='instagram'], .theme-4
.c-hero-image .c-menu-social [class*='instagram'], .theme-4
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-4 .c-off-canvas .c-menu-social [class*='twitter'], .theme-4
.c-hero-image .c-menu-social [class*='twitter'], .theme-4
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-4 .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-4
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-4
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-4 .c-off-canvas .c-menu-social [class*='xing'], .theme-4
.c-hero-image .c-menu-social [class*='xing'], .theme-4
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-4 .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-4 .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-4 .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-4 .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-4 .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-4 .c-off-canvas .c-menu-social [class*='xing']:before, .theme-4
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-4
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-4
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-4
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-4
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-4
.c-hero-image .c-menu-social [class*='xing']:before, .theme-4
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-4
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-4
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-4
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-4
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-4
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-5 .c-off-canvas .c-menu-social [class*='facebook'], .theme-5
.c-hero-image .c-menu-social [class*='facebook'], .theme-5
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-5 .c-off-canvas .c-menu-social [class*='linkedin'], .theme-5
.c-hero-image .c-menu-social [class*='linkedin'], .theme-5
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-5 .c-off-canvas .c-menu-social [class*='instagram'], .theme-5
.c-hero-image .c-menu-social [class*='instagram'], .theme-5
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-5 .c-off-canvas .c-menu-social [class*='twitter'], .theme-5
.c-hero-image .c-menu-social [class*='twitter'], .theme-5
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-5 .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-5
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-5
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-5 .c-off-canvas .c-menu-social [class*='xing'], .theme-5
.c-hero-image .c-menu-social [class*='xing'], .theme-5
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-5 .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-5 .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-5 .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-5 .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-5 .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-5 .c-off-canvas .c-menu-social [class*='xing']:before, .theme-5
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-5
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-5
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-5
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-5
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-5
.c-hero-image .c-menu-social [class*='xing']:before, .theme-5
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-5
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-5
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-5
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-5
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-5
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-6 .c-off-canvas .c-menu-social [class*='facebook'], .theme-6
.c-hero-image .c-menu-social [class*='facebook'], .theme-6
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-6 .c-off-canvas .c-menu-social [class*='linkedin'], .theme-6
.c-hero-image .c-menu-social [class*='linkedin'], .theme-6
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-6 .c-off-canvas .c-menu-social [class*='instagram'], .theme-6
.c-hero-image .c-menu-social [class*='instagram'], .theme-6
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-6 .c-off-canvas .c-menu-social [class*='twitter'], .theme-6
.c-hero-image .c-menu-social [class*='twitter'], .theme-6
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-6 .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-6
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-6
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-6 .c-off-canvas .c-menu-social [class*='xing'], .theme-6
.c-hero-image .c-menu-social [class*='xing'], .theme-6
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-6 .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-6 .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-6 .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-6 .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-6 .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-6 .c-off-canvas .c-menu-social [class*='xing']:before, .theme-6
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-6
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-6
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-6
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-6
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-6
.c-hero-image .c-menu-social [class*='xing']:before, .theme-6
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-6
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-6
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-6
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-6
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-6
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-7 .c-off-canvas .c-menu-social [class*='facebook'], .theme-7
.c-hero-image .c-menu-social [class*='facebook'], .theme-7
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-7 .c-off-canvas .c-menu-social [class*='linkedin'], .theme-7
.c-hero-image .c-menu-social [class*='linkedin'], .theme-7
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-7 .c-off-canvas .c-menu-social [class*='instagram'], .theme-7
.c-hero-image .c-menu-social [class*='instagram'], .theme-7
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-7 .c-off-canvas .c-menu-social [class*='twitter'], .theme-7
.c-hero-image .c-menu-social [class*='twitter'], .theme-7
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-7 .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-7
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-7
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-7 .c-off-canvas .c-menu-social [class*='xing'], .theme-7
.c-hero-image .c-menu-social [class*='xing'], .theme-7
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-7 .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-7 .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-7 .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-7 .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-7 .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-7 .c-off-canvas .c-menu-social [class*='xing']:before, .theme-7
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-7
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-7
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-7
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-7
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-7
.c-hero-image .c-menu-social [class*='xing']:before, .theme-7
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-7
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-7
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-7
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-7
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-7
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-dark .c-off-canvas .c-menu-social [class*='facebook'], .theme-dark
.c-hero-image .c-menu-social [class*='facebook'], .theme-dark
.c-hero-slider .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-dark .c-off-canvas .c-menu-social [class*='linkedin'], .theme-dark
.c-hero-image .c-menu-social [class*='linkedin'], .theme-dark
.c-hero-slider .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-dark .c-off-canvas .c-menu-social [class*='instagram'], .theme-dark
.c-hero-image .c-menu-social [class*='instagram'], .theme-dark
.c-hero-slider .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-dark .c-off-canvas .c-menu-social [class*='twitter'], .theme-dark
.c-hero-image .c-menu-social [class*='twitter'], .theme-dark
.c-hero-slider .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-dark .c-off-canvas .c-menu-social [class*='whatsapp'], .theme-dark
.c-hero-image .c-menu-social [class*='whatsapp'], .theme-dark
.c-hero-slider .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-dark .c-off-canvas .c-menu-social [class*='xing'], .theme-dark
.c-hero-image .c-menu-social [class*='xing'], .theme-dark
.c-hero-slider .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-dark .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-dark .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-dark .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-dark .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-dark .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-dark .c-off-canvas .c-menu-social [class*='xing']:before, .theme-dark
.c-hero-image .c-menu-social [class*='facebook']:before,
.theme-dark
.c-hero-image .c-menu-social [class*='linkedin']:before,
.theme-dark
.c-hero-image .c-menu-social [class*='instagram']:before,
.theme-dark
.c-hero-image .c-menu-social [class*='twitter']:before,
.theme-dark
.c-hero-image .c-menu-social [class*='whatsapp']:before,
.theme-dark
.c-hero-image .c-menu-social [class*='xing']:before, .theme-dark
.c-hero-slider .c-menu-social [class*='facebook']:before,
.theme-dark
.c-hero-slider .c-menu-social [class*='linkedin']:before,
.theme-dark
.c-hero-slider .c-menu-social [class*='instagram']:before,
.theme-dark
.c-hero-slider .c-menu-social [class*='twitter']:before,
.theme-dark
.c-hero-slider .c-menu-social [class*='whatsapp']:before,
.theme-dark
.c-hero-slider .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.theme-goffit .c-off-canvas .c-menu-social [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.theme-goffit .c-off-canvas .c-menu-social [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.theme-goffit .c-off-canvas .c-menu-social [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.theme-goffit .c-off-canvas .c-menu-social [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.theme-goffit .c-off-canvas .c-menu-social [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.theme-goffit .c-off-canvas .c-menu-social [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.theme-goffit .c-off-canvas .c-menu-social [class*='facebook']:before,
.theme-goffit .c-off-canvas .c-menu-social [class*='linkedin']:before,
.theme-goffit .c-off-canvas .c-menu-social [class*='instagram']:before,
.theme-goffit .c-off-canvas .c-menu-social [class*='twitter']:before,
.theme-goffit .c-off-canvas .c-menu-social [class*='whatsapp']:before,
.theme-goffit .c-off-canvas .c-menu-social [class*='xing']:before {
  color: #fff !important;
}

.c-off-canvas .c-menu-social {
  border-bottom: 1px solid;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.theme-1 .c-off-canvas .c-menu-social {
  border-color: #c2d2e3;
}

.theme-2 .c-off-canvas .c-menu-social {
  border-color: #ebccc1;
}

.theme-3 .c-off-canvas .c-menu-social {
  border-color: #aeddda;
}

.theme-4 .c-off-canvas .c-menu-social {
  border-color: #8fcae2;
}

.theme-5 .c-off-canvas .c-menu-social {
  border-color: #83af86;
}

.theme-6 .c-off-canvas .c-menu-social {
  border-color: #607176;
}

.theme-7 .c-off-canvas .c-menu-social {
  border-color: #d6c9dd;
}

.theme-dark .c-off-canvas .c-menu-social {
  border-color: #62bebc;
}

.theme-dark .c-off-canvas .c-menu-social {
  border-color: #fff;
}

.theme-goffit .c-off-canvas .c-menu-social {
  border-color: #a1c9c9;
}

/* ==========================================================================
   Menu Sub
   ========================================================================== */
.c-menu-sub__item {
  border-bottom: 1px solid;
  margin: .5rem 0;
  padding-bottom: .5rem;
}

.c-menu-sub__item:last-of-type {
  border: 0;
  margin-bottom: 0;
}

.theme-1 .c-menu-sub__item {
  border-color: #c2d2e3;
}

.theme-2 .c-menu-sub__item {
  border-color: #ebccc1;
}

.theme-3 .c-menu-sub__item {
  border-color: #aeddda;
}

.theme-4 .c-menu-sub__item {
  border-color: #8fcae2;
}

.theme-5 .c-menu-sub__item {
  border-color: #83af86;
}

.theme-6 .c-menu-sub__item {
  border-color: #607176;
}

.theme-7 .c-menu-sub__item {
  border-color: #d6c9dd;
}

.theme-dark .c-menu-sub__item {
  border-color: #62bebc;
}

.theme-goffit .c-menu-sub__item {
  border-color: #dbeaea;
}

.c-menu-sub__item [aria-current='true'] {
  background-color: #eee;
}

.theme-1 .c-menu-sub__item [aria-current='true'] {
  background-color: #e4ebf0;
  color: #002157;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .c-menu-sub__item [aria-current='true'] {
  background-color: #fff2e6;
  color: #c73400;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .c-menu-sub__item [aria-current='true'] {
  background-color: #e1f4f3;
  color: #0e6260;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .c-menu-sub__item [aria-current='true'] {
  background-color: #d5e7ef;
  color: #1e9acb;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .c-menu-sub__item [aria-current='true'] {
  background-color: #dbeddc;
  color: #306b34;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .c-menu-sub__item [aria-current='true'] {
  background-color: #cddce0;
  color: #2d3e43;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .c-menu-sub__item [aria-current='true'] {
  background-color: #ece4f0;
  color: #702e8e;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-menu-sub__item [aria-current='true'] {
  background-color: #232323;
  color: #62bebc;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-goffit .c-menu-sub__item [aria-current='true'] {
  background-color: #dbeaea;
  color: #127371;
  font-style: normal;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 400;
}

.c-menu-sub__item a {
  text-decoration: none;
}

.theme-1 .c-menu-sub__item span {
  color: #002157;
}

.theme-2 .c-menu-sub__item span {
  color: #c73400;
}

.theme-3 .c-menu-sub__item span {
  color: #0e6260;
}

.theme-4 .c-menu-sub__item span {
  color: #1e9acb;
}

.theme-5 .c-menu-sub__item span {
  color: #306b34;
}

.theme-6 .c-menu-sub__item span {
  color: #2d3e43;
}

.theme-7 .c-menu-sub__item span {
  color: #702e8e;
}

.theme-dark .c-menu-sub__item span {
  color: #62bebc;
}

.theme-goffit .c-menu-sub__item span {
  color: #127371;
}

/**
 * Content Elements
 */
/* ==========================================================================
   Accordion
   ========================================================================== */
.c-accordion__headline {
  cursor: pointer;
  margin-bottom: 0 !important;
  padding-bottom: 0.8rem;
  padding-top: 0.8rem;
  position: relative;
}

.theme-1 .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-accordion__headline {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-goffit .c-accordion__headline {
  font-style: normal;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 400;
}

.c-accordion__headline:not(:first-child) {
  border-top: 1px solid #ccc;
}

.theme-1 .c-accordion__headline:not(:first-child) {
  border-color: #c2d2e3;
}

.theme-2 .c-accordion__headline:not(:first-child) {
  border-color: #ebccc1;
}

.theme-3 .c-accordion__headline:not(:first-child) {
  border-color: #aeddda;
}

.theme-4 .c-accordion__headline:not(:first-child) {
  border-color: #8fcae2;
}

.theme-5 .c-accordion__headline:not(:first-child) {
  border-color: #83af86;
}

.theme-6 .c-accordion__headline:not(:first-child) {
  border-color: #607176;
}

.theme-7 .c-accordion__headline:not(:first-child) {
  border-color: #d6c9dd;
}

.theme-dark .c-accordion__headline:not(:first-child) {
  border-color: #62bebc;
}

.theme-goffit .c-accordion__headline:not(:first-child) {
  border-color: #dbeaea;
}

.c-accordion__headline a {
  text-decoration: none;
}

.c-accordion__headline, .c-accordion__panel {
  padding-left: 2rem;
}

.c-accordion__switch {
  border: 2px solid;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
}

.no-js .c-accordion__switch {
  display: none;
}

.c-accordion__switch:before, .c-accordion__switch:after {
  background-color: #ccc;
  content: '';
  display: block;
  left: 50%;
  height: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
}

.theme-1 .c-accordion__switch:before, .theme-1 .c-accordion__switch:after {
  background-color: #002157;
}

.theme-2 .c-accordion__switch:before, .theme-2 .c-accordion__switch:after {
  background-color: #c73400;
}

.theme-3 .c-accordion__switch:before, .theme-3 .c-accordion__switch:after {
  background-color: #0e6260;
}

.theme-4 .c-accordion__switch:before, .theme-4 .c-accordion__switch:after {
  background-color: #1e9acb;
}

.theme-5 .c-accordion__switch:before, .theme-5 .c-accordion__switch:after {
  background-color: #306b34;
}

.theme-6 .c-accordion__switch:before, .theme-6 .c-accordion__switch:after {
  background-color: #2d3e43;
}

.theme-7 .c-accordion__switch:before, .theme-7 .c-accordion__switch:after {
  background-color: #702e8e;
}

.theme-dark .c-accordion__switch:before, .theme-dark .c-accordion__switch:after {
  background-color: #62bebc;
}

.theme-goffit .c-accordion__switch:before, .theme-goffit .c-accordion__switch:after {
  background-color: #127371;
}

.c-accordion__switch:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .c-accordion__switch:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
      -ms-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.c-accordion__panel {
  display: none;
}

.c-accordion__panel:before, .c-accordion__panel:after {
  clear: both;
  content: '';
  display: table;
}

.no-js .c-accordion__panel {
  display: block;
}

/**
 * Accordion Dropdown Combination
 */
@media screen and (min-width: 0) and (max-width: 499px) {
  .c-content--accordion .c-dropdown-toggle {
    width: 100%;
  }
}

@media screen and (min-width: 1300px) {
  .c-content--accordion .c-dropdown-toggle {
    display: none;
  }
  .c-content--accordion .c-dropdown__content {
    display: block !important;
  }
}

.c-content--accordion .c-dropdown + .c-accordion {
  margin-top: 1rem;
}

@media screen and (min-width: 1300px) {
  .c-content--accordion .c-dropdown + .c-accordion {
    border-top: 1px solid #ccc;
  }
  .theme-1 .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #c2d2e3;
  }
  .theme-2 .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #ebccc1;
  }
  .theme-3 .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #aeddda;
  }
  .theme-4 .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #8fcae2;
  }
  .theme-5 .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #83af86;
  }
  .theme-6 .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #607176;
  }
  .theme-7 .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #d6c9dd;
  }
  .theme-dark .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #62bebc;
  }
  .theme-goffit .c-content--accordion .c-dropdown + .c-accordion {
    border-color: #dbeaea;
  }
}

/* ==========================================================================
   Company
   ========================================================================== */
.c-company__logo {
  max-width: 320px;
}

.c-company__logo, .c-company__text {
  margin-bottom: 2em;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.c-contact__image {
  max-width: 204px;
}

.c-contact .c-figure {
  margin-bottom: 0.5em;
}

.c-contact__bodytext {
  color: #535353;
}

.theme-dark .c-contact__bodytext {
  color: #fff;
}

.c-contact + .c-contact {
  margin-top: 1em;
}

/* ==========================================================================
   Dashboard
   ========================================================================== */
.c-dashboard__meta {
  color: #535353;
}

.theme-dark .c-dashboard__meta {
  color: #fff;
}

.c-dashboard__button {
  position: absolute !important;
  right: .5rem;
  top: .5rem;
  z-index: 1;
}

.c-dashboard__button:before {
  font-size: 1.5rem;
}

.theme-1 .c-dashboard__button:before {
  color: #002157;
}

.theme-2 .c-dashboard__button:before {
  color: #c73400;
}

.theme-3 .c-dashboard__button:before {
  color: #0e6260;
}

.theme-4 .c-dashboard__button:before {
  color: #1e9acb;
}

.theme-5 .c-dashboard__button:before {
  color: #306b34;
}

.theme-6 .c-dashboard__button:before {
  color: #2d3e43;
}

.theme-7 .c-dashboard__button:before {
  color: #702e8e;
}

.theme-dark .c-dashboard__button:before {
  color: #62bebc;
}

.theme-goffit .c-dashboard__button:before {
  color: #127371;
}

.c-dashboard .is-open {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

@media screen and (min-width: 900px) {
  .c-dashboard {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    height: 360px;
    position: relative;
    width: 100%;
  }
  .c-dashboard__item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50%;
    width: 25%;
  }
  .c-dashboard__item:first-child {
    height: 100%;
    width: 50%;
  }
  .c-dashboard__block-link {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #888;
    color: #fff !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    width: 100%;
    font-size: 1rem;
  }
  .theme-1 .c-dashboard__block-link {
    background-color: rgba(0, 33, 87, 0.8);
  }
  .theme-2 .c-dashboard__block-link {
    background-color: rgba(199, 52, 0, 0.8);
  }
  .theme-3 .c-dashboard__block-link {
    background-color: rgba(14, 98, 96, 0.8);
  }
  .theme-4 .c-dashboard__block-link {
    background-color: rgba(30, 154, 203, 0.8);
  }
  .theme-5 .c-dashboard__block-link {
    background-color: rgba(48, 107, 52, 0.8);
  }
  .theme-6 .c-dashboard__block-link {
    background-color: rgba(45, 62, 67, 0.8);
  }
  .theme-7 .c-dashboard__block-link {
    background-color: rgba(112, 46, 142, 0.8);
  }
  .theme-dark .c-dashboard__block-link {
    background-color: rgba(52, 101, 100, 0.8);
  }
  .theme-goffit .c-dashboard__block-link {
    background-color: rgba(18, 115, 113, 0.8);
  }
  .c-dashboard__block-link:hover, .c-dashboard__block-link:focus {
    background-color: #7b7b7b;
  }
  .theme-1 .c-dashboard__block-link:hover, .theme-1 .c-dashboard__block-link:focus {
    background-color: rgba(0, 23, 62, 0.8);
  }
  .theme-2 .c-dashboard__block-link:hover, .theme-2 .c-dashboard__block-link:focus {
    background-color: rgba(174, 45, 0, 0.8);
  }
  .theme-3 .c-dashboard__block-link:hover, .theme-3 .c-dashboard__block-link:focus {
    background-color: rgba(11, 76, 74, 0.8);
  }
  .theme-4 .c-dashboard__block-link:hover, .theme-4 .c-dashboard__block-link:focus {
    background-color: rgba(27, 137, 181, 0.8);
  }
  .theme-5 .c-dashboard__block-link:hover, .theme-5 .c-dashboard__block-link:focus {
    background-color: rgba(40, 89, 43, 0.8);
  }
  .theme-6 .c-dashboard__block-link:hover, .theme-6 .c-dashboard__block-link:focus {
    background-color: rgba(35, 48, 52, 0.8);
  }
  .theme-7 .c-dashboard__block-link:hover, .theme-7 .c-dashboard__block-link:focus {
    background-color: rgba(97, 40, 123, 0.8);
  }
  .theme-dark .c-dashboard__block-link:hover, .theme-dark .c-dashboard__block-link:focus {
    background-color: rgba(43, 84, 83, 0.8);
  }
  .theme-goffit .c-dashboard__block-link:hover, .theme-goffit .c-dashboard__block-link:focus {
    background-color: rgba(15, 93, 91, 0.8);
  }
  .c-dashboard__block-link span {
    margin-bottom: 0 !important;
    padding: 0 .5rem;
    pointer-events: none;
    text-align: center;
    width: 100%;
    font-size: 1rem;
  }
  .c-dashboard__content {
    background-color: #eee;
    bottom: 0;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
  .theme-1 .c-dashboard__content {
    background-color: #eaf0f5;
  }
  .theme-2 .c-dashboard__content {
    background-color: #fff8f2;
  }
  .theme-3 .c-dashboard__content {
    background-color: #e1f4f3;
  }
  .theme-4 .c-dashboard__content {
    background-color: #eaf4f8;
  }
  .theme-5 .c-dashboard__content {
    background-color: #eaf5eb;
  }
  .theme-6 .c-dashboard__content {
    background-color: #eaf4f8;
  }
  .theme-7 .c-dashboard__content {
    background-color: #f6f2f8;
  }
  .theme-dark .c-dashboard__content {
    background-color: #1d1d1d;
  }
  .theme-dark .c-dashboard__content {
    background-color: #000;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
  }
  .theme-goffit .c-dashboard__content {
    background-color: #ecf4f4;
  }
  .c-dashboard__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  .c-dashboard__image {
    padding-left: 2.5rem;
    width: 30%;
  }
  .c-dashboard__text {
    padding-left: 1.5rem;
    padding-right: 2.5rem;
    width: 70%;
  }
}

@media screen and (min-width: 0) and (max-width: 900px) {
  .c-dashboard__item {
    background-image: none !important;
    margin-bottom: 3em;
  }
  .c-dashboard__block-link {
    display: none;
  }
  .c-dashboard__image {
    margin-bottom: .5rem;
  }
  .c-dashboard__button {
    display: none !important;
  }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.c-gallery:before, .c-gallery:after {
  clear: both;
  content: '';
  display: table;
}

@media screen and (min-width: 500px) {
  .c-gallery__inner {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.c-gallery .c-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.c-gallery .slick-prev {
  left: 0;
}

.c-gallery .slick-next {
  right: 0;
}

@media screen and (min-width: 500px) {
  .c-gallery .c-figure {
    float: left;
    padding: 10px;
  }
  .c-gallery--3col .c-figure,
  .c-gallery--4col .c-figure {
    width: 50%;
  }
}

@media screen and (min-width: 900px) {
  .c-gallery--4col .c-figure {
    width: 33.333%;
  }
}

@media screen and (min-width: 1300px) {
  .c-gallery--3col .c-figure {
    width: 33.333%;
  }
  .c-gallery--4col .c-figure {
    width: 25%;
  }
}

.js-gallery-paging li {
  display: none;
  text-align: right;
}

.js-gallery-paging li.slick-active {
  display: block;
}

/* ==========================================================================
   Hero Image
   ========================================================================== */
.c-hero-image {
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1700px) {
  .c-hero-image img {
    width: 100%;
  }
}

.c-hero-image--left .c-hero-image__bodytext,
.c-hero-image--left .c-hero-image__headline,
.c-hero-image--center .c-hero-image__bodytext,
.c-hero-image--center .c-hero-image__headline {
  color: #fff;
}

.c-hero-image--left .c-hero-image__headline,
.c-hero-image--center .c-hero-image__headline {
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: .5em;
}

@media screen and (min-width: 500px) {
  .c-hero-image--left .c-hero-image__headline,
  .c-hero-image--center .c-hero-image__headline {
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: .5em;
  }
}

.c-hero-image--left .c-hero-image__bodytext,
.c-hero-image--center .c-hero-image__bodytext {
  font-size: 18px;
  line-height: 1.2;
}

@media screen and (min-width: 500px) {
  .c-hero-image--left .c-hero-image__bodytext,
  .c-hero-image--center .c-hero-image__bodytext {
    font-size: 24px;
    line-height: 1.1;
  }
}

/**
 * Content on left side (Microsite)
 */
.c-hero-image--left {
  background-color: #888;
}

@media screen and (min-width: 2000px) {
  .c-hero-image--left {
    height: 850px;
  }
  .c-hero-image--left .c-figure__inner {
    height: 850px;
  }
  .c-hero-image--left img {
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
}

.theme-1 .c-hero-image--left {
  background-color: #002157;
}

.theme-2 .c-hero-image--left {
  background-color: #c73400;
}

.theme-3 .c-hero-image--left {
  background-color: #0e6260;
}

.theme-4 .c-hero-image--left {
  background-color: #1e9acb;
}

.theme-5 .c-hero-image--left {
  background-color: #306b34;
}

.theme-6 .c-hero-image--left {
  background-color: #2d3e43;
}

.theme-7 .c-hero-image--left {
  background-color: #702e8e;
}

.theme-dark .c-hero-image--left {
  background-color: #62bebc;
}

.theme-dark .c-hero-image--left {
  background-color: #000;
}

.c-hero-image--left .c-hero-image__inner {
  background-color: #888;
  padding: 1.5rem 0;
  width: 100%;
}

@media screen and (min-width: 700px) {
  .c-hero-image--left .c-hero-image__inner {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 50%;
  }
}

.theme-1 .c-hero-image--left .c-hero-image__inner {
  background-color: #002157;
}

.theme-2 .c-hero-image--left .c-hero-image__inner {
  background-color: #c73400;
}

.theme-3 .c-hero-image--left .c-hero-image__inner {
  background-color: #0e6260;
}

.theme-4 .c-hero-image--left .c-hero-image__inner {
  background-color: #1e9acb;
}

.theme-5 .c-hero-image--left .c-hero-image__inner {
  background-color: #306b34;
}

.theme-6 .c-hero-image--left .c-hero-image__inner {
  background-color: #2d3e43;
}

.theme-7 .c-hero-image--left .c-hero-image__inner {
  background-color: #702e8e;
}

.theme-dark .c-hero-image--left .c-hero-image__inner {
  background-color: #62bebc;
}

.theme-dark .c-hero-image--left .c-hero-image__inner {
  background-color: #000;
}

@media screen and (min-width: 700px) {
  .c-hero-image--left .c-hero-image__content {
    max-width: 660px;
    padding: 0 1rem;
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-image--left .c-hero-image__content {
    left: 8%;
  }
}

.c-hero-image--left .c-hero-image__headline {
  text-transform: uppercase;
}

@media screen and (min-width: 1300px) {
  .c-hero-image--left .c-hero-image__headline {
    font-size: 60px;
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-image--left .c-hero-image__headline {
    font-size: 74px;
  }
}

@media screen and (min-width: 1300px) {
  .c-hero-image--left .c-hero-image__bodytext {
    font-size: 32px;
  }
}

.c-hero-image--left .c-sticker {
  font-size: 22px;
}

@media screen and (min-width: 1300px) {
  .c-hero-image--left .c-sticker {
    font-size: 32px;
  }
}

.c-hero-image--left .c-button--primary {
  border: 0;
  border-radius: 0;
  line-height: 3;
  padding-left: 1em;
  padding-right: 4em;
  font-size: 1.333rem;
  margin-bottom: 0;
}

.theme-1 .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #002157;
}

.theme-2 .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #c73400;
}

.theme-3 .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #0e6260;
}

.theme-4 .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #1e9acb;
}

.theme-5 .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #306b34;
}

.theme-6 .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #2d3e43;
}

.theme-7 .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #702e8e;
}

.theme-dark .c-hero-image--left .c-button--primary {
  background-color: #fff;
  color: #62bebc;
}

.theme-dark .c-hero-image--left .c-button--primary {
  color: #000;
}

.c-hero-image--left .c-button--primary:before {
  padding-left: 1em;
  padding-right: 1em;
  right: 0;
  top: 0;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}

.theme-1 .c-hero-image--left .c-button--primary:before {
  background-color: #c2d2e3;
  color: #002157;
}

.theme-2 .c-hero-image--left .c-button--primary:before {
  background-color: #ebccc1;
  color: #c73400;
}

.theme-3 .c-hero-image--left .c-button--primary:before {
  background-color: #aeddda;
  color: #0e6260;
}

.theme-4 .c-hero-image--left .c-button--primary:before {
  background-color: #8fcae2;
  color: #1e9acb;
}

.theme-5 .c-hero-image--left .c-button--primary:before {
  background-color: #83af86;
  color: #306b34;
}

.theme-6 .c-hero-image--left .c-button--primary:before {
  background-color: #607176;
  color: #2d3e43;
}

.theme-7 .c-hero-image--left .c-button--primary:before {
  background-color: #d6c9dd;
  color: #702e8e;
}

.theme-dark .c-hero-image--left .c-button--primary:before {
  background-color: #62bebc;
  color: #62bebc;
}

.theme-dark .c-hero-image--left .c-button--primary:before {
  color: #000;
}

@media screen and (min-width: 700px) {
  .c-hero-image--left .c-button--primary {
    position: absolute;
    right: 0;
    -webkit-transform: translate(100%, -50%);
        -ms-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
    top: 50%;
  }
}

@media screen and (min-width: 900px) {
  .c-hero-image--left .c-button--primary {
    bottom: 2rem;
    right: -4rem;
    top: auto;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-image--left .c-button--primary {
    bottom: 4rem;
  }
}

@media screen and (min-width: 700px) {
  .c-hero-image--left .c-copyright {
    left: auto;
    right: 0;
  }
}

/**
 * Content centered (Onepager)
 */
@media screen and (min-width: 2000px) {
  .c-hero-image--center {
    height: 680px;
  }
  .c-hero-image--center .c-figure__inner {
    height: 680px;
  }
  .c-hero-image--center img {
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  .c-hero-image--center img {
    z-index: -1;
  }
}

.c-hero-image--center .c-hero-image__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.c-hero-image--center .c-hero-image__content {
  margin: 0 auto;
  max-width: 370px;
  text-align: center;
  padding: 0 10px;
}

@media screen and (min-width: 500px) {
  .c-hero-image--center .c-hero-image__content {
    max-width: 500px;
  }
}

@media screen and (min-width: 700px) {
  .c-hero-image--center .c-hero-image__content {
    max-width: 660px;
  }
}

@media screen and (min-width: 1100px) {
  .c-hero-image--center .c-hero-image__content {
    max-width: 760px;
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-image--center .c-hero-image__content {
    max-width: 980px;
  }
}

@media screen and (min-width: 700px) {
  .c-hero-image--center .c-hero-image__headline {
    font-size: 52px;
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-image--center .c-hero-image__headline {
    font-size: 82px;
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-image--center .c-hero-image__bodytext {
    font-size: 28px;
  }
}

.c-hero-image--center .c-button--primary {
  display: none;
  height: 5rem;
  font-size: 18px;
  line-height: 1.1;
  overflow: hidden;
  padding: .8rem 0 0;
  white-space: normal;
  width: 5rem;
}

@media screen and (min-width: 360px) {
  .c-hero-image--center .c-button--primary {
    display: inline-block;
  }
}

@media screen and (min-width: 700px) {
  .c-hero-image--center .c-button--primary {
    font-size: 21px;
    height: 104px;
    padding-top: 16px;
    width: 104px;
  }
}

.theme-1 .c-hero-image--center .c-button--primary {
  background-color: #c2d2e3;
  border-color: #c2d2e3;
  color: #002157;
}

.theme-2 .c-hero-image--center .c-button--primary {
  background-color: #ebccc1;
  border-color: #ebccc1;
  color: #c73400;
}

.theme-3 .c-hero-image--center .c-button--primary {
  background-color: #aeddda;
  border-color: #aeddda;
  color: #0e6260;
}

.theme-4 .c-hero-image--center .c-button--primary {
  background-color: #8fcae2;
  border-color: #8fcae2;
  color: #1e9acb;
}

.theme-5 .c-hero-image--center .c-button--primary {
  background-color: #83af86;
  border-color: #83af86;
  color: #306b34;
}

.theme-6 .c-hero-image--center .c-button--primary {
  background-color: #607176;
  border-color: #607176;
  color: #2d3e43;
}

.theme-7 .c-hero-image--center .c-button--primary {
  background-color: #d6c9dd;
  border-color: #d6c9dd;
  color: #702e8e;
}

.theme-dark .c-hero-image--center .c-button--primary {
  background-color: #62bebc;
  border-color: #62bebc;
  color: #62bebc;
}

.c-hero-image--center .c-button--primary:before {
  position: absolute;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 3.2rem;
}

@media screen and (min-width: 700px) {
  .c-hero-image--center .c-button--primary:before {
    top: 60px;
  }
}

@media screen and (min-width: 1100px) {
  .c-hero-image--center .c-copyright {
    bottom: auto;
    top: 0;
  }
}

/**
 * Hero Image Simple (Goffit)
 */
@media screen and (min-width: 2000px) {
  .c-hero-image--simple {
    height: 900px;
  }
  .c-hero-image--simple .c-figure__inner {
    height: 900px;
  }
  .c-hero-image--simple img {
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
}

.theme-goffit .c-hero-image--simple {
  margin-top: -64px;
}

@media screen and (min-width: 700px) {
  .theme-goffit .c-hero-image--simple {
    margin-top: -90px;
  }
}

@media screen and (min-width: 1100px) {
  .theme-goffit .c-hero-image--simple {
    margin-top: -145px;
  }
}

@media screen and (min-width: 1700px) {
  .theme-goffit .c-hero-image--simple {
    margin-top: -200px;
  }
}

.c-hero-image--simple .c-hero-image__inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.c-hero-image--simple .c-hero-image__content {
  max-width: 320px;
}

@media screen and (min-width: 700px) {
  .c-hero-image--simple .c-hero-image__content {
    max-width: 420px;
  }
}

@media screen and (min-width: 900px) {
  .c-hero-image--simple .c-hero-image__content {
    max-width: 520px;
    -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
            transform: translateX(20%);
  }
}

@media screen and (min-width: 1100px) {
  .c-hero-image--simple .c-hero-image__content {
    max-width: 620px;
    -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
            transform: translateX(20%);
  }
}

@media screen and (min-width: 1500px) {
  .c-hero-image--simple .c-hero-image__content {
    max-width: 800px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

.theme-goffit .c-hero-image--simple .c-hero-image__content {
  margin-top: 64px;
}

@media screen and (min-width: 700px) {
  .theme-goffit .c-hero-image--simple .c-hero-image__content {
    margin-top: 90px;
  }
}

@media screen and (min-width: 1100px) {
  .theme-goffit .c-hero-image--simple .c-hero-image__content {
    margin-top: 145px;
  }
}

@media screen and (min-width: 1700px) {
  .theme-goffit .c-hero-image--simple .c-hero-image__content {
    margin-top: 200px;
  }
}

.c-hero-image--simple .c-hero-image__headline {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5px;
  -webkit-transform: skew(0, -1deg);
      -ms-transform: skew(0, -1deg);
          transform: skew(0, -1deg);
}

@media screen and (min-width: 370px) {
  .c-hero-image--simple .c-hero-image__headline {
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 700px) {
  .c-hero-image--simple .c-hero-image__headline {
    margin-bottom: 2em;
  }
}

.theme-goffit .c-hero-image--simple .c-hero-image__headline {
  font-style: normal;
  font-family: "PoppinsSemiBold", Arial, sans-serif;
  font-weight: 400;
}

.c-hero-image--simple .first,
.c-hero-image--simple .last {
  background-color: #fff;
  display: inline-block;
  font-size: 20px;
  line-height: 1.1;
  padding: .4em;
}

.c-hero-image--simple .first {
  font-size: 24px;
  padding: .4em 0;
  position: relative;
}

@media screen and (min-width: 370px) {
  .c-hero-image--simple .first {
    font-size: 28px;
  }
}

@media screen and (min-width: 700px) {
  .c-hero-image--simple .first {
    font-size: 34px;
  }
}

@media screen and (min-width: 1500px) {
  .c-hero-image--simple .first {
    font-size: 60px;
    padding: .4em;
  }
}

.c-hero-image--simple .first:before, .c-hero-image--simple .first:after {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.c-hero-image--simple .first:before {
  left: -1rem;
  -webkit-transform: skew(-10deg);
      -ms-transform: skew(-10deg);
          transform: skew(-10deg);
}

.c-hero-image--simple .first:after {
  right: -1rem;
  -webkit-transform: skew(4deg);
      -ms-transform: skew(4deg);
          transform: skew(4deg);
}

.theme-goffit .c-hero-image--simple .first {
  color: #e66000;
}

.c-hero-image--simple .last {
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transform: skew(0, 1deg) translateY(-0.2em);
      -ms-transform: skew(0, 1deg) translateY(-0.2em);
          transform: skew(0, 1deg) translateY(-0.2em);
  padding-top: .2em;
}

@media screen and (min-width: 700px) {
  .c-hero-image--simple .last {
    font-size: 28px;
  }
}

@media screen and (min-width: 1500px) {
  .c-hero-image--simple .last {
    font-size: 60px;
  }
}

.theme-goffit .c-hero-image--simple .last {
  color: #127371;
}

.c-hero-image--simple .c-hero-image__bodytext {
  max-width: 220px;
}

@media screen and (min-width: 500px) {
  .c-hero-image--simple .c-hero-image__bodytext {
    max-width: 240px;
  }
}

@media screen and (min-width: 700px) {
  .c-hero-image--simple .c-hero-image__bodytext {
    margin-bottom: 2em;
    max-width: 340px;
  }
}

@media screen and (min-width: 1500px) {
  .c-hero-image--simple .c-hero-image__bodytext {
    max-width: 680px;
    line-height: 1.5;
  }
}

.theme-goffit .c-hero-image--simple .c-button--primary {
  line-height: 3 !important;
  padding: 0 2em;
}

@media screen and (min-width: 700px) {
  .theme-goffit .c-hero-image--simple .c-hero-image__bodytext, .theme-goffit
  .c-hero-image--simple .c-button--primary {
    font-size: 18px;
  }
}

@media screen and (min-width: 1500px) {
  .theme-goffit .c-hero-image--simple .c-hero-image__bodytext, .theme-goffit
  .c-hero-image--simple .c-button--primary {
    font-size: 20px;
  }
}

.theme-goffit .c-hero-image--simple .c-copyright {
  left: auto;
  right: 0;
}

@media screen and (min-width: 500px) {
  .theme-goffit .c-hero-image--simple .c-copyright {
    bottom: 2rem;
  }
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.c-hero-slider {
  position: relative;
  /**
     * Image
     */
  /**
     * Button navigation
     */
  /**
     * Dot navigation
     */
}

.c-hero-slider__item {
  background-color: #888;
  display: none;
  overflow: hidden;
  position: relative;
}

.theme-1 .c-hero-slider__item {
  background-color: #002157;
}

.theme-2 .c-hero-slider__item {
  background-color: #c73400;
}

.theme-3 .c-hero-slider__item {
  background-color: #0e6260;
}

.theme-4 .c-hero-slider__item {
  background-color: #1e9acb;
}

.theme-5 .c-hero-slider__item {
  background-color: #306b34;
}

.theme-6 .c-hero-slider__item {
  background-color: #2d3e43;
}

.theme-7 .c-hero-slider__item {
  background-color: #702e8e;
}

.theme-dark .c-hero-slider__item {
  background-color: #62bebc;
}

.theme-dark .c-hero-slider__item {
  background-color: #000;
}

.no-js .c-hero-slider__item {
  display: block;
  margin-bottom: 1em;
}

.c-hero-slider__content {
  background-color: #888;
  border-radius: 4px;
  color: #fff;
  padding: 1rem 0;
  width: 100%;
}

.theme-1 .c-hero-slider__content {
  background-color: rgba(0, 33, 87, 0.8);
}

.theme-2 .c-hero-slider__content {
  background-color: rgba(199, 52, 0, 0.8);
}

.theme-3 .c-hero-slider__content {
  background-color: rgba(14, 98, 96, 0.8);
}

.theme-4 .c-hero-slider__content {
  background-color: rgba(30, 154, 203, 0.8);
}

.theme-5 .c-hero-slider__content {
  background-color: rgba(48, 107, 52, 0.8);
}

.theme-6 .c-hero-slider__content {
  background-color: rgba(45, 62, 67, 0.8);
}

.theme-7 .c-hero-slider__content {
  background-color: rgba(112, 46, 142, 0.8);
}

.theme-dark .c-hero-slider__content {
  background-color: rgba(52, 101, 100, 0.8);
}

.theme-dark .c-hero-slider__content {
  background-color: #000;
}

@media screen and (min-width: 700px) {
  .c-hero-slider__content {
    left: 50%;
    max-width: 600px;
    padding: 1rem 2rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 1300px) {
  .c-hero-slider__content {
    max-width: 720px;
    left: 10%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.c-hero-slider__headline {
  color: #fff !important;
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: .5em;
}

@media screen and (min-width: 700px) {
  .c-hero-slider__headline {
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: .5em;
  }
}

@media screen and (min-width: 1700px) {
  .c-hero-slider__headline {
    font-size: 54px;
  }
}

.c-hero-slider__headline:before {
  background-color: #fff;
  content: '';
  display: block;
  height: .25rem;
  margin: .5rem 0;
  width: 3rem;
}

.theme-1 .c-hero-slider__headline:before {
  background-color: #c2d2e3;
}

.theme-2 .c-hero-slider__headline:before {
  background-color: #ebccc1;
}

.theme-3 .c-hero-slider__headline:before {
  background-color: #aeddda;
}

.theme-4 .c-hero-slider__headline:before {
  background-color: #8fcae2;
}

.theme-5 .c-hero-slider__headline:before {
  background-color: #83af86;
}

.theme-6 .c-hero-slider__headline:before {
  background-color: #607176;
}

.theme-7 .c-hero-slider__headline:before {
  background-color: #d6c9dd;
}

.theme-dark .c-hero-slider__headline:before {
  background-color: #62bebc;
}

.c-hero-slider__bodytext {
  font-size: 18px;
  line-height: 1.2;
}

@media screen and (min-width: 700px) {
  .c-hero-slider__bodytext {
    font-size: 24px;
    line-height: 1.1;
  }
}

.c-hero-slider .c-button--primary {
  font-size: 20px;
}

.theme-1 .c-hero-slider .c-button--primary {
  background-color: #c2d2e3;
  color: #002157;
}

.theme-2 .c-hero-slider .c-button--primary {
  background-color: #ebccc1;
  color: #c73400;
}

.theme-3 .c-hero-slider .c-button--primary {
  background-color: #aeddda;
  color: #0e6260;
}

.theme-4 .c-hero-slider .c-button--primary {
  background-color: #8fcae2;
  color: #1e9acb;
}

.theme-5 .c-hero-slider .c-button--primary {
  background-color: #83af86;
  color: #306b34;
}

.theme-6 .c-hero-slider .c-button--primary {
  background-color: #607176;
  color: #2d3e43;
}

.theme-7 .c-hero-slider .c-button--primary {
  background-color: #d6c9dd;
  color: #702e8e;
}

.theme-dark .c-hero-slider .c-button--primary {
  background-color: #62bebc;
  color: #62bebc;
}

.theme-dark .c-hero-slider .c-button--primary {
  background-color: transparent;
  color: #fff;
}

.c-hero-slider .c-figure__inner {
  width: 100%;
}

@media screen and (min-width: 1700px) {
  .c-hero-slider img {
    width: 100%;
  }
}

@media screen and (min-width: 2000px) {
  .c-hero-slider {
    height: 850px;
  }
  .c-hero-slider .c-figure__inner {
    height: 850px;
  }
  .c-hero-slider img {
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
}

.c-hero-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.c-hero-slider .slick-prev {
  left: 10px;
}

@media screen and (min-width: 900px) {
  .c-hero-slider .slick-prev {
    left: 3%;
  }
}

.c-hero-slider .slick-next {
  right: 10px;
}

@media screen and (min-width: 900px) {
  .c-hero-slider .slick-next {
    right: 3%;
  }
}

.c-hero-slider .slick-dots {
  left: 0;
  position: absolute;
  text-align: center;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
}

.c-hero-slider .slick-dots li {
  display: inline-block;
  margin: 5px 5px 2rem;
}

.c-hero-slider .slick-dots button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  height: .8rem;
  padding: 0;
  text-indent: -999rem;
  width: .8rem;
}

.c-hero-slider .slick-dots .slick-active button {
  background-color: #fff;
}

/* ==========================================================================
   iFrame Privacy - 2 click solution to load iFrame
   ========================================================================== */
.c-iframe-privacy {
  cursor: pointer;
}

.c-iframe-privacy > [class*='u-aspect-ratio'] {
  display: none;
}

.c-iframe-privacy.iframe-loaded > [class*='u-aspect-ratio'] {
  display: block;
}

.c-iframe-privacy.iframe-loaded .c-iframe-privacy__content {
  display: none;
}

.c-iframe-privacy__content {
  overflow: hidden;
  position: relative;
}

.c-iframe-privacy__content:after {
  background-color: rgba(204, 204, 204, 0.6);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.theme-1 .c-iframe-privacy__content:after {
  background-color: rgba(0, 33, 87, 0.8);
}

.theme-2 .c-iframe-privacy__content:after {
  background-color: rgba(199, 52, 0, 0.8);
}

.theme-3 .c-iframe-privacy__content:after {
  background-color: rgba(14, 98, 96, 0.8);
}

.theme-4 .c-iframe-privacy__content:after {
  background-color: rgba(30, 154, 203, 0.8);
}

.theme-5 .c-iframe-privacy__content:after {
  background-color: rgba(48, 107, 52, 0.8);
}

.theme-6 .c-iframe-privacy__content:after {
  background-color: rgba(45, 62, 67, 0.8);
}

.theme-7 .c-iframe-privacy__content:after {
  background-color: rgba(112, 46, 142, 0.8);
}

.theme-dark .c-iframe-privacy__content:after {
  background-color: rgba(52, 101, 100, 0.8);
}

.theme-goffit .c-iframe-privacy__content:after {
  background-color: rgba(18, 115, 113, 0.8);
}

.c-iframe-privacy__content:hover:after {
  background-color: transparent;
}

.c-iframe-privacy img {
  width: 100%;
}

.c-iframe-privacy iframe {
  background-color: transparent;
}

.c-iframe-privacy__text {
  color: #fff;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  z-index: 1;
}

.no-js .c-iframe-privacy {
  display: none;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Ordered and Unordered List
 */
.c-list {
  margin-bottom: 1em;
  margin-left: 1.5em;
}

.c-list li {
  margin: 0.5em 0;
}

.c-list > li:first-of-type {
  margin-top: 0;
}

.c-list ol,
.c-list ul {
  padding-left: 2em;
}

.c-list--ordered li {
  counter-increment: step-counter;
  position: relative;
}

.c-list--ordered li:before {
  content: counter(step-counter) ".";
  left: -1.5em;
  position: absolute;
  top: 0;
}

.theme-1 .c-list--ordered li:before {
  color: #002157;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .c-list--ordered li:before {
  color: #c73400;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .c-list--ordered li:before {
  color: #0e6260;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .c-list--ordered li:before {
  color: #1e9acb;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .c-list--ordered li:before {
  color: #306b34;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .c-list--ordered li:before {
  color: #2d3e43;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .c-list--ordered li:before {
  color: #702e8e;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-list--ordered li:before {
  color: #62bebc;
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-goffit .c-list--ordered li:before {
  color: #127371;
  font-style: normal;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 400;
}

.c-list--unordered li {
  position: relative;
}

.c-list--unordered li:before {
  background-color: #151515;
  border-radius: 50%;
  content: '';
  display: inline-block;
  height: 8px;
  left: -1.5em;
  position: absolute;
  top: .5em;
  width: 8px;
}

.theme-1 .c-list--unordered li:before {
  background-color: #c2d2e3;
}

.theme-2 .c-list--unordered li:before {
  background-color: #ebccc1;
}

.theme-3 .c-list--unordered li:before {
  background-color: #aeddda;
}

.theme-4 .c-list--unordered li:before {
  background-color: #8fcae2;
}

.theme-5 .c-list--unordered li:before {
  background-color: #83af86;
}

.theme-6 .c-list--unordered li:before {
  background-color: #607176;
}

.theme-7 .c-list--unordered li:before {
  background-color: #d6c9dd;
}

.theme-dark .c-list--unordered li:before {
  background-color: #62bebc;
}

.theme-goffit .c-list--unordered li:before {
  background-color: #a1c9c9;
}

/**
 * Download List
 */
.c-list-download__item {
  border-top: 1px solid;
  padding: 1rem 0;
}

.c-list-download__item:last-of-type {
  border-bottom: 1px solid;
}

.theme-1 .c-list-download__item {
  border-color: #c2d2e3;
}

.theme-2 .c-list-download__item {
  border-color: #ebccc1;
}

.theme-3 .c-list-download__item {
  border-color: #aeddda;
}

.theme-4 .c-list-download__item {
  border-color: #8fcae2;
}

.theme-5 .c-list-download__item {
  border-color: #83af86;
}

.theme-6 .c-list-download__item {
  border-color: #607176;
}

.theme-7 .c-list-download__item {
  border-color: #d6c9dd;
}

.theme-dark .c-list-download__item {
  border-color: #62bebc;
}

.theme-goffit .c-list-download__item {
  border-color: #dbeaea;
}

/**
 * Kicker List
 */
.c-list-kicker__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.c-list-kicker__item {
  padding: 5px;
}

/* ==========================================================================
   Letters List
   ========================================================================== */
.c-list-letters {
  /**
     * Letter List in Dropdown Combination
     */
}

.c-list-letters__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.c-list-letters__item {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media screen and (min-width: 370px) {
  .c-list-letters__item {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%;
  }
}

@media screen and (min-width: 500px) {
  .c-list-letters__item {
    -webkit-flex-basis: 16%;
        -ms-flex-preferred-size: 16%;
            flex-basis: 16%;
    max-width: 16%;
  }
}

@media screen and (min-width: 700px) {
  .c-list-letters__item {
    -webkit-flex-basis: 14%;
        -ms-flex-preferred-size: 14%;
            flex-basis: 14%;
    max-width: 14%;
  }
}

@media screen and (min-width: 900px) {
  .c-list-letters__item {
    -webkit-flex-basis: 16%;
        -ms-flex-preferred-size: 16%;
            flex-basis: 16%;
    max-width: 16%;
  }
}

@media screen and (min-width: 1100px) {
  .c-list-letters__item {
    -webkit-flex-basis: 14%;
        -ms-flex-preferred-size: 14%;
            flex-basis: 14%;
    max-width: 14%;
  }
}

@media screen and (min-width: 1200px) {
  .c-list-letters__item {
    -webkit-flex-basis: 12.5%;
        -ms-flex-preferred-size: 12.5%;
            flex-basis: 12.5%;
    max-width: 12.5%;
  }
}

.c-list-letters__inner {
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.c-list-letters__inner [aria-current='true'] {
  background-color: #ccc;
  border-color: #ccc;
  cursor: default;
}

.c-list-letters__inner [aria-current='true']:hover, .c-list-letters__inner [aria-current='true']:focus, .c-list-letters__inner [aria-current='true']:active {
  color: #fff;
}

.theme-goffit .c-list-letters__inner [aria-current='true'] {
  background-color: #e66000;
  border-color: #e66000;
}

.c-list-letters__inner .c-button {
  padding: 0;
  width: 100%;
}

.theme-goffit .c-list-letters__inner .c-button {
  font-size: 21px;
  line-height: 2.2 !important;
}

@media screen and (min-width: 600px) {
  .theme-goffit .c-list-letters__inner .c-button {
    line-height: 3 !important;
  }
}

@media screen and (min-width: 900px) {
  .theme-goffit .c-list-letters__inner .c-button {
    line-height: 3.2 !important;
  }
}

.c-dropdown__content .c-list-letters {
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

@media screen and (min-width: 1300px) {
  .c-dropdown__content .c-list-letters {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
}

/* ==========================================================================
   Logo Bar
   ========================================================================== */
.c-logo-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
}

@media screen and (min-width: 500px) {
  .c-logo-bar {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-logo-bar__item {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  padding: 10px;
}

.c-logo-bar__item img {
  background-color: #fff;
  margin: 0 auto;
  max-height: -webkit-calc(100px + 10px * 2);
  max-height: calc(100px + 10px * 2);
  padding: 10px;
}

.c-footer .c-logo-bar__item img {
  max-height: -webkit-calc(50px + 10px * 2);
  max-height: calc(50px + 10px * 2);
}

/* ==========================================================================
   Logo Slider
   ========================================================================== */
@media screen and (min-width: 500px) {
  .c-logo-slider {
    margin-left: -10px;
    margin-right: -10px;
  }
  .c-logo-slider .slick-slide {
    margin: 0 10px;
  }
}

.c-logo-slider__inner:before, .c-logo-slider__inner:after {
  clear: both;
  content: '';
  display: table;
}

.c-logo-slider__item-wrapper {
  float: left;
  height: 180px;
  display: none;
}

.no-js .c-logo-slider__item-wrapper,
.slick-slide .c-logo-slider__item-wrapper {
  display: block;
}

.no-js .c-logo-slider__item-wrapper {
  padding: 10px;
  width: 25%;
}

.c-logo-slider__item {
  display: table;
  height: 100%;
  table-layout: fixed;
  width: 100%;
}

.c-logo-slider__image {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.c-logo-slider__image img {
  height: auto;
  margin: 0 auto;
  max-height: 180px;
}

.no-js .u-lazy-img {
  display: none;
}

/* ==========================================================================
   Logo Wall
   ========================================================================== */
.c-logo-wall {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.c-logo-wall__item {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  padding: 10px;
  width: 50%;
}

@media screen and (min-width: 500px) {
  .c-logo-wall__item {
    width: 33.333%;
  }
}

@media screen and (min-width: 900px) {
  .c-logo-wall__item {
    width: 25%;
  }
}

.c-logo-wall__item img {
  margin: 0 auto;
  max-height: 180px;
}

/* ==========================================================================
   Quote
   ========================================================================== */
.c-quote__hr {
  margin: 0;
}

.c-quote__inner {
  padding: 2rem 0;
  text-align: center;
}

.c-quote__bodytext {
  padding: 0 2rem;
}

.c-quote__meta {
  display: block;
}

.c-quote__meta--name {
  color: #535353;
}

.theme-dark .c-quote__meta--name {
  color: #fff;
}

.c-quote i {
  font-size: 4rem;
}

.theme-1 .c-quote i {
  color: #c2d2e3;
}

.theme-2 .c-quote i {
  color: #ebccc1;
}

.theme-3 .c-quote i {
  color: #aeddda;
}

.theme-4 .c-quote i {
  color: #8fcae2;
}

.theme-5 .c-quote i {
  color: #83af86;
}

.theme-6 .c-quote i {
  color: #607176;
}

.theme-7 .c-quote i {
  color: #d6c9dd;
}

.theme-dark .c-quote i {
  color: #62bebc;
}

.theme-goffit .c-quote i {
  color: #dbeaea;
}

/* ==========================================================================
   Section
   ========================================================================== */
.c-section {
  padding: 3em 0;
  position: relative;
}

.c-section__headline {
  margin-bottom: 1em !important;
  text-align: center;
}

.c-section [class*='u-space-b']:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 500px) {
  .theme-goffit .c-section.u-color-bg\:white {
    padding-bottom: 6em;
  }
  .theme-goffit .c-section.u-color-bg\:white:before {
    background-color: #fff;
    content: '';
    height: 2rem;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: skew(0deg, -1deg) translateY(-1rem);
        -ms-transform: skew(0deg, -1deg) translateY(-1rem);
            transform: skew(0deg, -1deg) translateY(-1rem);
    width: 100%;
  }
}

@media screen and (min-width: 500px) and (min-width: 2300px) {
  .theme-goffit .c-section.u-color-bg\:white:before {
    display: none;
  }
}

@media screen and (min-width: 500px) {
  .theme-goffit .c-section.u-color-bg\:light {
    padding-bottom: 6em;
  }
  .theme-goffit .c-section.u-color-bg\:light:before {
    background-color: #ecf4f4;
    content: '';
    height: 2rem;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: skew(0deg, -1deg) translateY(-1rem);
        -ms-transform: skew(0deg, -1deg) translateY(-1rem);
            transform: skew(0deg, -1deg) translateY(-1rem);
    width: 100%;
  }
}

@media screen and (min-width: 500px) and (min-width: 2300px) {
  .theme-goffit .c-section.u-color-bg\:light:before {
    display: none;
  }
}

@media screen and (min-width: 500px) {
  .theme-goffit .c-section.u-color-bg\:dark {
    padding-bottom: 6em;
  }
  .theme-goffit .c-section.u-color-bg\:dark:before {
    background-color: #127371;
    content: '';
    height: 2rem;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: skew(0deg, -1deg) translateY(-1rem);
        -ms-transform: skew(0deg, -1deg) translateY(-1rem);
            transform: skew(0deg, -1deg) translateY(-1rem);
    width: 100%;
  }
}

@media screen and (min-width: 500px) and (min-width: 2300px) {
  .theme-goffit .c-section.u-color-bg\:dark:before {
    display: none;
  }
}

/* ==========================================================================
   Social Share
   ========================================================================== */
.c-social-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-social-share .c-button {
  color: #fff;
  height: 45px;
  font-size: 18px;
  line-height: 45px;
  margin: .5rem;
  padding-left: 3em;
  padding-right: 3em;
}

@media screen and (min-width: 0) and (max-width: 499px) {
  .c-social-share .c-button {
    padding-left: 40px;
    padding-right: 40px;
  }
  .c-social-share .c-button span {
    display: none;
  }
  .c-social-share .c-button:before {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 500px) {
  .c-social-share .c-button:before {
    padding-left: 1em;
  }
}

.c-social-share [class*='facebook'] {
  background-color: #39579a;
  border-color: #39579a;
}

.c-social-share [class*='linkedin'] {
  background-color: #3076b0;
  border-color: #3076b0;
}

.c-social-share [class*='instagram'] {
  background-color: #bc2a8d;
  border-color: #bc2a8d;
}

.c-social-share [class*='twitter'] {
  background-color: #50abf1;
  border-color: #50abf1;
}

.c-social-share [class*='whatsapp'] {
  background-color: #04c164;
  border-color: #04c164;
}

.c-social-share [class*='xing'] {
  background-color: #286366;
  border-color: #286366;
}

.c-social-share [class*='facebook']:before,
.c-social-share [class*='linkedin']:before,
.c-social-share [class*='instagram']:before,
.c-social-share [class*='twitter']:before,
.c-social-share [class*='whatsapp']:before,
.c-social-share [class*='xing']:before {
  color: #fff !important;
}

/* ==========================================================================
   Table (responsive)
   ========================================================================== */
/**
 * Table Mixins
 */
/**
 * Table Color Mixins
 */
/**
 * Table wrapper
 */
@media screen and (min-width: 0) and (max-width: 499px) {
  .c-table-wrapper {
    overflow-x: scroll;
  }
}

.c-table {
  width: 100%;
  /**
     * Table modifier
     */
  /**
     * Zebra striping
     */
  /**
     * Table head color
     */
}

.c-table--mobile {
  /**
     * Behave like a row
     */
}

.c-table--mobile .c-table__cell,
.c-table--mobile .c-table__cell-th {
  display: block;
  padding: 0.5em 0;
  text-align: left;
}

.c-table--mobile .c-table__row-th {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.c-table--mobile .c-table__row:not(:last-of-type) {
  border-bottom: 2px solid;
}

.theme-1 .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(0, 33, 87, 0.8);
}

.theme-2 .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(199, 52, 0, 0.8);
}

.theme-3 .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(14, 98, 96, 0.8);
}

.theme-4 .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(30, 154, 203, 0.8);
}

.theme-5 .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(48, 107, 52, 0.8);
}

.theme-6 .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(45, 62, 67, 0.8);
}

.theme-7 .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(112, 46, 142, 0.8);
}

.theme-dark .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(52, 101, 100, 0.8);
}

.theme-goffit .c-table--mobile .c-table__row:not(:last-of-type) {
  border-color: rgba(18, 115, 113, 0.8);
}

.c-table--mobile .c-table__cell {
  border-bottom: 1px solid #ccc;
  padding-left: 50%;
  position: relative;
}

.theme-1 .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #c2d2e3;
}

.theme-2 .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #ebccc1;
}

.theme-3 .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #aeddda;
}

.theme-4 .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #8fcae2;
}

.theme-5 .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #83af86;
}

.theme-6 .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #607176;
}

.theme-7 .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #d6c9dd;
}

.theme-dark .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #62bebc;
}

.theme-goffit .c-table--mobile .c-table__cell {
  border-bottom: 1px solid #dbeaea;
}

.c-table--mobile .c-table__cell:before {
  content: attr(data-label);
  display: inline-block;
  margin-left: -100%;
  width: 100%;
}

.theme-1 .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-table--mobile .c-table__cell:before {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .c-table--mobile .c-table__cell:before {
  color: #000;
}

.theme-goffit .c-table--mobile .c-table__cell:before {
  font-style: normal;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 400;
}

.c-table--mobile .c-table__body {
  border: 1px solid #ccc;
  border-bottom: none;
}

.theme-1 .c-table--mobile .c-table__body {
  border: 1px solid #c2d2e3;
  border-bottom: none;
}

.theme-2 .c-table--mobile .c-table__body {
  border: 1px solid #ebccc1;
  border-bottom: none;
}

.theme-3 .c-table--mobile .c-table__body {
  border: 1px solid #aeddda;
  border-bottom: none;
}

.theme-4 .c-table--mobile .c-table__body {
  border: 1px solid #8fcae2;
  border-bottom: none;
}

.theme-5 .c-table--mobile .c-table__body {
  border: 1px solid #83af86;
  border-bottom: none;
}

.theme-6 .c-table--mobile .c-table__body {
  border: 1px solid #607176;
  border-bottom: none;
}

.theme-7 .c-table--mobile .c-table__body {
  border: 1px solid #d6c9dd;
  border-bottom: none;
}

.theme-dark .c-table--mobile .c-table__body {
  border: 1px solid #62bebc;
  border-bottom: none;
}

.theme-goffit .c-table--mobile .c-table__body {
  border: 1px solid #dbeaea;
  border-bottom: none;
}

.c-table--mobile .c-table__cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
  padding-top: 0;
  width: 100%;
}

.c-table--mobile .c-table__cell:before {
  padding: 1rem .5rem;
  width: 70%;
}

.c-table--mobile .c-table__cell span {
  display: inline-block;
  padding: 0.5em;
  width: 130%;
}

.theme-dark .c-table--mobile .c-table__cell span {
  background-color: #000;
}

.c-table--desktop {
  margin: 0 auto;
  /**
     * Behave like a row
     */
}

.c-table--desktop .c-table__cell,
.c-table--desktop .c-table__cell-th {
  border: 1px solid #ccc;
  display: table-cell;
  padding: 0.5em;
}

.theme-1 .c-table--desktop .c-table__cell, .theme-1
.c-table--desktop .c-table__cell-th {
  border: 1px solid #c2d2e3;
}

.theme-2 .c-table--desktop .c-table__cell, .theme-2
.c-table--desktop .c-table__cell-th {
  border: 1px solid #ebccc1;
}

.theme-3 .c-table--desktop .c-table__cell, .theme-3
.c-table--desktop .c-table__cell-th {
  border: 1px solid #aeddda;
}

.theme-4 .c-table--desktop .c-table__cell, .theme-4
.c-table--desktop .c-table__cell-th {
  border: 1px solid #8fcae2;
}

.theme-5 .c-table--desktop .c-table__cell, .theme-5
.c-table--desktop .c-table__cell-th {
  border: 1px solid #83af86;
}

.theme-6 .c-table--desktop .c-table__cell, .theme-6
.c-table--desktop .c-table__cell-th {
  border: 1px solid #607176;
}

.theme-7 .c-table--desktop .c-table__cell, .theme-7
.c-table--desktop .c-table__cell-th {
  border: 1px solid #d6c9dd;
}

.theme-dark .c-table--desktop .c-table__cell, .theme-dark
.c-table--desktop .c-table__cell-th {
  border: 1px solid #62bebc;
}

.theme-goffit .c-table--desktop .c-table__cell, .theme-goffit
.c-table--desktop .c-table__cell-th {
  border: 1px solid #dbeaea;
}

.c-table--desktop .c-table__row-th {
  position: static;
}

.theme-dark .c-table--desktop .c-table__row-th {
  color: #000;
}

.c-table--desktop .c-table__row {
  background-color: #fff;
}

.theme-dark .c-table--desktop .c-table__row {
  background-color: #000;
}

.c-table--desktop .c-table__cell {
  padding: 0.5em;
}

.c-table--desktop .c-table__cell:before {
  display: none;
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-table--responsive {
    /**
     * Behave like a row
     */
  }
  .c-table--responsive .c-table__cell,
  .c-table--responsive .c-table__cell-th {
    display: block;
    padding: 0.5em 0;
    text-align: left;
  }
  .c-table--responsive .c-table__row-th {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
  .c-table--responsive .c-table__row:not(:last-of-type) {
    border-bottom: 2px solid;
  }
  .theme-1 .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(0, 33, 87, 0.8);
  }
  .theme-2 .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(199, 52, 0, 0.8);
  }
  .theme-3 .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(14, 98, 96, 0.8);
  }
  .theme-4 .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(30, 154, 203, 0.8);
  }
  .theme-5 .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(48, 107, 52, 0.8);
  }
  .theme-6 .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(45, 62, 67, 0.8);
  }
  .theme-7 .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(112, 46, 142, 0.8);
  }
  .theme-dark .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(52, 101, 100, 0.8);
  }
  .theme-goffit .c-table--responsive .c-table__row:not(:last-of-type) {
    border-color: rgba(18, 115, 113, 0.8);
  }
  .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #ccc;
    padding-left: 50%;
    position: relative;
  }
  .theme-1 .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #c2d2e3;
  }
  .theme-2 .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #ebccc1;
  }
  .theme-3 .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #aeddda;
  }
  .theme-4 .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #8fcae2;
  }
  .theme-5 .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #83af86;
  }
  .theme-6 .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #607176;
  }
  .theme-7 .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #d6c9dd;
  }
  .theme-dark .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #62bebc;
  }
  .theme-goffit .c-table--responsive .c-table__cell {
    border-bottom: 1px solid #dbeaea;
  }
  .c-table--responsive .c-table__cell:before {
    content: attr(data-label);
    display: inline-block;
    margin-left: -100%;
    width: 100%;
  }
  .theme-1 .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-2 .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-3 .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-4 .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-5 .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-6 .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-7 .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-dark .c-table--responsive .c-table__cell:before {
    font-family: "SourceSansProSemibold", Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
  }
  .theme-dark .c-table--responsive .c-table__cell:before {
    color: #000;
  }
  .theme-goffit .c-table--responsive .c-table__cell:before {
    font-style: normal;
    font-family: "RobotoBold", Arial, sans-serif;
    font-weight: 400;
  }
  .c-table--responsive .c-table__body {
    border: 1px solid #ccc;
    border-bottom: none;
  }
  .theme-1 .c-table--responsive .c-table__body {
    border: 1px solid #c2d2e3;
    border-bottom: none;
  }
  .theme-2 .c-table--responsive .c-table__body {
    border: 1px solid #ebccc1;
    border-bottom: none;
  }
  .theme-3 .c-table--responsive .c-table__body {
    border: 1px solid #aeddda;
    border-bottom: none;
  }
  .theme-4 .c-table--responsive .c-table__body {
    border: 1px solid #8fcae2;
    border-bottom: none;
  }
  .theme-5 .c-table--responsive .c-table__body {
    border: 1px solid #83af86;
    border-bottom: none;
  }
  .theme-6 .c-table--responsive .c-table__body {
    border: 1px solid #607176;
    border-bottom: none;
  }
  .theme-7 .c-table--responsive .c-table__body {
    border: 1px solid #d6c9dd;
    border-bottom: none;
  }
  .theme-dark .c-table--responsive .c-table__body {
    border: 1px solid #62bebc;
    border-bottom: none;
  }
  .theme-goffit .c-table--responsive .c-table__body {
    border: 1px solid #dbeaea;
    border-bottom: none;
  }
  .c-table--responsive .c-table__cell {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0;
    padding-top: 0;
    width: 100%;
  }
  .c-table--responsive .c-table__cell:before {
    padding: 1rem .5rem;
    width: 70%;
  }
  .c-table--responsive .c-table__cell span {
    display: inline-block;
    padding: 0.5em;
    width: 130%;
  }
  .theme-dark .c-table--responsive .c-table__cell span {
    background-color: #000;
  }
}

@media screen and (min-width: 700px) {
  .c-table--responsive {
    margin: 0 auto;
    /**
     * Behave like a row
     */
  }
  .c-table--responsive .c-table__cell,
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #ccc;
    display: table-cell;
    padding: 0.5em;
  }
  .theme-1 .c-table--responsive .c-table__cell, .theme-1
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #c2d2e3;
  }
  .theme-2 .c-table--responsive .c-table__cell, .theme-2
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #ebccc1;
  }
  .theme-3 .c-table--responsive .c-table__cell, .theme-3
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #aeddda;
  }
  .theme-4 .c-table--responsive .c-table__cell, .theme-4
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #8fcae2;
  }
  .theme-5 .c-table--responsive .c-table__cell, .theme-5
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #83af86;
  }
  .theme-6 .c-table--responsive .c-table__cell, .theme-6
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #607176;
  }
  .theme-7 .c-table--responsive .c-table__cell, .theme-7
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #d6c9dd;
  }
  .theme-dark .c-table--responsive .c-table__cell, .theme-dark
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #62bebc;
  }
  .theme-goffit .c-table--responsive .c-table__cell, .theme-goffit
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #dbeaea;
  }
  .c-table--responsive .c-table__row-th {
    position: static;
  }
  .theme-dark .c-table--responsive .c-table__row-th {
    color: #000;
  }
  .c-table--responsive .c-table__row {
    background-color: #fff;
  }
  .theme-dark .c-table--responsive .c-table__row {
    background-color: #000;
  }
  .c-table--responsive .c-table__cell {
    padding: 0.5em;
  }
  .c-table--responsive .c-table__cell:before {
    display: none;
  }
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-table--no-head .c-table__body {
    border: 1px solid #ccc;
    border-bottom: none;
  }
  .theme-1 .c-table--no-head .c-table__body {
    border: 1px solid #c2d2e3;
    border-bottom: none;
  }
  .theme-2 .c-table--no-head .c-table__body {
    border: 1px solid #ebccc1;
    border-bottom: none;
  }
  .theme-3 .c-table--no-head .c-table__body {
    border: 1px solid #aeddda;
    border-bottom: none;
  }
  .theme-4 .c-table--no-head .c-table__body {
    border: 1px solid #8fcae2;
    border-bottom: none;
  }
  .theme-5 .c-table--no-head .c-table__body {
    border: 1px solid #83af86;
    border-bottom: none;
  }
  .theme-6 .c-table--no-head .c-table__body {
    border: 1px solid #607176;
    border-bottom: none;
  }
  .theme-7 .c-table--no-head .c-table__body {
    border: 1px solid #d6c9dd;
    border-bottom: none;
  }
  .theme-dark .c-table--no-head .c-table__body {
    border: 1px solid #62bebc;
    border-bottom: none;
  }
  .theme-goffit .c-table--no-head .c-table__body {
    border-bottom: 1px solid #dbeaea;
    border-bottom: none;
  }
  .c-table--no-head .c-table__row-th {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
  .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #ccc;
    display: block;
    padding: 1em .5rem;
  }
  .theme-1 .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #c2d2e3;
  }
  .theme-2 .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #ebccc1;
  }
  .theme-3 .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #aeddda;
  }
  .theme-4 .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #8fcae2;
  }
  .theme-5 .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #83af86;
  }
  .theme-6 .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #607176;
  }
  .theme-7 .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #d6c9dd;
  }
  .theme-dark .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #62bebc;
  }
  .theme-goffit .c-table--no-head .c-table__cell {
    border-bottom: 1px solid #dbeaea;
  }
}

@media screen and (min-width: 700px) {
  .c-table--no-head {
    margin: 0 auto;
    /**
     * Behave like a row
     */
  }
  .c-table--no-head .c-table__cell,
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #ccc;
    display: table-cell;
    padding: 0.5em;
  }
  .theme-1 .c-table--no-head .c-table__cell, .theme-1
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #c2d2e3;
  }
  .theme-2 .c-table--no-head .c-table__cell, .theme-2
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #ebccc1;
  }
  .theme-3 .c-table--no-head .c-table__cell, .theme-3
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #aeddda;
  }
  .theme-4 .c-table--no-head .c-table__cell, .theme-4
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #8fcae2;
  }
  .theme-5 .c-table--no-head .c-table__cell, .theme-5
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #83af86;
  }
  .theme-6 .c-table--no-head .c-table__cell, .theme-6
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #607176;
  }
  .theme-7 .c-table--no-head .c-table__cell, .theme-7
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #d6c9dd;
  }
  .theme-dark .c-table--no-head .c-table__cell, .theme-dark
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #62bebc;
  }
  .theme-goffit .c-table--no-head .c-table__cell, .theme-goffit
  .c-table--no-head .c-table__cell-th {
    border: 1px solid #dbeaea;
  }
  .c-table--no-head .c-table__row-th {
    position: static;
  }
  .theme-dark .c-table--no-head .c-table__row-th {
    color: #000;
  }
  .c-table--no-head .c-table__row {
    background-color: #fff;
  }
  .theme-dark .c-table--no-head .c-table__row {
    background-color: #000;
  }
  .c-table--no-head .c-table__cell {
    padding: 0.5em;
  }
  .c-table--no-head .c-table__cell:before {
    display: none;
  }
  .c-table--no-head .c-table__row-th {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}

.c-table--striped.c-table--mobile .c-table__row span {
  background-color: #eee;
}

.theme-1 .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #eaf0f5;
}

.theme-2 .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #fff8f2;
}

.theme-3 .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #e1f4f3;
}

.theme-4 .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #eaf4f8;
}

.theme-5 .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #eaf5eb;
}

.theme-6 .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #eaf4f8;
}

.theme-7 .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #f6f2f8;
}

.theme-dark .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #1d1d1d;
}

.theme-goffit .c-table--striped.c-table--mobile .c-table__row span {
  background-color: #ecf4f4;
}

.c-table--striped.c-table--mobile .c-table__row:nth-of-type(odd) span {
  background-color: #fff;
}

.theme-dark .c-table--striped.c-table--mobile .c-table__row:nth-of-type(odd) span {
  background-color: #000;
}

.c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #eee;
}

.theme-1 .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #eaf0f5;
}

.theme-2 .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #fff8f2;
}

.theme-3 .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #e1f4f3;
}

.theme-4 .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #eaf4f8;
}

.theme-5 .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #eaf5eb;
}

.theme-6 .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #eaf4f8;
}

.theme-7 .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #f6f2f8;
}

.theme-dark .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #1d1d1d;
}

.theme-goffit .c-table--striped.c-table--desktop .c-table__row:nth-of-type(even) {
  background-color: #ecf4f4;
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #eee;
  }
  .theme-1 .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #eaf0f5;
  }
  .theme-2 .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #fff8f2;
  }
  .theme-3 .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #e1f4f3;
  }
  .theme-4 .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #eaf4f8;
  }
  .theme-5 .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #eaf5eb;
  }
  .theme-6 .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #eaf4f8;
  }
  .theme-7 .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #f6f2f8;
  }
  .theme-dark .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #1d1d1d;
  }
  .theme-goffit .c-table--striped.c-table--responsive .c-table__row span {
    background-color: #ecf4f4;
  }
  .c-table--striped.c-table--responsive .c-table__row:nth-of-type(odd) span {
    background-color: #fff;
  }
  .theme-dark .c-table--striped.c-table--responsive .c-table__row:nth-of-type(odd) span {
    background-color: #000;
  }
}

@media screen and (min-width: 700px) {
  .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #eee;
  }
  .theme-1 .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #eaf0f5;
  }
  .theme-2 .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #fff8f2;
  }
  .theme-3 .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #e1f4f3;
  }
  .theme-4 .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #eaf4f8;
  }
  .theme-5 .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #eaf5eb;
  }
  .theme-6 .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #eaf4f8;
  }
  .theme-7 .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #f6f2f8;
  }
  .theme-dark .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #1d1d1d;
  }
  .theme-goffit .c-table--striped.c-table--responsive .c-table__row:nth-of-type(even) {
    background-color: #ecf4f4;
  }
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-table--striped.c-table--no-head .c-table__row {
    background-color: #eee;
  }
  .theme-1 .c-table--striped.c-table--no-head .c-table__row {
    background-color: #eaf0f5;
  }
  .theme-2 .c-table--striped.c-table--no-head .c-table__row {
    background-color: #fff8f2;
  }
  .theme-3 .c-table--striped.c-table--no-head .c-table__row {
    background-color: #e1f4f3;
  }
  .theme-4 .c-table--striped.c-table--no-head .c-table__row {
    background-color: #eaf4f8;
  }
  .theme-5 .c-table--striped.c-table--no-head .c-table__row {
    background-color: #eaf5eb;
  }
  .theme-6 .c-table--striped.c-table--no-head .c-table__row {
    background-color: #eaf4f8;
  }
  .theme-7 .c-table--striped.c-table--no-head .c-table__row {
    background-color: #f6f2f8;
  }
  .theme-dark .c-table--striped.c-table--no-head .c-table__row {
    background-color: #1d1d1d;
  }
  .theme-goffit .c-table--striped.c-table--no-head .c-table__row {
    background-color: #ecf4f4;
  }
  .c-table--striped.c-table--no-head .c-table__row:nth-of-type(odd) {
    background-color: #fff;
  }
}

@media screen and (min-width: 700px) {
  .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #eee;
  }
  .theme-1 .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #eaf0f5;
  }
  .theme-2 .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #fff8f2;
  }
  .theme-3 .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #e1f4f3;
  }
  .theme-4 .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #eaf4f8;
  }
  .theme-5 .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #eaf5eb;
  }
  .theme-6 .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #eaf4f8;
  }
  .theme-7 .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #f6f2f8;
  }
  .theme-dark .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #1d1d1d;
  }
  .theme-goffit .c-table--striped.c-table--no-head .c-table__row:nth-of-type(even) {
    background-color: #ecf4f4;
  }
}

.c-table--mobile .c-table__cell:before {
  background-color: #ccc;
}

.theme-1 .c-table--mobile .c-table__cell:before {
  background: #c2d2e3;
}

.theme-2 .c-table--mobile .c-table__cell:before {
  background: #ebccc1;
}

.theme-3 .c-table--mobile .c-table__cell:before {
  background: #aeddda;
}

.theme-4 .c-table--mobile .c-table__cell:before {
  background: #8fcae2;
}

.theme-5 .c-table--mobile .c-table__cell:before {
  background: #83af86;
}

.theme-6 .c-table--mobile .c-table__cell:before {
  background: #607176;
}

.theme-7 .c-table--mobile .c-table__cell:before {
  background: #d6c9dd;
}

.theme-dark .c-table--mobile .c-table__cell:before {
  background: #62bebc;
}

.theme-goffit .c-table--mobile .c-table__cell:before {
  background: #dbeaea;
}

.c-table--desktop .c-table__cell-th {
  background-color: #ccc;
}

.theme-1 .c-table--desktop .c-table__cell-th {
  background: #c2d2e3;
}

.theme-2 .c-table--desktop .c-table__cell-th {
  background: #ebccc1;
}

.theme-3 .c-table--desktop .c-table__cell-th {
  background: #aeddda;
}

.theme-4 .c-table--desktop .c-table__cell-th {
  background: #8fcae2;
}

.theme-5 .c-table--desktop .c-table__cell-th {
  background: #83af86;
}

.theme-6 .c-table--desktop .c-table__cell-th {
  background: #607176;
}

.theme-7 .c-table--desktop .c-table__cell-th {
  background: #d6c9dd;
}

.theme-dark .c-table--desktop .c-table__cell-th {
  background: #62bebc;
}

.theme-goffit .c-table--desktop .c-table__cell-th {
  background: #dbeaea;
}

@media screen and (min-width: 0) and (max-width: 699px) {
  .c-table--responsive .c-table__cell:before {
    background-color: #ccc;
  }
  .theme-1 .c-table--responsive .c-table__cell:before {
    background: #c2d2e3;
  }
  .theme-2 .c-table--responsive .c-table__cell:before {
    background: #ebccc1;
  }
  .theme-3 .c-table--responsive .c-table__cell:before {
    background: #aeddda;
  }
  .theme-4 .c-table--responsive .c-table__cell:before {
    background: #8fcae2;
  }
  .theme-5 .c-table--responsive .c-table__cell:before {
    background: #83af86;
  }
  .theme-6 .c-table--responsive .c-table__cell:before {
    background: #607176;
  }
  .theme-7 .c-table--responsive .c-table__cell:before {
    background: #d6c9dd;
  }
  .theme-dark .c-table--responsive .c-table__cell:before {
    background: #62bebc;
  }
  .theme-goffit .c-table--responsive .c-table__cell:before {
    background: #dbeaea;
  }
}

@media screen and (min-width: 700px) {
  .c-table--responsive .c-table__cell-th {
    background-color: #ccc;
  }
  .theme-1 .c-table--responsive .c-table__cell-th {
    background: #c2d2e3;
  }
  .theme-2 .c-table--responsive .c-table__cell-th {
    background: #ebccc1;
  }
  .theme-3 .c-table--responsive .c-table__cell-th {
    background: #aeddda;
  }
  .theme-4 .c-table--responsive .c-table__cell-th {
    background: #8fcae2;
  }
  .theme-5 .c-table--responsive .c-table__cell-th {
    background: #83af86;
  }
  .theme-6 .c-table--responsive .c-table__cell-th {
    background: #607176;
  }
  .theme-7 .c-table--responsive .c-table__cell-th {
    background: #d6c9dd;
  }
  .theme-dark .c-table--responsive .c-table__cell-th {
    background: #62bebc;
  }
  .theme-goffit .c-table--responsive .c-table__cell-th {
    background: #dbeaea;
  }
}

/* ==========================================================================
   Teaser
   ========================================================================== */
.c-teaser {
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  height: 100%;
  max-width: 640px;
  position: relative;
}

.theme-dark .c-teaser {
  background-color: #000;
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
}

.c-teaser .c-teaser__header,
.c-teaser .c-teaser__text {
  background-color: #fff;
  padding: 0 1rem;
}

.theme-dark .c-teaser .c-teaser__header, .theme-dark
.c-teaser .c-teaser__text {
  background-color: #000;
}

.c-teaser__meta {
  border-bottom: 1px solid #ccc;
  display: block;
  padding-bottom: .5rem;
}

.theme-1 .c-teaser__meta {
  border-color: #c2d2e3;
}

.theme-2 .c-teaser__meta {
  border-color: #ebccc1;
}

.theme-3 .c-teaser__meta {
  border-color: #aeddda;
}

.theme-4 .c-teaser__meta {
  border-color: #8fcae2;
}

.theme-5 .c-teaser__meta {
  border-color: #83af86;
}

.theme-6 .c-teaser__meta {
  border-color: #607176;
}

.theme-7 .c-teaser__meta {
  border-color: #d6c9dd;
}

.theme-dark .c-teaser__meta {
  border-color: #62bebc;
}

.theme-goffit .c-teaser__meta {
  border-color: #dbeaea;
}

.c-teaser__meta, .c-teaser__headline {
  padding-top: 1rem;
}

.c-teaser__block-link {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/**
 * Hover behavior desktop
 */
@media screen and (min-width: 1300px) {
  .c-teaser__inner {
    height: 100%;
    overflow: hidden;
    padding-bottom: 20px;
  }
  .c-teaser__content {
    position: relative;
  }
  .c-teaser .c-copyright, .c-teaser__content {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .c-teaser__text {
    left: 0;
    position: absolute;
    top: 100%;
  }
  .c-teaser__text p {
    opacity: 0;
    padding-top: .5rem;
    -webkit-transition: opacity .2s ease-in .1s;
    -o-transition: opacity .2s ease-in .1s;
    transition: opacity .2s ease-in .1s;
  }
  .c-teaser__headline {
    margin-bottom: 0;
  }
  .c-teaser:hover, .c-teaser:focus {
    cursor: pointer;
  }
  .c-teaser:hover .c-copyright,
  .c-teaser:hover .c-teaser__content, .c-teaser:focus .c-copyright,
  .c-teaser:focus .c-teaser__content {
    -webkit-transform: translateY(-6rem);
        -ms-transform: translateY(-6rem);
            transform: translateY(-6rem);
  }
  .c-teaser:hover .c-teaser__text p, .c-teaser:focus .c-teaser__text p {
    opacity: 1;
  }
}

/**
 * Teaser List
 */
@media screen and (min-width: 0) and (max-width: 699px) {
  .c-teaser-list [class*='o-grid__col']:nth-child(n+2) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 699px) and (max-width: 899px) {
  .c-teaser-list [class*='o-grid__col']:nth-child(n+3) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 900px) {
  .c-teaser-list--2col [class*='o-grid__col']:nth-child(n+3) {
    margin-top: 20px;
  }
  .c-teaser-list--3col [class*='o-grid__col']:nth-child(n+4) {
    margin-top: 20px;
  }
}

/* ==========================================================================
   Text
   ========================================================================== */
.c-content--text[class*='u-color-bg'] {
  padding: 1rem;
}

/* ==========================================================================
   Text Media
   ========================================================================== */
.c-text-media {
  /**
     * Image left
     */
  /**
     * Block Text
     */
}

.c-text-media:before, .c-text-media:after {
  clear: both;
  content: '';
  display: table;
}

.c-text-media--left .c-text-media__image {
  margin-top: .2rem;
  max-width: 280px;
}

@media screen and (min-width: 600px) {
  .c-text-media--left .c-text-media__image {
    float: left;
    max-width: -webkit-calc(280px + 1rem);
    max-width: calc(280px + 1rem);
    padding-right: 1rem;
  }
}

.c-text-media .c-figure {
  margin-bottom: 2em;
  max-width: 820px;
}

.c-text-media--block-text.c-text-media--left .c-text-media__image {
  max-width: 200px;
}

@media screen and (min-width: 600px) {
  .c-text-media--block-text.c-text-media--left .c-text-media__text {
    padding-left: 200px;
  }
}

/* ==========================================================================
   Utilities and helper classes
   ========================================================================== */
/* ==========================================================================
   Configuration for SCSS-Framework
   ========================================================================== */
/* ==========================================================================
   Configuration within the project files
   ========================================================================== */
/* ==========================================================================
   Font Variables
   ========================================================================== */
/* ==========================================================================
   Icons
   ========================================================================== */
/* ==========================================================================
   Spacing Variables
   ========================================================================== */
/* ==========================================================================
   Theme Variables
   ========================================================================== */
/**
 * Themes
 * http://sassmeister.com/gist/e99b7a8c01ef87d0dff8
 *
 * usage:'@include theme() {
 *  color: $t-primary;
 * }'
 */
/* ==========================================================================
   Utilities and helper classes with ability to override anything which goes
   before in the triangle (declarations in this layer will carry !important)
   ========================================================================== */
/* ==========================================================================
   Colors
   Additional colors not defined in 'Colors Module' (settings.framework-config.scss > $fw-colors)
   Required to ensure proper color class usage of Themes (settings.themes.scss)
   ========================================================================== */
/**
 * Background Colors
 */
.u-color-bg {
  /**
     * Section and marked Element in Text
     */
  /**
     * Highlighted Text Component
     */
  /**
     * Dark Section: Goffit only!
     */
}

.u-color-bg\:light {
  background-color: #eee;
}

.theme-1 .u-color-bg\:light {
  background-color: #eaf0f5;
}

.theme-2 .u-color-bg\:light {
  background-color: #fff8f2;
}

.theme-3 .u-color-bg\:light {
  background-color: #e1f4f3;
}

.theme-4 .u-color-bg\:light {
  background-color: #eaf4f8;
}

.theme-5 .u-color-bg\:light {
  background-color: #eaf5eb;
}

.theme-6 .u-color-bg\:light {
  background-color: #eaf4f8;
}

.theme-7 .u-color-bg\:light {
  background-color: #f6f2f8;
}

.theme-dark .u-color-bg\:light {
  background-color: #1d1d1d;
}

.theme-goffit .u-color-bg\:light {
  background-color: #ecf4f4;
}

.u-color-bg\:medium {
  background-color: #ccc;
}

.theme-1 .u-color-bg\:medium {
  background-color: #e4ebf0;
}

.theme-2 .u-color-bg\:medium {
  background-color: #fff2e6;
}

.theme-3 .u-color-bg\:medium {
  background-color: #e1f4f3;
}

.theme-4 .u-color-bg\:medium {
  background-color: #d5e7ef;
}

.theme-5 .u-color-bg\:medium {
  background-color: #dbeddc;
}

.theme-6 .u-color-bg\:medium {
  background-color: #cddce0;
}

.theme-7 .u-color-bg\:medium {
  background-color: #ece4f0;
}

.theme-dark .u-color-bg\:medium {
  background-color: #232323;
}

.theme-goffit .u-color-bg\:medium {
  background-color: #dbeaea;
}

.u-color-bg\:dark {
  background-color: #aaa;
}

.theme-1 .u-color-bg\:dark {
  background-color: transparent;
}

.theme-2 .u-color-bg\:dark {
  background-color: transparent;
}

.theme-3 .u-color-bg\:dark {
  background-color: transparent;
}

.theme-4 .u-color-bg\:dark {
  background-color: transparent;
}

.theme-5 .u-color-bg\:dark {
  background-color: transparent;
}

.theme-6 .u-color-bg\:dark {
  background-color: transparent;
}

.theme-7 .u-color-bg\:dark {
  background-color: transparent;
}

.theme-dark .u-color-bg\:dark {
  background-color: transparent;
}

.theme-goffit .u-color-bg\:dark {
  background-color: #127371;
}

.theme-goffit .u-color-bg\:dark h2,
.theme-goffit .u-color-bg\:dark h3:not(.c-teaser__headline),
.theme-goffit .u-color-bg\:dark h4,
.theme-goffit .u-color-bg\:dark figcaption,
.theme-goffit .u-color-bg\:dark label,
.theme-goffit .u-color-bg\:dark i:before,
.theme-goffit .u-color-bg\:dark [class*='u-typo-icon'],
.theme-goffit .u-color-bg\:dark [class*='bodytext'],
.theme-goffit .u-color-bg\:dark [class*='meta'],
.theme-goffit .u-color-bg\:dark [class*='data'],
.theme-goffit .u-color-bg\:dark [class*='legend'],
.theme-goffit .u-color-bg\:dark [class*='label'],
.theme-goffit .u-color-bg\:dark [class*='msg'],
.theme-goffit .u-color-bg\:dark [class*='required'],
.theme-goffit .u-color-bg\:dark .c-button,
.theme-goffit .u-color-bg\:dark .c-link,
.theme-goffit .u-color-bg\:dark .c-list,
.theme-goffit .u-color-bg\:dark .c-list a,
.theme-goffit .u-color-bg\:dark .c-list--ordered li:before {
  color: #fff;
}

.theme-goffit .u-color-bg\:dark [class*='u-typo-icon']:before {
  color: #fff !important;
}

.theme-goffit .u-color-bg\:dark .c-button {
  border-color: #fff;
}

.theme-goffit .u-color-bg\:dark .c-button--primary {
  background-color: #fff;
  color: #127371;
}

.theme-goffit .u-color-bg\:dark .c-accordion__switch:after,
.theme-goffit .u-color-bg\:dark .c-accordion__switch:before,
.theme-goffit .u-color-bg\:dark .c-list--unordered li:before {
  background-color: #fff;
}

.theme-goffit .u-color-bg\:dark .u-color-bg\:white h2,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white figcaption,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white label,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='u-typo-icon'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='bodytext'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='meta'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='data'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='legend'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='label'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='msg'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='required'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-list,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light h2,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light figcaption,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light label,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='u-typo-icon'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='bodytext'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='meta'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='data'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='legend'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='label'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='msg'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='required'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-list,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium h2,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium figcaption,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium label,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='u-typo-icon'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='bodytext'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='meta'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='data'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='legend'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='label'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='msg'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='required'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-list {
  color: #151515;
}

.theme-goffit .u-color-bg\:dark .u-color-bg\:white h3,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white h4,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white h4[class*='u-typo-icon'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:white i:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-button,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-link,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-list a,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-list--ordered li:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light h3,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light h4,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light h4[class*='u-typo-icon'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:light i:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-button,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-link,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-list a,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-list--ordered li:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium h3,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium h4,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium h4[class*='u-typo-icon'],
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium i:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-button,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-link,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-list a,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-list--ordered li:before {
  color: #127371;
}

.theme-goffit .u-color-bg\:dark .u-color-bg\:white [class*='u-typo-icon']:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light [class*='u-typo-icon']:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium [class*='u-typo-icon']:before {
  color: #127371 !important;
}

.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-button,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-button,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-button {
  border-color: #127371;
}

.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-button--primary,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-button--primary,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-button--primary {
  background-color: #127371;
  color: #fff;
}

.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-accordion__switch:after,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-accordion__switch:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:white .c-list--unordered li:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-accordion__switch:after,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-accordion__switch:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:light .c-list--unordered li:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-accordion__switch:after,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-accordion__switch:before,
.theme-goffit .u-color-bg\:dark .u-color-bg\:medium .c-list--unordered li:before {
  background-color: #127371;
}

/* ==========================================================================
   Overflow
   ========================================================================== */
.u-overflow\:hidden {
  overflow: hidden !important;
}

/* ==========================================================================
   Spacing
   ========================================================================== */
/**
 * Component margin bottom (space after each component)
 */
.u-space-b\:default {
  margin-bottom: 3em;
}

.c-main__aside .u-space-b\:default {
  margin-bottom: 2em;
}

.u-space-b\:small {
  margin-bottom: 2em;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Font Weight
 */
.theme-1 .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-2 .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-3 .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-4 .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-5 .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-6 .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-7 .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-dark .u-typo\:regular {
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.theme-1 .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-2 .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-3 .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-4 .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-5 .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-6 .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-7 .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-dark .u-typo\:bold {
  font-family: "SourceSansProSemibold", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.theme-goffit .u-typo\:regular {
  font-style: normal;
  font-family: "RobotoRegular", Arial, sans-serif;
  font-weight: 400;
}

.theme-goffit .u-typo\:bold {
  font-style: normal;
  font-family: "RobotoBold", Arial, sans-serif;
  font-weight: 400;
}

.theme-goffit h1.u-typo\:bold {
  font-style: normal;
  font-family: "PoppinsSemiBold", Arial, sans-serif;
  font-weight: 400;
}

.theme-goffit h2.u-typo\:bold,
.theme-goffit h3.u-typo\:bold {
  font-style: normal;
  font-family: "RobotoSlabBold", Arial, serif;
  font-weight: 400;
}

/**
 * Space After & Goffit font-size adjustments
 */
.u-typo\:xxl {
  margin-bottom: 0.5em;
}

.u-typo\:xl {
  margin-bottom: 0.5em;
}

.u-typo\:l {
  margin-bottom: 0.5em;
}

@media screen and (min-width: 1100px) {
  .theme-goffit .u-typo\:l {
    font-size: 1.185rem;
  }
}

@media screen and (min-width: 1300px) {
  .theme-goffit .u-typo\:l {
    font-size: 1.2rem;
  }
}

.u-typo\:m {
  margin-bottom: 0.5em;
}

@media screen and (min-width: 1100px) {
  .theme-goffit .u-typo\:m {
    font-size: .889rem;
  }
}

@media screen and (min-width: 1300px) {
  .theme-goffit .u-typo\:m {
    font-size: .9rem;
  }
}

.theme-goffit .u-typo\:s {
  font-size: 12px;
}

/**
 * Icons
 */
.u-typo-icon\:center, .u-typo-icon\:left, .u-typo-icon\:right {
  display: inline-block;
  position: relative;
  /**
         * Icon Font
         */
}

.u-typo-icon\:center:before, .u-typo-icon\:left:before, .u-typo-icon\:right:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'IconFont' !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: inherit;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.theme-1 .u-typo-icon\:center:not(.c-button):before, .theme-1 .u-typo-icon\:left:not(.c-button):before, .theme-1 .u-typo-icon\:right:not(.c-button):before {
  color: #002157;
}

.theme-2 .u-typo-icon\:center:not(.c-button):before, .theme-2 .u-typo-icon\:left:not(.c-button):before, .theme-2 .u-typo-icon\:right:not(.c-button):before {
  color: #c73400;
}

.theme-3 .u-typo-icon\:center:not(.c-button):before, .theme-3 .u-typo-icon\:left:not(.c-button):before, .theme-3 .u-typo-icon\:right:not(.c-button):before {
  color: #0e6260;
}

.theme-4 .u-typo-icon\:center:not(.c-button):before, .theme-4 .u-typo-icon\:left:not(.c-button):before, .theme-4 .u-typo-icon\:right:not(.c-button):before {
  color: #1e9acb;
}

.theme-5 .u-typo-icon\:center:not(.c-button):before, .theme-5 .u-typo-icon\:left:not(.c-button):before, .theme-5 .u-typo-icon\:right:not(.c-button):before {
  color: #306b34;
}

.theme-6 .u-typo-icon\:center:not(.c-button):before, .theme-6 .u-typo-icon\:left:not(.c-button):before, .theme-6 .u-typo-icon\:right:not(.c-button):before {
  color: #2d3e43;
}

.theme-7 .u-typo-icon\:center:not(.c-button):before, .theme-7 .u-typo-icon\:left:not(.c-button):before, .theme-7 .u-typo-icon\:right:not(.c-button):before {
  color: #702e8e;
}

.theme-dark .u-typo-icon\:center:not(.c-button):before, .theme-dark .u-typo-icon\:left:not(.c-button):before, .theme-dark .u-typo-icon\:right:not(.c-button):before {
  color: #62bebc;
}

.theme-goffit .u-typo-icon\:center:not(.c-button):before, .theme-goffit .u-typo-icon\:left:not(.c-button):before, .theme-goffit .u-typo-icon\:right:not(.c-button):before {
  color: #127371;
}

.u-typo-icon\:center:before {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.u-typo-icon\:left {
  padding-left: 1.5em;
}

.u-typo-icon\:left:before {
  left: 0;
}

.u-typo-icon\:right {
  padding-right: 2.5em;
}

.u-typo-icon\:right:before {
  left: auto;
  right: .5em;
}

.u-typo-icon--arrow-left:before {
  content: "";
}

.u-typo-icon--arrow-right:before {
  content: "";
}

.u-typo-icon--arrow2-down:before {
  content: "";
}

.u-typo-icon--arrow2-left:before {
  content: "";
}

.u-typo-icon--arrow2-right:before {
  content: "";
}

.u-typo-icon--arrow2-up:before {
  content: "";
}

.u-typo-icon--caution:before {
  content: "";
}

.u-typo-icon--check:before {
  content: "";
}

.u-typo-icon--close:before {
  content: "";
}

.u-typo-icon--download:before {
  content: "";
}

.u-typo-icon--error:before {
  content: "";
}

.u-typo-icon--extern:before {
  content: "";
}

.u-typo-icon--facebook:before {
  content: "";
}

.u-typo-icon--faq:before {
  content: "";
}

.u-typo-icon--file:before {
  content: "";
}

.u-typo-icon--info:before {
  content: "";
}

.u-typo-icon--instagram:before {
  content: "";
}

.u-typo-icon--linkedin:before {
  content: "";
}

.u-typo-icon--mail:before {
  content: "";
}

.u-typo-icon--phone:before {
  content: "";
}

.u-typo-icon--pin:before {
  content: "";
}

.u-typo-icon--print:before {
  content: "";
}

.u-typo-icon--quote:before {
  content: "";
}

.u-typo-icon--twitter:before {
  content: "";
}

.u-typo-icon--whatsapp:before {
  content: "";
}

.u-typo-icon--xing:before {
  content: "";
}

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  /**
     * Basic reset
     */
  *, *:before, *:after {
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }
  /**
     * Link handling
     */
  a,
  a:visited {
    text-decoration: underline !important;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 8pt !important;
  }
  .c-figure__inner a:after,
  .c-logo a:after {
    display: none !important;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
    font-size: 8pt !important;
  }
  a[href^='#']:after,
  a[href^='javascript:']:after {
    content: '';
  }
  /**
     * Page breaks
     */
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }
  blockquote,
  figure,
  pre,
  table,
  .c-form__group,
  .c-gallery,
  .c-logo-slider__item-wrapper,
  .c-table,
  .c-quote {
    page-break-inside: avoid;
  }
  /**
     * Widows and Orphans
     * Sometimes you may not want to force a page break, but at least control how many lines are displayed on the
     * current or the next page.
     */
  h2,
  h3,
  h4,
  p {
    orphans: 3;
    widows: 3;
  }
  /**
     * Images
     */
  img {
    max-width: 100% !important;
  }
  .c-teaser img,
  .c-text-media img {
    max-width: 320px !important;
  }
  .c-text-media__image {
    max-width: 100% !important;
  }
  /**
     * Typography
     */
  body {
    font-size: 10pt !important;
  }
  .u-typo\:s {
    font-size: 8pt !important;
  }
  .u-typo\:m {
    font-size: 10pt !important;
  }
  .u-typo\:l {
    font-size: 12pt !important;
  }
  .u-typo\:xl {
    font-size: 14pt !important;
  }
  .u-typo\:xxl {
    font-size: 16pt !important;
  }
  /**
     * Borders and Colors
     */
  hr,
  tbody,
  th,
  td,
  .c-form__fieldset,
  .c-form__input,
  .c-form__legend {
    border-color: #ccc !important;
  }
  .c-form__checkfields input[type='checkbox']:checked + label:before,
  .c-form__checkfields input[type='checkbox']:checked + label:after {
    border-color: #000 !important;
  }
  .c-form__checkfields input[type='radio'] + label:after {
    background-color: #000 !important;
  }
  pre,
  blockquote {
    border: 1px solid #ccc !important;
  }
  /**
     * Spacing
     */
  .o-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .u-space-b\:default {
    margin-bottom: 2em !important;
  }
  .u-typo\:m,
  .u-typo\:l,
  .u-typo\:xl,
  .u-typo\:xxl,
  .c-section__headline,
  .c-figure img {
    margin-bottom: .4em !important;
  }
  .c-section {
    padding: 0 !important;
  }
  /**
     * Hiding
     */
  .c-app__off-canvas,
  .c-breadcrumb,
  .c-button,
  .c-counter,
  .c-dashboard__block-link,
  .c-date,
  .c-footer,
  .c-form__checkfields input + label:before,
  .c-form__checkfields input:checked + label:after,
  .c-form__group.is-error .c-form__input-container:after,
  .c-form__group.is-valid .c-form__input-container:after,
  .c-hero-image,
  .c-hero-slider,
  .c-main__aside,
  .c-menu-main-placeholder,
  .c-menu-social,
  .c-pagination,
  .c-social-share,
  .c-sticker,
  .js-gallery-paging,
  .mfp-wrap,
  .o-icons {
    display: none !important;
  }
  /**
     * Adjustments (alphabetical order)
     */
  .c-accordion__switch {
    display: none !important;
  }
  .c-accordion__headline, .c-accordion__panel {
    padding-left: 0 !important;
  }
  .c-accordion__headline {
    border-color: #ccc !important;
  }
  .c-copyright {
    padding: 0 !important;
    position: static !important;
  }
  .c-dashboard__item {
    margin-bottom: 2em !important;
  }
  .c-figure a {
    text-decoration: none !important;
  }
  .c-form__checkfields input {
    border: inherit !important;
    clip: inherit !important;
    height: auto !important;
    margin: 0 !important;
    overflow: inherit !important;
    padding: 0 !important;
    position: inherit !important;
    width: auto !important;
  }
  .c-form__checkfields label {
    display: inherit !important;
    padding: 0 !important;
  }
  .c-gallery__inner {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .c-gallery__inner > .c-figure {
    float: left !important;
    padding: 0 10px !important;
    width: 20% !important;
  }
  .c-gallery .slick-slide {
    float: left !important;
    padding: 0 10px !important;
    width: 20% !important;
  }
  .c-header__col--first,
  .c-header--simple .c-header__inner {
    display: block !important;
    height: auto !important;
  }
  .c-iframe-privacy {
    max-width: 320px !important;
  }
  .c-list-download__item {
    border: none !important;
    margin-top: .5em !important;
    padding: 0 !important;
  }
  .c-download__icon,
  .c-download__meta {
    display: none !important;
  }
  .c-list--unordered,
  .c-list--unordered ul {
    list-style: circle !important;
  }
  .c-logo {
    height: 70px !important;
    margin-bottom: 40px !important;
    position: static !important;
  }
  .c-logo img {
    height: 70px !important;
  }
  .c-logo a {
    text-decoration: none !important;
  }
  .c-logo-slider__item-wrapper {
    height: 100px !important;
  }
  .c-logo-slider__inner {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .c-logo-slider__item, .c-logo-slider__image {
    display: block !important;
  }
  .c-logo-slider img {
    max-height: 80px !important;
  }
  .c-logo-slider .slick-slide {
    display: none !important;
    float: left !important;
    margin: 0 10px !important;
    width: auto !important;
  }
  .c-logo-slider .slick-slide.slick-active {
    display: block !important;
  }
  .c-logo-wall__item {
    width: 20% !important;
  }
  .page-onepager .c-page-title {
    margin-top: 0 !important;
  }
  .c-quote__inner {
    padding: 0 !important;
    text-align: left !important;
  }
  .c-quote__bodytext {
    padding: 0 !important;
  }
  .c-quote__hr {
    display: none !important;
  }
  .c-section__headline {
    text-align: left !important;
  }
  thead {
    display: table-header-group !important;
  }
  th {
    text-align: inherit !important;
  }
  .c-table--responsive {
    margin: 0 auto;
    /**
     * Behave like a row
     */
  }
  .c-table--responsive .c-table__cell,
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #ccc;
    display: table-cell;
    padding: 0.5em;
  }
  .theme-1 .c-table--responsive .c-table__cell, .theme-1
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #c2d2e3;
  }
  .theme-2 .c-table--responsive .c-table__cell, .theme-2
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #ebccc1;
  }
  .theme-3 .c-table--responsive .c-table__cell, .theme-3
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #aeddda;
  }
  .theme-4 .c-table--responsive .c-table__cell, .theme-4
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #8fcae2;
  }
  .theme-5 .c-table--responsive .c-table__cell, .theme-5
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #83af86;
  }
  .theme-6 .c-table--responsive .c-table__cell, .theme-6
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #607176;
  }
  .theme-7 .c-table--responsive .c-table__cell, .theme-7
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #d6c9dd;
  }
  .theme-dark .c-table--responsive .c-table__cell, .theme-dark
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #62bebc;
  }
  .theme-goffit .c-table--responsive .c-table__cell, .theme-goffit
  .c-table--responsive .c-table__cell-th {
    border: 1px solid #dbeaea;
  }
  .c-table--responsive .c-table__row-th {
    position: static;
  }
  .theme-dark .c-table--responsive .c-table__row-th {
    color: #000;
  }
  .c-table--responsive .c-table__row {
    background-color: #fff;
  }
  .theme-dark .c-table--responsive .c-table__row {
    background-color: #000;
  }
  .c-table--responsive .c-table__cell {
    padding: 0.5em;
  }
  .c-table--responsive .c-table__cell:before {
    display: none;
  }
  .c-content--teaser-list.u-space-b\:default {
    margin-bottom: 0 !important;
  }
  .c-teaser {
    margin-bottom: 2em !important;
  }
  .c-teaser__header,
  .c-teaser__text,
  .c-teaser__meta,
  .c-teaser__headline {
    padding: 0 !important;
  }
  .c-teaser__meta {
    border: none !important;
    margin: .5em 0 !important;
  }
  [class*='u-typo-icon'] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  [class*='u-typo-icon']:before {
    display: none !important;
  }
  .slick-track {
    width: auto !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
  }
  .slick-cloned {
    display: none !important;
  }
}

/* ==========================================================================
   Additional vendor libraries which must be be overwritten for the most part
   ========================================================================== */
/* ==========================================================================
   Configuration for SCSS-Framework
   ========================================================================== */
/* ==========================================================================
   Configuration within the project files
   ========================================================================== */
/* ==========================================================================
   Font Variables
   ========================================================================== */
/* ==========================================================================
   Icons
   ========================================================================== */
/* ==========================================================================
   Spacing Variables
   ========================================================================== */
/* ==========================================================================
   Theme Variables
   ========================================================================== */
/**
 * Themes
 * http://sassmeister.com/gist/e99b7a8c01ef87d0dff8
 *
 * usage:'@include theme() {
 *  color: $t-primary;
 * }'
 */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

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

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

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

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ==========================================================================
   Additional vendor libraries which must be be overwritten for the most part
   ========================================================================== */
/**
 * Customized Styles
 */
/* ==========================================================================
   Magnific Popup customized - prefix .custom-lightbox
   ========================================================================== */
/**
 * Reset
 */
.mfp-arrow-left:before,
.mfp-arrow-right:before {
  border: none;
  margin: 0;
}

.mfp-image-holder .mfp-close {
  opacity: 1;
}

/**
 * Lightbox Overlay
 */
.mfp-bg {
  opacity: 1;
}

.theme-1 .mfp-bg {
  background-color: rgba(0, 14, 36, 0.8);
}

.theme-2 .mfp-bg {
  background-color: rgba(148, 39, 0, 0.8);
}

.theme-3 .mfp-bg {
  background-color: rgba(8, 53, 52, 0.8);
}

.theme-4 .mfp-bg {
  background-color: rgba(23, 120, 159, 0.8);
}

.theme-5 .mfp-bg {
  background-color: rgba(32, 72, 35, 0.8);
}

.theme-6 .mfp-bg {
  background-color: rgba(25, 34, 36, 0.8);
}

.theme-7 .mfp-bg {
  background-color: rgba(82, 34, 103, 0.8);
}

.theme-dark .mfp-bg {
  background-color: rgba(35, 67, 67, 0.8);
}

.theme-dark .mfp-bg {
  background-color: #000;
}

.theme-goffit .mfp-bg {
  background-color: rgba(11, 71, 70, 0.8);
}

/**
 * Lightbox image container
 */
.mfp-image-holder {
  height: 100vh;
  overflow-y: scroll;
  /**
     * Set max width for lightbox content
     */
  /**
     * Close button
     */
}

.mfp-image-holder .mfp-content {
  max-width: 900px;
  padding: 50px 0;
}

@media screen and (min-width: 1300px) {
  .mfp-image-holder .mfp-content {
    max-width: 1200px;
  }
}

.mfp-image-holder .mfp-figure:after {
  bottom: 50px;
  top: 50px;
}

.mfp-image-holder .u-typo-icon--close {
  font-size: 16px;
  right: 10px;
  padding-right: 40px;
  position: fixed;
  text-transform: uppercase;
  top: 15px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  width: auto;
  font-family: "SourceSansProRegular", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}

@media screen and (min-width: 1100px) {
  .mfp-image-holder .u-typo-icon--close {
    right: 3rem;
    top: 30px;
  }
}

.mfp-image-holder .u-typo-icon--close:before {
  font-size: 30px;
  line-height: 30px;
  right: 0;
}

/**
 * Image wrapper to place copyright text
 */
.custom-lightbox__img-wrapper {
  position: relative;
}

img.mfp-img {
  padding: 0;
}

/**
 * Copyright text and caption text
 */
.custom-lightbox__copyright {
  background-color: #888;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: .2em;
  position: absolute;
}

.theme-1 .custom-lightbox__copyright {
  background-color: rgba(0, 33, 87, 0.8);
}

.theme-2 .custom-lightbox__copyright {
  background-color: rgba(199, 52, 0, 0.8);
}

.theme-3 .custom-lightbox__copyright {
  background-color: rgba(14, 98, 96, 0.8);
}

.theme-4 .custom-lightbox__copyright {
  background-color: rgba(30, 154, 203, 0.8);
}

.theme-5 .custom-lightbox__copyright {
  background-color: rgba(48, 107, 52, 0.8);
}

.theme-6 .custom-lightbox__copyright {
  background-color: rgba(45, 62, 67, 0.8);
}

.theme-7 .custom-lightbox__copyright {
  background-color: rgba(112, 46, 142, 0.8);
}

.theme-dark .custom-lightbox__copyright {
  background-color: rgba(52, 101, 100, 0.8);
}

.theme-dark .custom-lightbox__copyright {
  background-color: #333333;
}

.theme-goffit .custom-lightbox__copyright {
  background-color: rgba(18, 115, 113, 0.8);
}

.mfp-bottom-bar {
  margin-top: -40px;
}

.custom-lightbox__copyright {
  line-height: 1.3;
}

.mfp-title {
  line-height: 1.3;
  max-width: 780px;
  margin: 0 auto;
}

.mfp-title,
.mfp-counter {
  color: #fff;
}

/**
 * Gallery
 */
.mfp-gallery .c-button--icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9999;
}

.mfp-arrow-left {
  left: 10px;
}

@media screen and (min-width: 1100px) {
  .mfp-arrow-left {
    left: 3rem;
  }
}

.mfp-arrow-right {
  right: 10px;
}

@media screen and (min-width: 1100px) {
  .mfp-arrow-right {
    right: 3rem;
  }
}

.mfp-counter {
  font-size: 1rem;
}

/* ==========================================================================
   Slick Slider customized
   ========================================================================== */
.slick-loading .slick-list {
  background: #fff;
}
