/*
Theme Name: FGR Basic Theme
Theme URI: https://fgr.design/
Description: Das FGR Basic-Theme wurde eigens für FGR Kunden entwickelt. Es bedarf keinerlei zusätzliche Lizenz, jedoch darf die Gestaltung die durch die FGR vorgegeben wurde nicht verändert werden - es erlischt umgehend das Nutzungsrecht. Inhaltliche Änderungen dürfen selbstverständlich getätigt werden. Im Zweifelsfall steht die <a href="http://fgrepublik.com/">Freie Gestalterische Republik</a> jederzeit bereit, um Fragen zu beantworten.
Author: der Freien Gestalterischen Republik
Author URI: https://fgr.design/
Version: 1.3.4
License: Keine Nutzung ohne vorherige Absprache erlaubt.
License URI: license.txt
Tags: FGR, basic, Menü, Responsive
*/

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

/* ###############################################################
##################################################################

1.1 Globale Variablen
1.1 Global: Basis CSS 
1.3 Typografie-/ Contentelemente h1/h2/h3, p, a, Buttons, Textarea, ul, li usw.
1.4 VC Overrides
1.5 Globale Klassen
1.6 Sektionen mit Contentelementen 
1.7 Footerangaben, Footer Navigation 
1.8 CPT
1.9 Imprint, Privacy

2. Plugins
2.1 Borlabs

##################################################################
############################################################### /*

1.1 Globale Variablen
##################################################### */

:root {
    --app-height: 100%;
}

body {
    /*colors*/
    --lightColor: #fff;
    --lightGray: #ededed;
    --darkColor: #000;
    --primaryColor: #20B593;
    --secondaryColor: #FFCA05;
    --tertiaryColor: #00B8DE;
    --highlightColor: #e2bb76;

    /*Font-Sizes*/
    --displayHead: 6rem;
    --primaryHead: 4.125rem;
    --secondaryHead: 2.25rem;
    --tertiaryHead: 3.325rem;
    /*former 3.75*/
    --quinaryHead: 1.875rem;
    --senaryHead: 1.125rem;
    --paragraphs: 1.6875rem;
    --listFS: 2rem;
    --btnFS: 2.25rem;
    --footermenuFS: 1.3125rem;
    --smallFS: 1.25rem;
    --smallerFS: 0.875rem;
}

@media screen and (max-width: 1199px) {
    body {
        /*Font-Sizes*/
        --displayHead: 4.875rem;
        --primaryHead: 3.75rem;
        --secondaryHead: 2.125rem;
        --tertiaryHead: 3rem;
        --quinaryHead: 1.625rem;
        --paragraphs: 1.625rem;
        --listFS: 1.875rem;
        --btnFS: 2rem;
        --footermenuFS: 1.25rem;
        --smallFS: 1.125rem;
        --smallerFS: 0.875rem;
    }
}

@media screen and (max-width: 991px) {
    body {
        --displayHead: 2.75rem;
        --primaryHead: 2.75rem;
        --secondaryHead: 1.625rem;
        --tertiaryHead: 2.125rem;
        --quinaryHead: 1.5rem;
        --senaryHead: 1rem;
        --paragraphs: 1.3125rem;
        --listFS: 1.3125rem;
        --btnFS: 1.75rem;
        --footermenuFS: 1.125rem;
        --smallFS: 1rem;
        --smallerFS: 0.75rem;
    }
}

*:focus-visible {
    outline: 5px solid red;
  }

  *:focus {
    outline: 5px solid blue;
  }
/* 1.2 Global: Basis CSS
##################################################### */

html {
    padding: env(safe-area-inset);
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
}

html,
body {
    margin: 0px;
    padding: 0px;
    height: 100% !important;
    width: 100% !important;
    display: table !important;
    color: var(--darkColor);
}

