/********************************/
/* dieses Stylesheet nutzt SASS */
/* http://sass-lang.com/        */
/********************************/
/*
@import "compass/css3/images";
@import "compass/css3/transform";
@import "compass/css3/transition";
*/
/* Standard-Browser-Styles resetten */
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

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

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

/* Farben */
/* Responsive Breakpoints (mit max-width benutzen!) */
/* Einheitliche Abstaende zwischen Elementen */
/* Textgroessen */
/* Schriften */
/* Fonts */
/* Allgemeine Vorlagen */
/* Alles ausser border-box ist Bloedsinn */
* {
    box-sizing: border-box;
}

/****************************************/
/* Body */
@media only screen and (max-width: 767px) {
    body {
        min-height: 1px;

        /* Wir nutzen diese spezielle CSS-Regel, damit JS weiss, ob wir schon einen Media-Breakpoint erreicht haben. */
        /* Mehr Info dazu und warum wir nicht einfach $(window).width() benutzen: */
        /* http://stackoverflow.com/questions/11309859/css-media-queries-and-javascript-window-width-do-not-match */
    }
}

body,
input,
textarea,
select,
button {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    background: #FFFFFF;
    color: #29241f;
}

input:not([type="checkbox"]),
input:not([type="radio"]),
textarea,
select,
button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/****************************************/
/* Wiederverwendbar */
.hidden {
    display: none;
}

.centered {
    text-align: center;
    display: block;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

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

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

.space-below-none {
    margin-bottom: 0 !important;
}

.space-below-s {
    margin-bottom: 10px !important;
}

.space-below-xs {
    margin-bottom: 5px !important;
}

.space-below-m {
    margin-bottom: 20px !important;
}

.space-below-l {
    margin-bottom: 30px !important;
}

.space-below-xl {
    margin-bottom: 50px !important;
}

.space-below-xxl {
    margin-bottom: 80px !important;
}

.space-above-none {
    margin-top: 0 !important;
}

.space-above-xs {
    margin-top: 5px !important;
}

.space-above-s {
    margin-top: 10px !important;
}

.space-above-m {
    margin-top: 20px !important;
}

.space-above-l {
    margin-top: 30px !important;
}

.space-above-xl {
    margin-top: 50px !important;
}

.space-above-xxl {
    margin-top: 80px !important;
}

.text-gray {
    color: #888888;
}

.text-s {
    font-size: 14px;
}

.padding-top-s {
    padding-top: 10px;
}

.padding-top-m {
    padding-top: 20px;
}

.padding-top-l {
    padding-top: 30px;
}

.padding-top-xl {
    padding-top: 50px;
}

.padding-bottom-s {
    padding-bottom: 10px;
}

.padding-bottom-m {
    padding-bottom: 20px;
}

.padding-bottom-l {
    padding-bottom: 30px;
}

.padding-bottom-xl {
    padding-bottom: 50px;
}

/****************************************/
/* Standard-Tags */
b,
strong {
    font-weight: 700;
}

i,
em {
    font-style: italic;
}

img {
    max-width: 100%;
}

p,
ul,
ol {
    margin-bottom: 20px;
}

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

blockquote {
    margin: 20px 0;
    padding: 0 20px;
    font-style: italic;
}

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

/****************************************/
/* Links */
a {
    text-decoration: none;
    color: #29241f;
}

a.arrow {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    padding: 10px;
    padding-left: 20px;
    background: transparent url("../img/arrow_right.svg") left 15px no-repeat;
    background-size: 5px 9px;
    display: inline-block;
}

a.arrow:hover {
    color: #888888;
}

a.bold {
    text-transform: uppercase;
    font-weight: 700;
}

a.button, .pagination .newer a,
.pagination .older a,
.button,
.pagination .newer a,
.pagination .older a {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

a.button.block, .pagination .newer a.block,
.pagination .older a.block,
.button.block,
.pagination .newer a.block,
.pagination .older a.block {
    display: block;
    width: 100%;
}

a.button.red, .pagination .newer a,
.pagination .older a,
.button.red,
.pagination .newer a,
.pagination .older a {
    background-color: #d0251d;
    color: #FFFFFF;
    border: 2px solid #d0251d;
}

a.button.red:hover, .pagination .newer a:hover,
.pagination .older a:hover,
.button.red:hover,
.pagination .newer a:hover,
.pagination .older a:hover {
    background-color: #FFFFFF;
    border-color: #d0251d;
    color: #d0251d;
}

a.button.white, .pagination .newer a.white,
.pagination .older a.white,
.button.white,
.pagination .newer a.white,
.pagination .older a.white {
    background-color: #FFFFFF;
    color: #29241f;
    border: 2px solid transparent;
}

a.button.white:hover, .pagination .newer a.white:hover,
.pagination .older a.white:hover,
.button.white:hover,
.pagination .newer a.white:hover,
.pagination .older a.white:hover {
    border: 2px solid #29241f;
    color: #29241f;
}

a.button.black, .pagination .newer a.black,
.pagination .older a.black,
.button.black,
.pagination .newer a.black,
.pagination .older a.black {
    background-color: #29241f;
    color: #FFFFFF;
    border: 2px solid transparent;
}

a.button.black:hover, .pagination .newer a.black:hover,
.pagination .older a.black:hover,
.button.black:hover,
.pagination .newer a.black:hover,
.pagination .older a.black:hover {
    border-color: #29241f;
    background-color: #FFFFFF;
    color: #29241f;
}

.text a {
    color: #888888;
}

.text a:hover {
    color: #d0251d;
}

/****************************************/
/* Headlines */
h1:not(.neutral),
h2:not(.neutral),
h3:not(.neutral),
h4:not(.neutral),
h5:not(.neutral),
h6:not(.neutral),
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Bitter', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    font-weight: 700;
}

h1:not(.neutral):last-child,
h2:not(.neutral):last-child,
h3:not(.neutral):last-child,
h4:not(.neutral):last-child,
h5:not(.neutral):last-child,
h6:not(.neutral):last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
    margin-bottom: 0;
}

