/*
 * Eigene Ã„nderungen
*/

/* - - Allgemeine Anpassungen - - */

@import url('https://fonts.googleapis.com/css?family=Maitree:200,300,400,500,600,700');

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

body {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
}

.tdd {
    background-image: url(../img/Hintergrundbild_Technikgebiete.jpg);
    background-position: top;
    background-repeat: no-repeat;
}

.btn a:link {
    color: #ee7f01;
}

.tab {
    padding: 100px;
}

.animatable {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */
.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

.animatable-2 {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */
.animated-2 {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -ms-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



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

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    60% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    60% {
        -webkit-transform: translateX(20px);
    }

    80% {
        -webkit-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    60% {
        -moz-transform: translateX(20px);
    }

    80% {
        -moz-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(20px);
    }

    80% {
        -o-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        transform: translateX(20px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        -webkit-transform: translateX(-20px);
    }

    80% {
        -webkit-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    60% {
        -moz-transform: translateX(-20px);
    }

    80% {
        -moz-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    60% {
        -o-transform: translateX(-20px);
    }

    80% {
        -o-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        transform: translateX(-20px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3);
    }

    50% {
        -moz-transform: scale(1.05);
    }

    70% {
        -moz-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3);
    }

    50% {
        -o-transform: scale(1.05);
    }

    70% {
        -o-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -o-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes moveUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes moveUp {
    0% {
        opacity: 1;
        -o-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@-o-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

.animated.animationDelay {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
}

.animated.animationDelayMed {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.animated.animationDelayLong {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
}

.animated.fadeBgColor {
    -webkit-animation-name: fadeBgColor;
    -moz-animation-name: fadeBgColor;
    -o-animation-name: fadeBgColor;
    animation-name: fadeBgColor;
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

.animated.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

.animated.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated.moveUp {
    -webkit-animation-name: moveUp;
    -moz-animation-name: moveUp;
    -o-animation-name: moveUp;
    animation-name: moveUp;
}

ul.kon {
    color: #58585a;
    padding-top: 5px;
    padding-bottom: 30px;
    padding-left: 80px;
    margin-left: 0px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

ul.kon a {
    color: #58585a;
}

.verlauf-bg {
    background: -moz-linear-gradient(top, #fff 0%, #f5f5f5 50%, #ddd 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(50%, #f5f5f5), color-stop(100%, #ddd));
    background: -webkit-linear-gradient(top, #fff 0%, #f5f5f5 50%, #ddd 100%);
    background: -o-linear-gradient(top, #fff 0%, #f5f5f5 50%, #ddd 100%);
    background: -ms-linear-gradient(top, #fff 0%, #f5f5f5 50%, #ddd 100%);
    background: linear-gradient(top, #fff 0%, #f5f5f5 50%, #ddd 100%);
}

/* header-text */
.slider-box {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.person-image {
    margin-top: -180px;
    margin-right: 0px;
    float: right;
    padding: 0px;
}

.abstand-person {
    padding-left: 30px;
    background: #00563c;
}

.person-headline {
    color: white;
    text-transform: uppercase;
    font-size: 24px;
    font-family: 'Maitree';
}

.attorney {
    font-size: 17px;
    font-weight: 300;
    color: white;
}

.nav-menu li:hover > a {
    color: #4db3d6;
    font-weight: 500;
    cursor: pointer;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.45);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px 20px;
    color: #58585a;
    transition: 0.3s;
    display: block;
    font-size: 16px;
    text-transform: none;
    float: left;
}

.nav-menu ul li:hover > a {
    color: #4db3d6;
    cursor: pointer;
}

.nav-menu ul ul {
    width: 250px;
    margin-right: -380px;
    margin-top: -6px;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 15px;
    z-index: 999;
    top: 22px;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #222;
    font-weight: 900;
}

@media (max-width: 991px) {
    #mobile-nav-toggle {
        display: inline;
    }

    #nav-menu-container {
        display: none;
    }

    #tablet-padding-top {
        padding-top: 24px;
    }

    .col-md-6-1 {
        width: 100% !important;
    }

    .col-md-6-2 {
        width: 100% !important;
    }
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(255, 255, 255, 1);
    left: -270px;
    width: 270px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #58585a;
    font-size: 14px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 8px 20px 8px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 400;
}


#mobile-nav ul li a:hover {
    color: #fff;
    cursor: pointer;
}

#mobile-nav ul li li {
    padding-left: 0px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #4db3d6;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #4db3d6;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

#first-menu-item {
    padding-top: 5px;
}

#last-menu-item {
    padding-bottom: 10px;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

img.logo-mv {
    width: 170px;
    padding-top: 15px
}

.seperator {
    border-bottom: 1px solid #f2f2f2;
    width: 100%;
    margin: 5px 0px;

}

#left-menu {
    margin-right: 19px;
}

@media (max-width: 991px) {
    #mobile-hl {
        color: #4db3d6 !important;
        font-weight: 600 !important;
    }

    img.logo-mv {
        padding-bottom: 15px;
    }
}



@media (max-width: 991px) {

    ul.kon {
        color: #58585a;
        padding-top: 5px;
        padding-bottom: 40px;
        padding-left: 30px !important;
        margin-left: 0px;
        font-size: 16px;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

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

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

    .navbar-nav > li {
        float: none;
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-collapse.collapse.in {
        /* NEW */
        display: block !important;
    }
}


.menu-hl {
    background-color: #4db3d6;
}

.menu-hl a {
    color: #fff !important;
}

@media (max-width: 991px) {
    .navbar-nav {
        float: none !important;
        margin: 0px !important;
    }
}

.dropdown-menu > li > a {
    display: block;
    padding: 10px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #58585a;
    white-space: nowrap;
}

.navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
}

.dropdown-menu {
    width: 100%;
}

@media (max-width: 991px) {

    .dlo {
        line-height: 28px;
    }

    .tab {
        padding: 60px !important;
    }


    .navbar-nav > li {
        float: none;
        padding-left: 15px !important;
        border-bottom: 1px solid #ddd;
        padding-top: 22px;
    }

    .navbar-default .navbar-nav > li > a {
        color: #0c4c87;
    }

    .navbar-nav > li > a {
        padding-top: 0px !important;
        padding-bottom: 15px;
        font-size: 14px !important;
    }

    .navbar-toggle {
        position: relative;
        float: right;
        padding: 12px 10px;
        margin-top: 19px;
        margin-right: 15px;
        margin-bottom: 8px;
        background-color: transparent;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 0px;
    }
}


ul.list-unstyled {
    list-style: none;
}

body {
    font-family: 'Monteserrat', sans-serif;
    color: #58585a;
    background-color: #fff;
}

.col-md-6-1 {
    width: 60%;
    float: left;
    position: relative;
    padding: 15px;
}

.col-md-6-2 {
    width: 50%;
    float: left;
    position: relative;
    padding: 15px;

}

ul.kontakt-liste-2 {
    padding: 0px 85px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: initial !important;
}

#mbmcookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d7d7d7;
    padding: 20px 0;
    font-size: 14px;
    z-index: 9999;
}

#mbmcookie .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

#mbmcookie a.button {
    cursor: pointer;
    background: #0c4c87;
    padding: 8px 20px;
    margin-left: 30px;
    color: #fff;
}

#mbmcookie a.button:hover {
    background-color: #aaa;
}

#mbmcookie p.cookiemessage {
    display: block;
    padding: 0;
    margin: 0;
}

#mbmcookie .container:before,
#mbmcookie .container:after {
    display: none;
}

p.text {
    font-size: 19px;
    font-weight: 300;
}

p.karriere {
    text-align: center;
    font-size: 21px;
    font-weight: 300;
    padding: 10px;
}

a:link {
    cursor: pointer;
    text-decoration: none;
	color: #58585a;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
}

a:active {
    cursor: pointer;
    text-decoration: none;
}

#myCarousel:focus {
    outline: none;
}

#office:focus {
    outline: none;
}

.expertise:focus {
    outline: none;
}

#workfield:focus {
    outline: none;
}

.team:focus {
    outline: none;
}

#career:focus {
    outline: none;
}

#contact:focus {
    outline: none;
}

.karte {
    background: url(../img/Karte_blau.jpg);
    background-size: cover;
    height: 500px;
}

/* Logo */
.logo {
    width: 280px;
}

/* Navbar */
.navbar {
    position: fixed;
    z-index: 9999;
    width: 100%;
    margin-bottom: 50px;
    border-bottom: 1px solid #f2eeee;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    top:0px;
}

.navbar-default {
    background-color: #ffffff !important;
    border-bottom: 4px solid #00563c;
}

.navbar-header {
    height: 105px;
}

.navbar-nav > li > a {
    padding-top: 80px;
    padding-bottom: 15px;
    padding-left: 30px;
    font-size: 14px !important;
}

.navbar-brand > img {
    display: block;
    margin: 8px 15px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

/* Menu */
.menu__list {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    float: right;
    margin-right: -100px;
    margin-top: 0px;
    padding-right: 0px;
}

@media (max-width: 988px) {

    .menu__list {
        position: relative;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        list-style: none;
        float: right;
        margin-top: 0px;
        padding-right: 0px;
    }

}


.menu__item a:hover, .menu__item.languages li.active a:hover, .menu__item.languages li a:hover{
    color:#ee7f01;
}

.menu__item.languages.open li.active a:hover{
    color:#58585a;
}

.menu__item.languages.open{
    max-width:146px;
}


.menu__item, .menu__item.languages.open li a {
    display: block;
}

li.menu__item {
    padding: 0px 5px;
}

.menu--sebastian a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    padding: 1em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu--sebastian a:hover,
.menu--sebastian a:focus {
    outline: none;
}

.menu--sebastian a {
    position: relative;
    display: block;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 39px;
    text-align: center;
    color: #58585a;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
}

.menu--sebastian .menu__item.current a {
    color: #ee7f01;
}

.menu--sebastian a::before,
.menu--sebastian a::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ee7f01;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

.menu--sebastian a::before {
    top: 0;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.menu--sebastian a::after {
    bottom: 0;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.menu--sebastian .menu__item.current a::before,
.menu--sebastian .menu__item.current a::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.menu--sebastian a::before,
.menu--sebastian a::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ee7f01;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-caption {
    z-index: 10;
}

.carousel .item {
    background-color: #777;
}

.carousel .carousel-inner .bg {
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel .carousel-inner .bg1 {
    background-image: url('../img/header-1.jpg');
    background-position: center top;
}

.carousel .carousel-inner .bg2 {
    background-image: url('../img/header-2.jpg');
    background-position: center center;
}

.carousel .carousel-inner .bg3 {
    background-image: url('../img/header-3.jpg');
    background-position: center center;
}

.carousel-indicators .active {
    display: none;
}

.carousel-indicators {
    display: none;
}

/* header-text */
.header {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.header-box {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    padding: 20px;
}

h1.header-text {
    color: #0c4c87;
    font-family: 'Maitree';
    font-size: 60px !important;
    text-align: center;
    text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
}

p.header-text {
    color: #0c4c87;
    font-family: 'Maitree';
    font-size: 31px !important;
    font-weight: 400;
    text-align: center;
    text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
}


/* double-line-o */
.double-line-o {
    border-top: 1px solid #0c4c88;
    border-color: #0c4c88;
    padding-bottom: 10px;
    margin: 0 auto;
    width: 50%;
}

.double-line-u {
    border-bottom: 1px solid #0c4c88;
    border-color: #0c4c88;
    padding-top: 10px;
    margin: 0 auto;
    width: 50%;
}

span.zitat {
    text-align: center;
    font-family: 'Maitree', sans-serif;
    font-size: 50px;
    font-weight: 500;
    color: #0c4c88;
}

.centered {
    text-align: center;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 100px;
}



/* double-line */
.double-line {
    border-top: 1px solid #858585;
    border-bottom: 1px solid #858585;
    padding-top: 12px;
    padding-bottom: 10px;
}

span.double-line {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-size: 30px;
    font-family: 'Maitree', sans-serif;
    color: white;
}

.styling {
    padding-top: 50px;
    padding-left: 30px;
}

/* double-line-blue */
.double-line-blue {
    border-top: 1px solid #0c4c88;
    border-bottom: 1px solid #0c4c88;
    padding-top: 12px;
    padding-bottom: 10px;
}

span.double-line-blue {
    border-top: 1px solid #00563c;
    border-bottom: 1px solid #00563c;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 500;
    font-family: 'Maitree', sans-serif;
    color: #00563c;
}


span.double-line-blue1 {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 500;
    font-family: 'Maitree', sans-serif;
    color: #00563c;
}

.ja-names {
    font-size: 35px!important;
    line-height: 59px!important;
}

.leistungen-liste ul,
li {
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.leistungen-liste li a {
    text-decoration-line: none;
}

.leistungen-liste a {
    color: white;
}

p.kontakt-styling {
    color: #58585a;
    font-family: 'Maitree', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 30px 50px 10px;
}

.kontaktbox {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
    -moz-box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
    -box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
}

.kontaktbox {
    border-collapse: separate;
}

ul.kon a {
    color: #58585a;
}


.kon ul,
li {
    color: #58585a;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0px;
    margin-left: -15px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.kontakt-liste a {
    color: #58585a;
}

.kontakt-liste-2 ul,
li {
    color: #58585a;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: -30px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.kontakt-liste-2 a {
    color: #58585a;
}

.mrg-top-leistungen {
    margin-top: -140px;
    margin-right: -10%;
}

.mrg-top-kontakt {
    margin-top: -110px;
}

/* Kanzlei */
.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

.responsive-img {
    width: 100%;
    background-image: url(../img/tabs/IPConsulting-272.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.kanzlei {
    height: 800px;
}

.kanzlei-bereich {
    height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.kanzlei-text {
    max-height: 1200px;
    padding: 70px 60px;
    background-color: rgba(243, 243, 243, 0.95);
}


/* Team */
.person-1 {
    background-color: #00563c;
    width: 45%;
}

.person-img {
    width: 400px;
    float: right;
    margin-top: -5%;
    margin-bottom: 5%;
    margin-right: -12%;
    border: 1px solid #00563c;
}

.person-img-pd {
    padding: 20px;
}

.boxmodell-border {
    width: 340px;
    height: 1px;
    border-top: 1px solid #fff;
}

.lightbox-image {
    width: 35%;
    position: fixed;
}

.lightbox-text {
    float: right;
}


.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.4);
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.state {
    position: absolute;
    top: 0;
    left: -100vw;
}

.state:checked ~ .content {
    -webkit-transform: none;
    transform: none;
}

.state:checked ~ .backdrop {
    bottom: 0;
    opacity: 1;
    z-index: 99998;
    transition: 0.5s opacity ease-in-out;
}

.lightbox {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    /* padding: 0 20px; */
}

.lightbox .content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    margin: 0px;
    padding: 20px;
    background: #fff;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    transition: 0.5s -webkit-transform ease-in-out;
    transition: 0.5s transform ease-in-out;
    transition: 0.5s transform ease-in-out, 0.5s -webkit-transform ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.lightbox .header,
.lightbox .footer {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.lightbox .header .h,
.lightbox .footer .h {
    margin: 0;
}

.lightbox .header .button:not(:first-child),
.lightbox .footer .button:not(:first-child) {
    margin-left: auto;
}

.lightbox .header {
    padding-bottom: 10px;
}

.lightbox .footer {
    padding-top: 20px;
}

.lightbox .main {
    flex-grow: 1;
    overflow: scroll;
}

.lightbox .backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: 2.9s opacity ease-in-out, bottom 0.3s 0.3s;
}


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

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

.whitespace-40 {
    padding-top: 40px;
}

.whitespace-60 {
    padding-top: 60px;
}

.whitespace-80 {
    padding-top: 80px;
}

.whitespace-100 {
    padding-top: 100px;
}

.whitespace-120 {
    padding-top: 120px;
}

.whitespace-150 {
    padding-top: 150px;
}

.dlg {
    width: 45% !important;
}

/* Breakpoint 1200 px */
@media (max-width: 1200px) {

    /* Logo */
    .logo {
        width: 230px;
        margin-bottom: 20px;
    }
    
   

    .navbar-brand > img {
        display: block;
        margin: 15px 15px;
    }


}

@media (min-width: 1000px) and (max-width: 1200px) {
 li.menu__item {
        padding: 0px 5px;
    }
    
    a {
    font-size: 12px;
    }
    
    .menu__list {
    margin-top: -9px;
}
    
    
    
}

@media (max-width: 1300px) {
    .menu__list {
        margin-right: -50px;
    }
}

@media (max-width: 1000px) {
.menu__item.languages li a {
        margin-top: 18px;
        margin-bottom: 21px;
        margin-right: 30px;
        display: block;
    
    }
    
    .menu__item.languages {
        max-width: unset;
    }
    
    .menu__item.languages li:first-child{
        order: 0;
        color: #0c4c87!important;
        font-size: 14px;
        padding-top: 27px;
        padding-left: 22px;
        margin-right: 40px;
    }

}
/* Breakpoint 1290 px */
@media (max-width: 1290px) {
    .header-box {
        width: 80%;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.5);
        border: 2px solid #fff;
        padding: 20px;
    }

    h1.header-text {
        color: #0c4c87;
        font-family: 'Maitree';
        font-size: 50px !important;
        text-align: center;
        text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
    }

    p.header-text {
        color: #0c4c87;
        font-family: 'Maitree';
        font-size: 26px !important;
        font-weight: 400;
        text-align: center;
        text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
    }

    span.zitat {
        text-align: center;
        font-family: 'Maitree', sans-serif;
        font-size: 40px;
        font-weight: 500;
        color: #0c4c88;
    }

}

/* Breakpoint 1010px */
@media (min-width: 1010px) {
    .dlw {
        display: none;
    }
}

/* Breakpoint 1010px */
@media (max-width: 1010px) {
    .dlk {
        display: none;
    }

    .bag {
        height: 450px;
    }
}

/* Breakpoint 1010px */
@media (min-width: 991px) {
    .navbar-collapse.collapse {
        display: none !important;
    }
}

/* Breakpoint 991px */
@media (max-width: 991px) {

    section#Sebastian {
        display: none;
    }

    .list-unstyled {
        margin-left: 30px !important;
    }

    .logo {
        width: 220px;
        margin-bottom: 20px;
    }

    .gg {
        margin-top: -120px !important;
    }

    .menu--sebastian a {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-header {
        float: inherit;
    }

    .navbar-brand > img {
        display: block;
        margin: 5px 15px;
    }

    .navbar-header {
        height: 80px;
    }

    .container {
        width: 100%;
    }

    .header-box {
        width: 80%;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.5);
        border: 2px solid #fff;
        padding: 20px;
    }

    h1.header-text {
        color: #0c4c87;
        font-family: 'Maitree';
        font-size: 40px !important;
        text-align: center;
        text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
    }

    p.header-text {
        color: #0c4c87;
        font-family: 'Maitree';
        font-size: 24px !important;
        font-weight: 400;
        text-align: center;
        text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
    }

    .mrg-top-leistungen {
        margin-top: -140px;
    }

    .mrg-top-kontakt {
        margin-top: 0px;
    }

    span.zitat {
        text-align: center;
        font-family: 'Maitree', sans-serif;
        font-size: 30px;
        font-weight: 500;
        color: #0c4c88;
    }

    #office {
        height: auto;
    }

    .lightbox-image {
        width: 100%;
        position: inherit;
    }

    .lightbox-text {
        float: none;
    }

    .bdr-top-1 {
        display: none;
    }

    .bdr-top-2 {
        display: none;
    }
}

.modal-dialog {
    width: 900px;
    padding-top: 200px !important;
    z-index: 9999;
}

.modal-body {
    height: 413px;
}

.modal-body {
    position: relative;
    padding: 2px 15px;
}

.modal-overflow {
    overflow: auto;
    height: 378px;
    background: #ffffff;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-header {
    min-height: 16.42857143px;
    padding: 15px;
    border-bottom: none;
}

/* Breakpoint 767px */
@media (max-width: 568px) {

    .modal-overflow {
        overflow: auto;
        height: 35% !important;
        padding-top: 0px;
        margin-top: 20px;
    }
}

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

    .carousel .carousel-inner .bg1 {
        background-image: url('https://ipconsulting.bg/wp-content/uploads/2021/01/header-4-min-1024x683-1.jpg') !important; 
        background-position: center center;
    }

    .tdd {
        background: none;
        background-position: center top;
        background-repeat: no-repeat;
    }


    .col-xs-7,
    .col-xs-5 {
        width: 100%;
    }

    .col-xs-7 {
        margin-top: -70px;
    }

    .janke {
        margin-bottom: 20px;
    }



    .bag {
        height: 750px;
    }

    .kontakt-liste ul,
    li {
        padding-left: 10px;
    }

    .lightbox .content {
        margin: 80px auto !important;
        max-height: 85vh !important;
        padding: 20px 5px !important;
    }

    .modal-dialog {
        width: 100%;
        padding-top: 80px !important;
        padding-left: 10px;
        z-index: 9999;
        padding-right: 10px;
        margin: 0;
    }

    .modal-body {
        height: 100%;
    }

    .modal-overflow {
        overflow: auto;
        height: 45% !important;
        padding-top: 0px;
        margin-top: 20px;
    }

    .modal-content {
        position: relative;
        background-color: #fff;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 1px solid #999;
        border: 1px solid rgba(0, 0, 0, .2);
        border-radius: 0px;
        outline: 0;
        -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
        box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    }

    .modal-header {
        min-height: 16.42857143px;
        padding: 15px;
        border-bottom: none;
    }

    .person-image {
        margin-top: -140px;
        margin-right: 0px;
        float: right;
        padding-right: 70px;
    }

    .person-image img {
        max-width: 225px;
    }

    .ritschel {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }


    .scholl {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }


    .janke {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }

    .birtel {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }


    .marx {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }

    .bienert {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }

    .marnett {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }

    .burda {
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
    }

    .centered {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .abstand-person {
        padding-left: 15px !important;
    }

    .menu--sebastian a {
        display: none;
    }

    .header-box {
        width: 80%;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.5);
        border: 2px solid #fff;
        padding: 20px;
    }

    h1.header-text {
        color: #0c4c87;
        font-family: 'Maitree';
        font-size: 32px !important;
        text-align: center;
        text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
    }

    p.header-text {
        color: #0c4c87;
        font-family: 'Maitree';
        font-size: 22px !important;
        font-weight: 400;
        text-align: center;
        text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.4);
    }

    .navbar-header {
        height: 64px;
    }

    .navbar-brand > img {
        display: block;
        margin: -1px 0px;
    }

    .navbar-nav > li > a {
        padding-top: 80px;
        padding-bottom: 10px;
        padding-top: 10px !important;
        font-size: 14px !important;
    }

    /* Logo */
    .logo {
        width: 180px;
    }

    .mrg-top-leistungen {
        margin-top: 15px;
    }

    .mrg-top-kontakt {
        margin-top: 0px;
    }

    span.double-line {
        font-size: 27px;
    }

    span.double-line-blue {
        font-size: 24px;
    }

    .styling {
        padding-top: 40px;
        padding-left: 15px;
    }

    .leistungen-liste {
        margin-left: -15px;
        margin-bottom: 0px
    }

    .mobile-kanzlei-image {
        height: 0px;
    }

    .kanzlei-text {
        height: auto;
        padding: 70px 30px;
        background-color: rgba(243, 243, 243, 0.95);
    }

    p.text {
        font-size: 18px;
        font-weight: 300;
    }

    .jus {
        text-align: justify;
        word-wrap: break-word;
        /* hyphens */
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .carousel .carousel-inner .bg1 {
        background-image: url('../img/header-1.jpg');
        background-position: center center;
    }

    .carousel .carousel-inner .bg2 {
        background-image: url('../img/header-2.jpg');
        background-position: center center;
    }
}


.wrap-collabsible {
    margin-bottom: 1.2rem 0;
}

input[type='checkbox'] {
    display: none;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0px;
    font-weight: normal;
    color: #ffffff;
    font-size: 16px;
}

.icon {
    font-size: 30px;
    color: #fff;
    padding: 30px 0px 10px;
    text-align: center;
}

.icon-karriere {
    font-size: 30px;
    color: #fff;
    padding: 30px 0px 10px;
    text-align: left;
}

.kompetenz {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.more {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    text-align: left;
    padding-left: 15px;
    padding-bottom: 20px;
    padding-top: 20px;
}


.wrap-collabsible .more {
    -moz-transition: all 0.5s;
    /* Firefox */
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}


.wrap-collabsible.open .more {
    padding-bottom: 0;
}

.more-karriere {
    font-family: 'maitree';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    text-align: left;
    padding-left: 45px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: -20px;
}

#career .wrap-collabsible.opened .more-karriere i{
    transform-origin: 20% 40%;
    transform: rotate(90deg);
}

.symbol {
    padding: 10px;
}

.lbl-toggle {
    display: block;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    padding: 10px;
    color: #fff;
    background: #0c4c88;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease-out;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
    -moz-box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
    -box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
}


.lbl-toggle-2:hover {
    color: #fff;
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .7s ease-in-out;
}

.toggle:checked + .lbl-toggle-2 + .collapsible-content {
    max-height: 800px;
}

.toggle:checked + .lbl-toggle-2 {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    background: #fff;
    padding: 20px;
}

/*

#expertise .flex{
    border-top: 1px solid #0c4c88;
    border-bottom: 1px solid #0c4c88;
    padding: 30px 0 50px 0;
}

#expertise  .more{
    border-radius: 0;
    border: 1px solid #0c4c88;
    background-color: transparent;
    padding: 10px 20px;
    margin-top:10px;
    letter-spacing: 1px;
}

#expertise  .more:hover{
    border: 1px solid #0c4c88;
    background-color: transparent;
    padding: 10px 20px;
    margin-top:10px;
    letter-spacing: 1px;
}


#expertise .kompetenz, #expertise .more{
    color: #0c4c88;
}

#expertise .wrap-collabsible {
    margin-bottom: 40px;
}

#expertise .wrap-collabsible img {
    width:70px;
}


#expertise .collapse-head{
    text-align:center;
}


*/

.flex {
    display: flex;
    flex-wrap: wrap;
}

.lbl-toggle-2,
#workfield .wrap-collabsible,
.expertise .wrap-collabsible {
    min-height: 325px;
    display: block;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    padding: 25px;
    color: #fff;
    background: #58585a;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease-out;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
    -moz-box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
    -box-shadow: 0px 0px 40px 0px rgba(40, 40, 40, 0.15);
}

.expertise .wrap-collabsible {
    background: #00563c;
}


.flexpart {
    width: 30%;
}


.flexpart:nth-child(3n+1),
.flexpart:nth-child(3n+2) {
    margin-right: 3.3%;
}

.expertise .wrap-collabsible img,
#workfield .wrap-collabsible img {
    width: 60px;
    -moz-transition: all 0.5s;
    /* Firefox */
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

.wrap-collabsible.open img {
    width: 60px;
}

.wrap-collabsible .icon {
    width: 100%;
    -moz-transition: all 0.5s;
    /* Firefox */
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

.wrap-collabsible.open .icon {
    width: 50px;
    padding-top: 5px;
}

.wrap-collabsible .kompetenz {
    margin-top: 0;
    padding-left: 0;
    font-family: 'Maitree', sans-serif;
    -moz-transition: all 0.5s;
    /* Firefox */
    -webkit-transition: all 0.5s;
    /* Safari */
    transition: all 0.5s;
}

.wrap-collabsible.open .kompetenz {
    margin-top: -75px;
    padding-bottom: 40px;
    padding-left: 70px;


}

.expertise .wrap-collabsible .more {
    border-bottom: 1px solid #00563c;
}

.wrap-collabsible .more {
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid #58585a;
    text-align: center;
    padding-left: 0;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.wrap-collabsible:hover .more {
    border-bottom: 1px solid #fff;
}

.wrap-collabsible .collapsible-content {
    font-size: 14px;
    line-height: 1.42857143;
    text-align: left;
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .7s ease-in-out;
}

.open .collapsible-content {
    transition-delay: 0.5s;
}

.wrap-collabsible.open .collapsible-content {
    max-height: 500px;
}


.toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 1100px;
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    background: #fff;
    padding: 20px;
}

@media (max-width: 1200px) {


    .flexpart:nth-child(3n+1),
    .flexpart:nth-child(3n+2) {
        margin-right: 0;
    }

    .flexpart:nth-child(2n),
    .flexpart:last-child .wrap-collabsible:nth-child(2n) {
        margin-left: 2.5%;
    }

    .flexpart,
    .flexpart:last-child .wrap-collabsible {
        width: 47.5%;
    }

    .flexpart:last-child {
        width: 100%;
        display: flex;
        align-items: flex-start;
    }

    .wrap-collabsible.open .kompetenz {
        padding-left: 90px;
    }

    .wrap-collabsible.open img {
        width: 60px;
    }

}

@media (max-width: 750px) {

    .flexpart:nth-child(2n),
    .flexpart:last-child .wrap-collabsible:nth-child(2n) {
        margin-left: 0;
    }

    .flexpart,
    .flexpart:last-child .wrap-collabsible {
        width: 100%;
    }

    .flexpart:last-child {
        display: block;
    }

    .wrap-collabsible.open .kompetenz {
        white-space: normal;
    }

}

/* - - Footer - - */

footer {
    padding-top: 10px;
    padding-bottom: 40px;
}

footer {
    background: url(../img/footer_587c4f24334c9deaebfdfb99ab1aef30.png);
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: auto;
}

footer h5 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Maitree';
    color: white;
}

footer li {
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
    list-style: none;
}

footer ul.quick-links li {
    padding: 3px 0;
    color: #fff !important;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

footer ul.quick-links li:hover {
    padding: 3px 0;
    margin-left: -25px;
    font-weight: 300;
}

footer ul.quick-links li a i {
    margin-right: 5px;
    color: #fff;
    font-weight: 300;
}

footer ul.quick-links li:hover a i {
    font-weight: 300;
}


.ft-ko li {
    margin-left: -60px;
    color: white !important;
}

.fhr{
    margin-left: -20px;
}

.fh5{
    margin-left: -20px;
}

.list-unstyled {
    margin-left: 30px;
}

.list-unstyled a {
    color: white;
}

#copyright {
    background: #226d56 !important;
    min-height: 80px;
}

#copyright h6 {
    margin-left: 15px;
}

.bdr-top-1 {
    margin-top: 69px;
}

.bdr-top-2 {
    margin-top: 185px;
}


.boxmodell {
    width: 300px;
    height: 403px;
    margin-left: -75px;
    margin-top: -70px;
}

.boxmodell-border {
    width: 340px;
    height: 450px;
    border: 1px solid #00563c;
    margin-left: -94px;
    margin-top: -423px;
}

.boxmodell-headline {
    margin: -320px 0px -20px 253px !important;
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
}

.boxmodell-text {
    margin: -295px 80px 40px 280px !important;
}

.boxmodell-text ul,
li {
    color: #58585a !important;
    letter-spacing: 0.5px !important;
    list-style: square;
}

.boxmodell-text li {
    margin-left: 20px;
    list-style: square;
    color: #58585a !important;
}

.boxmodell-button {
    margin: 0px 70px 31px 253px !important;
}

.boxmodell-2 {
    width: 300px;
    height: 403px;
    margin-left: 360px;
    margin-top: -70px;
}

.boxmodell-2-border {
    width: 340px;
    height: 450px;
    border: 1px solid #00563c;
    margin-left: 340px;
    margin-top: -423px;
}

.boxmodell-2-headline {
    margin: -320px 0px -20px 25px !important;
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
}

.boxmodell-2-text {
    margin: -295px 80px 40px 280px !important;
}

.boxmodell-2-text ul,
li {
    color: #58585a !important;
    letter-spacing: 0.5px !important;
    list-style: square;
}

.boxmodell-2-text li {
    margin-left: 20px;
    list-style: square;
    color: #58585a !important;
}

.ritschel {
    background: url(../img/Robert_Ritschel_2.jpg);
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.richly {
    background: url(../img/Erik_Richly_2.jpg);
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.scholl {
    background: url(../img/Achim_Scholl_2.jpg);
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.janke {
    background: url(../img/Christiane_Janke_2.jpg);
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.birtel {
    background: url(../img/Stephan_Birtel_2.jpg);
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.marx {
    background: url(../img/Carina_Marx_2.jpg);
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.bienert {
    background: url(../img/Harald_Bienert_2.jpg) !important;
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.marnett {
    background: url(../img/Markus_Marnett_2.jpg) !important;
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}

.burda {
    background: url(../img/Martin_Burda_2.jpg) !important;
    background-size: cover;
    width: 100%;
    height: 380px;
    max-height: 380px;
}


.zitat-anwalt {
    font-style: italic;
    font-size: 17px;
    font-weight: 300;
    color: #fff;

    margin: 40px 25px;
    width: 300px;
}

.zitat-anwalt-2 {
    font-style: italic;
    font-size: 17px;
    font-weight: 300;
    color: #fff;

    margin: 40px 255px;
    width: 300px;
}

.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.4);
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.state {
    position: absolute;
    top: 0;
    left: -100vw;
}

.state:checked ~ .content {
    -webkit-transform: none;
    transform: none;
}

.state:checked ~ .backdrop {
    bottom: 0;
    opacity: 1;
    z-index: 99998;
    transition: 0.5s opacity ease-in-out;
}

.lightbox {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    padding: 0 20px;
}

.lightbox .content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 99999;
    max-width: 1000px;
    max-height: 75vh;
    margin: 175px auto;
    padding: 20px;
    background: #fff;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    transition: 0.5s -webkit-transform ease-in-out;
    transition: 0.5s transform ease-in-out;
    transition: 0.5s transform ease-in-out, 0.5s -webkit-transform ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.lightbox .header,
.lightbox .footer {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.lightbox .header .h,
.lightbox .footer .h {
    margin: 0;
}

.lightbox .header .button:not(:first-child),
.lightbox .footer .button:not(:first-child) {
    margin-left: auto;
}

.lightbox .header {
    padding-bottom: 10px;
}

.lightbox .footer {
    padding-top: 20px;
}

.lightbox .main {
    flex-grow: 1;
    overflow-y: scroll;
    overflow-x: hidden;
}

.lightbox .backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: 2.9s opacity ease-in-out, bottom 0.3s 0.3s;
}

.btn {
    border-radius: 0;
    border: 1px solid #ee7f01;
    background-color: transparent;
    padding: 15px 30px;
    font-size: 16px;
    color: #ee7f01 !important;
    letter-spacing: 1px;
}

a {
    color: #ee7f01;
}

#mbmcookie p a {
    color: #00563c;
}

a:hover,
#mbmcookie p a:hover {
    color: #ee7f01;
}

.img-brd {
    margin-bottom: -60px
}

ul,
li {
    list-style: none;
}



/* popup */

.popup {
    width: 100%;
    max-height: 100%;
    display: none;
    z-index: 9999;
    position: fixed;
    top: 0;
    right: 0;
}

#popup-article:target {
    display: flex;
}

.popup:before {
    content: "";
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;

    position: fixed;
    left: 0;
    top: 50%;
    will-change: height, top;
    animation: open-animation .6s cubic-bezier(0.83, 0.04, 0, 1.16) .65s both;
}

.popup:after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #f0f0f0;

    will-change: width, opacity;
    animation: line-animation .6s cubic-bezier(0.83, 0.04, 0, 1.16) both;

    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

@keyframes line-animation {

    0% {
        width: 0;
        opacity: 1;
    }

    99% {
        width: 100%;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 0;
    }
}

@keyframes open-animation {

    0% {
        height: 0;
        top: 50%;
    }

    100% {
        height: 100vh;
        top: 0;
    }
}

.popup__block {
    height: calc(100vh - 40px);
    padding: 40px;
    box-sizing: border-box;
    position: relative;

    margin: auto;
    overflow: auto;
    animation: fade .5s ease-out 1.3s both;
}

@keyframes fade {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.popup__title {
    font-size: 2.5rem;
    margin: 0 0 1em;
}

.popup__close {
    width: 3.2rem;
    height: 3.2rem;
    text-indent: -9999px;

    position: fixed;
    top: 20px;
    right: 20px;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMnoiLz4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==);
}

.open-popup {
    color: #ee7f01;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: unset;
    padding: 15px 20px;
    border: 1px solid #ee7f01;
}