@media screen and (max-width:1199px) {
    body {
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

.overallwrapper {
    overflow: hidden;
}

/* 1.3 Typografie-/ Contentelemente
##################################################### */

h1, h2, h3, h4, h5, h6, ul, li, p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

h1, h1 code, .gradient h2, .gradient h2 code, .h1 {
    font: normal 700 var(--primaryHead) 'Ubuntu', sans-serif;
    line-height: 120%;
    margin: 0;
}

h2, h2 code, .h2 {
    font: normal 700 var(--secondaryHead) 'Ubuntu', sans-serif;
    line-height: 120%;
    margin: 0 0 30px 0 !important;
}

h3, h3 code, .h3 {
    font: normal 700 var(--tertiaryHead) 'Ubuntu', sans-serif;
    line-height: 120%;
    margin: 0 0 20px 0 !important;
}

h4, .h4 {
    font: normal 500 var(--tertiaryHead) 'Ubuntu', sans-serif;
    line-height: 120%;
    clear: both;
    margin: 0 0 0px 0 !important;
}

h5, .h5 {
    font: normal 700 var(--quinaryHead) 'Ubuntu', sans-serif;
    line-height: 120%;
    margin: 0 0 10px 0 !important;
    color: var(--darkColor);
}

h6, .h6 {
    font: normal 700 var(--senaryHead) 'PT Sans', sans-serif;
    line-height: 120%;
    margin: 0 0 1px 0 !important;
    color: var(--darkColor);
}

.center {
    text-align: center !important;
}

.display-none {
    display: none;
}

p, p code {
    font: normal 400 var(--paragraphs) 'PT Sans', sans-serif;
    line-height: 120%;
    margin: 0px 0 0px 0;
    color: #02737D;
}

p a {
    text-decoration: underline;
    color: #02737D;
}

p a:hover {
    opacity: 0.5;
}

p:not(:last-of-type) {
    margin-bottom: 30px;
}

p code {
    background-color: var(--primaryColor);
    padding: 0 2.5px;
}

#container li {
    font: normal 700 var(--listFS) 'PT Sans', sans-serif;
    line-height: 120%;
    margin: 20px 0 20px 0;
    color: #02737D;
    padding-left: 40px;
    list-style-type: none;
    position: relative;
}

#container li:before {
    position: absolute;
    left: 0;
    top: 7.5px;
    width: 21px;
    height: 21px;
    content: "";
    background: url(../_img/bullet.svg) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width:991px) {
    #container li {
        margin: 15px 0 15px 0;
        padding-left: 30px;
    }

    #container li:before {
        top: 3.5px;
        width: 15px;
        height: 15px;
    }

    .gradient h2 {
        margin-bottom: 0px !important;
    }
}

h2.b-icon code {
    color: #00B8DE;
}

h2.w-icon:before, h2.r-icon:before, h2.b-icon:before, h2.g1-icon:before, h2.g2-icon:before {
    content: "";
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    display: inline-block;
    margin-right: 30px;
}

h2.w-icon:before {
    background-image: url(../_img/w-icon.svg);
}

h2.r-icon:before {
    background-image: url(../_img/r-icon.svg);
}

h2.b-icon:before {
    background-image: url(../_img/b-icon.svg);
}

h2.g1-icon:before {
    background-image: url(../_img/g1-icon.svg);
}

h2.g2-icon:before {
    background-image: url(../_img/g2-icon.svg);
}

@media screen and (max-width:1199px) {
    h2.w-icon:before, h2.r-icon:before, h2.b-icon:before, h2.g1-icon:before, h2.g2-icon:before {
        width: 60px;
        height: 60px;
        margin-right: 25px;
    }
}

@media screen and (max-width:991px) {
    h2.w-icon:before, h2.r-icon:before, h2.b-icon:before, h2.g1-icon:before, h2.g2-icon:before {
        width: 45px;
        height: 45px;
        margin-right: 17.5px;
    }
}

/* 1.4 VC Overrides
##################################################### */

.wpb_image_grid .wpb_image_grid_ul {
    text-align: right;
    height: auto !important;
}

.wpb_image_grid .wpb_image_grid_ul .isotope-item {
    margin: 0 0 0 20px !important;
    padding: 0 !important;
    left: 0 !important;
    position: relative !important;
    float: none !important;
    display: inline-block;
}

.wpb_image_grid .wpb_image_grid_ul .isotope-item a:hover {
    opacity: 1;
}

.wpb_single_image img {
    width: 100%;
}

@media screen and (max-width:1199px) {
    .wpb_image_grid .wpb_image_grid_ul .isotope-item img {
        height: 102.5px !important;
        width: auto !important;
    }
}

