html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*font-size: 62.5%;*/
}

@font-face {
    font-family: "Graphik-Light";
    src: url("../fonts/Graphik-Light-Web.woff") format("woff"),
         url("../fonts/Graphik-Light-Web.woff2") format("woff2");
}

@font-face {
    font-family: "Graphik-Regular";
    src: url("../fonts/Graphik-Regular-Web.woff") format("woff"),
         url("../fonts/Graphik-Regular-Web.woff2") format("woff2");
}

@font-face {
    font-family: "Graphik-Medium";
    src: url("../fonts/Graphik-Medium-Web.woff") format("woff"),
         url("../fonts/Graphik-Medium-Web.woff2") format("woff2");
}

@font-face {
    font-family: "Graphik-Semibold";
    src: url("../fonts/Graphik-Semibold-Web.woff") format("woff"),
         url("../fonts/Graphik-Semibold-Web.woff2") format("woff2");
}

:root {
    --clr-white: #ffffff;
    --clr-black: #313131;
    /*--pbc-clr-grey: #F1F2F0;*/
    --pbc-clr-grey: #F3F3F3;
    --pbc-blue: #02192A;
    --pbc-red-error:#fb4c4c;
    --pbc-grey-blue: #8b97a0;
    --pbc-grey: #707070;
    --pbc-grey-border: #DFDFE0;
    --pbc-grey-light: #B9B9B9;
    --pbc-clr-green: #72E8BA;
    --pbc-clr-seashell-peach: #FFF2EA;
    --pbc-clr-red: #EF261B;
    --pbc-mint-green: #a5cfd1;
    --pbc-sky-blue: #ECFEFF;
    --pbc-sky-blue-light:#F0FBFC;
    --co-clr-grey: rgba(130, 125, 115, .1);
    --co-clr-red: #EF0000;
    --co-clr-red-fr: #D12918;
    --co-clr-blue-fr: #37464F;
    --co-clr-blue-light-fr: #F3F3F3;
    --co-clr-grey-fr: #D2D5D8;
    --co-clr-black: #2D2D2D;
    --co-clr-braun-yellow: #bf8442;
    --col-clr-dark-green: #1e4d4b;
    --col-clr-cornflowerblue: #3e88c2;
    --co-clr-bg-bdazzled-blue: rgba(40, 95, 140, 0.1);
    --co-clr-txt-bdazzled-blue:rgb(40,95,140);
    --pbc-font-regular: Graphik-Regular;
    --pbc-font-light: Graphik-Light;
    --pbc-font-medium: Graphik-Medium;
    --pbc-font-semibold: Graphik-Semibold;
}

.arrow {
    position: relative;
    left: 10%;
    width: 14px;
    height: 14px;
    border: 1px solid #02192a;
    transform: rotate(45deg);
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--pbc-font-regular), Sans-Serif;
    box-sizing: border-box;
    font-weight: normal;
}



body {
    font-family: var(--pbc-font-regular), Sans-Serif;
    color: var(--pbc-blue);
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
}

a {
    font-family: var(--pbc-font-medium);
    color: var(--pbc-blue);
}

.landscape {
    display: none;
}

.wrapper {
    margin: unset;
    max-width: 100%;
}


.brand {
    width: 160px;
}

h1,
h2,
h3,
h4,
h5{
    font-family: var(--pbc-font-medium)!important;
}

.text-underline {
    text-decoration: underline;
    margin-bottom: 0.7rem;
}

.ff-medium {
    font-family: var(--pbc-font-medium);
}

.lang-link {
    font-family: var(--pbc-font-regular);
    font-size: 1.7rem;
}

.lang-link:hover,
.lang-link:focus
{
    text-decoration: underline;
}

.lang-link:focus {
    text-decoration: underline;
}

.lang-active {
    font-family: var(--pbc-font-medium);
    text-decoration: underline;
}

.banner {
    margin: 3rem 0;
    padding: 1.7rem 2.1rem;
    border-radius: 45px;
}

.banner-clr-red {
    background-color: var(--clr-white);
    color: var(--co-clr-red);
}


.banner-clr-green {
    background-color: var(--pbc-clr-green);
    color: var(--pbc-blue);
}

.z-index-4 {
    z-index: 4!important;
}

.cookie-notice{
    position: fixed;
    max-width: 355px;
    bottom: 50px;
    /*background: var(--pbc-sky-blue);*/
    left: -450px;
    border: 1px solid;
    border-radius: 10px;
    padding: 20px 30px;
    z-index: 500;
    transition: left 500ms ease-in-out;
}
.cookie-notice.open {
    left: 10px;
}

.cookie-notice.close{
    transition: all ease-out .5s;
    left: -450px;
}


.cookie-notice button {
    float: right;
    cursor: pointer;
}

.cookie-notice h4 {
    font-size: 24px;
    margin: 0.7rem 0;
}

.cookie-notice p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1px;
    margin-bottom: 0.7rem;
}
.btn {
    background-color: var(--pbc-blue);
    border: none;
    border-radius: 50px;
    color: var(--pbc-sky-blue);
    padding: 0.4rem 1.7rem .5rem 1.7rem;

}

.btn-sm-green {
    background-color: var(--pbc-clr-green)!important;
    color: var(--pbc-blue) !important;
}

.btn-sm-dark {
    background-color: var(--pbc-blue);
    color: var(--pbc-sky-blue);
}

.btn-sm-red {
    background-color: var(--co-clr-red)!important;
    color: var(--pbc-clr-seashell-peach) !important;
}

.btn-sm-red-fr {
    background-color: var(--co-clr-red-fr)!important;
    color: var(--pbc-clr-seashell-peach) !important;
}

.btn-sm-white {
    background-color: var(--clr-white)!important;
    color: var(--co-clr-black) !important;
}


.btn-sm-cream {
    background-color: var(--pbc-clr-seashell-peach);
    color: var(--pbc-blue);
}

.btn-sm-skyblue {
    background-color: var(--pbc-sky-blue)!important;
    color: var(--pbc-blue)!important;
}

.bg-sm-dark {
    background-color: var(--pbc-blue);
}

.bg-sm-skyblue {
    background-color: var(--pbc-sky-blue);
}

.bg-sm-green {
    background-color: var(--pbc-clr-green);
}

.bg-sm-cream {
    background-color: var(--pbc-clr-seashell-peach);
}
.bg-sm-red {
    background-color: var(--co-clr-red);
}

.bg-sm-red-fr {
    background-color: var(--co-clr-red-fr);
}

.bg-sm-transparent {
    background-color: transparent;
}

.bg-sm-grey {
    background-color: var(--pbc-clr-grey);
}

.bg-sm-white{
    background-color: var(--clr-white);
}

.bg-sm-black{
    background-color: var(--clr-white);
}

.bg-sm-bdazzled-blue{
    background-color: var(--co-clr-bg-bdazzled-blue);
}

.bg-sm-frankfurt-blue{
    background-color: var(--co-clr-blue-fr);
}


.text-sm-bdazzled-blue, .title-sm-bdazzled-blue {
    color: var(--co-clr-txt-bdazzled-blue)!important;
}


