::selection {
    background: #e52420;
    color: #fff;
    -webkit-text-stroke-color: #fff;
}

::-moz-selection {
    background: #e52420;
    color: #fff;
}

.hyphenate {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.widespaced {
    letter-spacing: 0.1em;
}

.highlight {
    color: #e52420;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Asap", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #444;
    font-size: 16px;
}

a {
    color: inherit;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

a:hover,
a:focus {
    color: #e52420;
    outline: none !important;
    text-decoration: none;
}

ul, ol, p {
    padding: 0;
    margin: 0;
}

h1, h2, h3 {
    font-weight: 700;
}


h4.widespaced {
    color: #e52420;
    text-transform: uppercase;
    font-weight: 700;
}


/* -------------------------------------------------- */
/*				  	   ELEMENTS					      */
/* -------------------------------------------------- */

.lis-textcolor-corporate1 {
  color: var(--color-primary);
}
.lis-textcolor-corporate2 {
  color: var(--color-secondary);
}
.lis-textcolor-white {
  color: #fff;
}
.lis-textcolor-black {
  color: #000;
}
.lis-textcolor-body {
  color: var(--body-text-color);
}

.lis-bgcolor-transparent {
  padding-left: 0px;
  padding-right: 0px;
  background-color: transparent;
}
.lis-bgcolor-corporate1 {
  background-color: var(--color-primary);
}
.lis-bgcolor-corporate2 {
  background-color: var(--color-secondary);
}
.lis-bgcolor-white {
  background-color: #fff;
}
.lis-bgcolor-black {
  background-color: #000;
}
.lis-bgcolor-body {
  background-color: var(--body-text-color);
}


/* -----------------------------------------------------------------------------

  HEADER
    * header-top: hotline, social, search, top-menu
    * header-bottom: logo, navigation

----------------------------------------------------------------------------- */


/* general header styles */

#dc-header {
    display: block;
}


/* logo */

#dc-logo {
    margin-top: 30px;
    display: block;
    width: 233px;
    height: 40px;
    background: url('./img/tgl-logo.svg') no-repeat scroll center center / contain;
}

@media all and (max-width: 1199px) {
    #dc-logo {
        width: 200px;
        height: 34px;
    }
}

@media all and (max-width: 991px) {
    #dc-logo {
        margin: 20px 0 20px 15px;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }
}


/*
search
 */

#toggleSearch {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#toggleSearch:focus {
    outline: none;
}

#searchform {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    width: 770px;
    opacity: 0;
    background: #fff;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    z-index: -1;
    padding-top: 30px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #searchform {
        width: 100%;
        max-width: 650px;
    }
}

@media screen and (max-width: 991px) {
    #searchform {
        width: 100%;
        max-width: 700px;
        padding-top: 20px;
    }

    body.search-open #dc-logo {
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    #searchform {
        width: calc(100% - 60px);
    }
}

#searchform > input.form-control {
    border: none;
    font-size: 16px;
}

#searchform > input.form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

body.search-open #searchform {
    opacity: 1;
    z-index: 100;
    right: 50px;
}

body.search-open .navbar-nav {
    opacity: 0;
}


/* navigation + dropdown */

#dc-navbar {
    min-height: 100px;
    background: #fff;;
    border: none;
    border-top: 2px solid #e52420;
    border-bottom: 2px solid #cecece;
    margin: 0;
}

@media screen and (max-width: 991px) {
    #dc-navbar {
        min-height: 80px;
    }
}

#dc-navbar > .container {
    position: relative;
}

.navbar-header {
    position: relative;
}