@media screen and (max-width:991px) {
    .wpb_image_grid .wpb_image_grid_ul {
        text-align: left;
    }

    .wpb_image_grid .wpb_image_grid_ul .isotope-item {
        margin: 0 20px 0 0px !important;
    }

    .wpb_image_grid .wpb_image_grid_ul .isotope-item img {
        height: 93.5px !important;
    }
}

/*VC Grid*/
.wpb-content-wrapper {
    margin-top: 315px !important;
}

.vc_row-fluid:not(.vc_inner) {
    padding-top: 100px;
    padding-bottom: 100px;
}

.vc_row-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

.vc_row-fluid:not(.vc_inner)>div {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

@media screen and (max-width: 1199px) {
    .wpb-content-wrapper {
        margin-top: 210px !important;
    }
}

@media screen and (max-width: 991px) {
    .wpb-content-wrapper {
        margin-top: 90px !important;
    }

    .vc_row-fluid:not(.vc_inner) {
        padding-top: 75px;
        padding-bottom: 75px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 767px) {
    .vc_row-fluid:not(.vc_inner) {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .col_reverse {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    x .col_height {
        min-height: 250px !important;
        background-position: center center !important;
        background-size: cover !important;
        padding-bottom: 0px !important;
    }

    body #container .wpb_single_image {
        margin-bottom: 45px !important;
    }
}

/* 1.5 Globale Klassen
##################################################### */

body .bg-bottom {
    background-position: center bottom !important;
}

/*Paddings*/
.p-0 {
    padding: 0px !important;
}

.p-h-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.p-v-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-t-small {
    padding-top: 50px !important;
}

.p-t-large {
    padding-top: 100px !important;
}

.p-b-small {
    padding-bottom: 50px !important;
}

.p-b-large {
    padding-bottom: 100px !important;
}

/*Positions*/

.p-r {
    position: relative;
}

*:focus {
    outline: none;
}

/*Color & BGs*/
.white-bg {
    background-color: var(--lightColor);
}

.white-text,
.white-text p,
.white-text h3 {
    color: var(--lightColor);
}

.gradient {
    /*background-image: linear-gradient(to bottom, rgba(0, 175, 220, 1) 0%, rgba(102, 255, 31, 0.5) 50%, #ffc712 100%);*/
    color: var(--lightColor);
    background: url(../_img/codo-gradient.svg) no-repeat center center;
    background-size: cover;
}

.gradient code {
    color: var(--darkColor);
}

/*Right Fluid Image*/

body .right-fluid-image {
    background-size: 50% 100% !important;
    background-repeat: no-repeat !important;
    background-position: right top !important;
}

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

    body .fluid-image img {
        position: absolute !important;
        width: 50%;
        height: 100%;
        top: 0;
        object-fit: cover !important;
    }

    body .fluid-image {
        position: relative;
    }

    body .fluid-image * {
        position: static !important;
    }
}

/*BTN*/

.btn-white p a {
    background-color: var(--lightColor);
    border-radius: 30px;
    padding: 10px 20px;
    color: #02737D;
    font: normal 700 var(--listFS) 'PT Sans', sans-serif;
    display: inline-block;
    margin-bottom: 30px !important;
    margin-left: -20px;
    margin-top: 15px;
    transition: 0.35s all;
}

.btn-white p a:hover {
    opacity: 1;
    background-color: #02737D;
    color: var(--lightColor);
}

@media screen and (max-width:991px) {
    .btn-white p a {
        margin-bottom: 20px !important;
        margin-left: 0px;
    }
}

/*Images & Video*/
svg,
svg:hover,
svg path,
svg path:hover,
svg rect,
svg rect:hover,
svg:hover path {
    transition: 0.5s all;
}

.full-width-img {
    width: 100%;
    height: auto;
    line-height: 1;
}

.img-wrap,
.video-wrap {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.img-wrap::before,
.video-wrap:before {
    content: '';
    float: left;
    padding-bottom: 56.25%;
}

.img-wrap.wrap-square::before {
    content: '';
    float: left;
    padding-bottom: 100%;
}

.img-wrap img,
.img-wrap video,
.video-wrap video,
.video-wrap iframe,
.video-wrap img,
img.stretch-parent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border: none;
}

/* 1.6 Sektionen mit Contentelementen 
##################################################### */

/*Hero*/

.home .hero {
    padding-bottom: 275px !important;
}

@media screen and (max-width:767px) {
    .home .hero {
        padding-bottom: 200px !important;
    }
}

.hero p {
    font-weight: 700;
    color: var(--darkColor);
}

.home .hero p:first-of-type {
    margin-top: 45px;
}

/*Intro*/

@media screen and (min-width:1240px) {
    .intro.vc_row img {
        margin-left: -70px;
        width: calc(100% + 50px);
        max-width: calc(100% + 50px) !important;
    }
}

.intro h2 {
    margin-bottom: 60px !important;
}

.intro {
    margin-top: -228.5px;
}

@media screen and (max-width:1199px) {
    .intro {
        margin-top: -197.5px;
    }
}

@media screen and (max-width:991px) {
    .intro {
        margin-top: -145px;
    }

    .intro h2 {
        margin-bottom: 40px !important;
    }

}

@media screen and (max-width:767px) {
    body #container .intro.vc_row .wpb_single_image {
        margin-bottom: 0px !important;
        margin-top: 60px;
    }

    .intro {
        margin-top: -130px;
    }
}

/*Contact-wrap*/

.contact-wrap .wpb_single_image {
    float: left;
    margin-right: 50px;
}

.contact-wrap h5 {
    text-align: right;
}

.contact-wrap a {
    color: #02737D;
    text-decoration: none;
}

.contact-wrap a:hover {
    opacity: 0.5;
}

@media screen and (max-width:1199px) {
    .contact-wrap .wpb_single_image {
        margin-right: 40px;
    }
}

@media screen and (max-width:991px) {
    body #container .contact-wrap .wpb_single_image {
        margin-bottom: 15px !important;
    }

    .contact-wrap h5 {
        text-align: left;
        margin-top: 40px !important;
    }
}