.text-sm-dark, .title-sm-dark {
    color: var(--pbc-blue)!important;
}
.text-sm-frankfurt-blue, .title-sm-frankfurt-blue {
    color: var(--co-clr-blue-fr)!important;
}

.text-sm-skyblue, .title-sm-skyblue {
    color: var(--pbc-sky-blue)!important;
}

.text-sm-cream  , .title-sm-cream{
    color: var(--pbc-clr-seashell-peach)!important;
}

.text-sm-green , .title-sm-green {
    color: var(--pbc-clr-green)!important;
}

.text-sm-red , .title-sm-red {
    color: var(--co-clr-red)!important;
}

.text-sm-white , .title-sm-white {
    color: var(--clr-white)!important;
}

.text-sm-grey , .title-sm-grey {
    color: var(--pbc-clr-grey)!important;
}

.text-sm-black, .title-sm-black {
    color: var(--co-clr-black)!important;
}

.text-white svg path{
    fill: var(--pbc-sky-blue)!important;
}

.btn-dropdown {
    /* mobil -weltkugel position */
    /*padding: 2rem 0 0 0;*/
    /*font-size: 2rem;*/
    padding: 1.2rem 0.654rem 0.2rem;
    font-size: 2rem;
    background-color: transparent;
}

.send-mail {
    background: var(--pbc-sky-blue);
    bottom: 50px;
    border: 1px solid var(--pbc-blue);
    border-radius: 10px;
    min-height: 160px;
    left: 50px;
    opacity: .8;
    position: fixed;
    padding: 20px 30px;
    right: 50px;
    z-index: 1000;
}

/* This will render the 'X' */
.send-mail:after{
    display: inline-block;
    content: "\00d7";
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
}

.send-mail-close {
    display: none;
}

.send-mail h4 {
    font-size: 32px;
    margin: 0.7rem 0;
}

.send-mail p {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -1px;
    margin-bottom: 0.7rem;
}


@media only screen and (min-width: 768px){


    .cookie-notice.open {
        left: 50px;
    }
    .bg-md-skyblue {
        background-color: var(--pbc-sky-blue);
    }

    .bg-md-dark {
        background-color: var(--pbc-blue);
    }

    .bg-md-green {
        background-color: var(--pbc-clr-green);
    }

    .bg-md-cream {
        background-color: var(--pbc-clr-seashell-peach);
    }

    .bg-md-red {
        background-color: var(--co-clr-red);
    }

    .bg-md-red-fr {
        background-color: var(--co-clr-red-fr);
    }

    .bg-md-white{
        background-color: var(--clr-white);
    }

    .bg-md-grey{
        background-color: var(--co-clr-grey);
    }

    .bg-md-black {
        background-color: var(--co-clr-black);
    }

    .bg-md-transparent {
        background-color: transparent;
    }

    .bg-md-bdazzled-blue {
        background-color: var(--co-clr-bg-bdazzled-blue);
    }
    .bg-md-frankfurt-blue{
        background-color: var(--co-clr-blue-fr);
    }

    .btn-md-dark {
        background-color: var(--pbc-blue)!important;
        color: var(--pbc-sky-blue) !important;
    }

    .btn-md-skyblue {
        background-color: var(--pbc-sky-blue)!important;
        color: var(--pbc-blue)!important;
    }
    .btn-md-green {
        background-color: var(--pbc-clr-green)!important;
        color: var(--pbc-blue) !important;
    }

    .btn-md-red {
        background-color: var(--co-clr-red)!important;
        color: var(--pbc-clr-seashell-peach) !important;
    }

    .btn-md-red-fr {
        background-color: var(--co-clr-red-fr)!important;
        color: var(--pbc-clr-seashell-peach) !important;
    }

    .btn-md-cream {
        background-color: var(--pbc-clr-seashell-peach)!important;
        color: var(--pbc-blue)!important;
    }

    .btn-md-white {
        background-color: var(--clr-white)!important;
        color: var(--co-clr-black)!important;
    }

    .text-md-dark, .title-md-dark {
        color: var(--pbc-blue)!important;
    }

    .text-md-frankfurt-blue, .title-md-frankfurt-blue {
        color: var(--co-clr-blue-fr)!important;
    }

    .text-md-skyblue, .title-md-skyblue {
        color: var(--pbc-sky-blue)!important;
    }

    .text-md-cream, .title-md-cream {
        color: var(--pbc-clr-seashell-peach)!important;
    }

    .text-md-green, .title-md-green {
        color: var(--pbc-clr-green)!important;
    }

    .text-md-white, .title-md-white {
        color: var(--clr-white)!important;
    }

    .text-md-grey, .title-md-grey {
        color: var(--pbc-clr-grey)!important;
    }

    .text-md-black, title-md-black {
        color: var(--co-clr-black);
    }

    .text-md-bdazzled-blue, .title-md-bdazzled-blue {
        color: var(--co-clr-txt-bdazzled-blue)!important;
    }

    .brand {
        width: 113px;
    }


}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (device-width: 568px) and (orientation: landscape){
    .landscape {


    }
    .wrapper {
        margin: 0 auto;
        max-width: 430px;
    }
}

.d-sm-block {
    display: block;
}

.pt-0 {
    padding-top: 0!important;
}

.pt-22 {
    padding-top: 22px!important;
}

.open {
    display: block;
}

.close {
    display: none;
}

.text-medium {
    font-family: var(--pbc-font-medium);
}

.text-normal {
    font-family: var(--pbc-font-regular);
}

.text-light {
    font-family: var(--pbc-font-light);
}

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

/* Medium devices (tablets, 768px and up) ¥
@media only screen and (max-width: 1024px) {
    #information,
    #involvement,
    #contact,
    .accordion,
    #faq,
    #out-team {
        max-width: 73.375rem;
    }
 }

*/
/************************* LANGUAGE NAV *************************/


#weltkugel {
    width: 30px;
    height: 30px;
    fill: var(--pbc-sky-blue);
}

#weltkugel.globe-sm-skyblue {
    fill: var(--pbc-sky-blue);
}

#weltkugel.globe-sm-white {
    fill: var(--clr-white);
}

#weltkugel.globe-sm-dark {
    fill: var(--pbc-blue);
}

#weltkugel.globe-sm-cream {
    fill: var(--pbc-clr-seashell-peach);
}

.logo-sm {
    color: var(--pbc-sky-blue);
}

.nav-logo-lang {
    display: flex;
}

.main-lang-nav {
    display: none;
}

.main-lang-nav-sm li {
    font-size: 1.1rem;
    line-height: unset;
    margin-left: .5rem;
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    #weltkugel {
        fill: var(--pbc-blue);
        width: 20px;
        height: 20px;
    }

    #weltkugel.globe-md-skyblue {
        fill: var(--pbc-sky-blue);
    }

    #weltkugel.globe-md-white {
        fill: var(--clr-white);
    }

    #weltkugel.globe-md-dark {
        fill: var(--pbc-blue);
    }

    #weltkugel.globe-md-cream {
        fill: var(--pbc-clr-seashell-peach);
}

    .main-lang-nav-sm {
       display: none;
    }

    .main-lang-nav {
        display: flex;
    }

    .logo-sm {
        color: unset;
    }
}


/************************* NAVIGATION *************************/