h1:not(.neutral).red,
h2:not(.neutral).red,
h3:not(.neutral).red,
h4:not(.neutral).red,
h5:not(.neutral).red,
h6:not(.neutral).red,
.h1.red,
.h2.red,
.h3.red,
.h4.red,
.h5.red,
.h6.red {
    color: #d0251d;
}

h1:not(.neutral).gray,
h2:not(.neutral).gray,
h3:not(.neutral).gray,
h4:not(.neutral).gray,
h5:not(.neutral).gray,
h6:not(.neutral).gray,
.h1.gray,
.h2.gray,
.h3.gray,
.h4.gray,
.h5.gray,
.h6.gray {
    color: #888888;
}

@media only screen and (max-width: 1023px) {
    h1:not(.neutral),
    h2:not(.neutral),
    h3:not(.neutral),
    h4:not(.neutral),
    h5:not(.neutral),
    h6:not(.neutral),
    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6 {
        font-size: 34px;
    }
}

h1:not(.neutral),
.h1 {
    font-weight: 400;
    color: #888888;
}

h2:not(.neutral),
.h2 {
    font-size: 34px;
}

@media only screen and (max-width: 1023px) {
    h2:not(.neutral),
    .h2 {
        font-size: 23px;
    }
}

h3:not(.neutral),
.h3 {
    font-size: 23px;
}

@media only screen and (max-width: 1023px) {
    h3:not(.neutral),
    .h3 {
        font-size: 18px;
    }
}

h4:not(.neutral),
.h4 {
    font-size: 18px;
}

@media only screen and (max-width: 1023px) {
    h4:not(.neutral),
    .h4 {
        font-size: 16px;
    }
}

h5:not(.neutral),
.h5 {
    font-size: 16px;
}

h6:not(.neutral),
.h6 {
    font-size: 16px;
}

.subline {
    font-family: 'Bitter', Georgia, serif;
    font-size: 23px;
    display: block;
}

@media all and (max-width: 767px) {
    .subline {
        font-size: 16px;
    }
}

/****************************************/
/* Seitengeruest */
.row {
    overflow: hidden;
}

.row:after {
    display: block;
    content: '';
    clear: both;
    display: block;
}

.row.equalheight {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.row.equalheight .col {
    float: none;
    display: table-cell;
    vertical-align: top;
}

.row.equalheight:after {
    display: none;
}

.row .col {
    padding: 0 20px;
    float: left;
}

.row .col.spacer {
    min-height: 1px;
}

.row .col.size1of12 {
    width: 8.33333%;
}

.row .col.size2of12 {
    width: 16.66666%;
}

.row .col.size3of12 {
    width: 25%;
}

.row .col.size4of12 {
    width: 33.33333%;
}

.row .col.size5of12 {
    width: 41.66666%;
}

.row .col.size6of12 {
    width: 50%;
}

.row .col.size7of12 {
    width: 58.33333%;
}

.row .col.size8of12 {
    width: 66.66666%;
}

.row .col.size9of12 {
    width: 75%;
}

.row .col.size10of12 {
    width: 83.33333%;
}

.row .col.size11of12 {
    width: 91.66666%;
}

.row .col.size12of12 {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .row .col {
        padding: 0 15px;
    }

    .row .col.size1of12, .row .col.size2of12, .row .col.size3of12, .row .col.size4of12, .row .col.size5of12, .row .col.size6of12, .row .col.size7of12, .row .col.size8of12, .row .col.size9of12, .row .col.size10of12, .row .col.size11of12, .row .col.size12of12 {
        width: 100%;
        margin-bottom: 30px;
    }

    .row .col.size1of12.spacer, .row .col.size2of12.spacer, .row .col.size3of12.spacer, .row .col.size4of12.spacer, .row .col.size5of12.spacer, .row .col.size6of12.spacer, .row .col.size7of12.spacer, .row .col.size8of12.spacer, .row .col.size9of12.spacer, .row .col.size10of12.spacer, .row .col.size11of12.spacer, .row .col.size12of12.spacer {
        margin-bottom: 0;
        min-height: 0;
    }
}

.row.no-outer-padding {
    margin-left: -20px;
    margin-right: -20px;
}

section {
    position: relative;
    padding: 50px 0;
}

section.more-padding {
    padding: 80px 0;
}

section.shadow {
    box-shadow: inset 0 0 10px 0 #b5b5b5;
}

section.bg-concrete {
    background: #FFFFFF url("../img/backgrounds/papier.png") center repeat;
}

section.bg-concrete-dark {
    background: #FFFFFF url("../img/backgrounds/beton.png") center repeat;
}

.inner {
    margin: 0 auto;
    max-width: 1200px;
}

.narrow {
    max-width: 700px;
}

.narrow.narrow-centered {
    margin: 0 auto;
}

/****************************************/
/* Canvas */
@media only screen and (min-width: 1280px) {
    #canvas {
        margin-right: 320px;
    }
}