/* 1.7 Globale Footerangaben, Footer Navigation
##################################################### */

footer {
    background: #20B593;
    padding-top: 100px;
    padding-bottom: 140px;
    color: #fff;
}

#footer-logo img {
    width: 100%;
    height: auto;
    max-width: 285px;
}

footer #menu {
    margin-top: 28.5px;
}

footer ul li {
    display: block;
    margin: 1.5px 0;
}

footer ul li a,
footer span#copy {
    color: var(--lightColor);
    font: normal 700 var(--footermenuFS) 'Ubuntu', sans-serif;
    transition: 0.35s all;
    text-transform: uppercase;
}

footer ul li a:hover {
    opacity: 0.5;
}

@media screen and (max-width:991px) {
    footer {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    #footer-logo img {
        max-width: 235px;
    }
}

@media screen and (max-width:767px) {
    footer {
        padding-top: 60px;
    }

    footer #menu {
        margin-top: 45px;
    }

    #footer-logo img {
        max-width: 215px;
    }
}

/* 1.8 CPT
##################################################### */

/*SIngle Pioneers*/
.single .img-wrap {
    max-width: 345px;
    margin-bottom: 35px !important;
    border-radius: 50%;
}

.single .link-area p,
.single .link-area a {
    font-weight: 700;
}

.single .link-area p {
    margin-bottom: 15px;
}

.single h1 {
    margin-bottom: 0px !important;
}

.single .about {
    margin-top: 50px;
}

.single .about p {
    font-weight: 700;

}

.single .about p:first-of-type {
    margin-bottom: 50px !important;
}


@media screen and (max-width: 767px) {
    .single h1 {
        margin-top: 45px !important;
    }

    .single .about {
        margin-top: 35px;
    }

    .single .about p:first-of-type {
        margin-bottom: 35px !important;
    }

    .single .img-wrap {
        max-width: 250px;
    }
}

.single .video-wrap,
.single .interview {
    margin-bottom: 100px;
}

@media screen and (min-width:992px) {
    .single #container .row {
        margin: 0;
    }
}