.brand-sm {
    margin: 18px 31px 40px 31px;
}
.co-sm-brand {
    width: 249px;
    height: 39px;
}

.logo-sm-standard {
    margin-top: 12px;
}

.logo-sm {
    padding-top: 0.5rem;
}

.co-brand-text {

}

.co-brand-text-sm-transparent {
    fill: transparent;
}

.co-brand-text-sm-cream {
    fill: var(--pbc-clr-seashell-peach);
}

.co-brand-text-sm-white {
    fill: var(--clr-white);
}

.co-brand-txt-sm-dark-green {
    fill: var(--col-clr-dark-green)!important;
}

.co-brand-logo-clr-sm-braun-yellow {
    fill: var(--co-clr-braun-yellow)!important;
}

.co-brand-logo-clr-sm-cornflowerblue {
    fill: var(--col-clr-cornflowerblue)!important;
}

#mbn_m_big.clr-sm-cream,
#mbn_m_small.clr-sm-cream{
    fill: var(--pbc-clr-seashell-peach);
}

#mbn_m_big.clr-sm-red-fr,
#mbn_m_small.clr-sm-red-fr{
    fill: var(--co-clr-red-fr)!important;
}

#mbn_m_big.clr-sm-white-fr,
#mbn_m_small.clr-sm-white-fr{
    fill: var(--clr-white)!important;
}


#home-sm-logo  #mbn_m_small,
#home-sm-logo  #mbn_m_big {
    fill: var(--pbc-clr-green);
}

.brand-sm path {
    fill: var(--pbc-sky-blue);
}

.pbc-logo-black path,
.pbc-logo-black rect,
.pbc-logo-black polygon {
    fill: var(--co-clr-black);
}

.brand-sm-co-red path,
.brand-sm-co-red polygon,
.brand-sm-co-red rect {
    fill: var(--co-clr-red);
}


.clr-brand-sm-dark {
    fill: var(--pbc-blue)!important;
}

nav .navbar svg .circle-bg-skyblue {
    fill: var(--pbc-sky-blue);
}

nav .navbar svg .circle-bg-dark {
    fill: var(--pbc-blue);
}

nav .navbar svg .circle-bg-green {
    fill: var(--pbc-clr-green);
}

nav .navbar svg .circle-bg-white {
    fill: var(--clr-white);
}

nav .navbar svg .arrow-right-skyblue {
    fill: var(--pbc-sky-blue);
}


nav .navbar svg .arrow-right-green {
    fill: var(--pbc-clr-green);
}

nav .navbar svg .arrow-right-red {
    fill: var(--co-clr-red);
}


nav .navbar svg .arrow-right-white {
    fill: var(--clr-white);
}

nav .navbar svg .arrow-right-dark {
    fill: var(--pbc-blue);
}

.nav-wrapper {
    position: absolute;
    right: 0;
}
nav {
    height: 100%;
    transition: all 0.6s;
}

.nav-bg-dark {
    background-color: var(--pbc-blue);
}

.nav-bg-white {
    background-color: var(--pbc-sky-blue);
}

.nav-bg-red {
    background-color: var(--co-clr-red);
}

.nav-bg-green {
    background-color: var(--pbc-clr-green);
}

.nav-bg-cream {
    background-color: var(--pbc-clr-seashell-peach);
}

nav .navbar{
    align-items: center;
    height: 100vh;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
}

nav ul {
    padding: 0px 31px;
}

nav ul li {
    /*font-size: 2.6rem;*/
    font-size: 3.4rem;
    list-style: none;
    letter-spacing: -1px;
    padding-bottom: 1rem;

}

nav ul li a {
    font-family: var(--pbc-font-medium);
    text-decoration: none;
}

input#hamburg {
    display: none;
}

label.hamburg {
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid var(--pbc-grey-border);
    box-sizing: border-box;
    display: block;
    height: 44px;
    margin: 1.938rem 22px 0 auto;
    position: fixed;
    width: 44px;
    z-index: 1000;
    right: 0;
}

.line {
    position: absolute;
    left: 10px;
    height: 2px;
    width: 22px;
    background: var(--pbc-blue);
    border-radius: 1px;
    display: block;
    transition: 0.5s;
    transform-origin: center;
}

.line:nth-child(1) {
    top:16px
}

.line:nth-child(2) {
    opacity: 0;
}

.line:nth-child(3) {
    bottom: 16px;
}

#hamburg:checked + .hamburg + nav .navbar {
    max-height: 100%;
}

#hamburg:checked nav {
    height: 100vh;
}

#hamburg:checked + .hamburg .line:nth-child(1) {
    transform: translateY(4px) rotate(-45deg);
}

#hamburg:checked + .hamburg .line:nth-child(3) {
    transform: translateY(-4px) rotate(45deg);
}


.wrapper {
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .co-brand-text-md-transparent {
        fill: transparent;
    }

    .co-brand-text-md-cream {
        fill: var(--pbc-clr-seashell-peach);
    }

    .co-brand-text-md-white {
        fill: var(--clr-white);
    }

    .co-brand-md-fr-blue {
        fill: var(--co-clr-blue-fr);
    }

    .co-brand-txt-md-dark-green {
        fill: var(--col-clr-dark-green)!important;
    }
    .co-brand-logo-clr-md {
        fill: var(--co-clr-braun-yellow)!important;
    }

    .co-brand-logo-clr-md-cornflowerblue {
       fill: var(--col-clr-cornflowerblue)!important;
    }

    #mbn_m_big.clr-md-red-fr,
    #mbn_m_small.clr-md-red-fr{
        fill: var(--co-clr-red-fr)!important;
    }

    .clr-brand-skyblue {
        fill: var(--pbc-sky-blue)!important;
    }

    .clr-brand-dark {
        fill: var(--pbc-blue)!important;
    }

    .clr-brand-white {
        fill: var(--clr-white) !important;
    }

    .clr-brand-green {
        fill: var(--pbc-clr-green)!important;
    }

    .clr-brand-cream {
        fill: var(--pbc-clr-seashell-peach)!important;
    }

    .clr-brand-black {
        fill: var(--co-clr-black) !important;

    }

    .nav-top .clr-brand {
        fill: var(--pbc-blue)!important;
    }

    .nav-top .clr-globe-dark,
    .nav-top .text-md-dark{
        fill: var(--pbc-blue)!important;
    }

    .nav-top .clr-globe-black,
    .nav-top .text-md-black{
        fill: var(--co-clr-black)!important;
    }
    .co-brand-w-size {
        width: 59px;
    }
    .logo-md-standard {
        margin-top: 0;
    }

    .brand-md {
        margin: 0;
    }

    .logo-md {
        padding-top: 1.9rem;
    }

    .btn-dropdown {
        /* mobil -weltkugel position */
        /*padding: 2rem 0 0 0;*/
        font-size: 1.7rem;
        padding: unset;
        padding-top: 0.5rem;
    }

    #mbn_m_big.clr-md-green,
    #mbn_m_small.clr-md-green{
        fill: var(--pbc-clr-green);
    }

    .nav-top {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background: #ffffff;
        z-index: 444;
        height: 80px;
        box-shadow: -2px -3px 8px var(--pbc-blue);
    }

    .nav-top ul li a {
        color: var(--pbc-blue)!important;
    }

    .nav-top ul li a.text-md-black {
        color: var(--co-clr-black)!important;
    }

    .nav-top .co-brand-text,
    .logo-on .co-brand-text{
        fill: var(--co-clr-black)!important;
    }

    .nav-top .co-brand-text-red,
    .logo-on .co-brand-text-red{
        fill: var(--co-clr-red) !important;
    }

    /*.brand-sm path {*/
    /*    fill: var(--pbc-blue);*/
    /*}*/

    nav ul li a {
        font-family: var(--pbc-font-regular);
    }

    .d-sm-block {
        display: inline;
    }

    .hamburg {
        visibility: hidden;
    }

    .nav-wrapper {
        display: none;
    }
    .wrapper {

    }
    nav {
        display: block;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: unset;
    }

    nav .nav-logo {
        padding-right: 2rem;
    }

    nav ul li {
        font-size: 1.7rem;
        padding-right: 1.3rem;
        padding-bottom: 0;
    }

    nav ul li svg {
        display: none;
    }

    nav ul li a{
        color: var(--pbc-blue);
        font-family: var(--pbc-font-medium);
    }

    nav .nav-logo {
    }

    nav .navbar {
        bottom: 0;
        display: flex;
        justify-content: center;
        left: 0;
        margin: 0 auto;
        padding: 0 0.313rem;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 999;
        background-color: unset;
        overflow: unset;
    }
}
@media only screen and (min-width: 870px) {
    nav ul li {
        font-size: 2rem;
        padding-right: 2rem;
        padding-bottom: 0;
    }
}