#offcanvas {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 99999;
    width: 320px;
    background-color: #d0251d;
    overflow: auto;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
}

@media only screen and (max-width: 1279px) {
    #offcanvas {
        right: -320px;
    }

    #offcanvas.mobile-show {
        right: 0;
    }
}

#offcanvas .offcanvas-tabs {
    overflow: hidden;
    height: 70px;
}

#offcanvas .offcanvas-tabs .tab {
    height: 100%;
    display: block;
    width: 50%;
    float: left;
    padding: 24px 20px 0;
    background: #b01f19;
    font-size: 14px;
    text-transform: uppercase;
    color: #b5b5b5;
}

#offcanvas .offcanvas-tabs .tab:hover, #offcanvas .offcanvas-tabs .tab.active {
    background: #d0251d;
    color: #FFFFFF;
}

#offcanvas .offcanvas-tabs .tab i.fa {
    width: 20px;
}

@media only screen and (max-width: 1279px) {
    #offcanvas .offcanvas-tabs .tab {
        display: none;
    }
}

#offcanvas .offcanvas-tabs .close {
    display: none;
    height: 100%;
    padding: 24px 20px 0;
    background: #b01f19;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
}

#offcanvas .offcanvas-tabs .close:hover, #offcanvas .offcanvas-tabs .close.active {
    background: #d0251d;
    color: #FFFFFF;
}

#offcanvas .offcanvas-tabs .close i.fa {
    width: 20px;
}

@media only screen and (max-width: 1279px) {
    #offcanvas .offcanvas-tabs .close {
        display: block;
    }
}

#offcanvas .offcanvas-tabs-content {
    padding: 30px 20px;
    overflow: auto;
}

#offcanvas .offcanvas-tabs-content .content {
    display: none;
}

#offcanvas .offcanvas-tabs-content .content.active {
    display: block;
}

/****************************************/
/* Hero */
.hero {
    margin-top: -70px;
    padding-top: 56%;
    background: transparent url("../img/hero.jpg") center no-repeat;
    background-size: contain;
    position: relative;
}

.hero.rockhaus {
    background-image: url(../img/header_rockhaus.jpg);
    background-size: cover;
}