.single .interview {
    columns: 2;
    column-gap: 40px;
    column-fill: balance;
    margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
    .single .video-wrap {
        margin-bottom: 75px;
    }

    .single .interview {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .single .video-wrap {
        margin-bottom: 60px;
    }

    .single .interview {
        margin-bottom: 0px;
    }
}

.single .interview_segment {
    break-inside: avoid-column;
    padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .single .interview {
        columns: 1;
    }
}

.single .interview p {
    padding-bottom: 30px;
    margin: 0 !important;
}

.single .interview_section .interview:nth-of-type(even) p {
    color: var(--darkColor);
}

.single .additional-links {
    display: flex;
    align-items: center;
}

.single .additional-links:before {
    width: 115px;
    height: 112px;
    flex: 0 0 115px;
    margin-right: 40px;
    background: url(../_img/codo-bildmarke.svg) no-repeat left center;
    background-size: contain;
    content: "";
    display: inline-block;
}

.single .additional-links p {
    font-style: italic;
    margin-top: 4px;
}

@media screen and (max-width:991px) {
    .single .additional-links:before {
        width: 90px;
        height: 85px;
        flex: 0 0 90px;
        margin-left: -20px;
        margin-right: 30px;
    }
}

@media screen and (max-width:767px) {
    .single .additional-links {
        align-items: flex-start;
    }

    .single .additional-links:before {
        width: 75px;
        height: 70px;
        flex: 0 0 75px;
        margin-right: 20px;
    }

    .single .additional-links p {
        margin-top: 0px;
    }
}

.close {
    background: url(../_img/close.svg) no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 42.5px;
    float: right;
    margin-top: -50px;
}

/*Archive Pioneers*/

.archive h1 {
    font-size: var(--displayHead);
    margin-bottom: 50px !important;
}

.tile-wrap {
    height: 100%;
}

.tile-wrap-inner {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tile-wrap-inner:before {
    content: '';
    float: left;
    padding-bottom: calc(100% + 40px);
}

.tile-wrap-inner .img-wrap {
    width: 175px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.tile-wrap-inner>div {
    padding: 20px;
}

.tile-wrap-inner>div>div {
    display: flex;
    justify-content: center;
}

.tile-wrap h3,
.tile-wrap p,
.tile-wrap a {
    color: var(--darkColor) !important;
}

.tile-wrap h3 a:hover {
    opacity: 0.5;
}

.tile-wrap p {
    font-size: var(--smallerFS);
    line-height: 1.35;
}

.quote-tile h3 {
    font-size: var(--secondaryHead) !important;
    font-weight: 500 !important;
    margin-bottom: 0px !important;
    letter-spacing: -0.25px;
}

#pioneers-overview .row {
    margin: 0;
}

#pioneers-overview {
    padding-bottom: 100px;
}

@media screen and (max-width: 991px) {
    #pioneers-overview {
        padding-bottom: 75px;
    }
}

@media screen and (max-width: 767px) {
    body.archive #container .wpb_single_image {
        margin-bottom: 0px !important;
        margin-top: 45px !important;
    }

    #pioneers-overview {
        padding-bottom: 60px;
    }

    .tile-wrap-inner .img-wrap {
        width: 160px;
    }

    .close {
        width: 40px;
        height: 35px;
        margin-top: 0;
        margin-bottom: -55px;
    }

    .archive h1 {
        margin-bottom: 35px !important;
    }
}

/*Audio*/
.audio-columns .audio-toggle .audio-toggle-btn {
    opacity: 0;
    pointer-events: none;
}

.audio-columns .audio-tile:not(.audio-toggle) .audio-toggle-btn-off {
    opacity: 0;
    pointer-events: none;
}