/* Medium devices (tablets, 1025px and up) */
@media only screen and (min-width: 1025px) {
    .logo-sm:has(.co-brand) nav .navbar {
        align-items: flex-start;
    }

    .co-brand {
        width: 290px;
        height: 44px;
    }

    nav .navbar {
        justify-content: center;
        /*width: 62.688rem;*/
        max-width: 1280px;
        padding-left: 3rem;
        padding-right: 3rem;
    }


     nav ul li {
        padding-right: 3rem;
    }


    nav .nav-logo {
        /*margin-right: -23px;*/
        padding-right: 3rem;
    }

}



/*------------- dropdown ---------------*/

.dropdown {
    position: relative;
    display: inline-block;
    padding: 0px 31px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    padding: unset;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999;
    text-align: center;
}

.dropdown-menu li {
    padding: 8px 8px;
    line-height: unset;
    font-size: 1.6rem;
}

.dropdown-menu li:hover,
.dropdown-menu li:focus
{
    display: block;
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus .dropdown-menu
{
    display: block;
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .dropdown {
        position: relative;
        display: inline-block;
        padding: unset;
    }
}


/************************* ACCORDION *************************/
.accordion svg circle {
    fill: var(--pbc-blue);
}

.accordion svg path {
    fill: var(--pbc-sky-blue-light);
}

.accordion-item {
    position: relative;
    border: none;
    border-bottom: 1px solid var(--pbc-grey-blue);
}

h2.accordion-header {
    font-weight: normal;
    font-family: var(--pbc-font-medium);
    font-size: 1.75rem;
    /*color: var(--pbc-grey-blue);*/
    line-height: 1.2;
    margin: 1.5rem 0 1.5rem 0;
    max-width: calc(100% - 24px);
    padding: 0 8%;
    cursor: pointer;
}

.accordion-item.active {
    border-bottom: 1px solid var(--pbc-grey-blue);
}

.accordion .svg-icon {
    position: absolute;
    top: 0px;
    right: 32px;
    cursor: pointer;
}

.accordion .accordion-item .svg-icon::after {
    position: relative;
    top: 19px;
    left: -26px;
    color: #fff;
    font-size: 3rem;
}

.accordion .accordion-item.active .svg-icon::after {
    top: -18px;
    left: -3px;
    color: #fff;
    font-size: 3rem;
}

.btn-toggle-acc:after {
    content: '\002B';
    color: var(--pbc-grey-blue);
    font-size: 2.2rem;
}

.btn-toggle-acc.open:after {
    content: '\2212';
    color: var(--pbc-blue);
}

.clr-btn-red.btn-toggle-acc:after {
    color: var(--co-clr-red);
}

.clr-btn-black.btn-toggle-acc.open:after {
    color: var(--co-clr-black);
}

.accordion svg {
    width: 20px;
    height: 20px;
}

.accordion-body {
    width: 100%;
    font-size: 1.6rem;
    /*line-height: 1.2rem;*/
    /*letter-spacing: 0;*/
    display: none;

}
.accordion-body.active {
    margin: 20px 0 21px 0;
    display: block;
    padding: 0 8%;
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {
    .accordion-body.active,
    h2.accordion-header {
        padding-left: 3rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .accordion-body {
        width: 67%;
    }

    .accordion-body.active {
        padding: 0 2rem;
    }


    .accordion {
        max-width: 80.375rem;
        padding: 0 3rem;
    }

    h2.accordion-header {
        /*color: var(--pbc-grey-blue);*/
        font-family: var(--pbc-font-light) !important;
        font-size: 2.2rem;
        /*line-height: 44px!*38px*!;*/
        margin: 2.375rem 0 1rem 0;
        padding: unset;
        max-width: 80%;
    }

    .accordion svg {
        width: 20px;
        height: 20px;
    }

    .accordion .svg-icon {
        right: 35px;
    }

    .accordion .accordion-item .svg-icon::after {
        position: relative;
        top: 8px;
        left: -35px;
        color: #fff;
        font-size: 3rem;
    }

    .accordion .accordion-item.active .svg-icon::after {
        top: -26px;
        left: -12px;
        color: #fff;
        font-size: 3rem;
    }

    .accordion-body {
        width: 81%;
        font-family: var(--pbc-font-light);
        font-size: 1.8rem;
        /*line-height: 28px;*/
        letter-spacing: 0;
        display: none;
    }

    .accordion .accordion-body p {
        font-family: var(--pbc-font-light);
    }

    .accordion-body.active {
        margin: 38px 0 36px 0;
        display: block;
        padding: unset;
    }

    .btn-toggle-acc:after {
        font-size: 2.5rem;
    }
}

/* Medium devices (px and up) */
@media only screen and (min-width: 1280px) {
    .accordion {
        max-width: 80.375rem;
        padding: 0;
    }
}

.accordion-header.active {
    font-family: var(--pbc-font-medium)!important;
}


/************************* TEXT *************************/

.text-sm-heading {
    font-size: 2.4rem;
    letter-spacing: 0;
}

.text-sm-info {
    font-size: 1.6rem;
    /*font-family: var(--pbc-font-light);*/
    /*line-height: 1.3rem;*/
    letter-spacing: 0;

}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .row {
        display: flex;
        flex-wrap: wrap;
    }


}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1025px) {
    .text-md-heading {
        font-size: 5.3rem;
        line-height: 1.3;
        letter-spacing: 0;
    }

    .text-md-info {
        font-size: 2.4rem;
        /*line-height: 2.375rem;
        letter-spacing: 0;*/
        font-family: var(--pbc-font-light);
    }
}


/************************* HERO *************************/

#hero{
    min-height: 21.688rem;
    padding-top: 1.938rem;
}