.hero.rockhaus:after {
    display: block;
    content: ' ';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 360px;
    height: 200px;
    background-image: url(../img/meyers-rockhaus.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 360px 200px;
}

@media all and (max-width: 700px) {
    .hero.rockhaus:after {
        width: 200px;
        height: 111px;
        background-size: 200px 111px;
    }
}

.hero.rockhaus.no-header {
    padding-top: 0;
    background-image: none;
}

.hero.ronnymeyer {
    background-image: url(../img/header_ronnymeyer.jpg);
    background-size: cover;
    background-position: center top;
}

.hero.ronnymeyer:after {
    display: block;
    content: ' ';
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 360px;
    height: 200px;
    background-image: url(../img/meyers-ronnymeyer.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 360px 200px;
}

@media all and (max-width: 700px) {
    .hero.ronnymeyer:after {
        width: 200px;
        height: 111px;
        background-size: 200px 111px;
    }
}

.hero.ronnymeyer.no-header {
    padding-top: 0;
    background-image: none;
}

.hero.ronnymeyer .slogan {
    display: inline-block;
    position: absolute;
    text-align: center;
    bottom: 20%;
    width: 80%;
    margin-left: 50%;
    left: -40%;
    max-width: 1200px;
}

.hero.ronnymeyer .slogan p {
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    display: inline-block;
    padding: 20px;
    font-size: 40px;
    color: #d0251d;
    font-weight: 400;
}

@media all and (max-width: 959px) {
    .hero.ronnymeyer .slogan p {
        font-size: 16px;
    }
}

@media all and (max-width: 767px) {
    .hero {
        margin-top: 0;
    }
}

@media all and (max-width: 459px) {
    .hero {
        padding-top: 70%;
    }
}

.hero .content {
    position: absolute;
    top: 43%;
    padding: 0 20px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.hero .content .inner {
    display: inline-block;
    padding: 20px;
    background-color: rgba(234, 234, 234, 0.8);
}

@media only screen and (max-width: 459px) {
    .hero .content .inner {
        padding: 10px;
    }
}

.hero .content h1 {
    color: #d0251d;
    font-size: 40px;
    margin: 0;
}

@media all and (max-width: 1023px) {
    .hero .content h1 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .hero .content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 459px) {
    .hero .content h1 {
        font-size: 20px;
    }
}

.hero .content h1 span {
    display: block;
    font-size: 23px;
}

@media only screen and (max-width: 1023px) {
    .hero .content h1 span {
        font-size: 23px;
    }
}

@media only screen and (max-width: 767px) {
    .hero .content h1 span {
        font-size: 16px;
    }
}

.hero .content #show-search {
    display: none;
}

@media only screen and (max-width: 767px) {
    .hero .content #show-search {
        display: inline-block;
    }
}

@media only screen and (max-width: 459px) {
    .hero .content {
        padding: 0 10px;
    }
}

/****************************************/
/* Slideshows */
.row.slickslider {
    position: relative;
}

.row.slickslider .slick-prev {
    position: absolute;
    left: 0;
    height: 34px;
    width: 18px;
    bottom: 120px;
    display: block;
    background: transparent url("../img/slider-prev.svg") center center no-repeat;
    background-size: 18px 34px;
    cursor: pointer;
}

.row.slickslider .slick-next {
    position: absolute;
    right: 0;
    height: 34px;
    width: 18px;
    bottom: 120px;
    display: block;
    background: transparent url("../img/slider-next.svg") center center no-repeat;
    background-size: 18px 34px;
    cursor: pointer;
}

/****************************************/
/* Handwerker-Detailseite */
.firm {
    background: #eaeaea;
    padding: 20px 0;
    margin-bottom: 5px;
}

.firm .main-info {
    font-family: 'Bitter', Georgia, serif;
    font-size: 18px;
}

.firm i.fa {
    width: 20px;
    margin-right: 10px;
    color: #888888;
    text-align: center;
}

.firm a:hover {
    color: #888888;
}

.firm-more {
    background: #eaeaea;
    padding: 20px 0;
}

.firm-more .tags li {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 5px;
    color: #d0251d;
    background: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
}

/****************************************/
/* Videobox im Footer */
.footer-video-container .footer-video-title {
    background-color: #FFFFFF;
    color: #29241f;
    padding: 15px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

.footer-video-container .footer-video-title.gray {
    background: #eaeaea;
}

.footer-video-container .footer-video-title:first-child {
    margin-top: 20px;
}

/****************************************/
/* Footer */
#footer {
    padding: 50px 0;
}

#footer .copy {
    color: #888888;
    font-weight: 700;
}

#footer ul.nav {
    float: right;
}

#footer ul.nav li {
    float: left;
}

#footer ul.nav li a {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #29241f;
    text-transform: uppercase;
    font-weight: 700;
}

#footer ul.nav li a:hover {
    color: #888888;
}

#footer ul.nav li:first-child a {
    border-left: 0;
    padding-left: 0;
}

/****************************************/
/* More Content Ausklappfunktion */
.morecontent span {
    display: none;
}