.audio-columns .mejs-container {
    height: 1px !important;
    width: 1px !important;
    min-width: 1px !important;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.audio-tile .tile-wrap svg {
    margin-left: 12.5px;
    margin-top: -4px;
    width: 40px !important;
    height: 29px !important;
}

.audio-tile .tile-wrap svg .audio-toggle-btn,
.audio-tile .tile-wrap svg .audio-toggle-btn-off {
    fill: var(--darkColor) !important
}

/*Pioneer Colors*/

#pioneers-overview .row>div:nth-child(6n+1),
.single .post-wrap.color_0, .single .post-wrap.color_6, .single .post-wrap.color_12, .single .post-wrap.color_18, .single .post-wrap.color_24, .single .post-wrap.color_30, .single .post-wrap.color_36, .single .post-wrap.color_42, .single .post-wrap.color_48, .single .post-wrap.color_54 {
    background-color: #B8DFA1;
}

#pioneers-overview .row>div:nth-child(6n+2),
.single .post-wrap.color_1, .single .post-wrap.color_7, .single .post-wrap.color_13, .single .post-wrap.color_19, .single .post-wrap.color_25, .single .post-wrap.color_31, .single .post-wrap.color_37, .single .post-wrap.color_43, .single .post-wrap.color_49, .single .post-wrap.color_55 {
    background-color: #E7E0C9;
}

#pioneers-overview .row>div:nth-child(6n+3),
.single .post-wrap.color_2, .single .post-wrap.color_8, .single .post-wrap.color_14, .single .post-wrap.color_20, .single .post-wrap.color_26, .single .post-wrap.color_32, .single .post-wrap.color_38, .single .post-wrap.color_44, .single .post-wrap.color_50, .single .post-wrap.color_56 {
    background-color: #B2E7F4;
}

#pioneers-overview .row>div:nth-child(6n+4),
.single .post-wrap.color_3, .single .post-wrap.color_9, .single .post-wrap.color_15, .single .post-wrap.color_21, .single .post-wrap.color_27, .single .post-wrap.color_33, .single .post-wrap.color_39, .single .post-wrap.color_45, .single .post-wrap.color_51, .single .post-wrap.color_57 {
    background-color: #9AC7CB
}

#pioneers-overview .row>div:nth-child(6n+5),
.single .post-wrap.color_4, .single .post-wrap.color_10, .single .post-wrap.color_16, .single .post-wrap.color_22, .single .post-wrap.color_28, .single .post-wrap.color_34, .single .post-wrap.color_40, .single .post-wrap.color_46, .single .post-wrap.color_52, .single .post-wrap.color_58 {
    background-color: #DFE294;
}

#pioneers-overview .row>div:nth-child(6n+6),
.single .post-wrap.color_5, .single .post-wrap.color_10, .single .post-wrap.color_17, .single .post-wrap.color_23, .single .post-wrap.color_29, .single .post-wrap.color_35, .single .post-wrap.color_41, .single .post-wrap.color_47, .single .post-wrap.color_53, .single .post-wrap.color_59 {
    background-color: #6bc5b2;
}

.single .post-wrap.color_ {
    background-color: #B8DFA1;
}

/*Team*/

#team-overview .tile-wrap-inner .img-wrap {
    border-radius: 0%;
    background-color: var(--lightGray);
    margin: 0 0 20px 0;
    width: 100%;
}

#team-overview .tile-wrap-inner .img-wrap img {
    mix-blend-mode: multiply;
}

#team-overview .tile-wrap-inner>div>div {
    display: block;
}

#team-overview .tile-wrap-inner {
    padding: 0px;
    height: auto;
}

#team-overview .tile-wrap-inner>div {
    padding: 0px;
    width: 100%;
}

#team-overview .tile-wrap-inner:before {
    display: none;
}

#team-overview .profile-link {
    display: block;
    text-decoration: none !important;
    font-weight: 700;
}

#team-overview .profile-link:before {
    width: 27.5px;
    height: 27.5px;
    background: url(../_img/team-icon.svg) no-repeat left bottom;
    background-size: 20px 20px;
    content: "";
    display: inline-block;
}

#team-overview .media-tile {
    padding: 0px;
    height: 100%;
}

#team-overview .media-tile>div {
    height: 100%;
}

#team-overview div small span,
#team-overview div small strong,
#team-overview div small strong a {
    font-size: initial;
    text-decoration: none;
}

#team-overview .container {
    max-width: 1100px;
    margin: 10px auto;
    width: 100%;
}

@media screen and (min-width:577px) {
    #team-overview .row {
        margin-left: -50px;
        margin-right: -50px;
    }

    #team-overview .row>div {
        padding-left: 50px;
        padding-right: 50px;
        margin: 40px 0;
    }

    #team-overview .row {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width:576px) {
    #team-overview .row>div {
        margin: 20px 0;
    }

    #team-overview .row {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/*Single-Team*/
.single-team-member .close {
    background: url(../_img/close-team.svg) no-repeat center center;
}

.single-team-member .img-wrap {
    background-color: var(--lightGray);
    border-radius: 0%;
    width: 100% !important;
}

.single-team-member .img-wrap img {
    mix-blend-mode: multiply;
}

.team-single-intro {
    background: url(../_img/team-icon.svg) no-repeat left 6.5px;
    background-size: 60px 60px;
    padding-left: 85px;
}

@media screen and (max-width:991px) {
    .team-single-intro {
        background: url(../_img/team-icon.svg) no-repeat left 5px;
        background-size: 45px 45px;
        padding-left: 65px;
    }
}