#hero .nav-sm-logo {
    margin-bottom: 1.938rem;
    margin-top: .9rem;
}

#hero .home-heading {
    font-size: 2.135rem;
    /*line-height: 2.25rem;*/
    letter-spacing: -1px;
}

#hero .home-cooperation {
    margin-bottom: 3.125rem;
    font-size: 0.625rem;
    /*line-height: 1.125rem;*/
    letter-spacing: -0.019rem;
}

#hero .home-btn,
#involvement .home-btn {
    align-items: center;
    display: flex;
    font-size: 1.4rem;
    /*line-height: 1.313rem;*/
    border-radius: 50px;
    border: none;
    padding: 7px 15px 8px;
}

#hero .home-btn svg,
#involvement .home-btn svg
{
    width: 14px;
    height: 14px;
    padding-left: 5px;
}

.svg-sm-bdazzled {
    fill: var(--co-clr-txt-bdazzled-blue);
}

#svg-btn-arrow .svg-sm-dark {
    fill: var(--pbc-blue);
}

#svg-btn-arrow .svg-sm-skyblue {
    fill: var(--pbc-sky-blue);
}

#svg-btn-arrow .svg-sm-white {
    fill: var(--clr-white);
}

#svg-btn-arrow .svg-sm-black {
    fill: var(--co-clr-black);
}

#svg-btn-arrow .svg-sm-red {
    fill: var(--co-clr-red);
}


#svg-btn-arrow .svg-sm-green {
    fill: var(--pbc-clr-green);
}

#svg-btn-arrow .svg-sm-cream {
    fill: var(--pbc-clr-seashell-peach);
}

#svg-btn-arrow .svg-sm-black {
    fill: var(--co-clr-black);
}

#hero .btn-text,
.btn-text{
    margin-bottom: 1px;
}

#hero .img-sm-cover {
    margin-top: 2.188rem;
    height: 30rem;
    width: 100%;

}
#hero .nav-sm-logo img {
    width: 7rem;
}

#hero img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

#hero .row {
    margin: 0 8%;
}



.home-img-heading {
    position: relative;
    z-index: 1;
}
#hero .hero-arrow {
    display: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    #hero .row {
        margin: unset;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .svg-md-bdazzled {
        fill: var(--co-clr-txt-bdazzled-blue);
    }


    #svg-btn-arrow .svg-md-dark {
        fill: var(--pbc-blue);
    }

    #svg-btn-arrow .svg-md-skyblue {
        fill: var(--pbc-sky-blue);
    }

    #svg-btn-arrow .svg-md-white {
        fill: var(--clr-white);
    }

    #svg-btn-arrow .svg-md-black {
        fill: var(--co-clr-black);
    }

    #svg-btn-arrow .svg-md-red {
        fill: var(--co-clr-red);
    }


    #svg-btn-arrow .svg-md-green {
        fill: var(--pbc-clr-green);
    }

    #svg-btn-arrow .svg-md-cream {
        fill: var(--pbc-clr-seashell-peach);
    }

    #svg-btn-arrow .svg-md-black {
        fill: var(--co-clr-black);
    }

    #hero {
        min-height: 50rem;
    }


    #hero svg.hero-arrow-circle {
        bottom: 50px;
        height: 50px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        width: 50px;
    }

    #hero svg.hero-arrow-circle circle {
        fill: var(--pbc-blue);
    }

    #hero svg.hero-arrow-circle path {
        fill: var(--pbc-sky-blue-light);
    }

    #hero svg.hero-arrow g {
        transform: translate(35px, 15px) rotate(90deg);
        height: 60px;
        width: 60px;
    }

    #hero .hero-arrow {
        position: absolute;
        left: 50%;
        width: 75px;
        height: 75px;
        transform: translateX(-50%);
    }

    #hero .nav-sm-logo {
        display: none;
    }

    #hero .img-sm-cover {
        display: none;
    }

    .img-bg {
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    #hero .home-btn,
    #involvement .home-btn {
        font-size: 2rem;
        font-family: var(--pbc-font-light);
        /*line-height: 2.438rem;*/
        letter-spacing: -0.045rem;
        padding: 1.3rem 3.125rem 1.4rem 3.125rem;
        position: relative;
        transition: all ease-in-out 0.5s;
        left: 50%;
        transform: translateX(-50%);
    }
    #hero .home-btn .btn-text,
    #involvement .home-btn .btn-text{
        transition: all ease-in-out 0.3s;
        position: relative;
        left: 0;
        font-family: var(--pbc-font-regular);
    }

    #hero .home-btn svg,
    #involvement .home-btn svg
    {
        width: 20px;
        height: 20px;
        opacity: 0;
        transition: ease-out 0.3s;
        position: absolute;
        padding: 2px 0 0 0;
        right: 15px;
    }

    #hero .home-btn:hover .btn-text,
    #hero .home-btn:focus .btn-text,
    #involvement .home-btn:focus .btn-text,
    #involvement .home-btn:hover .btn-text
    {
        left: -11px;
    }

    #hero .home-btn:hover svg,
    #hero .home-btn:focus svg,
    #involvement .home-btn:hover svg,
    #involvement .home-btn:focus svg
    {
        opacity: 1;
        right: 15px;

    }

    #hero .home-heading {
        color: var(--pbc-blue);
        font-size: 4.813rem;
        /*line-height: 5.5rem;*/
        padding: 1.038rem 0;
        text-align: center;
    }

    #hero .home-cooperation {
        font-size: 1.25rem;
        /*line-height: 2.438rem;*/
        letter-spacing: 0.038rem;
        padding: 0 0 0.813rem 0;
    }

    .hero {
        position: relative;
        height: 100vh;
    }

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1025px) {

}



/************************* INFORMATION *************************/
#information {
    padding-top: calc(30rem + 5.313rem);
    margin: 0 auto 4rem;
    /*max-width: 80.375rem;*/
}
#info-accordion {
    margin-top: 0;
}

.col-heading {
    min-width: 12.875rem;
    margin:0 0 2rem 8%;
}

.display-1 {
    font-size: 2.6rem!important;
    letter-spacing: 0!important;
    line-height: 1.1!important;
}

.display-2 {
    letter-spacing: 0;
    /*line-height: 1.2rem;*/
    font-size: 0.875rem;
}
#information .col-info {
    line-height: 1.5;
    margin-bottom: 7rem;
}

.col-info {
    min-width: 16.813rem;
    margin: 0 57px 4.74rem 8%;
    /*font-family: var(--pbc-font-light)!important;*/

}

#information .row {
    /*flex-direction: column;*/
}


/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {
    .col-heading {
        margin-left: 3rem;
    }



    .col-info {
        margin-left:  3rem;
        /*font-family: var(--pbc-font-light)!important;*/

    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and  (min-width: 768px) {

    .col-info {
        padding: 0 3rem;
        margin: unset;
    }

    .col-heading {
        margin: unset;
        padding-left: 3rem;
    }

    #information {
        /*width: 70%;*/
    }


    #info-accordion {
        margin-top: 180px;
        padding-bottom: 200px;
    }

    .row .accordion-lr {
        min-width: 100%;
        margin-top: 91px;
    }

    .row .accordion-md {
        width: 826px;
    }

    .row:has(div.accordion-md)  {
        justify-content: center!important;
    }

    .display-1 {
        font-size: 4.375rem!important;
        line-height: 1.1!important;
    }

    .display-2 {
        font-size: 1.5rem;
        /*line-height: 38px;*/
    }

}