.morelink {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.morelink:hover {
    color: #888888;
}

/****************************************/
/* Pagination */
.pagination {
    overflow: hidden;
}

.pagination .newer a {
    float: left;
}

.pagination .older a {
    float: right;
}

/* Modul-Styles einbinden */
.buch-box {
    display: block;
    width: 100%;
    float: none;
    margin-top: 15px;
    color: #29241f;
    padding: 20px 0;
    background-color: #eaeaea;
}

.buch-box .title {
    font-size: 23px;
    font-family: 'Bitter', Georgia, serif;
    font-weight: 700;
}

.buch-box .subtitle {
    font-size: 23px;
    font-family: 'Bitter', Georgia, serif;
}

.buch-box .error {
    display: block;
    color: #d0251d;
    font-family: 'Bitter', Georgia, serif;
    margin-top: 20px;
    margin-bottom: 0;
}

.buch-box .beschreibung {
    display: block;
    margin-top: 30px;
}

.buch-box .schlagwort {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 10px;
    display: block;
}

.cta {
    background: url("../img/backgrounds/schiefer.png");
    text-align: center;
    color: #FFFFFF;
    padding-left: 20px;
    padding-right: 20px;
}

.cta h3 {
    color: #FFFFFF;
}

.date-box {
    margin-bottom: 10px;
}

.date-box .date-headline {
    padding: 20px 10px 0 10px;
    background: #FFFFFF;
    margin-bottom: 0;
}

.date-box a {
    display: block;
    padding: 20px 10px;
    background: #FFFFFF;
    margin-bottom: 10px;
    font-size: 14px;
}

.date-box a:last-child {
    margin-bottom: 0;
}

.date-box a .red {
    color: #d0251d;
}

.date-box a h4 {
    color: #888888;
}

.date-box a h4:hover {
    color: #d0251d;
}

.date-box a .col {
    padding: 0;
}

@media all and (max-width: 1060px) {
    .date-box a .col {
        font-size: 14px;
    }
}

.date-box a .col span {
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .date-box a .col {
        margin-bottom: 0 !important;
    }
}

.single-date {
    background-color: #eaeaea;
    padding: 30px 0;
    border: 2px solid #eaeaea;
    margin-bottom: 10px;
}

.single-date:last-child {
    margin-bottom: 0;
}

.single-date .date,
.single-date .location {
    font-family: 'Bitter', Georgia, serif;
    display: block;
}

.single-date .date {
    color: #d0251d;
}

a.single-date {
    display: block;
}

a.single-date:hover {
    border: 2px solid #d0251d;
}

.download-box {
    display: block;
    width: 100%;
    float: none;
    margin-top: 15px;
    color: #29241f;
    padding: 40px 20px;
    background-color: #eaeaea;
}

.download-box i {
    color: #b5b5b5;
    font-size: 50px;
    margin-top: 10px;
}

.download-box .title {
    font-size: 23px;
    font-weight: 700;
    font-family: 'Bitter', Georgia, serif;
    text-transform: uppercase;
}

.download-box span {
    font-size: 23px;
    color: #b5b5b5;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    margin-left: 10px;
}

.download-box .schlagwort {
    font-size: 16px;
    text-transform: uppercase;
}

.download-box .beschreibung {
    font-size: 16px;
    margin-top: 30px;
}

.fact .number {
    width: 70px;
    height: 70px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 50px;
    line-height: 70px;
    background: #d0251d;
    text-align: center;
    display: block;
}

.nav-menu {
    color: #FFFFFF;
    font-size: 14px;
}

.nav-menu h2 {
    font-weight: 400;
}

.nav-menu ul.menu-items {
    margin: -20px;
}

.nav-menu ul.menu-items li {
    border-top: 1px solid #b01f19;
}

.nav-menu ul.menu-items li a {
    display: block;
    padding: 14px 20px;
    text-transform: uppercase;
    color: #d6d6d6;
}

.nav-menu ul.menu-items li a:hover, .nav-menu ul.menu-items li a.active {
    background-color: #b01f19;
    color: #FFFFFF;
}

.nav-menu ul.menu-items li a.special {
    background-color: #eaeaea;
    border: 2px solid #eaeaea;
    text-align: center;
    color: #d0251d;
    margin: 20px;
    padding: 10px 20px;
}

.nav-menu ul.menu-items li a.special span {
    font-weight: 700;
}

.nav-menu ul.menu-items li a.special:hover {
    border-color: #29241f;
}

.news-box-headline {
    padding: 20px 10px 0;
    background: #FFFFFF;
}

a.news-box {
    padding: 20px 10px;
    background: #FFFFFF;
    margin-bottom: 10px;
    display: block;
}

a.news-box .date {
    font-size: 14px;
    color: #888888;
}

a.news-box h4 {
    color: #888888;
}

a.news-box p {
    font-size: 14px;
}

a.news-box .readmore {
    font-weight: 700;
    text-transform: uppercase;
}

a.news-box:hover h4,
a.news-box:hover .readmore {
    color: #d0251d;
}

.news-article .image {
    padding-top: 40%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    margin-bottom: 30px;
    position: relative;
}

.news-article .image .badge {
    position: absolute;
    left: 0;
    top: 20px;
    display: block;
    background: #d0251d;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

.news-article .image .badge:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 14px solid #d0251d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.news-article .text {
    font-size: 17px;
    line-height: 1.6;
}

a.news-teaser {
    display: block;
    background: #eaeaea;
    margin-bottom: 20px;
    position: relative;
}

a.news-teaser:hover .content {
    border: 2px solid #d0251d;
}

a.news-teaser .image {
    padding-top: 40%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    border-bottom: 5px solid #FFFFFF;
}

a.news-teaser .badge {
    position: absolute;
    left: 0;
    top: 20px;
    display: block;
    background: #d0251d;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

a.news-teaser .badge:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 14px solid #d0251d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

a.news-teaser .content {
    padding: 20px 10px;
    padding-top: 70px;
    border: 2px solid #eaeaea;
}

a.news-teaser .content .readmore {
    font-weight: 700;
    text-transform: uppercase;
}

a.news-teaser.sticky .content {
    padding-top: 20px;
}

a.pinned-teaser {
    display: block;
    background: #eaeaea;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    padding: 0px !important;
}

a.pinned-teaser:hover .content {
    border: 2px solid #d0251d;
}

a.pinned-teaser .image {
    padding-top: 40%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-bottom: 5px solid #FFFFFF;
}

a.pinned-teaser .badge {
    text-tramsform: uppercase;
    position: absolute;
    left: 0;
    top: 20px;
    display: block;
    background: #d0251d;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

a.pinned-teaser .badge:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 14px solid #d0251d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

a.pinned-teaser .content {
    padding: 20px 10px;
    border: 2px solid #eaeaea;
    overflow: hidden;
    height: 265px;
    position: relative;
}

a.pinned-teaser .content .readmore {
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    left: 10px;
}

a.pinned-teaser.sticky .content {
    padding-top: 20px;
}

.related-sites {
    padding-left: 20px;
}

.related-sites span {
    font-family: 'Bitter', Georgia, serif;
    color: #eaeaea;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    display: block;
}

.related-sites ul li a {
    color: #d6d6d6;
}

.related-sites ul li .fa {
    color: #d6d6d6;
    margin-right: 5px;
    font-size: 20px;
}

.pressespiegel-teaser {
    display: block;
    background: #eaeaea;
    margin-bottom: 20px;
    position: relative;
    padding-top: 50px;
}

.pressespiegel-teaser .badge {
    position: absolute;
    left: 0;
    top: 20px;
    display: block;
    background: #d0251d;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

.pressespiegel-teaser .badge:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 14px solid #d0251d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.pressespiegel-teaser .content {
    padding: 20px 10px;
    border: 2px solid #eaeaea;
}

.pressespiegel-teaser .content .source {
    font-size: 14px;
    display: block;
    color: #888888;
}

.overlay {
    display: none;
}

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

.overlay .overlay-close {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    color: #29241f;
}

.overlay .overlay-close:hover {
    color: #d0251d;
}

.overlay .overlay-content {
    background: url("../img/backgrounds/beton.png");
    width: 700px;
    padding: 0 30px 0 20px;
    position: fixed;
    z-index: 999999;
    top: 50px;
    bottom: 50px;
    left: 50%;
    margin-left: -350px;
    overflow: auto;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.overlay .overlay-content .text-right {
    padding: 0;
}

@media all and (max-width: 767px) {
    .overlay .overlay-content {
        width: 100%;
        left: 0;
        margin-left: 0;
        padding: 0;
    }

    .overlay .overlay-content .text-right {
        text-align: left;
        margin-bottom: 10px;
        padding-left: 20px;
    }
}

.overlay .overlay-content input,
.overlay .overlay-content textarea,
.overlay .overlay-content select {
    padding: 5px 10px;
    background-color: #FFFFFF;
    width: 100%;
    display: block;
}

.overlay .overlay-content textarea {
    resize: vertical;
    min-height: 80px;
}

.overlay .overlay-content button.loading {
    opacity: 0.5;
    cursor: default;
}

.person {
    position: relative;
}

.person .photo {
    max-height: 498px;
}

.person .region-logo {
    position: absolute;
    top: 174px;
    left: 80px;
    height: 40px;
    width: auto;
}

.person .content {
    position: absolute;
    background: #eaeaea;
    top: 220px;
    left: 80px;
    min-height: 260px;
    min-width: 240px;
    padding: 20px 10px;
}

.person .content p {
    font-size: 14px;
}

.person .content a.button, .person .content .pagination .newer a, .pagination .newer .person .content a,
.person .content .pagination .older a,
.pagination .older .person .content a {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.partnerheadline {
    margin-left: 20px;
    margin-top: -20px;
    margin-bottom: 0px !important;
}

.partner-logos {
    position: relative;
}

.partner-logos .partner-logo {
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: block;
    margin: auto;
}

.quote {
    background: url("../img/backgrounds/schiefer.png");
    text-align: center;
    color: #FFFFFF;
    padding-left: 20px;
    padding-right: 20px;
}

.quote .image {
    margin: 0 auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.quote .quote-text {
    font-weight: 400;
    font-style: italic;
}

.quote .name {
    font-family: 'Bitter', Georgia, serif;
    text-align: right;
    color: #b5b5b5;
}

.quote + .cta {
    margin-top: 30px;
}

.search {
    color: #FFFFFF;
    font-family: 'Bitter', Georgia, serif;
    font-size: 14px;
}

.search h2 {
    font-weight: 400;
}

.search select {
    padding: 5px 50px 5px 10px;
    width: 100%;
    display: block;
    background: #FFFFFF url("../img/arrow_down.svg") 94% center no-repeat;
    background-size: 9px 5px;
    text-transform: normal;
    cursor: pointer;
    border: 2px solid #b5b5b5;
    font-weight: 700;
}

.search button {
    padding: 5px 10px;
    margin-top: 5px;
}

.search button i.fa {
    margin-left: 10px;
    font-size: 16px;
}

.search .menu-link {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    border-top: 1px solid #b01f19;
    border-bottom: 1px solid #b01f19;
    display: block;
    padding: 14px 20px;
    text-transform: uppercase;
    color: #d6d6d6;
    margin: 30px -20px 0 -20px;
}

.search .menu-link span {
    font-weight: 700;
}

.search .menu-link:hover {
    background-color: #b01f19;
    color: #FFFFFF;
}

.single-seminar {
    background-color: #eaeaea;
    padding: 30px 0;
    border: 2px solid #eaeaea;
    margin-bottom: 10px;
}

.single-seminar:last-child {
    margin-bottom: 0;
}

.single-seminar .date,
.single-seminar .location {
    font-family: 'Bitter', Georgia, serif;
    display: block;
}

.single-seminar .date {
    color: #d0251d;
}

a.single-date {
    display: block;
}

a.single-date:hover {
    border: 2px solid #d0251d;
}

.publication {
    background: #eaeaea;
    margin-bottom: 20px;
    position: relative;
    padding-top: 35px;
}

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

.publication .badge {
    position: absolute;
    left: 0;
    top: 20px;
    display: block;
    background: #d0251d;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

.publication .badge:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 14px solid #d0251d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.publication h2 {
    background-color: none;
    color: #FFFFFF;
    padding: 10px 0;
    margin-bottom: 5px;
}

.publication .content {
    padding: 20px 10px 20px 100px;
    background: url("../img/download-icon.svg") no-repeat 20px 30px;
}

.publication .link {
    padding: 20px;
    font-weight: 700;
    float: right;
}

@media only screen and (max-width: 767px) {
    .publication .link {
        float: none;
        margin-left: 80px;
    }
}

.publication-book {
    background: #eaeaea;
    margin-bottom: 10px;
}

.publication-book h2 {
    background-color: #d0251d;
    color: #FFFFFF;
    padding: 20px 10px;
    margin-bottom: 5px;
}

.publication-book h3 {
    color: #d0251d;
    margin-bottom: 5px;
}

.publication-book .image {
    padding: 20px 0;
}

.publication-book .content {
    padding: 20px 0;
}

.social-media {
    position: absolute;
    bottom: 30px;
    left: 20px;
}

@media all and (max-width: 767px) {
    .social-media {
        position: static;
        padding: 20px;
    }
}

.social-media span {
    font-family: 'Bitter', Georgia, serif;
    color: #eaeaea;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    display: block;
}

.social-media ul {
    display: block;
}

.social-media ul li {
    display: inline-block;
    margin-left: 5px;
}

.social-media ul li a {
    display: block;
    background: #eaeaea;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 26px;
    color: #888888;
}

.social-media ul li a:hover {
    color: #29241f;
}

.social-media ul li:first-child {
    margin-left: 0;
}

.tag-box {
    background-color: #eaeaea;
    padding: 20px;
    margin-bottom: 10px;
}

.tag-box .subline {
    font-size: 14px;
}

.tag-box ul li {
    display: block;
    margin-bottom: 5px;
}

.tag-box ul li:last-child {
    margin-bottom: 0;
}

.tag-box ul li a {
    padding: 5px 10px;
    background-color: #FFFFFF;
    display: inline-block;
    text-transform: uppercase;
}

.tag-box ul li a.active, .tag-box ul li a:hover {
    background: #d0251d;
    color: #FFFFFF;
}

.tippswrapper {
    padding: 0px !important;
}

.tippswrapper .tipp-box {
    background-color: #eaeaea;
    padding: 20px;
    margin-bottom: 10px;
    display: block;
    height: 200px;
}

.tippswrapper .tipp-box:hover {
    border: 2px solid #d0251d;
}

a.tipps-teaser {
    display: block;
    background: #eaeaea;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    padding: 0px !important;
}

a.tipps-teaser:hover .content {
    border: 2px solid #d0251d;
}

a.tipps-teaser .image {
    padding-top: 40%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-bottom: 5px solid #FFFFFF;
}

a.tipps-teaser .badge {
    text-tramsform: uppercase;
    position: absolute;
    left: 0;
    top: 20px;
    display: block;
    background: #d0251d;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

a.tipps-teaser .badge:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 14px solid #d0251d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

a.tipps-teaser .content {
    padding: 20px 10px;
    border: 2px solid #eaeaea;
    overflow: hidden;
    height: 265px;
    position: relative;
}

a.tipps-teaser .content .readmore {
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    left: 10px;
}

a.tipps-teaser.sticky .content {
    padding-top: 20px;
}

#header {
    background: #FFFFFF;
    padding-top: 20px;
    height: 70px;
    position: relative;
    z-index: 1;
}

#header .inner {
    padding: 0 20px;
}

@media all and (max-width: 767px) {
    #header {
        padding: 10px;
        height: auto;
    }

    #header .inner {
        padding: 0;
    }
}

#header.bg-transparent {
    background: transparent;
}

#header .logo {
    display: inline-block;
    max-width: 100%;
    float: left;
}

@media all and (max-width: 770px) {
    #header .logo {
        max-width: 300px !important;
    }
}