.navbar-nav {
    opacity: 1;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.navbar-nav > li > a {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 14px;
    color: #444;
    position: relative;
    display: block;
}

.navbar-nav > li:before,
.navbar-nav > li:after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 30px;
    background: transparent;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.navbar-nav > li:before {
    left: 50%;
}

.navbar-nav > li:after {
    right: 50%;
}

.navbar-nav > li:hover:before,
.navbar-nav > li:focus:before,
.navbar-nav > li:hover:after,
.navbar-nav > li:focus:after,
.navbar-nav > li.current-menu-item:before,
.navbar-nav > li.current-menu-item:after,
.navbar-nav > li.current-menu-ancestor:before,
.navbar-nav > li.current-menu-ancestor:after {
    bottom: -2px;
    width: 50%;
    background: #e52420;
}


.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.current-menu-item > a,
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover{
    background: transparent;
    color: #e52420;
}

.navbar-toggle {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 30px;
    color: #e52420;
    border-radius: 0;
    padding: 25px;
    float: none;
    position: absolute;
    top: 0;
    right: 30px;
    margin: 0;
}

body:not(.home) .dc-content,
#dc-bloghome,
#dc-blogsingle {
    padding-top: 40px;
}

@media screen and (min-width: 992px) {
    .navbar-nav {
        padding-right: 50px;
    }
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
    .navbar-nav > li > a {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .dc-wrapper {
        padding-top: 100px;
    }

    #dc-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .navbar-header {
        float: none;
    }

    .navbar-right {
        float: none !important;
        margin-right: 0;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .collapse.in{
        display: block !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .navbar-collapse {
        border: none;
        box-shadow: none;
    }

    .navbar-nav > li {
        border-top: 1px solid #cecece;
        float: none;
    }

    .navbar-nav > li:first-child {
        border: none
    }

    .navbar-nav > li:before,
    .navbar-nav > li:after {
        content: none;
        display: none;
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 18px;
        text-transform: none;
    }

    /* dropdown */
    .dropdown a.dropdown-toggle {
        position: relative;
    }

    .dropdown-toggle {
        width: 60px;
        height: 40px;
        border: none;
        box-shadow: none;
        position: absolute;
        top: 0;
        right: 0;
        background: transparent;
    }

    .dropdown .dropdown-toggle:after {
        content: "\f078";
        font-family: 'FontAwesome';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        font-size: 10px;
        font-weight: normal;
        font-style: normal;
        line-height: 40px;
        width: 40px;
        text-align: center;
        color: #444;
    }

    .dropdown .dropdown-toggle:hover:after {
        color: #e52420;
        cursor: pointer;
    }

    .dropdown.open .dropdown-toggle:after,
    .dropdown.open .dropdown-submenu.open .dropdown-toggle:after {
        content: "\f077";
        color: #444;
    }

    .dropdown.open .dropdown-submenu .dropdown-toggle:after {
        content: "\f078";
    }

    .dropdown-menu {
        padding: 0;
    }

    .dropdown-menu > li > a {
        padding: 10px 20px !important;
        color: #444;
        white-space: normal;
        font-size: 16px;
    }

    .navbar-nav .open .dropdown-menu {
        background-color: transparent;
        border: 0 none;
        box-shadow: none;
        float: none;
        margin-top: 0;
        position: static;
        width: auto;
    }

    .dropdown-menu > li > a:focus,
    .dropdown-menu > li > a:hover {
        background: #cecece;
    }

    .dropdown-submenu.open .dropdown-menu > li > a {
        padding-left: 40px !important;
        position: relative;
    }

    .dropdown-submenu.open .dropdown-menu > li > a:before {
        content: "\f054";
        font-family: 'FontAwesome';
        font-size: 10px;
        font-weight: normal;
        font-style: normal;
        line-height: 40px;
        display: block;
        position: absolute;
        left: 25px;
        top: 0;
    }
}

@media all and (max-width: 767px) {
    .navbar-right {
        margin-right: -15px;
    }
}


/* dropdown */

@media all and (min-width: 992px) {
    ul.nav li.dropdown:hover > ul.dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        display: none;
    }

    .dropdown-menu {
        background: #f8f8f8;
        border-color: #cecece;
    }

    .dropdown-menu > li > a {
        color: #444;
        padding: 10px 20px;
        white-space: normal;
    }

    .dropdown-menu > li > a:hover,
    .dropdown-menu > li > a:focus,
    .dropdown-menu > li.current-menu-ancestor > a,
    .dropdown-menu > li > ul.dropdown-menu li.current-menu-item > a {
        background: #444;
        color: #f8f8f8;
    }

    .dropdown-submenu {
        position:relative;
    }
    .dropdown-submenu>.dropdown-menu {
        top:0;
        left:100%;
        margin-top:-6px;
        margin-left:-1px;
        -webkit-border-radius:0 6px 6px 6px;
        -moz-border-radius:0 6px 6px 6px;
        border-radius:0 6px 6px 6px;
    }
    .dropdown-submenu>a:after {
        display:block;
        content:" ";
        float:right;
        width:0;
        height:0;
        border-color:transparent;
        border-style:solid;
        border-width:5px 0 5px 5px;
        border-left-color:#cccccc;
        margin-top:5px;
        margin-right:-10px;
    }
    .dropdown-submenu:hover>a:after {
        border-left-color:#555;
    }
    .dropdown-submenu.pull-left {
        float:none;
    }
    .dropdown-submenu.pull-left>.dropdown-menu {
        left:-100%;
        margin-left:10px;
        -webkit-border-radius:6px 0 6px 6px;
        -moz-border-radius:6px 0 6px 6px;
        border-radius:6px 0 6px 6px;
    }

}


/* revolution slider caption */

.tp-caption {
    font-family: "Asap", sans-serif !important;
}






/* -----------------------------------------------------------------------------

  ELEMENTS

----------------------------------------------------------------------------- */


/* headline */

.dc-headline {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.dc-headline-title,
.dc-headline-subtitle {
    text-transform: uppercase;
}

.dc-headline-title {
    color: #e52420;
    font-weight: 700;
    font-size: 48px;
}

.dc-headline-subtitle {
    margin: 10px 0;
    font-weight: 300;
    font-size: 24px;
}

.dc-headline-seperator {
    margin: 20px 0;
    height: 40px;
    text-align: center;
    display: block;
    position: relative;
    background: url('./img/tgl-logo-signet.svg') no-repeat scroll center center / auto 100%;
}

.dc-headline-seperator:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #cecece;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: block;
    z-index: -1;
}

.dc-headline-seperator:after {
    content: "";
    width: 60%;
    height: 1px;
    background: #e52420;
    position: absolute;
    top: 20px;
    left: 20%;
    display: block;
    z-index: -1;
}



/* button */

.dc-btn {
    padding: 10px 20px;
    background: #e52420;
    border: 2px solid #e52420;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0px);
    -ms-transform: translateZ(0px);
    transform: translateZ(0px);
    transition-duration: 0.3s;
    transition-property: color;
}

.dc-btn-small {
    padding: 6px 16px;
    font-size: 14px;
}

.dc-btn:before {
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    z-index: -1;
}

.dc-btn:hover:before,
.dc-btn:focus:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.dc-btn:hover,
.dc-btn:focus {
    color: #e52420;
}

.dc-btn-centering {
    width: 100%;
    display: block;
    text-align: center;
}




/* pagination */

.pagination {
    margin-bottom: 40px;
}

.page-numbers {
    border: 1px solid #cecece;
    color: #888;
    margin: 0 2px;
    padding: 5px 10px;
}

.page-numbers:hover,
.page-numbers:focus,
.page-numbers.current{
    border-color: #444;
    color: #444;
}

.page-numbers.dots {
    border: medium none;
    margin: 0;
    padding: 0;
}

.sr-only {
    display: none;
}

.suchergebnis {
    border-top: 1px solid #c9c9c9;
    margin-bottom: 30px;
    padding-top: 20px;
}

.suchergebnis:first-child {
    border: medium none;
    padding-top: 0;
}




/* blog post */

.dc-blog-post {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.dc-blog-post:first-child {
    padding-top: 0;
}

.dc-blog-post:last-child {
    border: none;
    padding-bottom: 0;
}

.dc-blog-post-inner {
    width: 100%;
}

.dc-blog-post-image-holder {
    margin-bottom: 30px;
}

.dc-blog-post-title {
    font-size: 22px;
    font-weight: 700;
    color: #444;
    position: relative;
    margin: 0;
    display: inline-block;
}

.dc-blog-post-title a {
    position: relative;
    display: inline-block;
}

.dc-blog-post-title a:hover,
.dc-blog-post-title a:focus {
    color: #e52420;
}

.dc-blog-post-title a:before,
.dc-blog-post-title a:after {
    content: "";
    height: 2px;
    width: 0;
    position: absolute;
    bottom: -10px;
    left: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.dc-blog-post-title a:before {
    width: 100%;
    z-index: -1;
    background: #ddd;
}

.dc-blog-post-title a:hover:after,
.dc-blog-post-title a:focus:after {
    background: #e52420;
    width: 100%;
}

.dc-blog-post-date,
.dc-blog-post-meta {
    font-size: 14px;
    font-style: italic;
    color: #888;
    display: block;
    margin: 10px 0;
}

.dc-blog-post-date {
    margin-top: 20px;
}

.dc-blog-post-social {
    list-style-type: none;
    margin: 0;
    /*margin-top: 40px;*/
    padding: 0;
    background: #eee;
}

.dc-blog-post-social:after {
    clear: both;
    content: " ";
    display: block;
}

.dc-blog-post-social > li {
    float: left;
}

.dc-blog-post-social  .dc-blog-post-social-label {
    line-height: 1;
}

.dc-blog-post-social  .dc-blog-post-social-label,
.dc-blog-post-social > li > a {
    padding: 10px 8px;
    color: #888;
}

.dc-blog-post-social > li > a:hover,
.dc-blog-post-social > li > a:focus {
    color: #e52420;
}

.dc-blog-post-text {
    padding-bottom: 20px;
}




/* -----------------------------------------------------------------------------

  FOOTER
    * main footer
    * footer navigation
    * subfooter

----------------------------------------------------------------------------- */

/* mainfooter */
.dc-footer-container {
    background: #f5f5f5;
    border-top: 2px solid #cecece;
    border-bottom: 2px solid #cecece;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.dc-footer-logo-holder {
    position: relative;
    display: block;
    min-height: 160px;
    height: 100%;
    width: 100%;
}

#dc-footer-logo {
    display: block;
    width: 233px;
    height: 40px;
    background: url('./img/tgl-logo.svg') no-repeat scroll center center / contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dc-footer-content {
    font-size: 14px;
}

.dc-footer-content-headline {
    color: #e52420;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.dc-footer-content-label {
    display: inline-block;
    width: 55px;
    float: left;
}

.dc-footer-content p {
    padding-bottom: 15px;
}


/* footer navigation */

.dc-footer-nav ul {
    list-style-type: none;
}


.dc-footer-nav ul.menu > li:nth-child(2) {
    margin-bottom: 15px;
}


/* subfooter */

.dc-subfooter-container {
    font-size: 12px;
    line-height: 30px;
    border-bottom: 2px solid #e52420;
}

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

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

@media all and (max-width: 767px) {
    .dc-footer-logo-holder {
        min-height: 60px;
        margin-bottom: 20px;
    }

    .dc-footer-content {
        margin-bottom: 20px;
    }

    .dc-subfooter-container {
        line-height: normal;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .dc-subfooter-left,
    .dc-subfooter-right {
        text-align: center;
    }
}





/* adjusting vanilla wp styles */

.wpb_text_column ul  {
    margin-left: 15px;
    margin-bottom: 15px;
}

.wpb_text_column ul li {
    margin-bottom: 5px;
}

.wpb_text_column ul li:last-child {
    margin: 0;
}

.dc-content .flexslider .slides img {
    width: auto;
    height: 100%;
    max-width: 100%;
}







.dc-page-title-text {
    margin: 100px 0 20px;
    padding: 10px 15px;
    font-size: 24px;
    font-weight: 700;
    background: #e52420;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 2px 2px 2px rgba(0,0,0, 0.3);
}

.vc_row {
    margin-bottom: 25px;
}

.dc-blog-sidebar h4 {
    color: #e52420;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    margin-top: 20px;
}

.dc-blog-sidebar ul {
    margin-top: 10px;
}

.dc-blog-sidebar ul > li {
    list-style-type: none;
    padding-bottom: 5px;
    /*margin-bottom: 10px;
    border-bottom: 1px solid #cecece;*/
}

.dc-blog-sidebar ul > li:last-child {
    border-bottom: none;
}




/* dc-latest-posts */


.dc-latest-posts-single-img {
    height: 250px;
    width: 100%;
}

.dc-latest-posts-single-text {
    height: 120px;
    margin-bottom: 30px;
}

@media all and (max-width: 1199px) and (min-width: 992px) {
    .dc-latest-posts-single-text {
        height: 140px;
    }
}

@media all and (max-width: 991px) {
    .dc-latest-posts-single {
        margin-bottom: 60px;
    }

    .dc-latest-posts-single-text {
        height: 100%;
    }
}






/* contact form 7 */


div.wpcf7 {
    margin-bottom: 35px !important;
}

.wpcf7 label {
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #444;
    display: block;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wpcf7 label small {
    text-transform: none;
    color: #888;
    font-weight: 300;
}

.wpcf7-form-control {
    border: 1px solid #ddd;
}

.wpcf7-form-control.wpcf7-recaptcha {
    border: none;
}

.wpcf7-not-valid {
    border: 1px solid #e52420;
}

.wpcf7-not-valid-tip {
    color: #d40032 !important;
}

.wpcf7-form-control-wrap,
.wpcf7 input:not(.wpcf7-submit),
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
}

.wpcf7 .dc-btn {
    text-align: center !important;
    padding: 0;
    margin-top: 10px;
}

.wpcf7 input.wpcf7-submit {
    background: none;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 15px 40px;
    margin-right: -20px;
}

div.wpcf7 img.ajax-loader {
    margin: 0;
    margin-right: 5px;
}

div.wpcf7-response-output {
    margin: 2em 0 1em !important;
    border: none !important;
    color: #fff;
    font-weight: 700;
    padding: 20px !important;
}

div.wpcf7-validation-errors {
    background: #e52420;
}

div.wpcf7-mail-sent-ok {
    background: #87D37C;
}






/* cookie consent */

.cc_container {
    font-style: normal;
    font-weight: 300;
}

.cc_container .cc_btn,
.cc_container .cc_btn:visited {
    border-radius: 0 !important;
    background-color: #444 !important;
    color: #fff !important;
}

.cc_container .cc_btn:hover,
.cc_container .cc_btn:active {
    background-color: #ddd !important;
    color: #444 !important;
}

.cc_container a,
.cc_container a:visited {
    color: #ddd !important;
    font-weight: 700;
}

.cc_container a:hover,
.cc_container a:active {
    color: #fff !important;
}

.wpb_text_column p {
    margin-bottom: 15px;
}

.wpb_text_column p a {
    color: #e52420;
    text-decoration: underline;
}

.wpb_text_column p a:hover,
.wpb_text_column p a:focus {
    color: #444;
}





/* dc_abteilung_nav */

.dc_abteilung_nav_top {
    padding: 15px 15px 15px 15px;
    background: #eee;
    font-weight: bold;
    text-transform: uppercase;
}

.dc_abteilung_nav_top a {
    display: inline-block;
    border-bottom: 1px solid #e52420;
}

.dc_abteilung_nav {
    padding: 0 15px 15px 15px;
    background: #eee;
}

.dc_abteilung_nav,
.dc_abteilung_nav .children {
    list-style: none;
}

.dc_abteilung_nav > li > a,
.dc_abteilung_nav .children > li > a {
    position: relative;
}

.dc_abteilung_nav .children > li > a {
    padding-left: 10px;
}

.dc_abteilung_nav .children > li > a:before {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 0.750em;
    display: inline;
    vertical-align: middle;
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
}


.dc_abteilung_nav .children {
    padding-left: 10px;
}

.dc-abteilungsicon-img {
    min-height: 200px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.dc-abteilungsicon-link-wrapper {
    display: table;
    width: 100%;
    height: 76px;
    color: #fff;
    background: #e52420;
    border: 2px solid #e52420;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.dc-abteilungsicon-link-wrapper-inner {
    display: table-cell;
    vertical-align: middle;
}

.dc-abteilungsicon-link {
    text-align: center;
    padding: 15px;

}

a:hover .dc-abteilungsicon-img,
a:focus .dc-abteilungsicon-img {
    opacity: 0.5;
}

a:hover .dc-abteilungsicon-link-wrapper,
a:focus .dc-abteilungsicon-link-wrapper {
    background: #fff;
    color: #e52420;
}



/* abteilungsmenu_nav */

.abteilungsmenu {
    padding: 15px 15px 15px 15px;
    background: #eee;
}

.abteilungsmenu_heading {
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 1px solid #e52420;
    margin-bottom: 15px;
}

.abteilungsmenu_nav ul {
    padding: 0;
    list-style: none;
}

.abteilungsmenu_nav ul li .sub-menu,
.abteilungsmenu_nav ul li .sub-menu li a {
    padding-left: 10px;
    position: relative;
}

.abteilungsmenu_nav ul li .sub-menu li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 0.750em;
    display: inline;
    vertical-align: middle;
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
}

.abteilungsmenu_nav ul li.current_page_parent a,
.abteilungsmenu_nav ul li.current_page_item a {
    color: #e52420;
}




/* tabellen stylings */

.wpb_vc_table table tr:nth-child(even) {
    background: #efefef;
}

.wpb_vc_table td.vc_table_cell {
    padding: 10px;
    border: 1px solid #cecece !important;
    vertical-align: top;
}








/* breadcrumbs */

.dc-page-title {
    background: #eee;
}

.dc-page-title .dc-page-title-breadcrumbs ul {
    display: inline-block;
    position: relative;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.dc-page-title .dc-page-title-breadcrumbs ul > li {
    float: left;
    position: relative;
}

.dc-page-title .dc-page-title-breadcrumbs ul > li.current {
    font-size: 14px;
    margin: 2px 5px 0;
    padding: 0 15px;
    color: #e52420;
    text-transform: uppercase;
}

.dc-page-title .dc-page-title-breadcrumbs ul > li > a {
    padding: 5px;
    margin: 5px;
    font-size: 14px;
}

/*
.dc-page-title .dc-page-title-breadcrumbs ul > li.current > a {
    color: #e6007e;
    text-transform: uppercase;
}
*/

.dc-page-title .dc-page-title-breadcrumbs ul > li:not(.current):after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 14px;
    position: absolute;
    top: 3px;
    right: -5px;
}



@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.seiten-titel-container {
    text-align: right;
    margin: 0;
    padding: 0;
   animation: 2s ease-out 0s 1 fadeIn;
}


h1.seiten-titel {
    background: #e42320;
    color: white;
    text-align: right;
    padding: 15px;
    font-weight: normal;
    margin: 0;
    display: inline-block;
}


h3.seiten-subtitel {
    background: #c4c4c4;
    font-weight: normal;
    padding: 15px;
    display: inline-block;
    margin: 0;
    margin-top: -20px;
}