/* X-Large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1025px) {

    .display-1 {
        font-size: 5.813rem !important;
        letter-spacing: 0 !important;
        line-height: 1.3 !important;
    }

    #information .row .col-info,
    #contact .col-info{
        /*width: 66%;*/
        width: 57.9315707620529%;
    }



    #information .row {
        flex-wrap: nowrap;
        flex-direction: row;
    }

    #information {
        margin:0 auto;
        /*min-height: 1030px;*/
    }

    .row {
        display: flex;
        max-width: 1286px;
        justify-content: flex-start;
        margin: 0 auto;
    }

    .col-heading {
        /*max-width: 28.125rem;*/
        width: 34.0590979782271%;
        /*margin-right: 3%;*/
        margin-left: 0;
    }

    .col-info {
        /*max-width: 46.563rem;*/
        margin:0 0 0 8.0093312597201%;
        font-size: 1.8rem;
    }

}


/************************* ONLINE Befragung *************************/

.involvement {
    /*background-color: var(--pbc-sky-blue);*/
    margin-top: 45px ;
}


.involvement .row {
    position: relative;
    padding: 3.1rem 0.5rem 3.1rem 8% ;
}

/*.involvement svg {*/
/*    position: absolute;*/
/*    left: 8%;*/
/*    width: 25px;*/
/*    top: 10%;*/
/*}*/

.involvement svg circle {
    fill: var(--pbc-blue);
}

.involvement svg path {
    /*fill: var(--pbc-sky-blue);*/
}


.involvement .img-cover{
    display: none;
}

.involvement img {
    padding: 40px 0;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 16.063rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.involvement .col-heading {
    margin: 0 0 21px 0;
    line-height: 1.2;
}

.involvement .col-info {
    margin:0 4.74rem 0 0;
    padding-bottom: 2.4rem;
    line-height: 1.5;
}

.involvement .btn-involvement {
    text-align: left;
    color: var(--pbc-blue);
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 20%;
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .involvement .row {
        padding-left: 3rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and  (min-width: 768px) {

    .involvement .row {
        padding-left: 0;
    }

    /*.involvement .col-info { */
    /*    padding-bottom: 91px;*/
    /*}*/

    #involvement button:hover .col-heading,
    #involvement button:focus .col-heading
    {
        font-family: var(--pbc-font-medium);
    }

    #involvement .row {

    }
    /*****end start test*****/

    .row-fluid-100 {
        display: flex;
        height: 100%;
        position: relative;
        z-index: 0;
    }

    .row-container-1286 {
        position: absolute;
        top:0;
        left: 0;
        z-index: 3;
    }

    #involvement .test-col-text{
        width: 54.9479166666667%;
        padding-left: 16.66%;
    }

    #involvement .test-col-text  div {
        padding-left: unset!important;
        width: 100%!important;
    }

    #involvement .test-col-img {
        width: 55.375%;
        background: url("/staticfiles/img/Stadtprofil-Banner-lowres_mobil.jpg");
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;

    }

    .involvement .invol-img {
        object-fit: contain;
        width: 100%;
        display: block;
    }
    /*****end of test*****/
    #involvement .col-heading {
        width: 52.4883359%;
        padding-left: 3rem;
    }

    #involvement .col-info {
        width: 47.5116641%;
        padding-left: 3rem;
    }
    #involvement form {
        padding-left: 3rem;
    }

    .involvement .col-info {
        padding-bottom: 8rem;

    }

    #info-accordion {
        margin-top: 180px;
        padding-bottom: 200px;
    }


    .involvement .btn-involvement {
        color: var(--pbc-sky-blue);
        margin-left: 0;
    }


    /*.involvement svg {*/
    /*    width: 44px;*/
    /*    top: 24%;*/
    /*    left: 0;*/
    /*}*/
    .involvement svg circle {
        fill: var(--pbc-sky-blue);
    }

    .involvement svg path {
        fill: var(--pbc-blue);
    }

    .involvement img {
        display: none;
    }

    .involvement {
        justify-content: center;
        height: 900px;
        position: relative;
        left: 0;
        right: 0;
    }

    .involvement .img-cover {
        display: inline;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        width: 100%;
        height: 100%;
        position: absolute;

    }

    .involvement .row {
        flex-direction: column;
        align-items: baseline;
        justify-content: center;
        height: 100%;
        margin: 0 auto;
    }

    .involvement .col-heading {
        /*max-width: 43.813rem;*/
        /*margin: 0 0 31px 8%;*/
        z-index: 1;
    }



}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1025px) {

    /* neue svg eingefuegt */
    /*.involvement svg {*/
    /*    position: relative;*/
    /*    left: -82px;*/
    /*    top: 60px;*/
    /*}*/

    .involvement .col-info {
        /*max-width: 37.563rem;*/
        /*margin: 0 0 0 8%;*/
        z-index: 1;
        font-size: 2.4rem;
        line-height: 1.5;
        letter-spacing: 0;
    }

    .involvement svg path {
        fill: var(--pbc-blue);
    }

    .involvement .col-heading {
        margin: 0 0 31px 0;
    }

    .involvement .col-info {
        /*max-width: 38.188rem;*/
        margin: unset;
    }
}


/************************* FAQ *************************/

.faq  {
    padding-bottom: 10rem;
}

.faq .col-info {
    padding: 24px 0 0 0;
    margin-bottom: 57px;
}
.faq .col-heading {
    margin-top: 91px;
    margin-bottom: 0;
}

#faq  .accordion {
    margin-top: 0px;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .faq .col-info {
        padding-top: 3rem;
        margin:0 0 57px 0;
        padding-left: 3rem;
    }
    .faq .col-heading {
        margin: 91px 0 0 0;
    }

    .faq .col-heading {
        margin-bottom: 0;
    }

    #faq .row {
        /*width: 70%;*/
    }

    .faq .row {
        flex-direction: column;
        margin: 0 auto;
        align-items: flex-start;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1025px) {

    .faq .col-info {
        padding: 0 3rem 3rem;
    }

    .faq .row {
        flex-direction: row;
    }

    .faq .col-info {
        flex: 2;
        margin: unset;
        font-size: 2.4rem;
        /*max-width: 66%;*/
    }

    .faq .col-heading {
        margin-top: 167px ;
        flex: 1;
    }

    .faq .col-heading,
    .faq .col-info {
        margin-top: 91px;
    }

    .faq .accordion {
        padding-bottom: 200px;
    }
}

@media screen and (min-width: 1280px) {
    .faq .col-heading, .faq .col-info {
        padding: unset;
        margin-top: 167px ;
        margin-bottom: 120px;
    }
}


/************************* Unser Team *************************/

/********* IMAGE TEAM *********/

#out-team {
    padding-top: 4.938rem;
    padding-bottom: 4.875rem;
}