@media all and (max-width: 425px) {
    #header .logo {
        max-width: 250px !important;
    }
}

#header .logo img {
    max-width: 450px;
    max-height: 55px;
    vertical-align: top;
    margin-top: -10px;
}

@media all and (max-width: 770px) {
    #header .logo img {
        margin-top: 0;
        max-width: 280px !important;
        display: inline-block;
    }
}

@media all and (max-width: 425px) {
    #header .logo img {
        max-width: 230px !important;
    }
}

@media all and (max-width: 767px) {
    #header .logo {
        max-width: none;
        width: 100%;
    }

    #header .logo img {
        width: 100%;
        max-height: none;
        max-width: none;
    }
}

#header .jumper {
    float: left;
    margin-left: 5px;
}

@media all and (max-width: 770px) {
    #header .jumper {
        display: none;
    }
}

#header .jumper a {
    display: inline-block;
    margin: 0;
    position: relative;
    top: -10px;
    background-color: #d0251d;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    height: 38px;
    line-height: 36px;
    padding: 0 10px;
    border: 2px solid #d0251d;
}

#header .jumper a:hover {
    background-color: #fff;
    border-color: #d0251d;
    color: #d0251d;
}

#header .deutschland {
    max-width: 110px;
    height: auto;
    float: right;
    margin-top: -10px;
}

