/*================================================================
[PIXELSCHUPSER FRAMEWORK]
================================================================*/

/*

    [FARBEN] - Hier werden Hex- und RGB(A) Werte definiert

    body copy:              #666
    headlines:              #1a1a1a
    primary:                #e61c4d
    primary light:          #ff3366
    primary dark:           #bf0a37
    light:                  #eee
    dark:                   #aaa

*/

/* [IMPORT] */

@font-face {
    font-family: 'noto_sansregular';
    src: url('../fonts/NotoSans-Regular-webfont.eot');
    src: url('../fonts/NotoSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NotoSans-Regular-webfont.woff') format('woff'),
         url('../fonts/NotoSans-Regular-webfont.ttf') format('truetype'),
         url('../fonts/NotoSans-Regular-webfont.svg#noto_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'noto_sansbold';
    src: url('../fonts/NotoSans-Bold-webfont.eot');
    src: url('../fonts/NotoSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NotoSans-Bold-webfont.woff') format('woff'),
         url('../fonts/NotoSans-Bold-webfont.ttf') format('truetype'),
         url('../fonts/NotoSans-Bold-webfont.svg#noto_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'noto_serifbold';
    src: url('../fonts/NotoSerif-Bold-webfont.eot');
    src: url('../fonts/NotoSerif-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NotoSerif-Bold-webfont.woff') format('woff'),
         url('../fonts/NotoSerif-Bold-webfont.ttf') format('truetype'),
         url('../fonts/NotoSerif-Bold-webfont.svg#noto_serifbold') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'noto_serifregular';
    src: url('../fonts/NotoSerif-Regular-webfont.eot');
    src: url('../fonts/NotoSerif-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NotoSerif-Regular-webfont.woff') format('woff'),
         url('../fonts/NotoSerif-Regular-webfont.ttf') format('truetype'),
         url('../fonts/NotoSerif-Regular-webfont.svg#noto_serifregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* [FUNDAMENT] */

*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: baseline;
    color: inherit;
    font: inherit;
    font-size: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

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

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

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

html,
body {
    height: 100%;
}

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    background-color: #fff;
    color: #666;
    font: normal 400 18px/1.75 "noto_sansregular", Helvetica, Arial, sans-serif;
}

/* [HEADLINES] */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 40px 0 20px;
    color: #1a1a1a;
    line-height: 1.25;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

.headline-primary {
    color: #e61c4d;
}

/* [INLINE ELEMENTE] */

a {
    background-color: transparent;
    color: #e61c4d;
    text-decoration: none;
    cursor: pointer;
    -webkit-touch-action: manipulation;
    -moz-touch-action: manipulation;
    -ms-touch-action: manipulation;
    -o-touch-action: manipulation;
    touch-action: manipulation;
}

a:active {
    outline: 0;
}

a:active,
.not-touch a:hover {
    text-decoration: underline;
}

abbr,
acronym,
dfn {
    border-bottom: 1px solid #ddd;
    cursor: help;
}

b,
strong {
    font-weight: 700;
}

/*hcp 2022 - added for semantic reasons to have no two h1 on frontpage*/
strong.headline-fake {
    margin-top: 0;
    color: #e61c4d;
    font-family: noto_serifregular,Georgia,'Times New Roman',Times,serif;
    font-size: 42px;
    line-height: 1.25;
}

@media only screen and (max-width: 1080px) {
strong.headline-fake {
    font-size: 32px;
}
}



big {
    font-size: 24px;
}

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

code,
kbd,
samp,
tt,
var {
    font-family: monospace;
}

del,
s,
strike {
    text-decoration: line-through;
}

ins,
mark {
    padding: 0 4px;
    background-color: #ff3366;
    text-decoration: none;
}

kbd {
    padding: 4px 8px;
    border: 1px solid #ddd;
}

q:before {
    content: "„";
}

q:after {
    content: "“";
}

small,
sub,
sup {
    font-size: 12px;
}

sub,
sup {
    position: relative;
    line-height: 0;
}

sup {
    top: -8px;
}

sub {
    bottom: -4px;
}

u {
    text-decoration: underline;
}

/* [BLOCK ELEMENTE] */

address {
    margin-bottom: 20px;
    font-style: normal;
}

address:last-child {
    margin-bottom: 0;
}

address > *:last-child {
    margin-bottom: 0;
}

blockquote {
    padding: 40px 40px 40px 60px;
    margin-bottom: 20px;
    max-width: 960px;
    color: #1a1a1a;
    background: transparent url(../images/blockquote-quotes.png) no-repeat 0 0;
    background-size: 100px 120px;
    font-style: italic;
    text-align: right;
    quotes: none;
}

blockquote:last-child {
    margin-bottom: 0;
}

blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

blockquote > *:last-child {
    margin-bottom: 0;
}

blockquote em {
    display: block;
    font-size: 24px;
    text-align: left;
}

blockquote cite,
blockquote small {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

blockquote cite:before,
blockquote small:before {
    content: "— ";
}

hr {
    height: 1px;
    margin: 40px 0;
    background-color: #ccc;
}

hr:first-child {
    margin-top: 0;
}

hr:last-child {
    margin-bottom: 0;
}

p {
    margin-bottom: 20px;
}

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

pre {
    margin-bottom: 20px;
    padding: 16px 20px;
    overflow: auto;
    background-color: #eee;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

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

/* [LISTEN] */

dl {
    margin-bottom: 20px;
}

dl:last-child {
    margin-bottom: 0;
}

dd,
dt {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
}

dt {
    color: #1a1a1a;
    font-weight: 700;
}

ol,
ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

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

ol {
    list-style: outside decimal;
}

ul {
    list-style: outside disc;
}

ol > li {
    margin-bottom: 8px;
}

ol > li > ol,
ol > li > ul,
ul > li > ol,
ul > li > ul {
    margin-top: 8px;
    margin-bottom: 0;
}

/* [MEDIEN] */

figure {
    margin: 0;
    margin-bottom: 20px;
}

figure:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

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

.video-wrap {
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.video-wrap:last-child {
    margin-bottom: 0;
}

.video-wrap > * {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* [BUTTONS] */

.button {
    display: inline-block;
    vertical-align: middle;
    padding: 12px 24px;
    width: auto;
    background-color: #e61c4d;
    color: #fff;
    line-height: 1.5;
    white-space: nowrap;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.not-touch .button {
    -webkit-transition: background-color 0.25s;
    -moz-transition: background-color 0.25s;
    -ms-transition: background-color 0.25s;
    -o-transition: background-color 0.25s;
    transition: background-color 0.25s;
}

.button:active,
.button:focus,
.not-touch .button:hover {
    background-color: #bf0a37;
    text-decoration: none;
}

.button.small {
    padding: 4px 12px;
    font-size: 14px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.button.icon {
    padding-left: 60px;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 3em;
}

.button.icon.info {
    background-image: url(../images/button-info.svg);
}

.button.icon.facebook {
    background-image: url(../images/button-facebook.svg);
}

.btn-row {
    margin-bottom: 12px;
}

.btn-row:last-child {
    margin-bottom: -8px;
}

.btn-row .button {
    margin: 0 8px 8px 0;
}

/* [LINKS] */

.link {
    display: inline-block;
    vertical-align: middle;
    padding-left: 24px;
    background: transparent url(../images/link-arrow.svg) no-repeat 0 3px;
    line-height: 1.25;
}

.link.download {
    background-image: url(../images/link-download.svg);
}

/* [FORMULAR ELEMENTE] */

::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
}

:-moz-placeholder {
    color: #666;
    opacity: 1;
}

::-moz-placeholder {
    color: #666;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #666;
    opacity: 1;
}

form {
    margin-bottom: 20px;
}

form:last-child {
    margin-bottom: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

button,
input,
select,
textarea {
    max-width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-touch-action: manipulation;
    -moz-touch-action: manipulation;
    -ms-touch-action: manipulation;
    -o-touch-action: manipulation;
    touch-action: manipulation;
}

button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
    cursor: default;
    opacity: 0.5;
}

button,
input,
select {
    line-height: 1.5;
    white-space: nowrap;
}

button {
    overflow: visible;
    text-transform: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
select,
textarea {
    vertical-align: middle;
    padding: 12px 16px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.not-touch input[type="text"],
.not-touch input[type="email"],
.not-touch input[type="url"],
.not-touch input[type="password"],
.not-touch input[type="search"],
.not-touch input[type="tel"],
.not-touch input[type="number"],
.not-touch select,
.not-touch textarea {
    -webkit-transition: border-color 0.25s;
    -moz-transition: border-color 0.25s;
    -ms-transition: border-color 0.25s;
    -o-transition: border-color 0.25s;
    transition: border-color 0.25s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #e61c4d;
    outline: 0;
}

input[type="file"] {
    width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    margin-right: 4px;
}

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

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    -ms-appearance: textfield;
    -o-appearance: textfield;
    appearance: textfield;
}

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

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

label {
    display: inline-block;
    margin: 0 16px 4px 0;
    line-height: 1.5;
}

legend {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
}

select,
select[multiple] {
    height: auto;
}

select {
    background: url(../images/select-arrow.svg) no-repeat 100% 50%;
    background-size: 3em;
    text-transform: none;
}

select::-ms-expand {
    display: none;
}

textarea {
    height: auto;
    min-height: 260px;
    overflow: auto;
}

.form-block {
    margin-bottom: 20px;
}

.form-block:last-child {
    margin-bottom: 0;
}

.form-block label,
.form-block input[type="text"],
.form-block input[type="email"],
.form-block input[type="url"],
.form-block input[type="password"],
.form-block input[type="search"],
.form-block input[type="tel"],
.form-block input[type="number"],
.form-block select,
.form-block textarea {
    display: block;
    width: 100%;
}

.form-block label {
    display: block;
    margin-right: 0;
    font-size: 14px;
}

/* [TABLES] */

table,
th,
td {
    border: 1px solid #ddd;
}

table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}

table:last-child {
    margin-bottom: 0;
}

caption,
th,
td {
    line-height: 1.5;
    font-weight: normal;
    text-align: left;
}

caption,
th {
    border-width: 0 1px 1px 0;
    color: #1a1a1a;
    font-weight: 700;
}

caption {
    margin-bottom: 20px;
    font-size: 24px;
}

th,
td {
    padding: 8px 16px;
    border-width: 0 1px 1px 0;
}

td {
    border-width: 0 1px 1px 0;
}

.table-scrollable {
    overflow-x: auto;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
}

.table-scrollable > table {
    margin-bottom: 0;
    border: 0;
}

.table-scrollable > table th:last-child,
.table-scrollable > table td:last-child {
    border-right: 0;
}

.table-scrollable > table tr:last-child td {
    border-bottom: 0;
}

/* [WORDPRESS] */

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption:last-child {
    margin-bottom: 0;
}

.wp-caption img {
    display: block;
    margin: 0;
}

.wp-caption .wp-caption-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

.alignnone {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
}

.alignnone img {
    width: 100%;
    max-width: none;
}

.aligncenter {
    display: block;
    max-width: 80%;
    max-width: none;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: center;
}

.aligncenter img {
    width: 100%;
    max-width: none;
}

.alignright {
    max-width: 260px;
    margin-top: 8px;
    margin-bottom: 20px;
    margin-left: 20px;
    float: right;
}

.alignright img {
    width: 100%;
    max-width: none;
}

.alignleft {
    max-width: 260px;
    margin-top: 8px;
    margin-bottom: 20px;
    margin-right: 20px;
    float: left;
}

.alignleft img {
    width: 100%;
    max-width: none;
}

.gallery {
    margin-right: -1.1666667%;
    margin-bottom: 20px;
    margin-left: -1.1666667%;
    *zoom: 1;
}

.gallery:last-child {
    margin-bottom: 0;
}

.gallery:before,
.gallery:after {
    content: "";
    display: table;
    line-height: 0;
}

.gallery:after {
    clear: both;
}

.gallery-item {
    display: block;
    width: 100%;
    max-width: 33.33%;
    padding: 0 1.1400652% 2.2801304%;
    margin: 0;
    float: left;
}

.gallery-columns-1 .gallery-item {
    max-width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-icon {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.gallery-icon img {
    margin: 0 auto;
}

.gallery-caption {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

.post-password-form {
    margin-bottom: 20px;
}

.post-password-form:last-child {
    margin-bottom: 0;
}

.post-password-form label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 14px;
}

.post-password-form input[type="password"] {
    margin-top: 8px;
}

.post-password-form > *:last-child {
    margin-bottom: 0;
}

.screen-reader-text {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
}

/* [CLEARFIX] */

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

/* [GRID] */

.row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row-centered {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.row-horizontal {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.not-flexbox .row {
    display: block;
    *zoom: 1;
}

.row:before,
.row:after {
    content: "";
    width: 0;
}

.not-flexbox .row:before,
.not-flexbox .row:after {
    display: table;
    line-height: 0;
}

.not-flexbox .row:after {
    clear: both;
}

.not-flexbox .col {
    float: left;
}

.col-full {
    width: 100%;
}

.col-threequarters {
    width: 75%;
}

.col-twothirds {
    width: 66.66%;
}

.col-half {
    width: 50%;
}

.col-onethird {
    width: 33.33%;
}

.col-onequarter {
    width: 25%;
}

.col-right {
    margin-left: auto;
}

.not-flexbox .col-right {
    float: right;
}

.col-center {
    margin-right: auto;
    margin-left: auto;
}

.not-flexbox .col-center {
    float: none;
}

.row-spacing,
.row-spacing > .col {
    padding-right: 20px;
    padding-left: 20px;
}

/*================================================================
[BEGINN PROJEKT]
Ab hier wird das Layout der Website angelegt
================================================================*/

/* [GLOBAL] */

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

.g-bg-primary {
    background-color: #e61c4d;
    color: #fff;
}

.g-bg-grey {
    background-color: #eee;
}

.g-bg-darkgrey {
    background-color: #767676;
    color: #fff;
}

.g-wrap {
    margin-right: auto;
    margin-left: auto;
}

.g-wrap-page {
    max-width: 1280px;
}

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

.g-slideshow .bx-wrapper {
    position: relative;
}

.g-slideshow .bx-controls {
    height: 0;
}

.g-slideshow .bx-prev,
.g-slideshow .bx-next {
    display: block;
    position: absolute;
    top: 50%;
    margin: -20px 0;
    width: 20px;
    height: 40px;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    white-space: nowrap;
    text-indent: 100%;
    opacity: 0.5;
}

.not-touch .g-slideshow .bx-prev,
.not-touch .g-slideshow .bx-next {
    -webkit-transition: opacity 0.25s;
    -moz-transition: opacity 0.25s;
    -ms-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.g-slideshow .bx-prev:active,
.not-touch .g-slideshow .bx-prev:hover,
.g-slideshow .bx-next:active,
.not-touch .g-slideshow .bx-next:hover {
    opacity: 1;
}

.g-slideshow .bx-prev {
    left: 0;
    background-image: url(../images/ui-arrow-left.svg);
}

.g-slideshow .bx-next {
    right: 0;
    background-image: url(../images/ui-arrow-right.svg);
}

.g-slideshow .bx-pager {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    line-height: 1.5;
}

.g-slideshow .bx-pager-item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.g-slideshow .bx-pager-link {
    color: #666;
}

.g-slideshow .bx-pager-link.active {
    color: #e61c4d;
}

.g-carousel ul {
    margin: 0;
    padding: 0 30px;
    overflow: hidden;
    list-style: none;
}

.g-carousel ul > li {
    padding: 0 10px;
    width: 25%;
    float: left;
}

.g-carousel .bx-wrapper {
    margin-left: 30px;
    padding-bottom: 40px;
}

.g-carousel .bx-prev {
    left: -30px;
}

.g-carousel .bx-next {
    right: -30px;
}

.g-carousel .bx-pager {
    right: 0;
    width: 100%;
    text-align: center;
}

.g-carousel .bx-pager-item {
    margin: 0 4px;
}

/* [PAGE] */

.page {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

/* [HEADER] */

.header {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding-bottom: 60px;
}

.header ul {
    margin: 0;
    list-style: none;
}

.header-meta {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    margin-top: 10px;
}

.header-meta .meta-language {
    color: #aaa;
    font-size: 14px;
    line-height: 40px;
}

.header-meta .meta-language .language-menu > li {
    display: inline;
    vertical-align: top;
    text-transform: uppercase;
}

.header-meta .meta-language .language-menu > li:after {
    content: " |";
}

.header-meta .meta-language .language-menu > li:last-child:after {
    content: "";
    display: none;
}

.header-meta .meta-language .language-menu > li > a {
    color: #666;
}

.not-touch .header-meta .meta-language .language-menu > li > a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.header-meta .meta-language .language-menu > li.current-language > a {
    color: #e61c4d !important;
    cursor: default;
}

.header-meta .meta-language .language-menu > li > a:active,
.not-touch .header-meta .meta-language .language-menu > li > a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.header-meta .meta-search .search-form {
    position: relative;
    width: 350px;
    font-size: 16px;
    line-height: 1.5;
	display:flex;
}
.header-meta .meta-search .search-form .button {
	margin-left: .5em;
}
.header-meta .meta-search .search-form .form-field {
    display: block;
    border: 0;
    padding: 8px 32px 8px 20px;
    width: 100%;
    background-color: #eee;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.header-meta .meta-search .search-form .form-icon {
    display: block;
    position: absolute;
    top: 50%;
    right: 12px;
    margin: -8px 0;
    width: 16px;
    height: 16px;
    background: url(../images/search-icon.svg) no-repeat 0 0;
    cursor: pointer;
}

.header-top .top-logo {
    padding-top: 40px;
    padding-right: 0;
    padding-bottom: 40px;
}

.header-top .top-logo a {
    display: block;
}

.header-top .top-logo a img {
    display: block;
    width: 320px;
    max-width: none;
}

.header-top .top-menu {
    display: none;
}

.header-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
    -moz-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
    -ms-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
    -o-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
    box-shadow: 0 10px 20px rgba(0,0,0,0.125);
}

.header-nav.fixed {
    position: fixed;
    top: 0;
    bottom: auto;
}

.header-nav .nav-primary {
    border-top: 2px solid #e61c4d;
    padding: 0;
}

.header-nav .nav-primary .primary-list a {
    display: block;
}

.header-nav .nav-primary .primary-list a:active,
.not-touch .header-nav .nav-primary .primary-list a:hover {
    text-decoration: none;
}

.header-nav .nav-primary .primary-list li.menu-item-has-children > span {
    display: none;
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
    color: #e61c4d;
    font-size: 18px;
    cursor: pointer;
    -webkit-touch-action: manipulation;
    -moz-touch-action: manipulation;
    -ms-touch-action: manipulation;
    -o-touch-action: manipulation;
    touch-action: manipulation;
}

.header-nav .nav-primary .primary-list > li {
    display: inline-block;
    vertical-align: top;
}

.header-nav .nav-primary .primary-list > li > a {
    padding: 0 20px;
    color: #fff;
    line-height: 58px;
}

.not-touch .header-nav .nav-primary .primary-list > li > a {
    -webkit-transition: background-color 0.25s, color 0.25s;
    -moz-transition: background-color 0.25s, color 0.25s;
    -ms-transition: background-color 0.25s, color 0.25s;
    -o-transition: background-color 0.25s, color 0.25s;
    transition: background-color 0.25s, color 0.25s;
}

.header-nav .nav-primary .primary-list > li[class*="current"] > a,
.not-touch .header-nav .nav-primary .primary-list > li.menu-item-has-children:hover > a,
.header-nav .nav-primary .primary-list > li > a:active,
.not-touch .header-nav .nav-primary .primary-list > li > a:hover {
    background-color: #fff;
    color: #e61c4d;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    border-bottom: 2px solid #e61c4d;
    padding: 40px 20px;
    width: 100%;
    max-height: calc(100vh - 200px);
    overflow-x: hidden;
    overflow-y: visible;
    background-color: #fff;
    line-height: 1.5;
}

.not-touch .header-nav .nav-primary .primary-list > li.menu-item-has-children:hover > .sub-menu-wrap {
    display: block;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1280px;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li {
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    margin-bottom: 20px;
    width: 32%;
    max-width: 410px;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li a {
    display: inline-block;
    color: #1a1a1a;
}

.not-touch .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li[class*="current"] > a,
.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li a:active,
.not-touch .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li a:hover {
    color: #e61c4d;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > a {
    display: block;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-weight: 700;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.menu-item-has-children:not(.title) {
    position: relative;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.menu-item-has-children:not(.title) > a {
    padding-right: 40px;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.menu-item-has-children:not(.title) > span {
    display: block;
    right: 20px;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.title > a {
    margin-bottom: 20px;
    border-bottom: 0;
    padding-bottom: 0;
    color: #e61c4d;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.title > a[href^="#"] {
    cursor: default;
    pointer-events: none;
}

.not-touch .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.title > a:not([href^="#"]):hover {
    text-decoration: underline;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li:not(.title) > .sub-menu-wrap {
    display: none;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.menu-item-open:not(.title) > .sub-menu-wrap {
    display: block;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ccc;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li.menu-item-has-children {
    position: relative;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li.menu-item-has-children > a {
    padding-right: 40px;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li[class*="current"] > a,
.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li a:active,
.not-touch .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li a:hover {
    color: #e61c4d;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li.menu-item-has-children > span {
    display: block;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li > .sub-menu-wrap {
    display: none;
    padding-bottom: 5px;
    font-size: 16px;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li.menu-item-open > .sub-menu-wrap {
    display: block;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li {
    margin-top: 5px;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li > a {
    color: #666;
}

.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li[class*="current"] > a,
.header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li a:active,
.not-touch .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li > .sub-menu-wrap > ul > li a:hover {
    color: #e61c4d;
}

/* [MAIN] */

.main table {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0;
}

.main table,
.main table th,
.main table td {
    border: 0;
}

.main table th,
.main table td {
    padding: 0 20px 20px 0;
}

/* [MAIN: SECTION] */
/*hcp2022 CAVE! Globale Anpassubg an main-section, damit die sections auch bei hintergrundfarbe gut aussehen*/
.main-section {
    /*margin-bottom: 80px;*/
    padding: 60px 0 60px 0;
} 

.main-section.nopaddingbottom {
    padding:0;
}

.main-section:first-child {
    margin-top: 80px;
}

/* [MAIN: HERO] */

.main-hero {
    position: relative;
    border-bottom: 2px solid #e61c4d;
}

.main-hero:first-child {
    margin-top: 0;
}

.main-hero:last-child {
    margin-bottom: 0;
}

.main-hero-big {
    padding: 40px 0 160px;
    min-height: calc(100vh - 200px);
}

.main-hero-small {
    height: 450px;
}

.main-hero .hero-background,
.main-hero .hero-slideshow,
.main-hero .hero-slideshow .slideshow-slides {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.main-hero .hero-background {
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-hero .hero-slideshow {
    overflow: hidden;
}

.main-hero .hero-slideshow .bx-wrapper,
.main-hero .hero-slideshow .bx-viewport {
    height: 100%;
}

.main-hero .hero-slideshow .slideshow-slides {
    margin: 0;
    list-style: none;
}

.main-hero .hero-slideshow .hero-background {
    z-index: 0;
}

.main-hero .hero-slideshow .hero-background:first-child {
    z-index: 50;
}

.main-hero .hero-buttons {
    position: absolute;
    right: 0;
    bottom: 80px;
    left: 0;
    z-index: 20;
    width: 100%;
}

.main-hero .hero-buttons .row-spacing {
    margin-bottom: -20px;
    padding-right: 30px;
    padding-left: 30px;
}

.main-hero .hero-buttons .row-spacing > .col {
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}

.main-hero .hero-buttons .buttons-item .button {
    display: block;
}

.main-hero .hero-content {
    position: relative;
    z-index: 10;
    color: #1a1a1a;
}

.main-hero-small .hero-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 40px;
}

.main-hero-big .hero-content .content-main {
    margin: 0 -20px;
    padding: 40px;
    max-width: 560px;
}

.main-hero .hero-content .content-main h1 {
    margin-top: 0;
    color: #e61c4d;
    font-family: "noto_serifregular", Georgia, 'Times New Roman', Times, serif;
    font-size: 42px;
}

.main-hero .hero-content .content-box {
    position: relative;
    padding: 20px;
    min-width: 320px;
    line-height: 1.5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-hero .hero-content .content-box:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: transparent url(../images/box-contact.svg) no-repeat 0 0;
}

/*hcp2022*/
/*added h5 to the style for better seo*/
.main-hero .hero-content .content-box h2, .main-hero .hero-content .content-box h5 {
    margin: 0 0 10px;
    color: #e61c4d;
    font-size: 18px;
}

.main-hero .hero-content .content-box a {
    color: #1a1a1a;
    text-decoration: underline;
}

.main-hero .hero-skip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 30;
    margin: 0 -20px;
    width: 40px;
}

.main-hero .hero-skip a {
    display: block;
    opacity: 0.5;
}

.not-touch .main-hero .hero-skip a {
    -webkit-transition: opacity 0.25s;
    -moz-transition: opacity 0.25s;
    -ms-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.main-hero .hero-skip a:active,
.not-touch .main-hero .hero-skip a:hover {
    opacity: 1;
}

.main-hero .hero-skip a img {
    display: block;
    width: 40px;
    height: 20px;
}

/* [MAIN: SUBNAV] */

/*CAVE hcp2022 negativen top-margin reduziert, weil es keinen globalen margin-bottom mehr gibt */

.main-hero + .main-subnav {
    /*margin-top: -82px;*/
    margin-top: -60px;
}

.main-subnav:first-child {
    margin-top: 0 !important;
}

.main-subnav .subnav-menu {
    margin-top: -2px;
}

.main-subnav .subnav-menu .menu-list {
    margin: 0;
    padding: 0 18px;
    border: 1px solid transparent;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
}

.main-subnav .subnav-menu .menu-list > li {
    width: 25%;
    border: 1px solid transparent;
}

.main-subnav .subnav-menu .menu-list > li > a {
    display: block;
    padding: 10px 20px;
    height: 100%;
    color: #666;
    background-color: #eee;
}

.not-touch .main-subnav .subnav-menu .menu-list > li > a {
    -webkit-transition: background-color 0.25s, color 0.25s;
    -moz-transition: background-color 0.25s, color 0.25s;
    -ms-transition: background-color 0.25s, color 0.25s;
    -o-transition: background-color 0.25s, color 0.25s;
    transition: background-color 0.25s, color 0.25s;
}

.main-subnav .subnav-menu .menu-list > li.parent > a {
    background-color: #e61c4d;
    color: #fff !important;
}

.main-subnav .subnav-menu .menu-list > li[class*="current"] > a,
.main-subnav .subnav-menu .menu-list > li > a:active,
.not-touch .main-subnav .subnav-menu .menu-list > li > a:hover {
    color: #e61c4d;
    text-decoration: none;
}

.main-subnav .subnav-menu .menu-list > li.parent {
    position: relative;
}

.main-subnav .subnav-menu .menu-list > li.parent > span {
    display: none;
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 16px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    -webkit-touch-action: manipulation;
    -moz-touch-action: manipulation;
    -ms-touch-action: manipulation;
    -o-touch-action: manipulation;
    touch-action: manipulation;
}

/* [MAIN: TITLE] */

.main-title .title-main .main-avatar {
    display: block;
    width: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    -ms-border-radius: 75px;
    -o-border-radius: 75px;
    border-radius: 75px;
}

.main-title .title-main h1,
.main-title .title-main h2 {
    margin-top: 0;
}

.main-title .title-main h1 {
    color: #e61c4d;
}

.main-title .title-main h1 + h2 {
    margin-top: -10px;
}

.main-title .title-main .item-contact {
    color: #e61c4d;
}

/* [MAIN: Title H2 (SEO)] */
/* hcp2022 added title module for h2*/

.titleh2-main h2 {
    
        margin: 0;
        color: #e61c4d;
    }

/* [MAIN: CONTENT] */

/*hcp2022 added background color option to content section*/
/*if gray is selected, this style is added to the section*/
.graybg {
    padding: 60px 0 60px 0;
    background:#eaeaea;
    margin-bottom:0;
}

.defaultbg {
    padding-top:40px;
}

.main-content .content-title {
    margin-bottom: 40px;
}

.main-content .content-title:last-child {
    margin-bottom: 0;
}

/*hcp2022 Added h3 to the style to allow h3 in content*/
.main-content .content-title h1,
.main-content .content-title h2,.main-content .content-title h3 {
    margin-top: 0;
    color: #e61c4d;
}

.main-content .content-title h1 span {
    display: inline-block;
}

.main-content .content-title p {
    font-size: 30px;
    line-height: 1.5;
}

.main-content .content-result {
    margin-bottom: 20px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 20px;
}

.main-content .content-result:last-child {
    margin-bottom: 0;
}

.main-content .content-result .result-title {
    margin: 0;
    font-size: 18px;
}

.main-content .content-result .result-title a {
    color: #1a1a1a;
}

.not-touch .main-content .content-result .result-title a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.main-content .content-result .result-title a:active,
.not-touch .main-content .content-result .result-title a:hover {
    color: #e61c4d;
    text-decoration: none;
}

.main-content .content-result .result-title span {
    display: inline-block;
    margin-left: 5px;
    color: #767676;
    font-size: 14px;
}

.main-content .contactperson {
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.5;
}

.main-content .contactperson img {
    display: block;
    width: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    -ms-border-radius: 75px;
    -o-border-radius: 75px;
    border-radius: 75px;
}

.main-content .contactperson p {
    margin-top: 20px;
}

.main-content .contactperson .item-title {
    margin: 0;
    color: #e61c4d;
    font-size: 18px;
}

.main-content .contactperson .item-meta {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.main-content .contactperson .item-contact {
    color: #e61c4d;
}

.main-content .contactperson .item-contact .link {
    color: #e61c4d;
}

/* [MAIN: SLIDESHOW] */

.main-hero + .main-slideshow,
.main-links + .main-slideshow {
    margin-top: -80px;
}

.main-slideshow:first-child {
    margin-top: 0;
}

.main-slideshow:last-child {
    margin-bottom: 0;
}

.main-slideshow .slideshow-slides {
    margin: 0;
    overflow: hidden;
    list-style: none;
}

.main-slideshow .slideshow-slides > li {
    float: left;
}

.main-slideshow .slideshow-item {
    padding: 40px 0 60px;
}

.main-slideshow .slideshow-item .item-image {
    order: 1;
}

.main-slideshow .slideshow-item .item-image img {
    display: block;
    width: 100%;
    max-width: none;
}

.main-slideshow .slideshow-item .item-content h1 + h2,
.main-slideshow .slideshow-item .item-content h2 + h3 {
    margin-top: 0;
    color: #e61c4d;
}

.main-slideshow .bx-pager {
    bottom: 20px;
    left: 40px;
}

/* [MAIN: CTA SEO HCP NEU hcp2022] */

.section-cta .g-wrap {
	padding:20px;
}

.section-cta .graybg {
    background-color:#ededed;
}

.section-cta .content-title {
	margin-bottom:5px;
}

.section-cta.ctaalignleft {
    text-align:left;
}

.section-cta.ctaaligncenter {
    text-align:center;
}

/* [MAIN: ACCORDION] */

/*hcp2022 add darker gray to accordion if the section has a gray background*/
/*hcp2022 changed all styles from h2  to h3 for semantic reasons*/

.graybg .g-bg-grey {
    background-color: #ccc;
}

.main-accordion > .row-spacing {
    padding: 0;
}

.main-accordion .accordion-item {
    margin-bottom: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.main-accordion .accordion-item .item-title h3 {
    font-size: 24px;
}

.main-accordion .accordion-item .item-title h3 a {
    display: block;
    position: relative;
    padding: 16px 40px 16px 20px;
    color: #1a1a1a;
}

.main-accordion .accordion-item .item-title h3 a:after {
    content: "+";
    position: absolute;
    top: 16px;
    right: 10px;
    padding: 0 16px;
    color: #e61c4d;
    font-size: 24px;
    cursor: pointer;
    -webkit-touch-action: manipulation;
    -moz-touch-action: manipulation;
    -ms-touch-action: manipulation;
    -o-touch-action: manipulation;
    touch-action: manipulation;
}

.main-accordion .accordion-item.open .item-title h3 a:after {
    content: "–";
}

.not-touch .main-accordion .accordion-item .item-title h3 a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.main-accordion .accordion-item.open .item-title h3 a,
.main-accordion .accordion-item .item-title h3 a:active,
.not-touch .main-accordion .accordion-item .item-title h3 a:hover {
    color: #e61c4d;
    text-decoration: none;
}

.main-accordion .accordion-item .item-content {
    display: none;
    padding: 20px 0;
}

.main-accordion .accordion-item.open .item-content {
    display: block;
}

.main-accordion .accordion-item .item-content > .row-spacing {
    padding: 0;
}

.main-accordion .accordion-item .item-content .row-spacing > .col-full {
    margin-bottom: 20px;
}

.main-accordion .accordion-item .item-content .row-spacing > .col-full:last-child {
    margin-bottom: 0;
}

/* [MAIN: LINKS] */

.main-hero + .main-links,
.main-slideshow + .main-links {
    margin-top: -80px;
}

.main-links[class*="g-bg-"] {
    padding: 40px 0;
}

.main-links:first-child {
    margin-top: 0;
}

.main-links[class*="g-bg-"]:last-child {
    margin-bottom: 0;
}

.main-links .row-spacing {
    margin-bottom: -20px;
    padding-right: 30px;
    padding-left: 30px;
}

.main-links .row-spacing > .col {
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}

.main-links .links-item .item-container {
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-links .links-item .item-container:active,
.not-touch .main-links .links-item .item-container:hover {
    text-decoration: none;
}

.main-links .links-item .item-container img {
    display: block;
    width: 100%;
    max-width: none;
}

.not-touch .main-links .links-item .item-container img {
    -webkit-transition: -webkit-transform 0.25s;
    -moz-transition: -moz-transform 0.25s;
    -ms-transition: -ms-transform 0.25s;
    -o-transition: -o-transform 0.25s;
    transition: transform 0.25s;
}

.main-links .links-item .item-container:active img,
.not-touch .main-links .links-item .item-container:hover img {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
}

.main-links .links-item .item-title {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 12px 20px;
    width: 100%;
    background-color: rgba(255,255,255,0.75);
    color: #e61c4d;
    font-size: 18px;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}

/* [MAIN: PEOPLE] */

.main-people .people-title {
    margin-bottom: 40px;
}

.main-people .people-title h2 {
    margin: 0;
    color: #e61c4d;
}

.main-people .people-item {
    max-width: 240px;
    margin: 0 auto;
    line-height: 1.5;
}

.main-people .people-item img {
    display: block;
    width: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    -webkit-border-radius: 75px;
    -moz-border-radius: 75px;
    -ms-border-radius: 75px;
    -o-border-radius: 75px;
    border-radius: 75px;
}

.main-people .people-item p {
    margin-top: 20px;
}

.main-people .people-item .item-title {
    margin: 0;
    color: #e61c4d;
    font-size: 18px;
}

.main-people .people-item .item-meta {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.main-people .people-item .item-contact {
    color: #e61c4d;
}

.main-people .people-item .item-contact .link {
    color: #e61c4d;
}

/* [MAIN: NEWS] */

.main-news .post-date {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.main-news .post-title {
    margin-top: 0;
}

.not-touch .main-news .post-title a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.main-news .post-title a:active,
.not-touch .main-news .post-title a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.main-news .news-featured {
    order: 1;
}

.main-news .news-featured .news-title {
    margin-top: 0;
    padding: 10px 20px;
    background-color: #e61c4d;
    color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-news .news-featured .post-preview {
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-news .news-featured .post-preview a {
    display: block;
}

.main-news .news-featured .post-preview a img {
    display: block;
    width: 100%;
}

.not-touch .main-news .news-featured .post-preview a img {
    -webkit-transition: -webkit-transform 0.25s;
    -moz-transition: -moz-transform 0.25s;
    -ms-transition: -ms-transform 0.25s;
    -o-transition: -o-transform 0.25s;
    transition: transform 0.25s;
}

.main-news .news-featured .post-preview a:active img,
.not-touch .main-news .news-featured .post-preview a:hover img {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
}

.main-news .news-teaser .news-title {
    margin: 10px 0 30px;
}

.main-news .news-teaser .teaser-post {
    margin-bottom: 20px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 20px;
    font-size: 14px;
}

.main-news .news-teaser .teaser-post:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.main-news .news-teaser .teaser-post .post-title {
    margin-bottom: 10px;
    font-size: 18px;
}

/* [MAIN: EVENTS] */

.main-events .events-title {
    margin-bottom: 20px;
}

.main-events .events-title h2 {
    margin: 0;
    color: #e61c4d;
}

.main-events .events-item img {
    display: block;
    width: 100%;
    max-width: none;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}

.main-events .events-item .item-date {
    padding: 5px 20px;
    line-height: 1.5;
}

.main-events .events-item .item-content {
    position: relative;
    padding: 20px 20px 40px;
    height: 220px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -ms-border-radius: 0 0 8px 8px;
    -o-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}

.main-events .events-item .item-content .content-title {
    margin: 0 0 10px;
    height: 68px;
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
}

.not-touch .main-events .events-item .item-content .content-title a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.main-events .events-item .item-content .content-title a:active,
.not-touch .main-events .events-item .item-content .content-title a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.main-events .events-item .item-content p {
    height: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-events .events-item .item-content .button {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.main-events .bx-wrapper {
    padding-bottom: 0;
}

.main-events .bx-pager {
    display: none;
}


/* [MAIN: MAP] */

.main-map .map-wrap {
    border: 1px solid #ddd;
    padding: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -ms-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -o-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    box-shadow: 0 2px 6px rgba(0,0,0,0.075);
}

.main-map .map-canvas {
    height: 640px;
    position: relative;
}

/* [MAIN: FORM] */

.main-form .form-body {
    border: 1px solid #ddd;
    padding: 40px;
    font-size: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -ms-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -o-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    box-shadow: 0 2px 6px rgba(0,0,0,0.075);
}

.main-form .form-body .form-entry {
    margin-bottom: 40px;
}

.main-form .form-body .form-entry h3 {
    font-size: 20px;
}

.main-form .form-body .form-entry h3 span,
.main-form .form-body .form-entry label span {
    color: #e61c4d;
}

.main-form .form-body .form-entry label {
    margin: 0;
    font-weight: 700;
}

.main-form .form-body .form-entry label.form-label-wrap {
    display: block;
}

.main-form .form-body .form-entry label.form-label-wrap input[type="text"],
.main-form .form-body .form-entry label.form-label-wrap select,
.main-form .form-body .form-entry label.form-label-wrap textarea {
    margin-top: 5px;
}

.main-form .form-body .form-entry label.form-label-wrap-switch {
    display: block;
    padding: 5px 0;
}

.main-form .form-body .form-entry label.form-label-wrap-switch input {
    display: block;
    margin: 0 auto;
}

.main-form .form-body .form-entry input[type="text"],
.main-form .form-body .form-entry select,
.main-form .form-body .form-entry textarea {
    display: block;
    width: 100%;
    max-width: none;
    background-color: #f7f7f7;
    font-weight: 400;
}

.main-form .form-body .form-entry table,
.main-form .form-body .form-entry .form-table-scroll-wrap {
    border: 1px solid #ddd;
    border-collapse: separate;
    table-layout: fixed;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -ms-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -o-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    box-shadow: 0 2px 6px rgba(0,0,0,0.075);
}

.main-form .form-body .form-entry table th,
.main-form .form-body .form-entry table td {
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

.main-form .form-body .form-entry table th,
.main-form .form-body .form-entry table.striped tr:nth-child(even) td {
    background-color: #eee;
}

.main-form .form-body .form-entry table td {
    vertical-align: middle;
}

.main-form .form-body .form-entry table tr:last-child td {
    border-bottom: 0;
}

.main-form .form-body .form-entry .form-table-scroll-wrap {
    position: relative;
}

.main-form .form-body .form-entry .form-table-scroll-wrap .swipe {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent url(../images/ui-swipe.svg) no-repeat 50% 50%;
    opacity: 0;
    -webkit-transition: opacity 0.25s;
    -moz-transition: opacity 0.25s;
    -ms-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.main-form .form-body .form-entry table.form-table-scroll {
    border: 0;
    min-width: 720px;
    font-size: 12px;
}

.main-form .form-body .form-entry table.form-table-scroll th {
    text-align: center;
}

/* [MAIN: BLOG] */

.main-blog .blog-posts {
    max-width: 800px;
}

.main-blog .blog-posts .posts-title {
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.main-blog .blog-posts .posts-title h1 {
    margin: 0;
}

.main-blog .blog-posts .posts-title-small h1 {
    font-size: 18px;
}

.main-blog .blog-posts .posts-article {
    margin-bottom: 40px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 40px;
    overflow: hidden;
}

.main-blog .blog-posts .posts-article:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.main-blog .blog-posts .posts-article h4 {
    margin: 20px 0 5px;
    color: #e61c4d;
    font-weight: 700;
}

.main-blog .blog-posts .posts-article h4:first-child {
    margin-top: 0;
}

.main-blog .blog-posts .posts-article h4:last-child {
    margin-bottom: 0;
}

.main-blog .blog-posts .posts-article .article-event {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}

.main-blog .blog-posts .posts-article .article-event a {
    color: #1a1a1a;
}

.main-blog .blog-posts .posts-article .article-title {
    margin-top: 0;
    color: #e61c4d;
}

.main-blog .blog-posts .posts-article-archive .article-title {
    font-size: 24px;
}

.not-touch .main-blog .blog-posts .posts-article .article-title a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.main-blog .blog-posts .posts-article .article-title a:active,
.not-touch .main-blog .blog-posts .posts-article .article-title a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.main-blog .blog-posts .posts-article .article-meta {
    margin: -10px 0 40px;
    font-size: 14px;
    line-height: 1.5;
}

.main-blog .blog-posts .posts-article .article-preview {
    margin: 0 20px 20px 0;
    max-width: 240px;
    /* max-height: 160px; */
    overflow: hidden;
    float: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-blog .blog-posts .posts-article .article-preview a {
    display: block;
}

.main-blog .blog-posts .posts-article .article-preview a img {
    display: block;
    width: 100%;
}

.not-touch .main-blog .blog-posts .posts-article .article-preview a img {
    -webkit-transition: -webkit-transform 0.25s;
    -moz-transition: -moz-transform 0.25s;
    -ms-transition: -ms-transform 0.25s;
    -o-transition: -o-transform 0.25s;
    transition: transform 0.25s;
}

.main-blog .blog-posts .posts-article .article-preview a:active img,
.not-touch .main-blog .blog-posts .posts-article .article-preview a:hover img {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
}

.main-blog .blog-posts .posts-article .article-thumb {
    margin-bottom: 40px;
}

.main-blog .blog-posts .posts-article .article-thumb img {
    display: block;
}

.main-blog .blog-posts .posts-article .article-clear {
    width: 100%;
    clear: both;
}

.main-blog .blog-posts .posts-article .article-hint {
    margin-bottom: 40px;
    padding: 16px 20px;
    background-color: #eee;
    font-size: 14px;
    line-height: 1.5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-blog .blog-posts .posts-article .article-hint:last-child {
    margin-bottom: 0;
}

.main-blog .blog-posts .posts-article .article-table,
.main-blog .blog-posts .posts-article .article-table th,
.main-blog .blog-posts .posts-article .article-table td {
    border: 0;
}

.main-blog .blog-posts .posts-article .article-table {
    margin-bottom: 40px;
    border-top: 1px dashed #ccc;
    min-width: 0;
}

.main-blog .blog-posts .posts-article .article-table:last-child {
    margin-bottom: 0;
}

.main-blog .blog-posts .posts-article .article-table th,
.main-blog .blog-posts .posts-article .article-table td {
    margin: 0;
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
    width: 50%;
}

.main-blog .blog-posts .posts-article .article-events {
    margin-bottom: 40px;
}

.main-blog .blog-posts .posts-article .article-events:last-child {
    margin-bottom: 0;
}

.main-blog .blog-posts .posts-article .article-map {
    margin-bottom: 40px;
    border: 1px solid #ddd;
    padding: 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.main-blog .blog-posts .posts-article .article-map:last-child {
    margin-bottom: 0;
}

.main-blog .blog-posts .posts-article .article-map .map-canvas {
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
    background-color: #eee;
}

.main-blog .blog-posts .posts-article .article-map .map-canvas .googlemap {
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10 !important;
}

.main-blog .blog-posts .posts-article .article-map .map-canvas .googlemap .qtip-content {
    padding: 10px 15px;
    line-height: 1.5;
}

.main-blog .blog-posts .posts-article .button {
    margin-top: 20px;
}

.main-blog .blog-posts .posts-pager span,
.main-blog .blog-posts .posts-pager a {
    display: inline-block;
    white-space: nowrap;
}

.main-blog .blog-posts .posts-pager .page-numbers {
    width: 24px;
    height: 24px;
    margin: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
}

.main-blog .blog-posts .posts-pager span.page-numbers {
    background-color: #eee;
    color: #1a1a1a;
    cursor: default;
}

.main-blog .blog-posts .posts-pager a.page-numbers {
    background-color: #e61c4d;
    text-decoration: none;
}

.not-touch .main-blog .blog-posts .posts-pager a.page-numbers {
    -webkit-transition: background-color 0.25s;
    -moz-transition: background-color 0.25s;
    -ms-transition: background-color 0.25s;
    -o-transition: background-color 0.25s;
    transition: background-color 0.25s;
}

.main-blog .blog-posts .posts-pager a.page-numbers:active,
.not-touch .main-blog .blog-posts .posts-pager a.page-numbers:hover {
    background-color: #bf0a37;
}

.main-blog .blog-side {
    max-width: 320px;
}

.main-blog .blog-side .side-container {
    margin-bottom: 40px;
}

.main-blog .blog-side .side-container-box {
    border: 1px solid #ddd;
    padding: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -ms-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    -o-box-shadow: 0 2px 6px rgba(0,0,0,0.075);
    box-shadow: 0 2px 6px rgba(0,0,0,0.075);
}

.main-blog .blog-side .side-container:last-child {
    margin-bottom: 0;
}

.main-blog .blog-side .side-title {
    margin-top: 0;
    font-size: 18px;
}

.main-blog .blog-side .side-list {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
}

.main-blog .blog-side .side-list > li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ccc;
}

.main-blog .blog-side .side-list > li > a {
    color: #666;
}

.not-touch .main-blog .blog-side .side-list > li > a {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -ms-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.main-blog .blog-side .side-list > li[class*="current"] > a,
.main-blog .blog-side .side-list > li > a:active,
.not-touch .main-blog .blog-side .side-list > li > a:hover {
    color: #e61c4d;
    text-decoration: none;
}

.main-blog .blog-side .side-contactavatar {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 300px;
}

.main-blog .blog-side .side-contactname {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
}

.main-blog .blog-side .side-contactmeta {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.main-blog .blog-side .side-contactdata {
    color: #e61c4d;
}

.main-blog .blog-side .side-divider {
    margin: 20px 0;
    border-bottom: 1px solid #ddd;
}

/* [FOOTER] */

.footer-top {
    padding: 40px 0;
}
.footer-top a{
    color: #fff;
	text-decoration: underline;
}

.footer-top .row-spacing {
    margin-bottom: -40px;
}

.footer-top .row-spacing > .col {
    margin-bottom: 40px;
}

.footer-top .top-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer-top .link {
    background-image: url(../images/link-arrow-white.svg);
    color: #fff;
}

.footer-top .top-form .form-body {
    margin: 0;
}

.footer-top .top-form .form-body label {
    font-size: 12px;
}

.footer-top .top-form .form-block {
    margin-bottom: 10px;
}

.footer-top .top-form .form-block input,
.footer-top .top-form .form-block textarea {
    border-color: #fff;
    padding: 4px 8px;
    font-size: 14px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.footer-top .top-form .form-block input:focus,
.footer-top .top-form .form-block textarea:focus {
    border-color: #666;
}

.footer-top .top-form .form-block textarea {
    min-height: 100px;
}

.footer-top .top-form .form-submit {
    background-color: #666;
}

.footer-top .top-form .form-submit:active,
.footer-top .top-form .form-submit:focus,
.not-touch .footer-top .top-form .form-submit:hover {
    background-color: #444;
}

.footer-top .top-form .form-notice {
    margin: 10px 0;
    padding: 4px 8px;
    background-color: #e61c4d;
    font-size: 12px;
    line-height: 1.5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.footer-top .top-form .form-notice h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom .bottom-nav ul {
    margin: 0 -10px;
    list-style: none;
}

.footer-bottom .bottom-nav ul li {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
}

.footer-bottom .bottom-nav ul li a {
    color: #666;
}

.footer-bottom .bottom-nav ul li[class*="current"] > a {
    color: #e61c4d;
}

/* [Back To Top] */

.btt {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    opacity: 0;
    -webkit-transform: translateY(125%);
    -moz-transform: translateY(125%);
    -ms-transform: translateY(125%);
    -o-transform: translateY(125%);
    transform: translateY(125%);
    -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
    -moz-transition: opacity 0.25s, -moz-transform 0.25s;
    -ms-transition: opacity 0.25s, -ms-transform 0.25s;
    -o-transition: opacity 0.25s, -o-transform 0.25s;
    transition: opacity 0.25s, transform 0.25s;
}

.btt.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.btt a {
    display: block;
    padding: 10px;
    width: 40px;
    height: 40px;
    background-color: #e61c4d;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.not-touch .btt a {
    -webkit-transition: background-color 0.25s;
    -moz-transition: background-color 0.25s;
    -ms-transition: background-color 0.25s;
    -o-transition: background-color 0.25s;
    transition: background-color 0.25s;
}

.btt a:active,
.not-touch .btt a:hover {
    background-color: #bf0a37;
}

.btt a img {
    display: block;
    width: 20px;
    height: 20px;
}

/* [MEDIA QUERIES] */

/*Anja 26.12.19 - max-width von 1280 auf 1366 angepasst weil ipad pro nicht mit dem normalen menue klar kommt*/
@media only screen and ( max-width: 1367px ) {

    .g-slideshow .bx-prev,
    .g-slideshow .bx-next {
        display: none;
    }

    .header {
        padding-bottom: 0;
        -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
        -moz-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
        -ms-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
        -o-box-shadow: 0 10px 20px rgba(0,0,0,0.125);
        box-shadow: 0 10px 20px rgba(0,0,0,0.125);
    }

    .header-meta {
        position: static;
        background-color: #eee;
    }

    .header-meta .meta-search .search-form .form-field {
        padding-right: 20px;
        padding-left: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .header-meta .meta-search .search-form .form-icon {
        right: 0;
    }

    .header-top .top-logo {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-top .top-menu {
        display: block;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 0;
    }

    .header-top .top-menu a {
        display: block;
        padding: 4px 0;
        height: 40px;
    }

    .header-top .top-menu span {
        display: block;
        margin-right: 10px;
        float: left;
        color: #e61c4d;
        font-size: 18px;
        line-height: 32px;
        font-weight: 700;
        white-space: nowrap;
    }

    .header-top .top-menu .menu-burger {
        float: left;
    }

    .header-top .top-menu .burger-bar {
        width: 40px;
        height: 3px;
        margin: 6px 0;
        background-color: #e61c4d;
    }

    .header-top .top-menu .burger-bar:nth-child(1),
    .header-top .top-menu .burger-bar:nth-child(3) {
        -webkit-transition: -webkit-transform 0.25s;
        -moz-transition: -moz-transform 0.25s;
        -ms-transition: -ms-transform 0.25s;
        -o-transition: -o-transform 0.25s;
        transition: transform 0.25s;
    }

    .nav-visible .header-top .top-menu .burger-bar:nth-child(1) {
        -webkit-transform: translateY(9px) rotateZ(-45deg);
        -moz-transform: translateY(9px) rotateZ(-45deg);
        -ms-transform: translateY(9px) rotateZ(-45deg);
        -o-transform: translateY(9px) rotateZ(-45deg);
        transform: translateY(9px) rotateZ(-45deg);
    }

    .header-top .top-menu .burger-bar:nth-child(2) {
        -webkit-transition: opacity 0.25s;
        -moz-transition: opacity 0.25s;
        -ms-transition: opacity 0.25s;
        -o-transition: opacity 0.25s;
        transition: opacity 0.25s;
    }

    .nav-visible .header-top .top-menu .burger-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-visible .header-top .top-menu .burger-bar:nth-child(3) {
        -webkit-transform: translateY(-9px) rotateZ(45deg);
        -moz-transform: translateY(-9px) rotateZ(45deg);
        -ms-transform: translateY(-9px) rotateZ(45deg);
        -o-transform: translateY(-9px) rotateZ(45deg);
        transform: translateY(-9px) rotateZ(45deg);
    }

    .header-nav {
        display: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }

    .nav-visible .header-nav {
        display: block;
    }

    .header-nav,
    .header-nav.fixed {
        position: static;
    }

    .header-nav .row-spacing,
    .header-nav .row-spacing > .col {
        padding: 0;
    }

    .header-nav .nav-primary {
        border-top: 0;
    }

    .header-nav .nav-primary .primary-list > li {
        display: block;
    }

    .header-nav .nav-primary .primary-list > li.menu-item-has-children {
        position: relative;
    }

    .header-nav .nav-primary .primary-list > li.menu-item-has-children > span {
        display: block;
        top: 13px;
        right: 40px;
        color: #fff;
    }

    .header-nav .nav-primary .primary-list > li.menu-item-open > .sub-menu-wrap {
        display: block;
    }

    .header-nav .nav-primary .primary-list > li > a {
        display: inline-block;
        padding-left: 40px;
        padding-right: 40px;
    }

    .header-nav .nav-primary .primary-list > li[class*="current"],
    .header-nav .nav-primary .primary-list > li.menu-item-open {
        background-color: #bf0a37;
    }

    .not-touch .header-nav .nav-primary .primary-list > li.menu-item-has-children:hover > .sub-menu-wrap {
        display: none;
    }

    .not-touch .header-nav .nav-primary .primary-list > li.menu-item-has-children.menu-item-open:hover > .sub-menu-wrap {
        display: block;
    }

    .header-nav .nav-primary .primary-list > li[class*="current"] > a,
    .not-touch .header-nav .nav-primary .primary-list > li.menu-item-has-children:hover > a,
    .header-nav .nav-primary .primary-list > li > a:active,
    .not-touch .header-nav .nav-primary .primary-list > li > a:hover {
        background: transparent;
        color: #fff;
    }

    .header-nav .nav-primary .primary-list > li > .sub-menu-wrap {
        position: static;
        padding: 40px;
        max-height: none;
        overflow-y: hidden;
    }

    .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li.menu-item-has-children:not(.title) > span {
        right: 0;
    }

    .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul {
        padding: 0;
    }

    .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li {
        display: block;
        margin-bottom: 40px;
        padding: 0;
        width: auto;
        max-width: none;
    }

    .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li:last-child {
        margin-bottom: 0;
    }

    .main-subnav .subnav-menu .menu-list > li {
        display: none;
        width: 100%;
    }

    .main-subnav .subnav-menu .menu-list.menu-open > li {
        display: block;
    }

    .main-subnav .subnav-menu .menu-list > li.parent {
        display: block;
    }

    .main-subnav .subnav-menu .menu-list > li.parent > span {
        display: block;
    }

}

@media only screen and ( max-width: 1080px ) {

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    .button.icon {
        padding-left: 50px;
    }

    .main-hero .hero-content .content-main h1 {
        font-size: 36px;
    }

    .main-content .content-title p {
        font-size: 24px;
    }

    .main-links .links-item .item-title {
        font-size: 16px;
    }

    .main-news .news-teaser .teaser-post .post-title {
        font-size: 16px;
    }

    .main-events .events-item .item-content .content-title {
        height: 60px;
        font-size: 16px;
    }

    .main-events .events-item .item-content {
        height: 210px;
    }

    .footer-top .top-title {
        font-size: 16px;
    }

    .btt {
        display: none;
    }

}

@media only screen and ( max-width: 960px ) {

    .main-hero-big {
        padding: 40px 0;
        min-height: 0;
    }

    .main-hero .hero-buttons {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }

    .main-hero .hero-buttons .row-spacing > .col {
        width: 50%;
    }

    .main-hero-big .hero-background,
    .main-hero-big .hero-slideshow {
        opacity: 0.25;
    }

    .main-hero-big .hero-slideshow .hero-background {
        opacity: 1;
    }

    .main-hero-big .hero-content .content-main {
        margin: 0;
        padding: 0 20px;
        width: 100%;
        max-width: none;
        background: transparent;
    }

    .main-hero .hero-skip {
        display: none;
    }

    .main-links .row-spacing > .col {
        width: 50%;
    }

    .main-map .map-canvas {
        height: 480px;
    }

    .footer-top .row-spacing > .col {
        width: 50%;
    }

}

@media only screen and ( max-width: 800px ) {

    .vtour {
        display: none;
    }

    .main-content .content-column {
        margin-bottom: 40px;
        width: 100%;
    }

    .main-content .content-column:last-child {
        margin-bottom: 0;
    }

    .main-slideshow .slideshow-item .row-spacing > .col {
        width: 100%;
    }

    .main-slideshow .slideshow-item .item-image {
        margin-bottom: 40px;
        order: 0;
    }

    .main-people .people-title {
        margin-bottom: 20px;
        text-align: center;
    }

    .main-accordion .accordion-item .item-content .row-spacing > .col-half {
        margin-bottom: 20px;
        width: 100%;
    }

    .main-accordion .accordion-item .item-content .row-spacing > .col-half:last-child {
        margin-bottom: 0;
    }

    .main-news .row-spacing > .col {
        width: 100%;
    }

    .main-news .news-featured {
        order: 0;
    }

    .main-news .news-featured .featured-post {
        margin-bottom: 20px;
        border-bottom: 1px dashed #ccc;
        padding-bottom: 20px;
    }

    .main-blog .row-spacing > .col {
        width: 100%;
        max-width: none;
    }

    .main-blog .blog-posts {
        margin-bottom: 40px;
    }

    .footer-bottom .row-spacing > .col {
        width: 50%;
    }

    .footer-bottom .bottom-nav ul {
        margin: 0 0 -10px;
    }

    .footer-bottom .bottom-nav ul li {
        display: block;
        margin: 0 0 10px;
    }

}

@media only screen and ( max-width: 640px ) {

    .header-top .top-menu span {
        display: none;
    }

    .main table:not(.form-table-scroll) td {
        display: block;
        width: 100% !important;
    }

    .main-form .form-body {
        border: 0;
        padding: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }

    .main-form .form-body .form-entry table.form-table-fold td {
        display: block;
        width: 100%;
    }

    .main-form .form-body .form-entry table.form-table-fold td:first-child {
        border-bottom: 0;
    }

    .main-blog .blog-posts .posts-article .article-preview {
        margin-right: 0;
        max-width: none;
        /* max-height: none; */
        float: none;
    }

    .main-blog .blog-posts .posts-article .article-clear {
        display: none;
    }

}

@media only screen and ( max-width: 480px ) {

    h1 {
        font-size: 28px;
    }

    blockquote {
        padding: 20px;
        font-size: 14px;
        text-align: center;
    }

    blockquote em {
        font-size: 18px;
        text-align: center;
    }

    .aligncenter {
        max-width: 100%;
    }

    .alignright,
    .alignleft {
        max-width: 100%;
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
        float: none;
    }

    .row-spacing > .col {
        padding-right: 0;
        padding-left: 0;
    }

    .g-carousel ul {
        padding: 0 10px;
    }

    .g-carousel .bx-wrapper {
        margin-left: 10px;
    }

    .header-meta .meta-container {
        width: 100%;
    }

    .header-meta .meta-language {
        width: 33.33%;
        line-height: 30px;
    }

    .header-meta .meta-search {
        width: 66.66%;
    }

    .header-meta .meta-search .search-form {
        width: auto;
    }

    .header-meta .meta-search .search-form .form-field {
        padding: 0 20px 0 0;
        font-size: 14px;
        line-height: 30px;
    }

    .header-top .top-logo a img {
        width: auto;
        height: 40px;
    }

    .header-top .top-menu {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-nav .nav-primary .primary-list > li.menu-item-has-children > span {
        right: 20px;
    }

    .header-nav .nav-primary .primary-list > li > a {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-nav .nav-primary .primary-list > li > .sub-menu-wrap {
        padding: 20px;
    }

    .header-nav .nav-primary .primary-list > li > .sub-menu-wrap > ul > li {
        margin-bottom: 20px;
    }

    .main-section {
        margin-bottom: 40px;
    }

    .main-section:first-child {
        margin-top: 40px;
    }

    .main-hero:first-child {
        margin-top: 0;
    }

    .main-hero-big {
        padding: 20px 0;
    }

    .main-hero-mobile .hero-content {
        display: none;
    }

    .main-hero-small {
        height: auto;
        min-height: 200px;
    }

    .main-hero-small .hero-content {
        position: relative;
        padding-top: 40px;
    }

    .main-hero-big .hero-content .content-main {
        padding: 0;
    }

    .main-hero .hero-content .content-main h1 {
        font-size: 32px;
    }

    .main-hero .hero-buttons {
        margin-top: 20px;
    }

    .main-hero-mobile .hero-buttons {
        margin-top: 0;
    }

    .main-hero .hero-buttons .row-spacing {
        margin-bottom: -4px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .main-hero .hero-buttons .row-spacing > .col {
        margin-bottom: 4px;
        padding-right: 2px;
        padding-left: 2px;
    }

    .main-hero .hero-buttons .buttons-item .button {
        padding: 8px 16px;
        font-size: 14px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

    .main-hero .hero-buttons .buttons-item .button.icon {
        padding-left: 40px;
    }

    .main-hero + .main-subnav {
        margin-top: -42px;
    }

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

    .main-hero + .main-slideshow,
    .main-links + .main-slideshow {
        margin-top: -40px;
    }

    .main-slideshow .bx-pager {
        left: 20px;
    }

    .main-accordion .row-spacing {
        padding-right: 20px;
        padding-left: 20px;
    }

    .main-accordion .accordion-item .item-title h2 {
        font-size: 18px;
    }

    .main-accordion .accordion-item .item-title h2 a:after {
        font-size: 18px;
    }

    .main-accordion .accordion-item .item-content {
        padding: 0 20px 20px;
    }

    .main-hero + .main-links,
    .main-slideshow + .main-links {
        margin-top: -40px;
    }

    .main-links {
        padding: 20px 0;
    }

    .main-links .row-spacing {
        padding-right: 10px;
        padding-left: 10px;
    }

    .main-links .row-spacing > .col {
        width: 100%;
    }

    .main-map .map-canvas {
        height: 320px;
    }

    .main-form .form-body .form-entry table th,
    .main-form .form-body .form-entry table td {
        padding: 10px;
    }

    .main-blog .blog-posts .posts-article .article-table th,
    .main-blog .blog-posts .posts-article .article-table td {
        display: block;
        width: 100%;
    }

    .main-blog .blog-posts .posts-article .article-table th:first-child,
    .main-blog .blog-posts .posts-article .article-table td:first-child {
        border: 0;
        padding-bottom: 0;
    }

    .footer-top .row-spacing > .col {
        width: 100%;
    }

    .footer-bottom .row-spacing > .col {
        width: 100%;
    }

    .footer-bottom .bottom-nav ul {
        margin: 0;
    }

}

/* [EVENT ORGANISER PLUGIN */

.eo-calendar caption {
    font-size: 14px;
}

.eo-calendar #wp-calendar {
    font-size: 14px;
    line-height: 1.5;
}

#wp-calendar th,
#wp-calendar td {
    padding: 4px 6px;
}

/* [LIGHTBOX] */

/* 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;
  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;
  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;
  box-shadow: none;
  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: transparent; }
  .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%;
    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;
  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;
    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;
    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);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* BUGFIX */

button,
button:focus,
.not-touch button:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

/*Style GForms*/

@media only screen and (min-width: 769px){
table.gsurvey-likert .gsurvey-likert-row-label {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
}
}

table.gsurvey-likert th.gsurvey-likert-choice-label {
   font-size: 12px;
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}

/*Remove Contact Form from single Staff pages*/
body.single-staff .footer #form {visibility:hidden; display:none;}

/*Style footer contact form*/
footer #form li.gfield {
	padding-right:0;
	}

footer #form.gform_wrapper textarea {
     padding:0;
}

footer #form select {
	background-color:white; 
	width:100%!important; 
	font-size:13px;
	padding:5px 6px;
	}

footer #form input {
	font-size:12px;
	width:100%;
	}

footer #form label.gfield_label {
	visibility:hidden; 
	display:none;
	}

footer #form .ginput_container_textarea textarea {
	height:20px!important; 
	min-height:120px; 
	font-size:13px;
	}
	
/*================================================================
[ENDE PROJEKT]
Und nicht vergessen: CSS komprimieren (CSS Minifier)
================================================================*/