/*
  Vendor Imports
*/
html {
    box-sizing: border-box;
}

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

/*
  Main CSS file
*/
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 115px;
}

img {
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    font-weight: 400;
}

h2 {
    font-size: 30px;
    line-height: 33px;
    text-align: center;
}

td a {
    color: #f69f2e;
}

.testimonial-slider-container {
    margin-top: 50px !important;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.container:after {
    clear: both;
    content: '';
    display: table;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

.button {
    background-color: #f69f2e;
    border-radius: 3px;
    color: white !important;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    height: 38px;
    line-height: 38px;
    display: inline-block;
}

.content-page--content h1 {
    margin-bottom: .6em;
}

.content-page--content h3 {
    margin-bottom: 1em;
    clear: both;
}

.content-page--content .button, .content-page--content .wpcf7-submit {
    padding: 0 10px !important;
}

.content-page--content ul {
    padding-left: 40px;
    padding-bottom: 30px;
}

.content-page--content ul + p {
    margin-top: -1em;
}

.content-page--content ul + hr {
    margin-top: 0 !important;
}

.content-page--content ol > li {
    margin-bottom: 0.5em;
}

.content-page--content .alignleft {
    clear: both;
}

#header {
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.3);
}

#header:after {
    clear: both;
    content: '';
    display: table;
}

.admin-bar #header {
	margin-top: var(--wp-admin--admin-bar--height);
}

.header-logo {
    float: left;
    width: 200px;
    display: block;
    margin-right: 30px;
}

.header-logo--mobile {
    display: none;
}

.header-menu {
    float: left;
    margin-top: 46px;
}

.header-menu ul {
    list-style: none;
}

.header-menu > ul > li {
    display: inline-block;
    margin-right: 16px;
    position: relative;
    padding-bottom: 20px;
}

.header-menu > ul > li:hover > .sub-menu {
    display: block !important;
}

.header-menu > ul > li:last-child {
    margin-right: 0;
}

.header-menu > ul > li a {
    color: black;
    font-size: 13px;
}

.header-menu > ul > li a:hover {
    color: #f69f2e;
    cursor: pointer;
}

.header-menu > ul > li.current-menu-item > a {
    color: #f69f2e;
    border-bottom: 1px solid #f69f2e;
    padding-bottom: 5px;
}

.header-menu .sub-menu {
    display: none !important;
    position: absolute;
    background: white;
    width: auto;
    top: 39px;
    left: -30px;
    padding: 10px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.header-menu .sub-menu li {
    display: block;
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 10px;
}

.header-menu .sub-menu li a {
    color: black;
}


.header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.header-right {
    float: right;
    margin: 0 auto;
}

.header-right--phone {
    display: inline-block;
    color: #707077;
    min-width: 129px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.header-right--phone a:hover {
    text-decoration: underline;
}

.header-right--email {
    display: inline-block;
    /*margin-left: 15px;*/
    color: #707077;
    float: right;
    min-width: 129px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.header-right--email a {
    color: #707077;
}

.header-right--email a:hover {
    text-decoration: underline;
}

.header-right--buttons {
    clear: both;
    margin-top: 0;
}

.header-right--buttons .button {
    width: 169px;
}

.header-right--buttons .button:last-child {
    margin-left: 10px;
}

.banner-slider {
    margin-bottom: 25px;
}

.banner-slider--slide {
/ / background-image: url(../img/banner.png);
    background-size: cover;
    height: 540px;
}

.banner-slider--text {
    position: absolute;
    right: -200%;
    top: 0;
    padding-top: 100px;
    color: white;
}

.banner-slider--text h1 {
    font-size: 30px;
    font-weight: 300;
    background-color: #707077;
    padding: 20px;
    position: relative;
    opacity: 0.6;
}

.banner-slider--text h1:after {
    content: '';
    display: block;
    height: 100%;
    width: 400%;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #707077;
}

.banner-slider--text h3 {
    font-size: 15px;
    font-weight: 700;
    padding: 15px 25px;
    background-color: #707077;
    margin-top: 6px;
    position: relative;
    opacity: 0.6;
}

.banner-slider--text h3:after {
    content: '';
    display: block;
    height: 100%;
    width: 400%;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #707077;
}

.banner-slider--text .button {
    margin-top: 20px;
    height: 49px;
    line-height: 49px;
    padding: 0 30px;
    margin-left: 20px;
}

.banner-slider .owl-dots {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.banner-slider .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    background-color: #e4e3e3;
    margin: 0 5px;
    border-radius: 50%;
}

.banner-slider .owl-dots .owl-dot.active {
    background-color: #e0913c;
}

.four-boxes {
    margin-top: 15px;
}

.four-boxes:after {
    clear: both;
    content: '';
    display: table;
}

.four-boxes--box {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
    text-align: center;
}

.four-boxes--box:last-child {
    margin-right: 0;
}

.four-boxes--box img {
    display: block;
}

.four-boxes--box h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 32px;
    margin-top: 10px;
}

.four-boxes--box span {
    color: #5d5d5d;
    font-weight: 600;
}

.home-cta-section {
    margin: 100px 0 0;
}

.home-cta-section:after {
    clear: both;
    content: '';
    display: table;
}

.home-cta-section .container:before {
    content: '';
    display: block;
    height: 100%;
    width: 400%;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #707077;
}

.home-cta-section img {
    width: 520px;
    float: left;
}

.home-cta-section--text {
    background-color: #707077;
    overflow: hidden;
    height: 273.55px;
    /*padding: 57px 0 0 79px;*/
    position: relative;
}

.home-cta-section--text h3 {
    font-size: 30px;
    color: white;
}

.home-cta-section--text .button {
    padding: 0 30px;
    margin-top: 10px;
    width: 300px;
}

.home-cta-section--text .button.middle {
    margin: 30px 28px 0;
}

.button-list {
    list-style: none;
}

.reason-why-section {
    background-color: #f4f4f4;
    padding-top: 60px;
}

.expansion-column-row {
    padding: 30px 0;
    clear: both;
}

.expansion-column-row:after {
    clear: both;
    content: '';
    display: table;
}

.expansion-column {
    float: left;
    display: block;
    margin-right: 5.35765%;
    width: 27.76157%;
    text-align: center;
    /*margin-bottom: 50px;*/
}

.expansion-column:last-child {
    margin-right: 0;
}

.expansion-column h3 {
    color: #353535;
    font-size: 15px;
    font-weight: 700;
    margin-top: 40px;
}

.expansion-column p {
    font-size: 16px;
    color: #595959;
}

.expansion-column--open {
    color: #eb982c;
    font-size: 16px;
    border-bottom: 1px solid #949494;
    display: block;
    padding-bottom: 15px;
    text-align: right;
    margin-top: 30px;
}

.expansion-column--open.opened img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.expansion-column--more {
    display: none;
}

.expansion-column--check {
    float: left;
}

.expansion-column--container {
    overflow: hidden;
    text-align: left;
    padding-left: 7px;
}

.expansion-column--container h3 {
    margin-top: 10px;
}

.columns-two {
    padding: 10px 0;
}

.home-clients {
    padding: 50px 0;
    text-align: center;
}

.home-clients img {
    display: inline-block;
    margin: 0 50px;
    max-width: 200px;
    max-height: 115px;
    margin: 10px;
}

.background-content {
    width: 100%;
    height: 1310px;
/ / background-image: url(../img/background-content-image.png);
    background-size: cover;
    position: relative;
}

.background-content--overlay {
    background-color: rgba(246, 159, 46, 0.7);
    color: white;
    padding: 78px 65px;
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
}

.background-content--overlay .container {
    max-width: 500px;
    margin: 0;
}

.background-content--overlay h3 {
    font-size: 30px;
}

.background-content--overlay p {
    font-size: 16px;
    line-height: 25px;
}

.background-content--overlay .button {
    display: block;
    width: 177px;
    height: 38px;
    line-height: 38px;
    margin-top: 30px;
    box-shadow: 1px 2px 26px rgba(0, 0, 0, 0.18);
}

.newsletter-bar {
    background-color: #848489;
    padding: 30px 0;
}

.newsletter-bar:after {
    clear: both;
    content: '';
    display: table;
}

.newsletter-bar--form {
    float: left;
    position: relative;
}

.newsletter-bar--form .sib_loader img {
    position: absolute;
    bottom: 6px;
    margin-left: 6px;
}

.newsletter-bar--form input[type="email"],
.newsletter-bar--form input[type="text"] {
    height: 35px;
    width: 500px;
    line-height: 35px;
    border: 0;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 300;
    border-radius: 5px;
}

.newsletter-bar--form .sib_processing input[type="email"] {
    padding-left: 45px;
}

.newsletter-bar--form input[type="email"]::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.newsletter-bar--form input[type="email"]::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.newsletter-bar--form input[type="email"]:-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.newsletter-bar--form input[type="email"]:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.newsletter-bar--form input[type="submit"] {
    position: absolute;
    right: 0;
    bottom: 0;
    border: 0;
    background-color: #f69f2e;
    background-image: url(../img/icon-plane.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
    text-indent: -9999px;
    color: white;
    height: 35px;
    width: 80px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.newsletter-bar--social {
    float: right;
}

.newsletter-bar--social a {
    display: inline-block;
    position: relative;
}

.newsletter-bar--social a img {
    width: 100%;
    height: 100%;
}

.newsletter-bar--social a.facebook {
    width: 11px;
    height: 24px;
    margin-right: 20px;
}

.newsletter-bar--social a.linkedin {
    width: 21px;
    height: 21px;
    margin: 0 20px;
}

.newsletter-bar--social a.linkedin:before, .newsletter-bar--social a.linkedin:after {
    content: '';
    display: block;
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 6px;
}

.newsletter-bar--social a.linkedin:before {
    left: -12px;
}

.newsletter-bar--social a.linkedin:after {
    right: -12px;
}

.newsletter-bar--social a.xing {
    width: 23px;
    height: 25px;
    position: relative;
    top: 7px;
}

#sib_signup_form_4 input[type="text"],
#sib_signup_form_4 input[type="email"],
#sib_signup_form_4 select {
    width: 100%;
    height: 37px;
    line-height: 35px;
    border: 1px solid #bcc6cb;
    font-size: 14px;
    background: #f7f7f7;
    border-radius: 6px;
    color: #828282;
    padding-left: 15px;
    display: block;
}

#sib_signup_form_4 input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    display: inline !important;
    margin-right: 10px !important;
}

#sib_signup_form_4 input[type="submit"]  {
    border: none !important;
}

input.sib-sms {
    padding-left: 55px !important;
}

.sib-country-flg, .sib-country-block {
    border-radius: 5px;
}

#footer {
    background-color: #f69f2e;
    color: white;
    font-size: 18px;
}