@media all and (max-width: 1279px) {
    #header .deutschland {
        margin-right: 20px;
    }
}

@media all and (max-width: 914px) {
    #header .deutschland {
        display: none;
    }
}

#header .toggles {
    float: right;
    display: none;
}

@media only screen and (max-width: 1279px) {
    #header .toggles {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    #header .toggles {
        overflow: hidden;
    }
}

#header .toggles .toggle-wrapper {
    float: left;
}

#header .toggles .toggle-wrapper:first-child {
    padding-right: 5px;
}

#header .toggles .toggle-wrapper:last-child {
    padding-left: 5px;
}

@media all and (max-width: 767px) {
    #header .toggles .toggle-wrapper {
        margin-top: 10px;
        width: 50px;
        padding-right: 0;
    }

    #header .toggles .toggle-wrapper i {
        margin-right: 0 !important;
    }
}

#header .toggles .toggle {
    padding: 0 10px;
    display: block;
    line-height: 34px;
    height: 38px;
    margin-top: -10px;
    font-weight: 400;
}

@media all and (max-width: 459px) {
    #header .toggles .toggle {
        padding: 0;
    }
}

#header .toggles .toggle i.fa {
    margin-right: 10px;
}

.work-sample .image {
    padding-top: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #b5b5b5;
}