/* 1.9 Imprint, Privacy
##################################################### */

.page-imprint h1,
.page-privacy-policy h1 {
    margin-bottom: 30px;
}

.page-privacy-policy h2 {
    font: normal 700 var(--secondaryHead) 'Ubuntu', sans-serif;
}

.page-privacy-policy h3 {
    font: normal 700 var(--quinaryHead) 'Ubuntu', sans-serif;
    margin: 0 0 30px 0 !important;
}

.page-privacy-policy h4 {
    font: normal 700 var(--paragraphs) 'Ubuntu', sans-serif;
    margin: 0 0 30px 0 !important;
}

.error404 h1 {
    margin-bottom: 20px !important;
}

/* 2. Plugins
##################################################### */

/*2.1 Borlabs*/

#BorlabsCookieBox h3, #BorlabsCookieBox ._brlbs-h3 {
    font: normal 700 var(--smallFS) 'Ubuntu', sans-serif !important;
}

#BorlabsCookieBoxWrap * {
    font-family: 'PT Sans', sans-serif !important;
    font-style: normal !important;
}

#BorlabsCookieBoxWrap p {
    font: normal 400 var(--paragraphs) 'PT Sans', sans-serif !important;
}

#BorlabsCookieBox ._brlbs-btn {
    border-radius: 30px !important;
    font: normal 700 var(--smallerFS) 'PT Sans', sans-serif !important;
    max-width: 150px;
}

#BorlabsCookieBox .cookie-box ._brlbs-btn:hover {
    opacity: 0.75 !important;
    background-color: #02737D !important;
}

#BorlabsCookieBox #CookieBoxTextDescription {
    line-height: 120% !important;
}

#BorlabsCookieBox #CookieBoxTextDescription ._brlbs-paragraph {
    margin-bottom: 0px !important;
}

.BorlabsCookie ._brlbs-checkbox ._brlbs-checkbox-indicator {
    border-radius: 0px !important;
}

#BorlabsCookieBox ._brlbs-bar ul.show-cookie-logo {
    justify-content: flex-start !important;
}

#BorlabsCookieBox ._brlbs-flex-left {
    margin: 0 0 .75em 0 !important;
}

/*Content-Blocker*/