.our-team .img-md-container {

    height: 0;
    overflow: hidden;
    position: relative;
    max-width: 500px;
    min-width: 147px;
    padding-bottom: 62.5%;
}

.our-team img {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;

}

.img-md-heading {
    text-align: left;
    font-size: 0.875rem;
    /*line-height: 1.125rem;*/
    letter-spacing: 0;
    padding-top: 0;
}

.img-md-text {
    padding-top: 0;
    font-size: 1.6rem;
    line-height: 18px;
}

.img-sm-subtitle {
    text-align: left;
    font-size: 0.75rem;
    /*line-height: 1.125rem;*/
    letter-spacing: 0;
}

.col-img-left, .col-img-right {
    padding-bottom: 2.188rem;
    flex: 1;
}

.col-img-left {
    padding-right: 16px;
}
.col-img-right {
    padding-left: 5px;
    align-self: center;
}

.col-contact-us {
    max-width: 180px;
}

.our-team .row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 0 32px;
}

.our-team .row .col-heading {
    margin: unset;
    padding-bottom: 9.188rem;
}

.our-team .row .col-info {
    display: none;

}
.col-contact-us svg {
    height: 25px;
    width: 25px;
}

.col-contact-us svg circle {
    fill: var(--pbc-blue);
}

.col-contact-us svg path {
    fill: var(--pbc-sky-blue-light);
}

.contact-info-md-text {
    display: none;
}

.contact-info-sm-text {

}

.img-md-text {
    font-family: var(--pbc-font-medium);
}

.img-md-subtitle {
    font-size: 12px;
    /*line-height: 18px;*/
    letter-spacing: 0;
}

.our-team .row .col-heading  {
    padding-bottom: 2.188rem;
    padding-left: 0;
}

input:focus, textarea:focus {
    box-shadow: 0 0 0 4px var(--pbc-mint-green);
    border: 1px solid var(--pbc-mint-green);
    outline: none;
}

.is-error {
    border: var(--pbc-red-error);
}

.is-error .form-message-wrapper {
    display: flex;
}

.is-error input, .is-error textarea {
    border: 1px solid var(--pbc-red-error);
    background-color: #ffdcdc;
}

.is-error label {
    color: var(--pbc-red-error);
}

.form-message-wrapper {
    font-size: 14px;
    line-height: 1.333337;
    letter-spacing: -.01rem;
    color: var(--pbc-red-error);
    position: relative;
    margin-top: .47059rem;
    margin-bottom: .70588rem;
    display: none;
}

.form-message-wrapper:before{
    padding-right: .17647rem;
    top: .17647rem;
    content: '\24d8';
}
#hidden-medium {
    display: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .col-contact-us {

    }

    .col-img-left {
        padding-right: unset;
    }
    .col-img-right {
        padding-left: unset;
    }

    .col-8 {
        width: 77%;
    }

    .col-4 {
        width: 23%;
    }

    .our-team img {
        height: auto;
        width: 100%;
    }

    .col-img-left, .col-img-right {
        max-width: 36.063rem;
        padding-bottom: 4.25rem;
    }

    .img-md-text {
        text-align: center;
        font-size: 2rem;
        /*line-height: 2.063rem;*/
        letter-spacing: 0;
        font-family: var(--pbc-font-medium);

        /* because img is also provided with spacing */
        padding-right: 5rem;
        padding-top: 0.5rem;
    }

    .img-md-heading {
        text-align: center;
        font-size: 2rem;
        /*line-height: 2.875rem;*/
        letter-spacing: 0;
    }

    .img-md-subtitle {
        text-align: center;
        font-size: 1.6rem;
        /*line-height: 46px;*/
        letter-spacing: 0;
        font-family: var(--pbc-font-light);
        padding-right: 5rem;
    }

    .our-team .img-md-container {
        height: auto;
        max-width: 100%;
        padding-bottom: 0;
        padding-right: 5rem;
    }

    #out-team {
        /*margin-top: 10.938rem;*/
    }

    #projektleiter {
        padding-bottom: 6.25rem;
    }

    .col-contact-us {
        display: flex;
        align-items: flex-start;
        max-width: 50rem;
    }


    .col-contact-us svg {
        flex: 1;
        height: 44px;
        width: 44px;
        align-self: self-start;
    }

    .col-contact-us svg circle {
        fill: var(--pbc-blue);
    }

    .col-contact-us svg path {
        fill: var(--pbc-sky-blue-light);
    }

    .our-team .text-md-info {
        flex: 5;
    }

    .col-contact-us .contact-info-md-text a {
        text-decoration: none;
    }

    .contact-info-sm-text {
        display: block;
    }

    .our-team img {
        position: unset;
    }

    .our-team {
        padding-top: 192px;
        padding-bottom: 192px;
    }

    .our-team .col-heading {
        margin:0 60px  103px 0 ;
        min-width: 37.5rem;

    }

    .our-team .img-md-container {
        width: 100%;
    }

    .our-team .mt-14per {
        margin-top: 14%;
    }


}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1025px) {
    #out-team  {
        padding-top: 192px;
    }

    .col-contact-us .contact-info-md-text {
        display: block;
        /*font-family: var(--pbc-font-light);*/
    }

    .col-contact-us {
        max-width: 50rem;
    }

    .contact-info-sm-text {
        display: none;
    }

    .our-team {
        /*margin-top: 192px;*/
    }

    .our-team .col-heading {
        margin:0 60px  103px 0 ;
        min-width: 37.5rem;

    }

    .our-team .img-md-container {
        width: 100%;
        overflow: hidden;
        max-height: 165px;
    }

    .our-team .mt-14per {
        margin-top: 14%;
    }

    .our-team .row {
        margin: 0 auto;
    }
}

@media screen and (min-width: 1200px){
    #hidden-medium {
        display: block;
    }
}

/************************* Kontakt *************************/

.contact .mt-22 {
    margin-top: 22px;
}

.contact a {
    color: var(--pbc-sky-blue);
    text-decoration: none;
}

input {
    border: none;
    border: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-family: var(--pbc-font-light);
    height: 2.4rem;
    /*line-height: 1.313rem;*/
    /*letter-spacing: -0.063rem;*/
    margin: unset;
    margin-top: 5px;
    padding: 0 6px;
    width: 100%;
}

/* Create a custom radio button */
span.checkmark {
    border-radius: 50px;
    height: 16px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 16px;
}

/* Customize the label (the confirm) */
label.confirm {
    padding-left: 25px;
    display: block;
    position: relative;
    font-size: 1.4rem;
}




/* Hide the browser's default radio button */
input[type="radio"] {
    cursor: pointer;
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0;
}


input[type="radio"]:checked ~ .checkmark {
    background-color: var(--pbc-sky-blue);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

input[type="radio"]:checked ~ .checkmark:after {
    display: block;
}


.checkmark:after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--pbc-blue);
}


/**
______________END____________________________
 */

label {
    font-size: 1.6rem;
    /*line-height: 1.125rem;*/
}

textarea {
    border: none;
    box-sizing: border-box;
    font-family: var(--pbc-font-light);
    font-size: 1.6rem;
    height: 105px;
    /*line-height: 1.313rem;*/
    letter-spacing: 0;
    margin-top: 5px;
    padding: 0 6px;
    width: 100%;
}