.work-sample .content {
    margin-top: 5px;
    background: #eaeaea;
    padding: 20px 10px;
}

.work-sample .content .subtitle {
    font-family: 'Bitter', Georgia, serif;
}

.work-sample .content p {
    font-size: 14px;
}

/* =WordPress Core
-------------------------------------------------------------- */
.magazinlink {
    background-color: #eaeaea;
    padding: 20px;
    margin-bottom: 10px;
    display: block;
}

.magazinlink:hover {
    border: 2px solid #d0251d;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;

    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;

    /* Above WP toolbar. */
}

/* Gallery Rockhaus */
.gallery-single h1 {
    margin-top: 30px;
}

.gallery-single .gallery-item {
    width: 22.9% !important;
    margin-right: 2% !important;
}

.gallery-single .gallery-item img {
    box-shadow: none !important;
    border: none !important;
}

.rockhaus-single .wp-caption {
    border: none;
}

.rockhaus-single .wp-caption img {
    max-width: 100%;
    width: 100%;
}

.rockhaus-single .wp-caption .wp-caption-text {
    background-color: #eaeaea;
    margin: 0;
    padding: 10px 20px;
    top: -6px;
    position: relative;
    text-transform: uppercase;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.fixed-left-button {
    display: block;
    opacity: 1;
    position: fixed;
    left: -50px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    top: 40%;
    z-index: 99999;
    color: #FFFFFF;
    font-weight: 600;
    background-color: #d0251d;
    text-transform: uppercase;
    font-size: 12px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    padding: 5px 15px;
}

@media all and (min-width: 321px) {
    .fixed-left-button {
        font-size: 14px;
        left: -60px;
        padding: 10px 20px;
    }
}

@media all and (min-width: 750px) {
    .fixed-left-button {
        left: -60px;
        font-size: 16px;
        display: block;
        opacity: 1;
    }
}

section.pinned .col.size5of12 {
    width: 45%;
}

@media (max-width: 767px) {
    section.pinned .col.size5of12 {
        width: 100%;
    }
}

.fancybox-wrap {
    z-index: 99999999 !important;
}

@keyframes einblenden {
    0% {
        opacity: 0;
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    99% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes einblenden {
    0% {
        opacity: 0;
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    99% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes einblenden {
    0% {
        opacity: 0;
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    99% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fbx-caption {
    display: none !important;
}

/** Ronny Meyer Seite **/
.ronnymeyer-content .dreispaltig .box {
    background-color: #eaeaea;
    padding: 10px;
    display: block;
}

.ronnymeyer-content .dreispaltig .box h3 {
    color: #d0251d;
}

.ronnymeyer-content .dreispaltig .box .image {
    display: block;
    padding-top: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ronnymeyer-content .dreispaltig .box p {
    padding: 5px;
    font-size: 16px;
}

.ronnymeyer-content .dreispaltig a.box {
    border: 2px solid #eaeaea;
}

.ronnymeyer-content .dreispaltig a.box:hover {
    border-color: #d1d1d1;
}

.ronnymeyer-content .bio-list .bio {
    position: relative;
    background-color: #eaeaea;
    padding: 50px 10px 10px 10px;
    margin-bottom: 10px;
}

.ronnymeyer-content .bio-list .bio .badge {
    position: absolute;
    left: -1px;
    top: 10px;
    display: block;
    background: #d0251d;
    color: #FFFFFF;
    padding: 0 20px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
}

.ronnymeyer-content .bio-list .bio .badge:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 14px solid #d0251d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.tipp-box:hover {
    padding: 18px;
}

.magazinlink:hover {
    padding: 18px;
}

.magbox {
    padding: 0 10px !important;
}

.magbox:first-child {
    padding-right: 10px !important;
    padding-left: 20px !important;
}

.magbox:last-child {
    padding-left: 10px !important;
    padding-right: 20px !important;
}

h3.red.space-above-m {
    min-height: 55px;
}

.partner-logos {
    position: relative;
}

.partner-logos .partner-logo {
    height: 180px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: block;
    margin: auto;
}

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