._brlbs-embed._brlbs-video-vimeo {
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

._brlbs-embed._brlbs-video-vimeo ._brlbs-caption {
    background-color: rgba(0, 0, 0, 0) !important;
}

._brlbs-embed._brlbs-video-vimeo ._brlbs-caption p {
    font: normal 400 var(--smallFS) 'PT Sans', sans-serif !important;
}

._brlbs-embed._brlbs-video-vimeo ._brlbs-caption p a:not(._brlbs-btn) {
    text-decoration: underline;
    color: var(--lightColor) !important;
}

._brlbs-embed._brlbs-video-vimeo ._brlbs-caption p a._brlbs-btn:hover {
    opacity: 1 !important;
}

._brlbs-embed._brlbs-video-vimeo ._brlbs-caption p a._brlbs-btn {
    border-radius: 30px !important;
}


/**/

.page-id-379 p:not(.white-text p), .page-id-379 li:not(.white-text li) {
    color: #000 !important;
}

.page-id-379 p {
    font: normal 500 1.5rem 'DM Sans', sans-serif !important;
    line-height: 1.5 !important;
}

.page-id-379 li {
    font: normal 700 1.875rem 'DM Sans', sans-serif !important;
}

.page-id-379 h1 {
    font: normal 700 4.125rem 'DM Sans', sans-serif !important;
    line-height: 1 !important;
}

.page-id-379 h1,
.page-id-379 .bg-headline h3 {

    margin-bottom: 25px !important;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
  
}

.page-id-379 h1:after,
.page-id-379 .bg-headline h3:after {
    position: absolute;
    height: 45px;
    width: 415px;
    left: 95px;
    top: 32.5px;
    content: "";
    background-color: #F2A9A6;
    z-index: 0;
    transform: translateZ(-1px);
}

.page-id-379 .symbol-bg{
    background-position: right center !important;
}

@media screen and (max-width:767px) {
    .page-id-379 .symbol-bg{
        background-image: none !important;
    } 
}


.page-id-379 .bg-headline h3:after {
    top: 25px;
}

.page-id-379 h2, .page-id-379 h3 {
    font: normal 700 2.75rem 'DM Sans', sans-serif !important;
}

.overline {
    border-top: 4px solid black;
    display: inline-block;
    margin-right: 45px;
    padding-top: 10px;
    margin-top: 40px;
    margin-bottom: 10px;
    transform: translateY(5px);
}

.btn-yellow {
    border: 2px solid black;
    margin-top: 15px;
    display: inline-block;
    color: black;
    transition: 0.35s all;
    padding: 5px 10px;
    margin-top: 40px;
    text-decoration: none !important;

}

.btn-yellow:hover {
    background-color: #F4E914;
    opacity: 1 !important;


}

.btn-arrow {
    font: normal 600 2.75rem 'DM Sans', sans-serif !important;
    padding-left: 105px;
    color: #20B593;
    text-decoration: none !important;
    background: url(../_img/Codo-Arrow.svg) no-repeat left calc(0% + 7.5px);
    background-size: 90px 45px;
    display: inline-block;
    opacity: 1 !important;
    text-decoration-color: #000 !important;
}

.btn-arrow:hover {
    text-decoration: underline !important;
    text-decoration-color: #000 !important;
    text-decoration-thickness: 4px !important;
    text-underline-offset: 10px !important;
}

.page-id-379 .vc_row li:before {
    background-image: url(../_img/Codo-Bullet.svg) !important;
    transform: translateY(3px);

}


@media screen and (max-width:991px) {
    .page-id-379 p {
        font: normal 500 1.125rem 'DM Sans', sans-serif !important;
    }

    .page-id-379 li {
        font: normal 700 1.5rem 'DM Sans', sans-serif !important;
    }

    .page-id-379 h2, .page-id-379 h3,
    .btn-arrow {
        font: normal 700 2rem 'DM Sans', sans-serif !important;
    }

    .page-id-379 h1 {
        font: normal 700 2.75rem 'DM Sans', sans-serif !important;
        line-height: 1 !important;
    }

    .page-id-379 h1:after,
    .page-id-379 .bg-headline h3:after {
        position: absolute;
        height: 35px;
        width: 275px;
        left: 15px;
        bottom: -5px;
        top: auto
    }


    .btn-arrow {
        margin-top: 30px;
        padding-left: 75px;
        background-size: 60px 30px;
    }

    .btn-arrow:hover {
        text-decoration-thickness: 3px !important;
        text-underline-offset: 7.5px !important;
    }

    .page-id-379 .vc_row li:before {
        transform: translateY(5px);

    }
}


body #container .p-b-30 .wpb_single_image,
body #container .p-t-30 .wpb_single_image {
    margin-bottom: 0px !important;
}

.p-t-30 {
    padding-top: 30px !important;
}

.p-b-30 {
    padding-bottom: 30px !important;
}

.p-t-15 {
    padding-top: 15px !important;
}

.p-b-15 {
    padding-bottom: 15px !important;
}

.page-id-379 header .container {
    padding-top: 22.5px !important;
    padding-bottom: 22.5px !important;

}

.page-id-379 header #logo svg {
    height: 65px !important;
}

.page-id-379 header #logo svg .logo-font {
    opacity: 1 !important;
}

.page-id-379 .wpb-content-wrapper {
    margin-top: 110px !important;
}

/**/

#container form.post-password-form{
    margin-top: 150px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

#container form input[type="password"] {
    display: block;
    border: 0px solid transparent;
    border-bottom: 2px solid #000;
    margin: 15px 0 10px 0;
    padding: 15px !important;
    font-size: 22px;
    font-size: 1.325rem;
    width: calc(50% - 15px) !important;
}

#container form input[type="submit"]{
    appearance: none;
    -webkit-appearance: none;
    font: normal 500 1.5rem 'DM Sans', sans-serif !important;
    line-height: 1.5 !important;
    background-color: #fff;
        border: 2px solid black;
        margin-top: 15px;
        display: inline-block;
        color: black;
        transition: 0.35s all;
        padding: 5px 10px;
        margin-top: 40px;
        text-decoration: none !important;
    
    }
    
    #container form input[type="submit"]:hover {
        background-color: #F4E914;
        opacity: 1 !important;
    
    
    }

    @media screen and (max-width: 1240px) and (min-width:992px) {
        #container form.post-password-form{
            padding: 0 45px;
        }  
    }