input:focus, textarea:focus {
    outline: none;
}

.contact button {
    align-items: center;
    border: none;
    border-radius: 50px;
    display: flex;
    font-size: 1.4rem;
    /*line-height: 1.063rem;*/
    letter-spacing: 0;
    padding: 5px 8px 5px 11px;
    position: relative;
    color: var(--pbc-blue);
}

.contact .btn-send-text {
    margin-bottom: 1px;
}

.contact svg {
    padding-left: 5px;
    height: 26px;

}

.contact {
    padding: 54px 0;
}

.contact .col {
    padding-top: 14px;
    width: 48%;
}

.contact .col-12 {
    padding-top: 14px;
    width: 100%;
}

.contact .col-12 p {
    font-size: 1rem;
    font-family: var(--pbc-font-light);
}

.contact .col-confirm {
    display: flex;
    align-items: center;
    min-width: 10.313rem;
    /*padding-bottom: 54px;*/
    width: 100%;
}

.contact .row {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

#row-confirm {
    flex-direction: column;
}

.contact .col-info {
    margin-bottom: 0;
}

.contact .d-flex {
    flex-direction: column;
}


.from-wrapper {
    padding: 0 32px;
}

.contact .mt-5 {
    margin-bottom: .5rem;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    #row-confirm {
        flex-direction: row;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    label.confirm {
        padding-left: 50px;
    }

    span.checkmark {
        height: 30px;
        width: 30px;
    }

    .checkmark:after {
        top: 5px;
        left: 5px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        /*background-color: var(--pbc-blue);*/
    }



    #contact > .row {
        flex-direction: row;
    }
    .contact button {
        align-items: center;
        display: flex;
        font-size: 2rem;
        /*line-height: 39px;*/
        letter-spacing: 0;
        padding: 1rem 3.5rem;
        position: relative;
        margin-left: auto;
    }

    .contact .btn-send-text {
        position: relative;
        transition: all ease-in-out 0.2s;
        left: 0;
    }

    .contact svg {
        opacity: 0;
        position: absolute;
        right: 20px;
        transition: ease-out 0.2s;
        height: 44px;
        width: 15px;
    }

    .contact button:hover svg,
    .contact button:focus svg
    {
        opacity: 1;
    }

    .contact button:hover .btn-send-text,
    .contact button:focus .btn-send-text
    {
        left: -12px;
    }
    .from-wrapper {
        padding: unset;
    }

    .contact .d-flex {
        flex-direction: row;
    }
    .contact .impressum {
        margin-top: 54px;
    }

    label {
        font-size: 1.6rem;
        /*line-height: 38px;*/
        letter-spacing: 0;
        font-family: var(--pbc-font-light);
    }

    input {
        font-family: var(--pbc-font-light);
        font-size: 1.6rem;
        /*line-height: 38px;*/
        letter-spacing: 0;
        width: 100%;
        padding: 2rem 1rem;
        margin-top: 15px;
    }

    input[type="radio"] {
        width: 44px;
        height: 44px;
        margin: 0 35px 0 0;
    }

    textarea {
        font-size: 28px;
        /*line-height: 38px;*/
        letter-spacing: 0;
        height: 310px;
        margin-top: 15px;

    }

    .contact form {
        margin-top: 40px;
        width: 100%;
        padding: 0 3rem;
    }

    .contact {
        padding: 80px 0 100px 0;
    }

    .contact .row {
        justify-content: space-between;
        margin: 0 auto;
    }

    .contact .col {
        width: 49%;
    }

    .contact .col-heading {
        font-family: var(--pbc-font-medium);
    }
    .contact .col-12 {
        padding: unset;
        padding-top: 14px;
    }

    .contact .col-12 p{
        font-size: 1.4rem;
        /*line-height: 1.875rem;*/
        letter-spacing: 0;
        font-family: var(--pbc-font-light);
    }
    label.confirm {
        font-size: 1.6rem;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1025px) {

     input {
        font-family: var(--pbc-font-light);
        font-size: 2.2rem;

     }
    label, label.confirm {
        font-size: 2.2rem;
    }

    .contact {
        padding: 200px 0 100px 0;
    }

    .contact .col-12 {
        padding: unset;
        padding-top: 54px;
    }

    .contact form {
        margin-top: 144px;
    }
    .contact .col {
        padding-top: 54px;
    }

     .contact .col-info {
        font-size: 2.4rem ;
    }

}



/************************* Privacy *************************/

.privacy .col-info h2 {
    padding: 4.5rem 0 2.5rem 0;
}

.privacy .h2 {
    padding: 1.25rem 0;
}
.privacy .h1 {
    padding: 1.5rem 0;
    font-size: 3.4rem;
}

.sec-subtitle {
    padding-bottom: 2rem;
}

.sec-subtitle p {
    margin-bottom: 0.8rem;
}

.privacy {
    box-sizing: border-box;
    margin: 0px auto;
    max-width: 59.688rem;
    padding: 3.75rem 1.313rem;
}

.privacy .row {
    flex-wrap: wrap ;
}

.privacy .col-heading {
    margin-bottom: 5%;
    width: 100%;
    padding-left: 0;
}



/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .privacy {
        margin: 150px auto;
        min-height: calc(100vh - 300px - 85px - 6.25rem);
    }
}

@media only screen and (min-width: 1025px) {
    .privacy .col-info {
        margin: unset;

    }

}


/************************* Footer *************************/

footer {
    font-size: 0.875rem;
    /*line-height: 1.313rem;*/
    letter-spacing: -0.06rem;
}

footer .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 2rem 3rem;
}

footer .impressum,
.nav-footer .impressum{
    width: 100%;
    font-size: 1.4rem;
}

footer .impressum-logo svg,
.nav-footer .impressum-logo svg {
    height: 21px;
}

.impressum-item {
        /*padding-bottom: .5rem;*/
}

footer a {
    color: var(--pbc-sky-blue-light);
    text-decoration: none;
}

.nav-footer {
    bottom: 0;
    left: 0;
    padding: 2rem 3rem;
    /*position: absolute;*/
    right: 0;
}
.nav-footer .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-footer div {
    /*padding-right: 1rem;*/
}
.nav-footer a {
    color: var(--pbc-sky-blue-light);
    text-decoration: none;
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) {
    footer .impressum {
        width: 70%;
    }

    .impressum-item {
        font-size: 1.6rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {


    .impressum-item {
        font-size: 1.8rem;
        font-family: var(--pbc-font-regular);
    }

    footer .impressum-logo svg {

    }

    #pbc-logo {
        width: 97px;
        height: 27px;
    }

    #co-logo {
        height: 30px;
        width: 30px;

    }

    .nav-footer {
        display: none;
    }

}

@media only screen and (min-width: 1025px) {

    footer .impressum {
        width: 50%;
    }

    footer .row {
        padding: 2rem 0 2rem 0;
        max-width: 50rem;
    }

    footer {
        font-size: 1.75rem;
        /*line-height: 3.125rem;*/
        letter-spacing: -0.06rem;
    }

    footer div {
        font-family: var(--pbc-font-light);
    }

}