#footer > .container {
    padding: 50px 15px 140px;
}

.footer-menu {
    float: left;
}

.footer-menu ul {
    list-style: none;
}

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

.footer-menu a {
    color: white;
}

.footer-blog {
    float: left;
    margin-left: 200px;
    width: 410px;
}

.footer-blog h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-blog--post {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
}

.footer-blog--post:last-child {
    margin-right: 0;
}

.footer-blog--post .date {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-blog--post h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-blog--post p {
    font-size: 14px;
}

.footer-blog--post a {
    font-weight: 700;
    color: white;
}

.footer-address {
    float: right;
}

.footer-address a {
    color: white;
}

.footer-address a:hover {
    text-decoration: underline;
}

.footer-copyright {
    clear: both;
    padding-top: 20px;
}

.footer-copyright strong {
    display: inline-block;
    margin-right: 15px;
}

.footer-copyright a {
    color: white;
}

.cta-news-ticker {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
}

.mtphr-dnt {
    height: 40px;
    padding: 10px 0;
    border-top: 2px solid #f69f2e;
}

.mini-banner {
/ / background-image: url(../img/content-banner.png);
    background-size: cover;
    height: 263px;
}

.mini-banner--text {
    position: absolute;
    right: -200%;
    top: 0;
    padding-top: 35px;
    color: white;
}

.mini-banner--text h1 {
    font-size: 35px;
    font-weight: 300;
    background-color: #707077;
    padding: 25px;
    position: relative;
    opacity: 0.6;
}

.mini-banner--text h1:after {
    content: '';
    display: block;
    height: 100%;
    width: 400%;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #707077;
}

.mini-banner--text h3 {
    font-size: 15px;
    font-weight: 700;
    padding: 15px 25px;
    background-color: #707077;
    margin-top: 6px;
    position: relative;
    opacity: 0.6;
}

.mini-banner--text h3:after {
    content: '';
    display: block;
    height: 100%;
    width: 400%;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #707077;
}

.content-page {
    padding: 75px 0;
    position: relative;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.content-page:after {
    clear: both;
    content: '';
    display: table;
}

.content-page--subpages {
    float: left;
    width: 430px;
}

.content-page--subpages a {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    background-color: #f69f2e;
    color: white;
    padding-left: 130px;
    min-height: 44px;
    line-height: 1.2;
    width: 100%;
    font-weight: 500;
}

.content-page--subpages a.active, .content-page--subpages a:hover {
    background-color: #d48826;
    font-weight: 700;
}

.content-page--subpages_mobile {
    padding: 0 15px;
    display: none;
}

.content-page--subpages_mobile select {
    background: white;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #cdcdcd;
    font-size: 18px;
    text-align: center;
    color: #919191;
    font-weight: 400;
    margin-right: 5px;
    margin-bottom: 15px;
}

.content-page--content {
    overflow: hidden;
    padding-left: 40px;
    width: 100%;
    max-width: 890px;
    color: #595959;
    font-size: 16px;
}

.content-page--content p {
    line-height: 1.6;
}

.content-page--content p:first-child {
    margin-top: 0;
}

.content-page--content p + h2,
.content-page--content p + h3,
.content-page--content p + h4 {
    margin-top: 1.5em;
}

.content-page--content a:hover {
    text-decoration: underline;
}

.content-page--clear {
    clear: both;
    width: 100%;
    max-width: 1160px;
    margin: 30px auto 0;
    border-top: 1px solid rgba(154, 154, 154, 0.5);
    padding-top: 10px;
}

.content-page--clear h2 {
    text-align: left;
}

.content-page--clear p {
    font-size: 16px;
    line-height: 25px;
}

.content-page--clear hr {
    border-top: 1px solid rgba(154, 154, 154, 0.5);
    border-bottom: 0;
    margin: 40px 0;
}

.content-page--clear a {
    color: #f69f2e;
}

.content-page--clear a:hover {
    text-decoration: underline;
}

.content-page--clear ul {
    font-size: 16px;
    line-height: 25px;
    padding-left: 25px;
}

.infothek-sublinks a {
    display: inline-block;
    border: 1px solid #cdcdcd;
    height: 49px;
    line-height: 47px;
    padding: 0 40px;
    text-align: center;
    font-size: 18px;
    color: #919191;
    margin-bottom: 20px;
    margin-right: 15px;
}

.infothek-sublinks a.active {
    background-color: #f69f2e;
    border-color: #f69f2e;
    color: white;
}

.sticky-arrow {
    width: 85px;
    height: 85px;
    background-color: #f69f2e;
    position: fixed;
    right: 0;
    bottom: 0;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.sticky-arrow img {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.modul-tabs--buttons {
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
    padding-bottom: 15px;
}

.e-n-tabs-heading {
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
    padding-bottom: 30px;
}

.modul-tabs--buttons a {
    color: #595959;
    text-decoration: none;
}

.modul-tabs--button {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 182px;
    height: 50px;
    border: 1px solid #cdcdcd;
    line-height: 48px;
    font-size: 18px;
    text-align: center;
    color: #919191;
    font-weight: 400;
    margin-right: 5px;
    margin-bottom: 15px;
}

.modul-tabs--button:last-child {
    margin-right: 0;
}

.modul-tabs--button.active {
    background-color: #f69f2e;
    border-color: #f69f2e;
    color: white;
}

.modul-tabs--button2 {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 182px;
    height: 50px;
    border: 1px solid #cdcdcd;
    line-height: 48px;
    font-size: 18px;
    text-align: center;
    color: #919191;
    font-weight: 400;
    margin-right: 5px;
    margin-bottom: 15px;
}

.modul-tabs--button2:last-child {
    margin-right: 0;
}

.modul-tabs--button2.active {
    background-color: #f69f2e;
    border-color: #f69f2e;
    color: white;
}

.modul-tabs--content {
    padding-top: 30px;
}

.modul-tabs--content h2 {
    text-align: left;
    font-size: 30px;
    margin-bottom: 40px;
    line-height: 1;
}

.modul-tabs--content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.modul-tabs--content ul {
    margin-left: 20px;
}

.modul-tabs--content ul li {
    margin-bottom: 20px;
}

.modul-tabs--content hr {
    margin: 40px 0 !important;
    border-bottom: 0;
    border-top: 1px solid rgba(154, 154, 154, 0.5);
}

.modul-tabs--tab {
    display: none;
}

.modul-tabs--tab.active {
    display: block;
}

.tabs-form--row {
    clear: both;
    padding-bottom: 12px;
}

.tabs-form--col {
    float: left;
    width: calc(50% - 10px);
    margin-left: 20px;
    padding-bottom: 12px;
}

.tabs-form--col.first-col {
    clear: left;
    margin-left: 0;
}

.tabs-form--col_inner {
    float: left;
    width: calc(50%);
}

.tabs-form--col_inner:first-of-type {
    padding-right: 12px;
}

.tabs-form--col_inner.thirty {
    width: 30%;
}

.tabs-form--col_inner.seventy {
    width: 70%;
}

.tabs-form label {
    display: block;
    margin-bottom: 5px;
}

.tabs-form label i {
    color: #B94A48;
    font-weight: 700;
}

.tabs-form input {
    display: block;
    width: 100%;
    height: 32px;
    line-height: 30px;
    background-color: #f6f6f6;
    border: 1px solid #ccc;
    padding-left: 5px;
    border-radius: 4px;
}

.tabs-form h4 {
    clear: both;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px 0 15px;
}

.tabs-form .mini-label {
    display: block;
    font-size: 12px;
}

.tabs-form input[type="submit"] {
    background-color: #f69f2e;
    color: white;
    border: 0;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 700;
    width: 140px;
    cursor: pointer;
}

.artikel-submenu a {
    background-color: rgba(221, 221, 221, 0.2);
    border-radius: 15px;
    color: #4b4b4b;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    width: 185px;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 30px;
}

.artikel-submenu a:last-child {
    margin-right: 0;
}

.artikel-submenu a.active {
    background-color: #f69f2e;
    color: white;
}

.artikel-pagination {
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
    padding: 40px 0 10px;
    text-align: right;
}

.artikel-pagination a {
    color: #595959;
    display: inline-block;
    margin: 0 3px;
}

.artikel-content--row {
    margin: 30px 0;
}

.artikel-content--row h2 {
    color: #000000;
    text-align: left;
    line-height: 1;
    font-size: 30px;
}

.artikel-content--row p {
    color: #595959;
    font-size: 16px;
    margin-bottom: 3px;
}

.artikel-content--row a.artikel-link {
    color: #f69f2e;
    font-size: 16px;
    display: inline-block;
    margin-right: 15px;
    margin-top: 15px;
}

.artikel-content--row a.artikel-link:last-child {
    margin-right: 0;
}

.artikel-content--row a.artikel-link img {
    position: relative;
    top: 5px;
    right: -3px;
}

.artikel-content--grey {
    font-style: italic;
    font-size: 16px;
    display: block;
    color: #939393;
}

.blog-row {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
}

.blog-row img {
    height: auto;
    width: auto;
}

.blog-row h2 {
    text-align: left;
    line-height: 1;
    margin-bottom: 15px;
}

.blog-row a {
    background-color: #f69f2e;
    display: inline-block;
    color: white;
    border-radius: 3px;
    text-align: center;
    padding: 0 35px;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.accordion-row--title {
    font-size: 19px;
    border-bottom: 1px solid #f69f2e;
    padding-bottom: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.accordion-row--title:after {
    clear: both;
    content: '';
    display: table;
}

.accordion-row--title img {
    position: absolute;
    right: 0;
    top: 6px;
}

.accordion-row--content {
    display: none;
}

.accordion-row.open .accordion-row--title img {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion-row.open .accordion-row--content {
    display: block;
}

.glossary h2 {
    line-height: 60px;
}

.glossary p {
    text-align: center;
    margin: 0;
}

.glossary-links {
    padding-top: 30px;
}

.glossary-link {
    display: block;
    background-color: #f69f2e;
    color: white;
    text-align: center;
    height: 80px;
    width: 80px;
    line-height: 80px;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.glossary-link:hover {
    text-decoration: none !important;
    font-size: 30px;
}

.termine-area h2 {
    text-align: left;
}

.termine-table--header {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
    height: 54px;
}

.termine-table--header:after {
    clear: both;
    content: '';
    display: table;
}

.termine-table--col {
    width: 25%;
    float: left;
    line-height: 53px;
    height: 53px;
}

.termine-table--col:nth-of-type(4n) {
    text-align: right;
}

.termine-table--col:nth-of-type(3n) {
    text-align: center;
}

.termine-table--col a {
    color: #f69f2e;
    font-weight: 400;
}

.termine-table--row {
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
    height: 54px;
    position: relative;
    font-size: 16px;
}

.termine-table--row:after {
    clear: both;
    content: '';
    display: table;
}

.termine-table--row.striked:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-bottom: 2px dashed #c0c0c0;
    z-index: 99;
}

.kontakt-page {
    background-color: rgba(238, 238, 238, 0.5);
    padding-top: 100px;
    padding-bottom: 80px;
}

.kontakt-page h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.kontakt-page--form_left {
    float: left;
}

.kontakt-page--form_left textarea {
    border: 1px solid #bcc6cb;
    border-radius: 6px;
    color: #828282;
    background: #f7f7f7;
    width: 563px;
    height: 338px;
    display: block;
    font-size: 14px;
    padding: 17px 28px;
}

.kontakt-page--form_right {
    float: left;
    margin-left: 15px;
}

.kontakt-page--form_right input, .kontakt-page--form_right select {
    width: 350px;
    height: 37px;
    line-height: 35px;
    border: 1px solid #bcc6cb;
    font-size: 14px;
    background: #f7f7f7;
    border-radius: 6px;
    color: #828282;
    padding-left: 15px;
    display: block;
}

.kontakt-page--form_right input[type="submit"] {
    background-color: #f69f2e;
    width: 177px;
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    float: right;
    border: 0;
    line-height: 37px;
    text-transform: uppercase;
    padding: 0;
    border-radius: 3px;
}

.kontakt-page--form_row {
    margin-bottom: 20px;
}

.kontakt-page--form .form-note {
    display: block;
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    clear: both;
    padding-top: 10px;
}

.kontakt-footer.second-footer {
    margin-top: 40px;
}

.kontakt-footer:after {
    clear: both;
    content: '';
    display: table;
}

.kontakt-footer-left {
    float: left;
    width: 50%;
    height: 216px;
}

.kontakt-footer-left--image {
    width: 60%;
    float: left;
    background-image: url(../img/kontakt-image.png);
    position: relative;
    height: 100%;
}

.kontakt-footer-left-seminar--image {
    width: 60%;
    float: left;
    background-image: url(../img/seminarraum.jpg);
    position: relative;
    height: 100%;
}

.kontakt-footer-left--text {
    position: absolute;
    right: 36px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.kontakt-footer-left--text h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.kontakt-footer-left--address {
    background-color: #f69f2e;
    width: 40%;
    float: left;
    height: 100%;
    color: white;
    padding: 40px 30px;
}
.kontakt-footer-left--address a{
    color: white;
}
.kontakt-footer-left--address a:hover {
    text-decoration: underline;
}
.kontakt-footer-left--address strong {
    display: block;
}

.kontakt-footer-left--address address {
    font-style: normal;
    display: block;
    margin: 15px 0;
}

.kontakt-footer-left--address span {
    display: block;
}

.kontakt-footer-right {
    float: left;
    width: 50%;
    height: 216px;
}

#kontakt-map {
    width: 100%;
    height: 100%;
}

.menu-toggle {
    background: none;
    border: 0;
    float: right;
    display: none;
    outline: 0;
}

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

.forms-content {
    width: 350px;
    height: 37px;
    line-height: 35px;
    border: 1px solid #bcc6cb;
    font-size: 14px;
    background: #f7f7f7;
    border-radius: 6px;
    color: #828282;
    padding-left: 15px;
    display: block;
}

.form-half {
    float: left;
    width: 50%;
    margin-bottom: 50px;
}

.form-half:nth-of-type(even) {
    padding-right: 20px;
    clear: left;
}

.form-half:nth-of-type(odd) {
    padding-left: 20px;
}

.form-half_title {
    color: #595959;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 20px;
}

.radio-group {
    display: block;
}

.radio-row {
    display: block;
    margin-bottom: 35px;
}

.radio-row:after {
    clear: both;
    content: '';
    display: table;
}

.radio-row input {
    float: left;
    margin-bottom: 15px;
    margin-top: 6px;
    display: block !important;
    width: 20px !important;
    height: 20px !important;
}

.radio-row label {
    font-size: 16px;
    font-weight: 300;
    margin-left: 10px;
    position: relative;
    padding-left: 25px;
    width: calc(100% - 40px);
    display: block;
    height: 45px;
    float: right;
}

.radio-row label strong {
    font-weight: 700;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.radio-row label span {
    display: block;
    text-align: left;
    position: absolute;
    top: 0;
    left: 32px;
}

.persons-form p, .persons-form br {
    display: none;
    visibility: hidden;
}

.persons-form .form-bottom-text p {
    display: block;
    visibility: visible;
}

.wysija-checkbox {
    width: 20px !important;
    height: 20px !important;
    display: inline !important;
    margin-right: 10px !important;
}

@media (max-width: 1335px) {
    .content-page--subpages {
        width: 280px;
    }

    .content-page--subpages a {
        padding-left: 40px;
    }
}

@media (max-width: 1610px) {

    .kontakt-footer-left--address {
        padding: 20px 15px;
    }
}

@media (max-width: 1299px) {
    .home-cta-section--text {
        padding: 25px 0 0 50px;
    }
}

@media (max-width: 1250px) {
    .mini-banner--text,
    .banner-slider--text {
        right: 0 !important;
    }
}

@media (max-width: 1200px) {
    .header-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 108px;
        background: white;
        margin: 0;
        padding: 15px 15px 0;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header-menu ul li {
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .header-menu ul li:last-child {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .header-menu > ul > li:hover > .sub-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-top: 40px;
		background: none !important;
		padding: 0 6px !important;
    }

    .header-right {
        margin-right: 20px;
    }
}

@media (max-width: 1199px) {
    .background-content--overlay {
        width: 70%;
    }

    .content-page {
        padding: 40px 0;
    }

    .content-page--content {
        float: none;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 30px;
        max-width: 100%;
    }

    .content-page--subpages {
        display: none !important;
        float: none;
        position: static !important;
        padding-left: 15px;
    }

    .content-page--subpages_mobile {
        display: block;
        padding-top: 10%;
    }
}

@media (max-width: 1170px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 1135px) {
    .footer-blog {
        margin-left: 50px;
    }
}

@media (max-width: 1095px) {
    .home-cta-section--text {
        padding-left: 30px;
    }

    .home-cta-section--text-wrapper {
        left: 45px;
    }
}

@media (max-width: 1035px) {
    .home-cta-section--text .button.middle {
        margin-left: 0;
    }

    .home-cta-section--text .button.first {
        margin-right: 28px;
    }

    .home-cta-section--text .button.last {
        margin-top: 20px;
    }
}

@media (max-width: 1030px) {
    .kontakt-footer-left,
    .kontakt-footer-right {
        float: none;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .banner-slider--slide {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .banner-slider--text {
        padding-top: 40px;
    }

    .banner-slider--slide {
        height: 190px;
    }

    .banner-slider--text h1 {
        font-size: 24px;
    }

    .banner-slider--text h3 {
        font-size: 14px;
    }

    .four-boxes--box {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .four-boxes--box:nth-of-type(2n) {
        margin-right: 0
    }

    .four-boxes--box img {
        margin: 0 auto;
    }

    .home-cta-section--text {
        padding: 25px 50px;
        height: auto !important;
    }

    .home-cta-section--text-wrapper {
        position: static !important;
        -webkit-transform: translateY(0) !important;
        -moz-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        -o-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }

    .expansion-column {
        margin-right: 0;
        float: none;
        width: 100%;
        margin: 0 auto 25px;
    }

    .footer-address {
        float: none;
        clear: both;
    }

    .kontakt-footer-left,
    .kontakt-footer-right {
        float: none;
        width: 100%;
    }

    .form-half {
        float: none;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-bottom-text {
        padding: 0 20px;
    }
}

@media (max-width: 880px) {
    .background-content--overlay {
        width: 100%;
    }
}

@media (max-width: 767px) {
    body > main > main{
        margin: 40px auto;
    }
    .tabs-form--col {
        width: 100%;
        float: none;
        margin-left: 0;
    }

    .kontakt-page--form_left,
    .kontakt-page--form_right {
        float: none;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .banner-slider--text h1 {
        font-size: 17px;
    }

    .banner-slider--text {
        padding-top: 80px;
    }

	.header-menu .sub-menu {
		width: 100%;
		padding-bottom: 0;
		box-shadow: none;
	}

	.header-menu .sub-menu li:last-child {
        border-bottom: 0;
        margin-bottom: 0;
		margin-top: 0 !important;
    }

    body {
        padding-top: 115px;
    }

    body.admin-bar {
        padding-top: calc(var(--wp-admin--admin-bar--height) + 115px);
    }

    .admin-bar #header {
        position: absolute;
    }

    #header {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .header-logo {
        display: none;
    }

    .header-logo--mobile {
        display: block;
        width: 140px;
        margin-top: 0;
    }

    .header-right {
        width: 100%;
        flex-direction: row;
        justify-content: center;
       padding-top: 10px;
    }
    .header-right--buttons {
        margin-top: 45px;
    }

    .header-right--buttons .button {
        display: block;
        margin: 0 !important;
    }

    .header-right--buttons .button:first-child {
        margin-bottom: 10px !important;
    }

    .menu-toggle {
        margin-top: 7px;
    }

    .header-menu {
        top: 69px;
    }

    .header-right--email,
    .header-right--phone {
        display: flex;
    }
    body #header .container{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
        justify-content: space-between;

    }

}

@media (max-width: 700px) {


    .newsletter-bar--social {
        clear: left;
        float: none;
        padding-top: 10px;
    }
}

@media (max-width: 660px) {
    .footer-blog {
        margin-left: 0;
        float: none;
        clear: both;
        padding: 30px 0;
    }

    .footer-blog:after {
        clear: both;
        display: table;
        content: '';
    }

    .content-page--subpages_mobile {
        padding-top: 15%;
    }
}

@media (min-width: 661px) and (max-width: 885px) {
    .content-page--subpages_mobile {
        padding-top: 13%;
    }
}

@media (max-width: 600px) {
    .four-boxes--box {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .home-cta-section--text {
        text-align: center;
        padding: 25px 15px;
    }

    .home-cta-section--text .button {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .background-content--overlay {
        padding: 30px 20px;
    }

    .kontakt-footer-left--image,
    .kontakt-footer-left--address,
    .kontakt-footer-left-seminar--image,
    #banner-slider-footer {
        float: none;
        width: 100%;
        height: 216px;
    }

    .kontakt-footer-left--address {
        height: auto;
    }

    .kontakt-footer-left,
    .kontakt-footer-right {
        height: auto;
    }

    #kontakt-map,
    #kontakt-map-2 {
        height: 216px !important;
    }

    .kontakt-footer-left--image {
        height: auto;
        display: block;
    }

    .kontakt-footer-left--image img {
        display: block;
    }

    .kontakt-footer-left--text {
        display: none;
    }
}

@media (max-width: 550px) {
    #cookie_action_close_header {
        display: block;
        margin: 0 auto;
        width: 100px;
        margin-top: 20px;
    }

    .newsletter-bar--form input[type="email"] {
        width: 400px;
    }

    .tabs-form--col_inner {
        float: none;
        width: 100% !important;
        padding-right: 0 !important;
    }

    .radio-row label {
        height: 67px;
    }

}

@media (max-width: 505px) {
    .header-right {
        display: flex;
    }
}

@media (max-width: 500px) {
    .background-content--overlay p {
        font-size: 14px;
    }

    .content-page--subpages_mobile {
        padding-top: 17%;
    }
}

@media (max-width: 440px) {
    .background-content {
        height: 1600px;
    }

    .newsletter-bar--form input[type="email"] {
        width: 300px;
        font-size: 11px;
    }

    .footer-blog {
        width: 100%;
    }

    .footer-blog--post {
        float: none;
        margin-right: 0;
        width: 100%;
    }

    .content-page--subpages_mobile {
        padding-top: 23%;
    }
}

@media (max-width: 375px) {
    .background-content {
        height: 1650px;
    }

    .radio-row label {
        height: 85px;
    }
}

@media (max-width: 350px) {

    .content-page--content h1 {
        font-size: 1.5em
    }

    .content-page--content h3 {
        font-size: 1.2em
    }


    .background-content {
        height: 1750px;
    }

    .mini-banner--text h1 {
        font-size: 20px !important;
    }

    .mini-banner--text h3 {
        font-size: 12px;
    }

    .banner-slider--text h1 {
        font-size: 21px;
    }

    .banner-slider--text {
        padding-top: 140px;
    }

    .banner-slider--text .button {
        display: none;
    }

}


.button-space {
    margin-top: 20px;
}

.wpcf7-textarea {
    height: 120px !important;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.testimonial-slider-container {
    text-align: center;
}

.testimonial-slider {
    width: 100%;
    position: relative;
    padding: 0 70px;
}

.testimonial-slider p {
    font-size: 16px;
    margin: 0 auto 15px;
    width: 100%;
    /*max-width: 500px;*/
}

.testimonial-slider .name {
    display: block;
}

.testimonial-slider .label {
    display: block;
    font-weight: 700;
}

.testimonial-slider .owl-prev,
.testimonial-slider .owl-next {
    position: absolute;
    top: 50%;
    width: 32px;
    height: 32px;
}

.testimonial-slider .owl-prev img,
.testimonial-slider .owl-next img {
    display: block;
}

.testimonial-slider .owl-next {
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.testimonial-slider .owl-prev {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.testimonial-slider .owl-prev.disabled,
.testimonial-slider .owl-next.disabled {
    opacity: 0.3;
}

.all-ref-link {
    color: #eb982c;
    font-size: 16px;
    display: inline-block;
    margin-top: 30px;
}

/* new by fabian@code-consulting.de */
.cta-first img,
.cta-first iframe {
    height: 100%;
    width: 100%;
}

.cta-second {
    font-size: 20px !important;
    color: white;
    padding: 20px;
    justify-content: flex-end;
}

.cta-second .button {
    width: 310px;
}

.cta-second li {
    list-style: none;
}

.cta-second .button {
    margin-top: 10px;
    padding: 0px 25px;
}

.cta-third {
    font-size: 18px;
    color: white;
    padding: 20px;
}

.cta-third p {
    margin: 0px !important;
}

.cta-third strong {
    color: white;
    font-size: 20px !important;
}

.cta-third a {
    color: white;
    text-decoration: none;
}

.cta-third a:hover {
    color: #eb982c;
}

.cta-third li {
    list-style: none;
    margin-top: 9px;
}

.cta-row {
    min-height: 250px;
    background-color: #848489;
}

.cta-second, .cta-third {
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 40px;
}

.cta-third {
    justify-content: center;
}

.cta-first {
    display: flex;
    align-items: center;
}

@media (max-width: 1199px) {
    .cta-first {
        order: -1;
    }
}

@media (max-width: 767px) {
    .cta-first iframe {
        min-height: 400px;
        width: 100%;
    }

    .cta-second {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cta-first iframe {
        min-height: 300px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cta-first iframe {
        min-height: 300px;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}

.newsletter-container {
    display: inline;
}

.newsletter-container h3 {
    color: #fff;
    display: inline;
    font-weight: bold;

}

.newsletter-header {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.bigge-header-font {
    font-size: 20px !important;
}

.show-mobile {
    display: none !important;
}

.button-hidden {
    display: none !important;
}

.cookie-link {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;

}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-wrapper {
    width: 100%;
    max-width: 560px;
    left: 0;
    right: 0;
    margin: auto;
}

.zertifikat-logo {
    width: 100%;
    max-width: 800px;
    height: auto;
}

@media (max-width: 1304px) {
    .background-content {
        height: 1510px;
    }
}

@media (max-width: 560px) {
    .background-content {
        height: 1650px;
    }

    .show-mobile {
        display: block !important;
    }

    h2 {
        line-height: 30px;
        margin-top: 20px;
    }

    .banner-slider {
        margin-bottom: 150px;
    }

    .home-cta-section {
        margin: 50px 0 0;
    }

    .newsletter-bar--form input[type="text"], form.newsletter_submit, .newsletter-bar--form {
        width: 100% !important;
    }
}

@media (max-width: 1200px) {
    .mini-banner .container {
        position: absolute;
        top: 100%;
    }

    .mini-banner--text:not(#override) {
        padding-top: 0;
    }

    .mini-banner {
        margin-bottom: 160px;
    }

    .mini-banner:not(#Override) {
        height: auto;
        position: relative;
    }

    .mini-banner:before {
        content: " ";
        padding-top: 45%;
        width: 100%;
        display: block;
    }
}

.mini-banner {
    height: 600px;
}

.blog .mini-banner {
    background-position: 100% 56%;
}

.page-id-370 .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-id-370 .row {
    border-bottom: 1px solid black;
    padding: 40px 0 20px;
}

.page-id-370 h2 + .row {
    border-top: 1px solid black;
}

@media (min-width: 576px) {
    .page-id-370 .col-12 {
        display: block;
    }
}

.page-id-680 .mini-banner {
    background-position: 60% !important;
}

.page-id-99 .mini-banner,
.single-faq .mini-banner,
.page-id-102 .mini-banner,
.parent-pageid-102 .mini-banner,
.single-glossar .mini-banner,
.page-id-217 .mini-banner,
.page-id-370 .mini-banner {
    background-position: 0;
}

.page-id-434 .mini-banner {
    background-position: 100% 20%;
}

.page-id-99 .mini-banner,
.single-faq .mini-banner {
    background-position: 0px 63%;
}

.header-standort a:not(.button) {
    color: #707077;
}

.header-standort .button {
    display: block;
    margin-top: 5px;
    padding: 0px 10px;
    text-transform: initial;
    height: 32px;
    line-height: 32px;
}

@media (max-width: 767px) {
    .header-standort .button {
        height: 24px;
        line-height: 24px;
    }
}

.header-standort .button:first-child {
    margin-top: 0;
}

.header-standort-text-row {
    height: 32px;
    margin-bottom: 5px;
}

@media (min-width: 1201px) {
    .mini-banner {
        min-height: 500px;
        height: 60vh;
    }
}

/* ******************************************************************************* */
/*  Hide Anna Lena Hauber by WWS */
/* ******************************************************************************* */

body #menu-main-1 > li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.page-item-66.current_page_item.current-menu-ancestor.current-menu-parent.current_page_parent.current_page_ancestor.menu-item-has-children.menu-item-74 > ul > li.hide_menu_item.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-10743 {
    display: none !important;
}


/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
  }

  .close-btn {
    position: absolute;
    top: 125px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }

  .post-type-archive-nlp-wiki h2 {
	text-align: left;
}

.locationContact.onPicture p img {
    flex-basis: 0;
}


.single-nlp-wiki .content-page--content .button:last-of-type {
    display: none;
}

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

.single-nlp-wiki .content-page--content ol > li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}


/*Margin for CF7 forms - DONT DELETE*/
.wpcf7-form-control-wrap {
 margin-bottom: 20px;
 display: block;
}

.sub--nav .display-back li {
	 display: block;
}
.sub--nav ul.display-back > .current-menu-item.current_page_item > a{
	 display: flex;
}

/*
@media (min-width:767px){

	/* Menu Item
	#menu-main > .menu-item:nth-child(2){
		display:none;
	}

	/* Menu Item
	#menu-main > .menu-item:nth-child(3){
		display:none;
	}

}
*/

@media (max-width: 520px) {
  #videoReferenzen > div > div {
    padding-top: 57.125% !important;
  }
}

#footer {
font-size: 16px;
}



/* 4 Boxen Startseite */
/* Four boxes  box */
.four-boxes--box{
	box-shadow:0px 0px 10px 0px #e0e0e0;
	border-radius:3px;
	min-height:320px;
	background-color:#ffffff;
}

/* Image */
.container .four-boxes .four-boxes--box a img{
	width:100% !important;
}

/* Span Tag */
.four-boxes a span{
	padding-left:5px!important;
	padding-right:5px!important;
}




/* Liste in Video section */
/* List Item */
#rightdiv ul li{
	border-bottom-style:solid;
	margin-bottom:20px;
	margin-top:20px;
}

/* List Item */
main main .home-cta-section .cta-row .cta-third #rightdiv ul li{
	border-bottom-width:1px !important;
}




/* The reson why Section */
/* Expansion column */
.reason-why-section .expansion-column{
	box-shadow:0px 0px 10px 0px #e0e0e0;
	border-radius:3px;
	padding:10px;
	background-color:#ffffff;
}

/* Expansion column  open */
.reason-why-section .expansion-column .expansion-column--open{
	border-bottom-style:none;
	padding-bottom:5px;
}

div.expansion-column img {
	width:100px;
	height:100px;
}

a.expansion-column--open img {
	width:10px;
	height:6px;
}





/* Erwarten Sie bitte viel von uns */
/* Expansion column */
main .container .expansion-column-row .expansion-column-row .expansion-column{
	box-shadow:0px 0px 10px 0px #e0e0e0;
	border-radius:3px;
	padding:20px;
	background-color:#ffffff;
}

/* Expansion column  open */
.expansion-column-row .expansion-column-row .expansion-column .expansion-column--container .expansion-column--open{
	border-bottom-style:none;
	padding-bottom:0px;
}




/* Expansion column  check */
main main .expansion-column--check{
	width:36px;
	height:31px;
}


.sticky-arrow {
width: 40px;
height: 40px;
}








.content-page--subpages {
width: 20%;
}
.content-page--subpages a {
padding-left: 20px;
}

/* Rightdiv */
#rightdiv{
	padding-right:20px;
}

/* Link */
#rightdiv ul a{
	font-size:15px;

}


body.post-template-default.single.single-post main main .mini-banner{
	background-position:100% 56%;

}





















/* 660px and smaller screen sizes */
@media (max-width:660px){

	/* Leftdiv */
	#leftdiv{
		height:auto !important;
	}

	/* Rightdiv */
	#rightdiv{
		padding:20px;
	}

	/* Division */
	.testimonial-slider .active div{
		width:100%;
	}

	/* Expansion column row */
	.reason-why-section .expansion-column-row:nth-child(2){
		padding-bottom:0px;
	}

	/* Heading */
	main .newsletter-bar h3{
		text-align:center;
	}

	/* Newsletter bar  social */
	main main .newsletter-bar--social{
		text-align:center;
	}

	/* Expansion column row */
	main main .expansion-column-row:nth-child(1){
		padding-bottom:0px;
	}

	/* Background content */
	main main .background-content{
		height:1227px;

	}
}




















/* Home Spacings */
/* Expansion column row */
.reason-why-section .expansion-column-row{
	padding-top:0px;
}

/* Heading */
.reason-why-section h2{
	margin-bottom:30px;
}

/* Newsletter bar */
main main .newsletter-bar:nth-child(9){
	margin-bottom:30px;
}

/* Expansion column row */
main main .container .expansion-column-row .expansion-column-row{
	padding-top:0px;
}

	/* Home cta section */
	main main .home-cta-section{
		margin-top:40px;
	}


/* Background content */
	main main .background-content{
		height:990px;
	}



body.home div.brlbs-cmpnt-container {
	max-width: 560px;
	width: 100%
}

.page-id-217 .persons-form p, .page-id-217 .persons-form br {
    display: block;
    visibility: visible;
}

body.home .col-12.col-md-12.col-lg-12.col-xl-5.cta-first {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width:660px){
	/* Background content */
	main main .background-content{
		height:1102px;

	}

}

@media (max-width:767px){

.elementor-posts--thumbnail-left .elementor-post, .elementor-posts--thumbnail-right .elementor-post {
    flex-direction: column !important;
}

	.nlp-wiki .elementor-post__title {
    margin-top: 20px !important;
}
}

#menu-main > .menu-item > a{
	font-size:15.5px;
}


/* 992px and larger screen sizes */
@media (min-width:992px){

	/* Heading */
	.page-id-11 .reason-why-section h2{
		margin-right:57px;
	}

	/* Heading */
	.page-id-11 main main .container h2{
		margin-right:60px;

	}

}






/* Heading */
.page-id-370 .content-page h2{
	margin-bottom:15px !important;

}

	/* Content page */
	.page-id-370 main main .content-page{
		padding-bottom:20px;
	}


	/* Content page */
	.page-id-370 main main .content-page{
		padding-top:20px;
	}

/* 5 Boxen Startseite Test */

@media only screen and (min-width: 1025px){
	main main .five-boxes--box{
		min-height:305px;
	}
.five-boxes--box{
	width:18%;
}
main main .container .four-boxes .five-boxes--box a img {
	 object-fit: cover;
/* 	object-position: center center; */
/* 	object-position: right 75%; */width:100% !important;	height:190px;
	}
.five-boxes{
	margin-left:-90px;
	margin-right:-90px;
}
}
@media (min-width: 768px) and (max-width: 1024px){
	.five-boxes{
	margin-left:0px;
	margin-right:0px;
}
main main .container .four-boxes .five-boxes--box a img {
	 object-fit: unset;
	 height:315px;
	}
}
div .five-boxes--box h3{
	padding: 0 10px;
	line-height: 26px;
}
.five-boxes a span{
	padding-left:8px!important;
	padding-right:8px!important;
}
/* 10th Image in slider HP */
#no-bg{
	width: 136px!important;
}
/* workshop tile image */
div.four-boxes--box:last-child img{
	height:216px;
	object-fit:cover;
}


@media (min-width:1200px){
	.container{
		 max-width: 1300px !important;
	/*	 max-width: 1185px; */
	}
}
/* hide trainers from submenu */
#menu-item-396 > a, #menu-item-422 > a, #menu-item-10341 > a, #menu-item-4552 > a, #menu-item-4468 > a, #menu-item-421 > a, #menu-item-6541 > a,#menu-item-10742 > a, #menu-item-10743 > a, #menu-main-1 > li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.page-item-66.current_page_item.current-menu-ancestor.current-menu-parent.current_page_parent.current_page_ancestor.menu-item-has-children.menu-item-74 > ul > li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-10341 > a{
	display:none;
}

/* Mimik Image cropped */
@media (min-width: 1201px){

.page-id-9551 .mini-banner, .page-id-10465 div.mini-banner, .page-id-10467 div.mini-banner, .page-id-10589 div.mini-banner {    min-height: 600px;
    height: auto;
    background-position: center center;
	background-size: cover;
}
	.page-id-10465 div.mini-banner, .page-id-10467 div.mini-banner{
		height: 60vh;
		background-position: 10% 12%;
	}
	.page-id-10589 div.mini-banner{
		background-size: auto;
		background-color:#e1e1e1;
		background-repeat: no-repeat;
	}

}
@media (max-width: 1200px){
	.header-menu .sub-menu{
		position: relative!important;
		top:2px;
		left:0px;
	}
/* 	über sub menu  */
.header-menu ul li #menu-item-396, .header-menu ul li #menu-item-422, .header-menu ul li #menu-item-10341, .header-menu ul li #menu-item-4552, .header-menu ul li #menu-item-4468, .header-menu ul li #menu-item-421, .header-menu ul li #menu-item-6541{
		border-bottom:none;
		padding-bottom: 0;
	}
}

/* Absolventen: Alle Videos mit Logo links */
#videoReferenzen{
	display: none;
}

@media (min-width: 1024px){
div.row-standort-testimonial{
	display: flex;
}
body > main > main > div:nth-child(1) > div:nth-child(10) > div.row-standort-testimonial > *{
	max-width:44%;
}
/*ADD by Santiago*/
body > main > main > div:nth-child(1) > div:nth-child(10) > div.row-standort-testimonial > div:nth-child(2) > div > div.owl-stage-outer > div > div.owl-item.active > div > div > img, body > main > main > div:nth-child(1) > div:nth-child(10) > div.row-standort-testimonial > div:nth-child(1) > div > div.owl-stage-outer > div > div.owl-item.active > div > div > img{
	object-fit: cover;
	height: 420px;
}
}
/* Ausburg slider */
body.page-id-3254 > main > main > div:nth-child(1) > div:nth-child(10) > div.row-standort-testimonial > div:nth-child(2){
	display: none;
}

/* Logo header */
@media (min-width: 1201px){
	.page-id-11441 div.mini-banner,
	.page-id-11437 div.mini-banner,.page-id-10410 div.mini-banner{
    height: auto;
    background-position: center center;
	  background-size: cover;

}
}

@media screen and (min-width:1201px) and (max-width:1400px)
{
	.page-id-11441 div.mini-banner,
	.page-id-11437 div.mini-banner,.page-id-10410 div.mini-banner {
	min-height: 350px; /*santy*/
}
	}

@media (max-width: 1200px){
	.mini-banner{
		margin: 0 auto !important;
	}

	.ti-widget.ti-goog .ti-widget-container, .ti-widget.ti-goog {
display: none !important;

}

}

/*By Santy for the menu new items - also main.css line 180*/
.mobmen{
	display: none !important;
}

#header > div > nav{
	margin-top: 30px !important;
}


#header > div{
	padding-right: 0 !important;
}

#menu-main-1 > li.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-ancestor.current-menu-parent.current_page_parent.current_page_ancestor.menu-item-has-children.menu-item-11632 > ul > li.button-space.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.page-item-460.current_page_item.menu-item-545 {
	margin-top: 0 !important;
}
#menu-main-1 > li:nth-child(1) > ul:nth-child(2) > li:nth-child(4){
	margin-top: 0 !important;
}

#menu-main-1 > li.menu-item.menu-item-type-custom.menu-item-object-custom.current-menu-item.menu-item-has-children.menu-item-10321 > a{
	display: none;
}

.header-menu>ul>li {
    margin-right: 13px;
}

body .header-right {
    margin: 5px auto;
}


/* ******************************************************************************* */
/*  slider munchen  */
/* ******************************************************************************* */
body > main > main > div:nth-child(1) > div:nth-child(10) > div.row-standort-testimonial > div:nth-child(1){
	display: none;
}

.wpcf7-form-control-wrap {
	margin-bottom: 0;
}

.wpcf7-form-control-wrap:first-of-type {
	margin-bottom: 30px;
}

.wpcf7 input[type="checkbox"] {
	height: 1.5em !important;
	line-height: unset !important;
}


a.elementor-post__read-more {
    background-color: #f69f2e;
    display: inline-block;
    color: white;
    border-radius: 3px;
    text-align: center;
    padding: 0 35px;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.orange {
	color: #F69F2E;
	font-weight: 600
}

.elementor-page .mini-banner:not(.kott-2026) {
    height: 24vw;
    min-height: 300px;
}

.header-logo img {
	height: 100%
}


.row-standort-testimonial .owl-item {
    max-height: 442px;
}

.row-standort-testimonial {
    margin-bottom: 50px;
}


.ausbildung-container {
    display: flex;
    gap: 90px;
}

.ausbildung-rundgangvideo {
    display: flex;
    align-items: center;
}

.ti-widget.ti-goog .ti-widget-container {
    text-align: right !important;
    margin-top: 20px !important;
    margin-left: 25px !important;
}

@media (max-width: 767px) {
  #hero-cta-muenchen {
    margin-top: 80px;
  }

  .ausbildung-container {
    flex-direction: column !important;
  }

  .ausbildung-rundgangvideo {
    display: block !important;
    width: 100% !important;
    margin-top: 20px;
  }

  .ausbildung-rundgangvideo iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    display: block;
  }
}