/*/* CSS */
/* PAGE: BBK */
/* AUTHOR: hyperstud.io */



@font-face{
    font-family:"MaisonNeue";
    src: url('../fonts/MaisonNeueMonoWEB-Regular.woff2') format('woff2'),
        url('../fonts/MaisonNeueMonoWEB-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
  font-family: 'Publico';
  src: url('../fonts/PublicoText-Roman-Web.woff2') format('woff2'),
       url('../fonts/PublicoText-Roman-Web.woff') format('woff');
  font-weight:  400;
  font-style:   normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'Publico';
  src: url('../fonts/PublicoText-Italic-Web.woff2') format('woff2'),
       url('../fonts/PublicoText-Italic-Web.woff') format('woff');
  font-weight:  400;
  font-style:   italic;
  font-stretch: normal;
}


@font-face{
    font-family:"StudioPro";
    src:url("../fonts/StudioPro-Regular.eot?#iefix") format("eot"),
    url("../fonts/StudioPro-Regular.woff2") format("woff2"),
    url("../fonts/StudioPro-Regular.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face{
    font-family:"StudioPro";
    src:url("../fonts/StudioPro-RegularItalic.woff2") format("woff2"),
    url("../fonts/StudioPro-RegularItalic.woff") format("woff"),
    url("../fonts/StudioPro-RegularItalic.eot?#iefix") format("eot");
    font-weight: 500;
    font-style: italic;
}

@font-face{
    font-family:"StudioPro";
    src:url("../fonts/StudioPro-Bold.eot?#iefix") format("eot"),
    url("../fonts/StudioPro-Bold.woff2") format("woff2"),
    url("../fonts/StudioPro-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face{
    font-family:"StudioPro";
    src:url("../fonts/StudioPro-BoldItalic.woff2") format("woff2"),
    url("../fonts/StudioPro-BoldItalic.woff") format("woff"),
    url("../fonts/StudioPro-BoldItalic.eot?#iefix") format("eot");
    font-weight: 700;
    font-style: italic;
}








html, body{
	margin:0;
	padding:0;
	font-family: Helvetica, Arial, Sans-serif;
	color:#111;
	font-size:15px;
    font-weight:500;
	width:100%;
	height:auto;
    position: relative;

    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    -webkit-touch-callout: none;

    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    
}









/* Table */

.table{
	display:table;
	width:100%;
	height:100%;
}

.table-row{
	display:table-row;
}

.table-cell{
	display:table-cell;
	width:100%;
	height:100%;	
	vertical-align: middle;
	text-align:center;
}


.onehalf, .onethird, .twothird,
.onefourth{
    display:inline-block;
    vertical-align: top;
    position: relative;
}

.onehalf{
    width:50%;
}

.onethird{
    width:33.33%;
}

.twothird{
    width:66.66%;
}

.onefourth{
    width:25%;
}


/* border-box */

*{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}







/* Header */

header{
    position: fixed;
    top:0px;
    left:0px;
    right: 0px;
    width:100%;
    max-width: 1920px;
    margin: 0 auto;
    height:80px;
    background:rgba(242,242,242,1);
    padding:20px 0 30px 0;

    z-index: 101;

    -webkit-transition:top 200ms ease-in-out, background 200ms ease-in;
    -moz-transition:top 200ms ease-in-out, background 200ms ease-in;
    transition:top 200ms ease-in-out, background 200ms ease-in;

}

header.open{
    background:rgba(242,242,242,0);
}

header.invisible{
    top:-100px;
}

.bbk-logo{
    position: relative;
    padding-left:60px;
}

.bbk-logo .title{
    position: relative;
    top:-2px;
    line-height: 1em;    
}

.bbk-logo:before{
    content:"";
    position: absolute;
    top:0px;
    left:0px;
    width:40px;
    height:40px;
    background:url(../img/buergerrat-klima-logo.svg);
    background-size:100% auto;
    background-repeat: no-repeat;
}


header .spenden{
    position: absolute;
    top:-3px;
    right:120px;
    background:#fff;
    padding: 5px 8px 9px 8px;
    border-radius: 7px;
}


nav{
    position:fixed;
    top:0px;
    left:0px;
    right: 0px;
    margin:auto;
    width:100%;
    max-width: 1920px;
    height:100%;
    padding:80px 0 0 0;
    background: rgb(70,127,255);
    background: linear-gradient(90deg, rgba(70,127,255,1) 0%, rgba(240,247,211,1) 100%);
    z-index: 100;
    overflow-y:scroll;
    -webkit-overflow-scrolling: touch;
    display:none;
}

nav.open{

}

nav .wrapper{
    text-align: left;
    padding:0 100px;
}

nav .onethird{
    margin-bottom:20px;
}

nav .onethird.has_children{
    margin-bottom:50px;
}

nav .onethird.has_children .parent{
    max-width: 300px;
    margin-bottom: 25px;
}

nav .onethird.has_children .child{
    margin-bottom:15px;
    max-width: 420px;
    text-transform: capitalize;
}



nav .child{

}


nav a{
    display: block;
}



#mobile{
    position: absolute;
    /*top:28px;*/
    top:8px;
    right:40px;
    width:35px;
    height:25px;
    cursor:pointer;
    z-index: 103;

    -webkit-transition:top 200ms ease-in-out;
    -moz-transition:top 200ms ease-in-out;
    transition:top 200ms ease-in-out;
}

#mobile.invisible{
    top:-72px;
}


#mobile .line{ 
   position: absolute; 
   left:0px;
   height:3px;
   width:35px; 
   background: #263b7b;
   display: block; 
   transform-origin: center; 
}

#mobile .line:nth-child(1) { top: 0px; }
#mobile .line:nth-child(2) { top: 10px; }
#mobile .line:nth-child(3) { top: 20px; }



#mobile.active .line:nth-child(1){
    transform:rotate(45deg);
    top:10px;
}

#mobile.active .line:nth-child(2){
    display: none;
}

#mobile.active .line:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
}










/* Template */

#wrapper{
    display:block;
    width:100%;
    height:100%;
    max-width: 1920px;
    margin:0 auto;
    opacity: 1;
    overflow-x:hidden;
}

.wrapper{
    position: relative;
    display: block;
    width:100%;
    max-width:1920px;
    margin:0 auto;
    padding:0 20px;
}

.wrapper.small{
    max-width:1400px;
    padding:0 70px;
    width: 80%;
    min-width: 920px;
}


section .wrapper{
    padding:0 50px;
}


main{
    padding-top:80px;
    height: auto;

    opacity: 1;
    -webkit-transition:opacity 200ms ease-in-out;
    -moz-transition:opacity 200ms ease-in-out;
    transition:opacity 200ms ease-in-out;
}

main.fadeout{
    opacity: 0.5;
}








/* Pages */

.page{
    display: block;
    padding-top:100px;
    padding-bottom:100px;
    background:#fff;
    min-height:100vh;
}

.page section.module{
    margin-bottom:120px;
}

.page section.module.style-1 .title{
    margin-bottom:120px;
}



/* Modules */

#template main{

}

#template section{
    position: relative;
}

#template section.module.pad-0{
    margin-bottom:0px !important;
}

#template section.module.pad-1{
    margin-bottom:30px;
}

#template section.module.pad-2{
    margin-bottom:50px;
}

#template section.module.pad-3{
    margin-bottom:80px;
}

#template section.module.pad-4{
    margin-bottom:130px;
}


/* Module Text */
#template section.module.style-1 .title{
    display: block;
    margin-bottom:30px;
}

/* Module Link */
#template section.module.style-2 .btn.small{
    margin-top:0px;
}

#template section.module.style-2 .wrapper.align-1{
    text-align: center;
}

#template section.module.style-2 .wrapper.align-2{
    text-align: right;
}

/* Module Images */
#template section.module.style-3 .photos{
    display: block;
    margin-left:-20px;
}

#template section.module.style-3 .photo{
    display: inline-block;
    vertical-align: top;
    width:100%;
    padding-left:20px;
    margin-bottom:80px;
}

#template section.module.style-3 .photo.last{
    margin-bottom:0px !important;
}

#template section.module.style-3 .photos.cells-2 .photo{
    width:50%;
}

#template section.module.style-3 .photos.cells-3 .photo{
    width:33.33%;
}

#template section.module.style-3 .photo:not(.has_symbol) .img-wrapper{
    border-radius:10px;
    overflow: hidden;
}

#template section.module.style-3 .photos.cells-4 .photo{
    width:25%;
}

#template section.module.style-3 .photo img{
    width:100%;
    height:auto;
}

#template section.module.style-3 .photo.has_symbol .img-wrapper{
    padding-top:40%;
    position: relative;
}

#template section.module.style-3 .photo.has_symbol .img-wrapper img{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    margin:auto;
    width:100%;
    height:100%;
    /*
    max-width:80%;
    max-height:80%;
    max-width:520px;
    max-height:240px;*/
    max-width:480px;
    max-height:240px;


    object-fit: contain;
}

#template section.module.style-3 .photo .img-title{
    display: block;
    margin-top:30px;
}

/* Module Header */
#template section.module.style-4{
    background:#A5BAEC;
    background-size:cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    height:500px;
}

#template section.module.style-4:not(.has_bg):not(.has_bg_color){
    background-image:url(../img/gradient-header.png);
}

#template section.module.style-4.background-width-0:not(.has_bg):not(.has_bg_color){
    background-image:url(../img/gradient-meeting.png);
}

#template section.module.style-4 .table{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}

#template section.module.style-4 .content{
    display: block;
    text-align: left;
    position: relative;
    z-index: 2;
}



#template section.module.style-4.news-module .text,
#template section.module.style-4.press-module .text{
    font-size:50px;
    line-height: 1.2em;
}

#template section.module.style-4 .date{
    display: block;
    margin-top:42px;
}

#template section.module.style-4 .front{
    position: absolute;
    top:0px;
    right:50px;
    bottom:0px;
    width:auto;
    height:250px;
    margin:auto;
    border-radius:10px;
    object-fit:contain;
}

#template section.module.style-4 .wrapper.has_symbol .front{
    /*
    max-width:400px;
    height:400px;
    */

    max-width: 320px;
    height: 320px;
}






/* Slideshow */

#template section.module.style-5{

}

#template section.module.style-5 .slideshow .slide{
    display: block;
    width:100%;
}

#template section.module.style-5 .slideshow .slide img{
    width:100%;
    height: auto;
}

#template section.module.style-5 .slideshow-wrapper .slideshow-title{
    display: block;
    margin-top:10px;
}




/* Banner */

#template section.module.style-6{
    background:url(../img/gradient-banner.png);
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#template section.module.style-6 .wrapper{
    padding-top:150px;
    padding-bottom:150px;
}

#template section.module.style-6 .wrapper .text{
    display: block;
}

#template section.module.style-6 .wrapper .btn:not(.small){
    margin-top:50px;
}

#template section.module.style-6 .wrapper .btn.small{
    margin-top:0px;
}

/* Drop-Down */

#template section.module.style-7{

}

#template section.module.style-7 .title{
}

#template section.module.style-7 .excerpt{
    margin-top:20px;
}

#template section.module.style-7 .content{
    display: none;
}

#template section.module.style-7 .wrapper > .content:before{
    content:"";
    display: block;
    height:30px;
}

#template section.module.style-7 .dropdown .more{
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding:18px 0px 0px 70px;
    font-size:17px;
    font-weight: 700;
    margin-top:30px;
    cursor: pointer;
}

#template section.module.style-7 .dropdown .more:before{
    content: "";
    position: absolute;
    top:0px;
    left:0px;
    width:50px;
    height:50px;
    background: #142969;
    border-radius: 100%;

}

#template section.module.style-7 .dropdown .more:after{
    content: "";
    position: absolute;
    top:0px;
    left:0px;
    width:50px;
    height:50px;
    background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTAwIDEwMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGQ9Ik0xNy41LDgyLjVjMSwxLDIuNCwxLjYsMy44LDEuNnMyLjctMC41LDMuOC0xLjZsMjUtMjVsMjUsMjVjMSwxLDIuNCwxLjYsMy44LDEuNnMyLjctMC41LDMuOC0xLjZjMi4xLTIuMSwyLjEtNS41LDAtNy41ICBsLTI1LTI1bDI1LTI1YzIuMS0yLjEsMi4xLTUuNSwwLTcuNWMtMi4xLTIuMS01LjQtMi4xLTcuNSwwbC0yNSwyNWwtMjUtMjVjLTIuMS0yLjEtNS40LTIuMS03LjUsMGMtMi4xLDIuMS0yLjEsNS41LDAsNy41bDI1LDI1ICBsLTI1LDI1QzE1LjQsNzcuMSwxNS40LDgwLjQsMTcuNSw4Mi41eiI+PC9wYXRoPjwvc3ZnPg==);
    background-size: 62% auto;
    background-position: center center;
    background-repeat: no-repeat;

    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    transform:rotate(45deg);

    -webkit-transition:transform 400ms ease-in-out;
    -moz-transition:transform 400ms ease-in-out;
    transition:transform 400ms ease-in-out;

}

#template section.module.style-7 .dropdown.open .more:after{

    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    transform:rotate(0deg);

}

#template section.module.style-7 .content .pdfs{
    margin-top:30px;
}


/* People */

#template section.module.style-8{
    padding:5px 20px 50px 20px;
    background:#fff;
}

#template section.module.style-8 .wrapper{
    padding-left:0px;
    padding-right:0px;
}


#template section.module.style-8 .people{
    display: block;
    margin-left:-20px;
    text-align:center;
}

#template section.module.style-8 .people .person{
    display: inline-block;
    vertical-align: top;
    width:25%;
    padding-left:20px;
    margin-bottom:30px;
}

#template section.module.style-8 .people .person img{
    width:100%;
    height:auto;
    overflow: hidden;
    border-radius: 10px;        
}

#template section.module.style-8 .people .person .title{
    display: block;
    margin-top:10px;
    text-align: left;
}




/* Logos */

#template section.module.style-9{
    background:#fff;
    padding-top:50px;
    padding-bottom:20px;
}

#template section.module.style-9 .logos{
    display: block;
    margin-left:-40px;
    padding:0 20px;
}

#template section.module.style-9 .logos .logo{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width:25%;
    padding-left:40px;
    margin-bottom:120px;
}

#template section.module.style-9 .logos .logo .img-wrapper{
    position: relative;
    width:100%;
    padding-top:25%;
}

#template section.module.style-9 .logos .logo .img-wrapper img{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    max-width:100%;
    width:auto;
    height:100%; 
    margin:auto;
    object-fit:contain;
}

#template section.module.style-9 .logos .logo .title{
    display: block;
    margin-top:20px;
    text-align: left;
}


/* Pdfs */

/* Javscript */


/* Quote */

#template section.module.style-12{
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#template section.module.style-12.news-module{
    background-color:#ff4a4a;
}

#template section.module.style-12.press-module{
    background-color:#99ccff;
}

#template section.module.style-12:not(.news-module):not(.press-module):not(.has_bg_color){
    background-image:url(../img/gradient-quote.jpg);
}

#template section.module.style-12.background-width-0:not(.news-module):not(.press-module):not(.has_bg_color){
    background-image:url(../img/gradient-banner.png);
}


#template section.module.style-12 .wrapper{
    padding-top:100px;
    padding-bottom:100px;
}

#template section.module.style-12 .title{
    display: block;
}

#template section.module.style-12 .text{
    display: block;
    margin-top:30px;
    max-width:640px;
}



/* Schedule */

#template section.module.style-13{
    background:#fff;
}

#template section.module.style-13 .step{
    position: relative;
    display: block;
    font-family: 'Publico', Helvetica, Arial, Sans-serif;
    font-size:25px;
    line-height: 1.3em;
    padding-bottom:100px;
    padding-left:100px;
    opacity: 0;

    transition:all 400ms ease-in-out;
}

#template section.module.style-13 .step:last-child{
    padding-bottom:0px;
}

#template section.module.style-13 .step:before{
    content:"";
    display: inline-block;
    vertical-align: top;
    position: absolute;
    top:8px;
    left:20px;
    width:4px;
    height:0px;
    background:#0f276d;

    transition:height 800ms ease-in-out;
}


#template section.module.style-13 .step:after{
    content:"";
    display: inline-block;
    vertical-align: top;
    position: absolute;
    top:8px;
    left:3px;
    width:30px;
    height:30px;
    border:4px solid #0f276d;
    border-radius: 100%;
    background:#fff;
}

/* Schedule Animation */

#template section.module.style-13 .schedules.animated .step:nth-child(2),
#template section.module.style-13 .schedules.animated .step:nth-child(2):before{
    transition-delay:800ms;
}

#template section.module.style-13 .schedules.animated .step:nth-child(3),
#template section.module.style-13 .schedules.animated .step:nth-child(3):before{
    transition-delay:1600ms;
}

#template section.module.style-13 .schedules.animated .step:nth-child(4),
#template section.module.style-13 .schedules.animated .step:nth-child(4):before{
    transition-delay:2400ms;
}

#template section.module.style-13 .schedules.animated .step:nth-child(5),
#template section.module.style-13 .schedules.animated .step:nth-child(5):before{
    transition-delay:3200ms;
}

#template section.module.style-13 .schedules.animated .step:nth-child(6),
#template section.module.style-13 .schedules.animated .step:nth-child(6):before{
    transition-delay:4000ms;
}

#template section.module.style-13 .schedules.animated .step{
    opacity: 1;
}

#template section.module.style-13 .schedules.animated .step:before{
    height:100%;
}

#template section.module.style-13 .schedules .step:last-child:before{
    display: none;
}

#template section.module.style-13 .schedules .step .title{
    margin-bottom:20px;
}

#template section.module.style-13 .schedules .step .content{
    width:500px;
}

#template section.module.style-13 .schedules .step .content .image{
    position: relative;
    display: block;
    padding-top:66%;
    margin-bottom:10px;
}

#template section.module.style-13 .schedules .step .content .image img{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    width:100%;
    height:100%;
    margin:auto;

    object-fit: cover;
}

#template section.module.style-13 .schedules .step .content .image.has_symbol{
    background:url(../img/gradient-step.jpg);
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#template section.module.style-13 .schedules .step .content .image.has_symbol img{

    width:70%;
    height:70%;
    object-fit: contain;

}









/* Links */

#template section.module.style-14 .links .link{
    display: inline-block;
    vertical-align: top;
    margin-bottom:10px;
}
/*
#template section.module.style-14 .links .link .onehalf.first{
    width:10%;
    width:calc(60px);
    line-height:1em;
}

#template section.module.style-14 .links .link .onehalf.second{
    width:90%;
    width:calc(100% - 60px);
    line-height: 1em;
}*/



#template section.module.style-14 .links .link div{
    display:block;
    line-height: 1em;
}

#template section.module.style-14 .links .link:hover div{
    color:#99CCFF;
}



/* Photos & Graphics */

#template section.module.style-17 .header{
    background:#F2F2F2;
    padding:10px;
    margin-bottom:20px;
}


#template section.module.style-17 .photos{
    display: block;
    margin-left: -20px;
}

#template section.module.style-17 .photos .photo{
    padding-left:20px;
    margin-bottom:20px;
}

#template section.module.style-17 .photos .photo .image{
    position: relative;
    display: block;
    padding-top:56%;
}

#template section.module.style-17 .photos .photo .image img{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    margin:auto;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

#template section.module.style-17 .photos .photo .bottom{
    position: relative;
    padding-top:10px;
}

#template section.module.style-17 .photos .photo .bottom .title{
    display: block;
    margin-right:53px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#template section.module.style-17 .photos .photo .bottom .icon-download{
    position: absolute;
    top:0px;
    right:20px;
    bottom:0px;
    margin:auto 0;
    width: 23px;
    height: 35px;
}

#template section.module.style-17 .photos .photo .bottom .icon-download svg{
    width: auto;
    height:100%;
}



/* Newsletter */

#template section.module.style-19{
    background:url(../img/newsletter.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#template section.module.style-19 .wrapper{
    padding-top:40px;
    padding-bottom:40px;
    padding-left:60px;
    padding-right:20px;
    max-width: 1680px;
}

#template section.module.style-19 .onethird.first{
    width:25%;
    padding-left:60px;
}

#template section.module.style-19 .onethird.second{
    width:50%;
}

#template section.module.style-19 .onethird.third{
    width:25%;
}

#template section.module.style-19 .btn-mailchimp{
    margin-top:20px;
}

#template section.module.style-19 .btn-mailchimp a{
    text-decoration: underline;
}

#template section.module.style-19 .onethird.second .input{
    display: inline-block;
    vertical-align: top;
    width:33.33%;
    padding-right:10px;
}

#template section.module.style-19 .onethird.first h2.s2{
    font-size:34px;
    position: relative;
    top:-2px;
}


#template section.module.style-19 .onethird input[type="email"],
#template section.module.style-19 .onethird input[type="text"]{
    width:100%;
    border:none;
    border-radius:8px;
    background:#fff;
    padding: 8px 10px 10px 10px;
    font-family: 'StudioPro', Helvetica, Arial, Sans-serif;
    font-size:24px; 
    font-weight:500;

}

#template section.module.style-19 .onethird button[type="submit"]{
    border:none;
    border-radius:8px;
    background:#142969;
    padding: 8px 12px 12px 12px;
    color:#fff;
    font-size:28px;
    margin-top:0px;
    cursor: pointer;
}

#template section.module.style-19 .text{
    display: block;
    margin-top:20px;
}

#template section.module.style-19 .newsletter-gdpr-field{
    position: relative;
    display: block;
    margin-top:10px;
}


#template section.module.style-19 .read-more{
    display: inline-block;
    vertical-align: top;    
    cursor:pointer;
}

#template section.module.style-19 .content .read-more{
    margin-top:20px;
    margin-bottom:10px;
}

#template section.module.style-19 .content{
    display: none;
}

#template section.module.style-19 .content:before{
    content:"";
    display: block;
    height:20px;
}

#template section.module.style-19 input[type="checkbox"] {
    position: absolute;
    left: -15px;
    opacity: 0;
}


#template section.module.style-19 input[type="checkbox"]+label{
    position: relative;
    display: block;
    padding-left:27px;
    cursor: pointer;
}

#template section.module.style-19 input[type="checkbox"]+label:before {
    content: "";
    position: absolute;
    top:2px;
    left:0px;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    border: 2px solid #fff;
    background-color: transparent;
}

#template section.module.style-19 input[type="checkbox"]:checked+label:before {
    background-color: #fff;
    background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjMGYyNzZkIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOmNjPSJodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9ucyMiIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiIHhtbG5zOmlua3NjYXBlPSJodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy9uYW1lc3BhY2VzL2lua3NjYXBlIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwtOTUyLjM2MjE4KSI+PHBhdGggc3R5bGU9InRleHQtaW5kZW50OjA7dGV4dC10cmFuc2Zvcm06bm9uZTtkaXJlY3Rpb246bHRyO2Jsb2NrLXByb2dyZXNzaW9uOnRiO2Jhc2VsaW5lLXNoaWZ0OmJhc2VsaW5lO2NvbG9yOiMwMDAwMDA7ZW5hYmxlLWJhY2tncm91bmQ6YWNjdW11bGF0ZTsiIGQ9Im0gNzAuOTIwMTY2LDk4MS4zNDEwMyBhIDYuMDAwNiw2LjAwMDYgMCAwIDAgLTQuMTI1LDEuODEyNSBjIC05LjM2MTY4LDkuMzgyIC0xNi41NzksMTcuMjQ4NjcgLTI1LjE1NjI1LDI2LjAzMTI3IGwgLTguNzE4NzUsLTcuMzc1IGEgNi4wMDA2LDYuMDAwNiAwIDEgMCAtNy43NSw5LjE1NjIgbCAxMywxMSBhIDYuMDAwNiw2LjAwMDYgMCAwIDAgOC4xMjUsLTAuMzQzNyBjIDEwLjc5MDYsLTEwLjgxMzggMTguNDU3MjgsLTE5LjQzNDUgMjksLTI5Ljk5OTk3IGEgNi4wMDA2LDYuMDAwNiAwIDAgMCAtNC4zNzUsLTEwLjI4MTMgeiIgZmlsbD0iIzBmMjc2ZCIgZmlsbC1vcGFjaXR5PSIxIiBtYXJrZXI9Im5vbmUiIHZpc2liaWxpdHk9InZpc2libGUiIGRpc3BsYXk9ImlubGluZSIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L2c+PC9zdmc+);
    background-size:20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

#template section.module.style-19 .radios{
    display: block;
    margin-top:10px;
}

#template section.module.style-19 .radios .form-control{
    display: grid;
    grid-template-columns: 1em auto;
    gap: 10px;
    cursor:pointer;
}

#template section.module.style-19 .radios input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;  
    transform: translateY(3px);
    display: grid;
    place-content: center;
    cursor:pointer;
}

#template section.module.style-19 .radios input[type="radio"]:before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background:#263b7b;
    display: none;
}

#template section.module.style-19 .radios input[type="radio"]:checked{
    background:#fff;
}

#template section.module.style-19 .radios input[type="radio"]:checked:before {
    display: inline-block;
    vertical-align: top;
}


#template section.module.style-19 .radios .form-control + .form-control {
  margin-top: 5px;
}



.cr_ipe_item.inactive {
    display:none
}
.clever_form_error{
    /*border:2px solid #f22 !important*/
    box-shadow: inset 0 0 0 5px red;
}

.clever_form_note {
    margin:26px 0 0 3px;
    position:absolute;
    display:inline;
    padding: 2px 4px;
    font-weight:bold;
    background-color:#f2ecb5;
    color:#000;
    font-size:12px !important;
}

/*
.cr_ipe_item input{
    background: none repeat scroll 0 0 #eeeeee;
    border: 1px solid #aaa;
    padding: 0px;
    margin: 0px;
    width:20px;
    height:20px;
    font-family: Helvetica;
    font-size: 16px;
    border-radius: 2px;
    -webkit-appearance: auto;
}*/



/* Intro */

#template section.module.style-20{
    background-image:url(../img/gradient-intro.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size:100% 100%;
}


#template section.module.style-20 .wrapper.intro{
    height:100vh;
    padding-top:150px;
    min-height: 760px
}

#template section.module.style-20 .wrapper.intro .bottom{
    position: absolute;
    bottom:150px;
    left:70px;
}

#template section.module.style-20 .looper{

}

#template section.module.style-20 .no-looper{
    text-align: center;
    white-space: nowrap;
}

#template section.module.style-20 .supporter{
    display: inline-block;
    vertical-align: top;
    position: relative;
    width:20%;
    margin:0 10px;
    overflow: hidden;
    border-radius: 10px;
}

#template section.module.style-20 .supporter img{
    width:100%;
    height:auto;
}

#template section.module.style-20 .wrapper.appell{

    padding-top:150px;
    padding-bottom:150px;

}





/* Header Ticker */

.ticker{
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background:#F5FD37;

}

.ticker .entries{
    white-space: nowrap;
}

.ticker .entry{
    display: inline-block;
    vertical-align: top;
    width:auto;
    padding:11px 0 15px 0;
    text-align: center;
    min-width: 420px;
}

.ticker .entry u{
    margin: 0 35px;
    text-decoration: none;
    border-bottom: 4px solid #263b7b;
}




/* Logo */

#template section.module.style-21 .wrapper{
    padding-top:150px;
    padding-bottom:150px;
}

#template section.module.style-21 .logo{
    display: block;
}

#template section.module.style-21 .onehalf.first{
    width:calc(200px);
    text-align: right;

}

#template section.module.style-21 .onehalf.second{
    width:calc(100% - 200px);
    padding-left:100px;
}

#template section.module.style-21 .logo .circle{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width:200px;
    height:200px;
}

#template section.module.style-21 .logo .circle .point{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    width:200px;
    height:20px;
    margin:auto;

    -webkit-transition:1ms opacity ease-in-out;
    -moz-transition:1ms opacity ease-in-out;
    transition:1ms opacity ease-in-out;

}

#template section.module.style-21 .wrapper .logo .circle .point:not(.first){
    opacity: 0;
}

#template section.module.style-21 .logo .circle .point:before{
    content:"";
    position: absolute;
    top:0px;
    right:0px;
    width:20px;
    height:20px;
    background:#263b7b;
    border-radius: 100%;
}

#template section.module.style-21 .logo .circle .point:nth-child(1){
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    transform:rotate(-90deg);

    -webkit-transition-delay:1100ms;
    -moz-transition-delay:1100ms;
    transition-delay:1100ms;       
}

#template section.module.style-21 .logo .circle .point:nth-child(2){
    -webkit-transform:rotate(-60deg);
    -moz-transform:rotate(-60deg);
    transform:rotate(-60deg);

    -webkit-transition-delay:1000ms;
    -moz-transition-delay:1000ms;
    transition-delay:1000ms;          
}

#template section.module.style-21 .logo .circle .point:nth-child(3){
    -webkit-transform:rotate(-30deg);
    -moz-transform:rotate(-30deg);
    transform:rotate(-30deg);

    -webkit-transition-delay:900ms;
    -moz-transition-delay:900ms;
    transition-delay:900ms;      
}

#template section.module.style-21 .logo .circle .point:nth-child(4){
    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    transform:rotate(0deg);

    -webkit-transition-delay:800ms;
    -moz-transition-delay:800ms;
    transition-delay:800ms;      
}

#template section.module.style-21 .logo .circle .point:nth-child(5){
    -webkit-transform:rotate(30deg);
    -moz-transform:rotate(30deg);
    transform:rotate(30deg);

    -webkit-transition-delay:700ms;
    -moz-transition-delay:700ms;
    transition-delay:700ms;        
}

#template section.module.style-21 .logo .circle .point:nth-child(6){
    -webkit-transform:rotate(60deg);
    -moz-transform:rotate(60deg);
    transform:rotate(60deg);

    -webkit-transition-delay:600ms;
    -moz-transition-delay:600ms;
    transition-delay:600ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(7){
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    transform:rotate(90deg);

    -webkit-transition-delay:500ms;
    -moz-transition-delay:500ms;
    transition-delay:500ms; 
}

#template section.module.style-21 .logo .circle .point:nth-child(8){
    -webkit-transform:rotate(120deg);
    -moz-transform:rotate(120deg);
    transform:rotate(120deg);

    -webkit-transition-delay:400ms;
    -moz-transition-delay:400ms;
    transition-delay:400ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(9){
    -webkit-transform:rotate(150deg);
    -moz-transform:rotate(150deg);
    transform:rotate(150deg);

    -webkit-transition-delay:300ms;
    -moz-transition-delay:300ms;
    transition-delay:300ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(10){
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    transform:rotate(180deg);    

    -webkit-transition-delay:200ms;
    -moz-transition-delay:200ms;
    transition-delay:200ms;      
}

#template section.module.style-21 .logo .circle .point:nth-child(11){
    -webkit-transform:rotate(210deg);
    -moz-transform:rotate(210deg);
    transform:rotate(210deg);

    -webkit-transition-delay:100ms;
    -moz-transition-delay:100ms;
    transition-delay:100ms;      
}

#template section.module.style-21 .logo .circle .point:nth-child(12){
    -webkit-transform:rotate(240deg);
    -moz-transform:rotate(240deg);
    transform:rotate(240deg);    

    -webkit-transition-delay:0ms;
    -moz-transition-delay:0ms;
    transition-delay:0ms;      
}





/* reverse */

#template section.module.style-21 .logo .circle .point:nth-child(1){
    -webkit-transition-delay:100ms;
    -moz-transition-delay:100ms;
    transition-delay:100ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(2){
    -webkit-transition-delay:200ms;
    -moz-transition-delay:200ms;
    transition-delay:200ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(3){
    -webkit-transition-delay:300ms;
    -moz-transition-delay:300ms;
    transition-delay:300ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(4){
    -webkit-transition-delay:400ms;
    -moz-transition-delay:400ms;
    transition-delay:400ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(5){
    -webkit-transition-delay:500ms;
    -moz-transition-delay:500ms;
    transition-delay:500ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(6){
    -webkit-transition-delay:600ms;
    -moz-transition-delay:600ms;
    transition-delay:600ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(7){
    -webkit-transition-delay:700ms;
    -moz-transition-delay:700ms;
    transition-delay:700ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(8){
    -webkit-transition-delay:800ms;
    -moz-transition-delay:800ms;
    transition-delay:800ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(9){
    -webkit-transition-delay:900ms;
    -moz-transition-delay:900ms;
    transition-delay:900ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(10){
    -webkit-transition-delay:1000ms;
    -moz-transition-delay:1000ms;
    transition-delay:1000ms;     
}

#template section.module.style-21 .logo .circle .point:nth-child(11){
    -webkit-transition-delay:1100ms;
    -moz-transition-delay:1100ms;
    transition-delay:1100ms; 
}

#template section.module.style-21 .logo .circle .point:nth-child(12){
    -webkit-transition-delay:1200ms;
    -moz-transition-delay:1200ms;
    transition-delay:1200ms;     
}

#template section.module.style-21 .wrapper .logo .circle .point.last:before{
    background:#9ACBFF;
}

#template section.module.style-21 .wrapper.animated .logo .circle .point{
    opacity: 1;
}

#template section.module.style-21 .logo .logo-title{
    font-size:114px;
    line-height: 1em;
    letter-spacing: 0.02em;
    color:#263b7b;
    position: relative;
    top: -18px;    
}

#template section.module.style-21 .title{
    display: block;
    margin-top:50px;
    margin-bottom:50px;
}

#template section.module.style-21 .text{
    display: block;
    max-width:1040px;
    margin:0 auto;
}


/* Presentation */

#template section.module.style-25{
    position: relative;
}

#template section.module.style-25 .presentation{
    display: block;
}

#template section.module.style-25 .presentation .slide{
    width:100%;
}

#template section.module.style-25 .presentation .slide .onehalf.first{
    background:#fff;
}

#template section.module.style-25 .presentation .slide .onehalf.first img{
    width:100%;
    height:auto;
}

#template section.module.style-25 .presentation .slide .onehalf.second{
    padding:50px 80px;
    /*background: linear-gradient(-15deg, #CFCBCE, #364DC4, #1D94CB);    */
    background: linear-gradient(-15deg, #fdfdc9, #6a87e9, #364DC4);    
    position: absolute;
    top:0px;
    left:50%;
    width:50%;
    height:100%;
}


#template section.module.style-25 .presentation .slide .onehalf.second .text{
    display: block;
    margin:50px 0 0 0;
}

#template section.module.style-25 .presentation.no-paginator .flickity-page-dots{
    display: none;
}


/* Profile Picture Generator */

#template section.module.style-26 .pbg-container{
    display: inline-block;
}

.fff-profile-picture-generator,
.fff-profile-picture-generator--image{
    max-width:580px !important;
}

.fff-profile-picture-generator--button-group{
    margin-bottom:10px !important;
}

#template section.module.style-26 .fff-profile-picture-generator--button{
    background:#263b7b !important;
    color:#E5E7E4 !important;    
    font-size:40px;
    font-family: 'StudioPro', Helvetica, Arial, Sans-serif;
    font-feature-settings: 'ss10';
    font-weight: 700;
    padding:4px 7px 10px 7px;
    border-radius:10px;
    margin-top:20px;
    line-height: 1em;
    white-space: nowrap;
}

.fff-profile-picture-generator--privacy-note{
    font-family: 'MaisonNeue', Helvetica, Arial, Sans-serif !important;
    font-size:15px !important;
    line-height:1.3em;
    color:#263b7b !important;
}

a.fff-profile-picture-generator--privacy-note{
    text-decoration: underline;
}




#preloader{
    position: fixed;
    width:40px;
    height:40px;
    top:50%;
    left:50%;
    bottom:auto;
    margin-top:-20px;
    margin-left:-20px;
    z-index:9999;
    pointer-events:none;

    border: 4px solid #263b7b;
    border-radius: 50%;
    border-color: transparent rgba(0,0,0,1) rgba(0,0,0,1);
    animation: cssload-spin 1s infinite linear;
    -webkit-animation: cssload-spin 1s infinite linear;
    -moz-animation: cssload-spin 1s infinite linear;

}


@keyframes cssload-spin {
    100%{ transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes cssload-spin {
    100%{ -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-moz-keyframes cssload-spin {
    100%{ -moz-transform: rotate(360deg); transform: rotate(360deg); }
}




/* News */

.news{
    display: block;
    margin-left:-20px;
    padding-left:20px;
    padding-right:20px;
}

.news .onethird{
    padding-left:20px;
    margin-bottom:20px;
    
}

.news .onethird .background{
    position: relative;
    width:100%;
    padding-top:70%;
    border-radius:10px;
    overflow: hidden;
    background:#ff4a4a;
}

.news .onethird .background img{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    width:100%;
    height:100%;
    margin:auto;
    object-fit: cover;
}

.news .onethird .overlay{
    position: absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
}

.news .onethird.has_bg .overlay{
    background:rgba(0,0,0,0.2);    
}

.news .onethird .title{
    display: block;
    width:80%;
    margin:0 auto;
}

.news .onethird .date{
    position: absolute;
    right:20px;
    bottom:20px;
    left:20px;
    margin:0 auto;
}

.news .onethird .excerpt{
    display: block;
    margin-top:10px;
    min-height:78px;
}




.pdfs .pdf{
    position: relative;
    display: block;
    padding:12px 10px 10px 10px;
    border-bottom:1px solid #f2f2f2;
    min-height:70px;
    background:#F2F2F2;
    margin-bottom:2px;
}

.pdfs .pdf:last-child{
    border-bottom: none;
}

.pdfs .pdf .content{
    display: block;
}

.pdfs .pdf .onehalf.first{
    width:30%;
    cursor:default;
}

.pdfs .pdf .onehalf.second{
    width:70%;
}

.pdfs .pdf .wysiwyg{
    color:#0f276d;
}

.pdfs .pdf .onehalf.second .wysiwyg{
    display: block;
    margin-right:120px;
    max-width:400px;
}

.pdfs .pdf .icon{
    position: absolute;
    top:14px;
    right:20px;
    width:30px;
    height:45px;
}

.pdfs .pdf .icon.icon-download{
    right:80px;
}

.pdfs .pdf .icon svg{
    width:auto;
    height:100%;
}

/*
.pdfs .pdf:not(.first) .icon.icon-download svg path,
.pdfs .pdf:not(.first) .icon.icon-download svg line{
    stroke:#f2f2f2;
    fill:none;
}

.pdfs .pdf:not(.first) .icon.icon-pdf svg path{
    fill:#f2f2f2;
}


.pdfs .pdf.first{
    background: #F2F2F2;
}

.pdfs .pdf.first .wysiwyg{
    color:#0f276d;
}*/






.events .event{
    position: relative;
    display: block;
    padding:13px 10px;
    border-bottom:1px solid #f2f2f2;
    min-height:80px;
}

.events .event:last-child{
    border-bottom: none;
}

.events .event .onehalf.first{
    width:30%;
}

.events .event .onehalf.second{
    width:70%;
}

.events .event .wysiwyg{
    color:#C7C7C7;
}

.events .event .onehalf.second .wysiwyg{
    display: block;
    margin-right:120px;
    max-width:400px;
}

.events .event.first{
    background: #F2F2F2;
}

.events .event.first .wysiwyg{
    color:#0f276d;
}

.events .event .signup{
    position: absolute;
    top:10px;
    right:20px;
    bottom:10px;
    margin:auto 0;
    background:#0f276d;
    color:#fff;
    padding:7px 16px 6px 16px;
    border-radius: 8px;
    height:30px;
    line-height:1em;
}


.informations .header{
    background:#f2f2f2;
    padding:10px;
}

.informations .information{
    position: relative;
    display: block;
    padding:13px 10px;
    border-bottom:1px solid #f2f2f2;
}

.informations .information .content{
    display: block;
}

.informations .information:hover{
    /*background:#f2f2f2;*/
}

.informations .information:last-child{
    border-bottom: none;
}

.informations .information .onehalf.first{
    width:70%;
}

.informations .information .onehalf.second{
    width:30%;
}


.informations .information .icon{
    position: absolute;
    top:10px;
    right:20px;
    width:23px;
    height:35px;
    pointer-events: none;
}

.informations .information .icon svg{
    width:auto;
    height:100%;
}






#template section.module .list{

}

#template section.module .list .onehalf.first{
    width:12%;
    width:calc(100px);
}

#template section.module .list .onehalf.second{
    width:88%;
    width:calc(100% - 100px);
}


#template #share{
    display: block;
    padding-bottom:60px;
}

.share-small .icon{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width:30px;
    height:30px;    
    top:-3px;
    background-position: center center;
    background-repeat: no-repeat;    
    background-size:auto 25px;
    opacity: 0.9;
}

.share-small .icon:hover{
    opacity: 1;
}

.share-small .icon-twitter{
    background-image:url(../img/icon-twitter-white.svg);
    margin-left:10px;
}

.share-small .icon-facebook{
    background-image:url(../img/icon-facebook-white.svg);
}

.share-small .icon-email{
    width:40px;
    background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjRkZGRkZGIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOmNjPSJodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9ucyMiIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiIHhtbG5zOmlua3NjYXBlPSJodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy9uYW1lc3BhY2VzL2lua3NjYXBlIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwtOTUyLjM2MjE4KSI+PHBhdGggc3R5bGU9ImNvbG9yOiMwMDAwMDA7ZW5hYmxlLWJhY2tncm91bmQ6YWNjdW11bGF0ZTsiIGQ9Ik0gMTQuMDkzNzUsOTc1LjM2MjE2IDUwLDEwMDUuNzM3MiBsIDM1LjkwNjI1LC0zMC4zNzUwNCAtNzEuODEyNSwwIHogTSAxMSw5NzcuOTU1OTYgbCAwLDUxLjQwNjI0IDc4LDAgMCwtNTEuNDA2MjQgLTM3LjcxODc1LDMxLjkwNjI0IGEgMi4wMDAyLDIuMDAwMiAwIDAgMSAtMi41NjI1LDAgTCAxMSw5NzcuOTU1OTYgeiIgZmlsbD0iI0ZGRkZGRiIgc3Ryb2tlPSJub25lIiBtYXJrZXI9Im5vbmUiIHZpc2liaWxpdHk9InZpc2libGUiIGRpc3BsYXk9ImlubGluZSIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L2c+PC9zdmc+);
    background-size:40px auto;
}


iframe{
    max-width:100% !important;
    width:100% !important;
}



/* Children */

.children{

}

.children .child{
    position: relative;
    display: block;

    margin-left:20px;
    margin-right:20px;
    margin-bottom:20px;
    height:480px;

    border-radius:10px;
    overflow: hidden;

}

.children .child .background .onehalf.first{
    position: absolute;
    top:0px;
    left:0px;
    right:50%;
    width:auto;
    height:100%;
    background:#F2F2F2;
    padding:20px;
}

.children .child .background .onehalf.second{
    position: absolute;
    top:0px;
    left:50%;
    right:0px;
    width:auto;
    height:100%;
}


.children .child .background .onehalf.second img{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    margin:auto;
    width:100%;
    height:100%;
    max-width: 100%;
    max-height:auto;
    object-fit:cover;
}

.children .child .background .onehalf.second.has_symbol img{
    width:80%;
    height:auto;
    max-width:400px;
    max-height:80%;
    object-fit:contain;
}

.children .child .foreground{
    position: absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}

.children .child .foreground .wrapper{
    position: relative;
    height:100%;
}

.children .child .foreground .onehalf.first{
    height:100%;
    padding-top:50px;
    width:50%;
    max-width:540px;
    padding-right:40px;
}

.children .child .foreground .title{
    display: block;
    font-weight: 700;
}

.children .child .foreground .excerpt{
    position: absolute;
    left:0px;
    right:40px;
    bottom:70px;
    max-width:400px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;

}

/* 0% */

.children .child.background-0{
    background-image: url(../img/gradient-meeting.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;        
}

.children .child.background-0 .background .onehalf.first{
    display: none;
}

.children .child.background-0 .foreground .onehalf.first,
.children .child.background-2 .foreground .onehalf.first{
    min-width:540px;
}


/* 50% */

.children .child.background-1 .background .onehalf.second{
    background-image: url(../img/gradient-tile.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;    
}

/* 100% */



.children .child.background-2 .background .onehalf.first{
    width:100%;
}







/* recommended */

#recommended{
    position: relative;
    display: block;

    margin-left:20px;
    margin-right:20px;    
}

.recommended{
    display: block;
    margin-left:-20px;
}

.recommended .rec{
    position: relative;
    padding-left:20px;
    margin-bottom:20px;
}

.recommended .background{
    position: relative;
    width:100%;
    padding-top:66%;
    background:url(../img/gradient-recommend.png);
    background-size: cover;
    background-position:center center;;
    background-repeat: no-repeat;    
}

.recommended .background img{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    margin:auto;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:cover;
}

.recommended .rec .overlay{
    position: absolute;
    top:0px;
    right:0px;
    bottom:0px;    
    left:20px;
    padding:20px;
}

.recommended .background,
.recommended .rec .overlay{
    border-radius:10px;
    overflow: hidden;
}


.recommended .rec.has_img:not(.has_symbol) .overlay{
    background:rgba(0,0,0,0.2);
}

.recommended .rec.has_img:not(.has_symbol) .overlay .title{
    color:#fff;
}

.recommended .rec .overlay .title{
    display: block;
    max-width:320px;
    margin:0 auto;
}




.title-inbetween{
    display: block;
    margin-bottom:50px;
}


.btn-gdpr{
    cursor:pointer;
}


.marker{
    display: inline-block;
    vertical-align: top;
}

*:not(ul li) .marker{

}


/* General */

*{
    outline:none;
}



/* WYSIWYG */

.wysiwyg span{
    display: inline-block;
    vertical-align: top;
}

.wysiwyg .block{
    display: block;
    margin-left:85px;
    margin-bottom:40px;
}

.wysiwyg .wysiwyg-column{
    display: inline-block;
    vertical-align: top;
    width:49%;
    padding-right:40px;
}

.wysiwyg ul{
    margin:0;
    padding:0;
    line-height: 1.7em;
}

.wysiwyg ul li{
    position: relative;
    padding-left:45px;
    font-family: 'MaisonNeue', Helvetica, Arial, Sans-serif;
    font-size:16px;
}

.wysiwyg ul li:before{
    content:"";
    position: absolute;
    top:9px;
    left:0px;
    width:14px;
    height:14px;
    background:#0f276d;
    border-radius: 100%;
}

.forcestudiopro{
    display: inline-block;
    vertical-align: top;
}

.forcestudiopro ul li{
    font-family: 'StudioPro', Helvetica, Arial, Sans-serif !important;
    font-size:20px !important;
}

.forcestudiopro ul li:before{
    top:11px;
}


.wysiwyg a,
.wysiwyg a:visited,
.wysiwyg a:focus,
.wysiwyg a:hover{
    text-decoration: underline;
}

.wysiwyg a:hover{
    color:#99CCFF;
}

.wysiwyg a.nounderline{
    text-decoration: none !important;
}




/* Footer */

footer{
    background:#F2F2F2;
    padding:40px 0 40px 0;
}

footer .wrapper{
    max-width: 1680px;
    padding-left: 60px;
    /*padding-right: 60px;*/
}


footer .row.first .onefourth{
    margin-bottom:20px;
}

footer .row.first .onefourth.has_children{
    margin-bottom:40px;
}

footer .row.first .onefourth.has_children .parent{
    margin-bottom:20px;
}

footer .row.first .onefourth.has_children .child{
    margin-bottom:10px;
}

footer .row.second{
    display: block;
    margin-top:50px;
}

footer .row.second .onethird{
    width:25%;
}

footer .row.second .onethird.first{
    width:50%;
}

footer .row.first .onefourth.nth-1,
footer .row.second .onethird.first{
    padding-left:60px;
}

footer .social-media .title{
    display: block;
    margin-bottom:24px;
}
    
footer .social-media .icon{
    display: inline-block;
    vertical-align: top;
    width:25px;
    height:25px;
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right:10px;
}

footer .social-media .icon:last-child{
    margin-right:0px;
}

footer .social-media .icon.icon-facebook{
    background-image:url(../img/icon-facebook.svg);
}

footer .social-media .icon.icon-instagram{
    background-image:url(../img/icon-instagram.svg);
    margin-right:15px;
}

footer .social-media .icon.icon-twitter{
    background-image:url(../img/icon-twitter.svg);
}

footer .social-media .icon.icon-youtube{
    background-image:url(../img/icon-youtube.svg);
    width:30px;
    background-size:100% auto;
}


footer .pages{
    display: block;
}

footer .pages a{
    display: inline-block;
    vertical-align: top;
    margin-right:20px;
}

footer .special-break{
    display: none;
}


/* BTN */

.btn{
    display: inline-block;
    vertical-align: top;
    background:#fff;
    color:#263b7b;
    font-size:80px;
    font-family: 'StudioPro', Helvetica, Arial, Sans-serif;
    font-feature-settings: 'ss10';
    font-weight: 700;
    padding:4px 7px 10px 7px;
    border-radius:10px;
    margin-top:20px;
    line-height: 1em;
    white-space: nowrap;
}

a.btn, a.btn:visited, a.btn:focus,
.btn-link, .btn-link:visited, .btn-link:focus{
    background:#263b7b;
    color:#E5E7E4;
    cursor: pointer;
}

.btn.small{
    font-size:40px;
    background:#263b7b !important;
    color:#E5E7E4 !important;    
}





/* Video Background */

.video-background {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    overflow: hidden;
}

.video-background video{
    position: absolute;
    top: 0px;
    right:0px;
    bottom:0px;
    left: 0px;
    margin:auto;

    width: 100%;
    height: 100%;
    margin:auto;
    object-fit:cover;
}


/* Youtube */

.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
    padding-top: 0px;
    height: 0;
    overflow: hidden;

    background-size:cover !important;
    background-repeat:no-repeat !important;
    background-position:center !important;

}

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

.responsive-video.on-demand{
    background-color: #ccc;
}

.responsive-video.on-demand .clicker{
    position: absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    cursor: pointer;    
}

.responsive-video.on-demand .clicker:after{
    content:" ";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    margin:auto;
    pointer-events:none;
    opacity:0.8;

    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    transform:rotate(360deg);

}

.responsive-video.on-demand .clicker:hover:after{
    opacity:1;
}

.responsive-video.on-demand .guideline{
    position: absolute;
    bottom:0px;
    left:0px;
    right:0px;
    padding:10px 10px 15px 10px;
    font-family: 'StudioPro', Helvetica, Arial, Sans-serif;
    line-height:1.6em;
    font-size:15px;
    text-align: center;
    color:#fff;
    pointer-events:none;    
}

.responsive-video.on-demand .guideline a,
.responsive-video.on-demand .guideline a:visited,
.responsive-video.on-demand .guideline a:focus{
    color:#fff;
    text-decoration: underline;
    pointer-events: all;
}















/* General */

.hidden{
    display:none !important;
}

.selected{
    
}

.overflowhidden{
    overflow: hidden !important;
}



/* Fonts */


.zfs{
    font-size:0px;
}

.h1{
    font-size:70px;
}

.h2{
    font-size:48px;   
}

.p1, .p2, .p3, .p4, .pm{
    font-family: 'Publico', Helvetica, Arial, Sans-serif;
}

.p1{
    font-size:80px;
    line-height: 1.1em;
}

.p2{
    font-size:60px;
    line-height: 1.1em;
}

.p3{
    font-size:26px;
    line-height: 1.6em;
}

.p4{
    font-size:16px;
    line-height: 1.3em;
}

.pm{
    font-size:22px;
    line-height: 1.3em;
}

.wysiwyg.p1 a,
.wysiwyg.p1 strong{
    font-family: 'StudioPro', 'Publico', Helvetica, Arial, Sans-serif;
}


.m0, .m1, .m2, .m3{
    font-family: 'MaisonNeue', Helvetica, Arial, Sans-serif;
}

.m0{
    font-size:20px;
    line-height: 1.7em;
}

.m1{
    font-size:40px;
    line-height: 1.7em;
}

.m2{
    font-size:16px;
    line-height: 1.7em;
}

.m3{
    font-size:17px;
    line-height: 1.7em;
}


.s0, .s1, .s2, .s3, .s4, .s5, .sm{
    font-family: 'StudioPro', Helvetica, Arial, Sans-serif;
    font-feature-settings: 'ss10';
}

.s0{
    font-size:80px;
}

.s1{
    font-size:44px;
    line-height: 1.2em;
}

.s2{
    font-size:20px;
    line-height: 1.5em;
}

.s3{
    font-size:24px;
    line-height: 1.3em;
}

.s4{
    font-size:17px;
    line-height: 1.6em;
}

.s5{
    font-size:15px;
    line-height: 1.6em;
}

.sm{
    font-size:30px;
    line-height: 1.3em;
}




a, a:focus, a:visited, img{
    outline:none;
    border:none;
}

a{
  position: relative;
  display:inline-block;
}

a, a:visited{
  text-decoration: none;
  color:#111;
}


.italic, em{
  font-style:italic;
}

.bold, strong{
    font-weight:700;
}

.light{
    font-weight: 400;
}

.uppercase{
    text-transform: uppercase;
}

.center{
    text-align: center;
}


#mobile, .no-select{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    outline-width: 0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
   color: #888;
   opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder { /* Firefox 18- */
   color: #888;  
   opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {  /* Firefox 19+ */
   color: #888;
   opacity: 1;  
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {  
   color: #888;
   opacity: 1;  
}

/* disable rounded corners */
input {
  border-radius: 0;
  -webkit-appearance: none;
}




.white, a.white, a.white:focus, a.white:visited,
.white a, .white a:visited, .white a:focus{
    color:#fff;
}

.blue, a.blue, a.blue:focus, a.blue:visited,
.blue a, .blue a:visited, .blue a:focus{
    color:#263b7b;
}



.mobile-only{
    display: none;
}





@media (min-width: 1920px){

    /*
    header{
        right: 0px;
        max-width: 1920px;
        margin: 0 auto;
    }

    nav{
        right: 0px;
        max-width: 1920px;
        margin: 0 auto;
    }

    #wrapper{
        max-width: 1920px;
    }

    .wrapper{
        max-width: 1880px;
    }*/


}





@media (max-width:1400px) {

    .children .child .background .onehalf.second.has_symbol img{
        max-width:320px;
    }


    section.module.style-25 .presentation .slide .onehalf.second{
        padding: 40px 50px;
    }

    section.module.style-25 .presentation .slide .onehalf.second .title {
        font-size: 28px;
    }

    #template section.module.style-25 .presentation .slide .onehalf.second .text{
        margin-top: 30px;
    }


}



@media (min-width:1081px) and (max-width:1400px) {

    #template section.module.style-19 .onethird.first h2.s2{
        font-size:17px !important;
        top:5px;
    }

    #template section.module.style-19 .onethird input{

        font-size:17px !important;

    }

    #template section.module.style-19 .onethird button[type="submit"]{
        padding: 10px 12px 12px 12px;
        font-size:17px !important;
    }


}



/* iPhone upper region */

@media (min-width:520px) and (max-width:1080px){

    #template section.module.style-3 .photos.cells-2,
    #template section.module.style-3 .photos.cells-4{
        max-width:920px !important;
    }

    #template section.module.style-3 .photos.cells-2 .photo,
    #template section.module.style-3 .photos.cells-4 .photo{
        width:50% !important;
    }

    #template section.module.style-3 .photo .img-title{
        margin-top:20px !important;
    }


    #template section.module.style-8 .people .person{
        width:50% !important;
    }

    #template section.module.style-9 .logos .logo{
        width:50% !important;
    }

}



/* iPhone */

@media (max-width:1080px) { /* 768px */

    .iphone-only{
        display: block;
    }

    .desktop-only{
        display:none !important;
    }

    .mobile-only{
        display: inline-block !important;
    }


    .wrapper.small{
        width:auto;
        min-width:initial;

    }



    header .spenden{
        display: none;
    }

    #mobile{
        right:20px;
    }

    .bbk-logo{
        padding-left:55px;
    }

    nav{
        right:-100%;
        width:100%;
        padding: 100px 20px;
    }

    nav .table{
        display: block;
        width:auto;
        height:auto;
    }

    nav .table-cell{
        display: block;
        width:auto;
        height:auto;
        text-align: left;
        vertical-align:top;        
    }

    nav .wrapper{
        padding:0 0 50px 55px;
    }

    nav .onethird{
        width:100%;        
    }

    nav .onethird.has_children{
        margin-bottom:0px;
    }

    nav .onethird.has_children .parent{
        margin-bottom:20px;
    }

    nav .onethird.has_children .child{
        display: none;
    }

    nav a{
        font-family: 'StudioPro', Helvetica, Arial, Sans-serif;
        font-feature-settings: 'ss10';   
        font-size:20px !important;
        font-weight:700 !important;     
    }





    .wrapper{
        padding:0 20px;
    }

    .wrapper.small{
        padding:0 20px;
    }

    section .wrapper{
        padding:0 20px;
    }



    .share{
        padding: 30px 10px 20px 10px;
    }

    .share .share-title{
        font-size:15px;
    }

    .share .close{
        top:10px;
        right:10px;
        width:20px;
        height:20px;
    }


    #template section.module.pad-1{
        margin-bottom:20px;
    }

    #template section.module.pad-2{
        margin-bottom:30px;
    }

    #template section.module.pad-3{
        margin-bottom:60px;
    }



    /* text */
    #template section.module.style-2{
        padding-bottom:0px;
    }

    


    /* Header */

    #template section.module.style-4{
        height:auto;
        padding:40px 0 45px 0;
    }

    #template section.module.style-4 .table{
        position: relative;
        display: block;
        top:auto;
        left:auto;
    }

    #template section.module.style-4 .table-cell{
        display: block;
        vertical-align:top;
        text-align: left;
    }

    #template section.module.style-4 .wrapper{
        height:auto;
    }

    #template section.module.style-4.news-module .text,
    #template section.module.style-4.press-module .text{
        font-size:42px;
    }

    #template section.module.style-4 .front{
        position: relative;
        right:auto;
        left:auto;
        width:100%;
        height:auto;
        object-fit:contain;
        margin-top:30px;
    }

    #template section.module.style-4 .wrapper.has_symbol .front{
        display: block;
        max-height:200px;
    }

    #template section.module.style-4 .content{

    }



    /* banner */

    #template section.module.style-6 .wrapper{
        padding-top:30px;
        padding-bottom:30px;
    }

    #template section.module.style-6 .wrapper .text{

    }


    /* person */
    #template section.module.style-8 .people .person{
        width:100%;
        margin-bottom:30px;
    }



    /* Quote */

    #template section.module.style-12 .wrapper{
        padding-top:50px;
        padding-bottom:50px;
    }




    /* schedules */

    #template section.module.style-13 .step{
        padding-left:65px;
        padding-bottom:50px;
    }

    #template section.module.style-13 .step:before{
        top:0px;
        width:3px;
    }

    #template section.module.style-13 .step:after{
        top:0px;
        width:25px;
        height:25px;
        left:6px;
        border-width:3px;
    }

    #template section.module.style-13 .schedules .step .content{
        width:100%;
    }


    #template section.module.style-13 .icon-share:after{
        width:25px;
        height:30px;
        top:-4px;
        margin-left:10px;
    }


    /* Links */

    #template section.module.style-14 .links .link{
        width:100%;
    }


    /* Photos & Grafiken */

    #template section.module.style-17 .photos .photo{
        width:100%;
    }

    #template section.module.style-17 .photos .photo .bottom .title{
        margin-right:50px;
    }

    #template section.module.style-17 .photos .photo .bottom .icon-download{
        right:0px;
    }




    /* newsletter */

    #template section.module.style-19 .wrapper{
        padding:30px 20px;
    }

    #template section.module.style-19 .onethird{
        display: block;
        width:auto !important;
        padding:0px !important;
    }

    #template section.module.style-19 .onethird.first{
        margin-bottom:10px !important;
    }

    #template section.module.style-19 .input{
        display: block;
        width:100% !important;
        padding-right:0px !important;
        margin-bottom:10px !important;
    }

    #template section.module.style-19 .onethird button[type="submit"]{
        width:100%;
        margin-top:20px;
    }

    #template section.module.style-19 .content__gdprBlock,
    #template section.module.style-19 #mce-responses{
        width:100% !important;
        margin-left:0px !important;
    }    


    /* intro */

    #template section.module.style-20 .wrapper.intro{
        height:calc(100vh - 80px);
        min-height:520px;
    }

    #template section.module.style-20 .wrapper.intro .bottom{
        left:20px;
        right:20px;
    }

    #template section.module.style-20 .supporter{
        width:33.33%;
    }

    #template section.module.style-20 .wrapper.appell{
        padding-top:50px;
        padding-bottom:50px;
    }


    .ticker .entry{
        padding:9px 0 12px 0;
        font-size: 20px;
    }

    .ticker .entry u{
        margin: 0 25px;
    }

    /* logo */

    #template section.module.style-21 .wrapper{
        padding-top:30px;
        padding-bottom:30px;
    }


    #template section.module.style-21 .logo{
        width:740px;
        margin:0 auto;
    }

    #template section.module.style-21 .logo .circle{
        width:100px;
        height:100px;

        -webkit-transform:scale(0.8);
        -moz-transform:scale(0.8);
        transform:scale(0.8);
    }

    #template section.module.style-21 .logo .circle .point{
        width: 100px;
        height: 10px;
    }

    #template section.module.style-21 .logo .circle .point:before{
        width: 10px;
        height: 10px;
    }  


    #template section.module.style-21 .onehalf.first{
        width: calc(100px);
    }

    #template section.module.style-21 .onehalf.second{
        padding-left:10px;
    }

    #template section.module.style-21 .logo .logo-title{
        font-size:48px;
        top:0px;
    }    




    #template section.module.style-25 .presentation .slide .onehalf.first{
        display: block;
        width:auto;
    }
    #template section.module.style-25 .presentation .slide .onehalf.second{
        display: block;
        width:auto;      
        position: relative;
        top:auto;
        left:auto;
        height:auto;  
    }

    #template section.module.style-25 .presentation .slide .onehalf.second{
        position: relative;
        padding: 20px 20px 60px 20px;
        min-height: 280px;
        background: linear-gradient(-45deg, #CFCBCE, #364DC4, #1D94CB );  
    }


    #template section.module.style-25 .presentation .slide .onehalf.second .title{
        font-size: 24px;
    }

    #template section.module.style-25 .presentation .slide .onehalf.second .text{
        margin-top:20px;
    }


    /* profile picture generator */


    .fff-profile-picture-generator,
    .fff-profile-picture-generator--image{
        max-width:320px !important;
    }

    #template section.module.style-26 .fff-profile-picture-generator--button{
        font-size:22px;
        padding: 6px 7px 8px 7px;
    }




    /* list */
    #template section.module .list .onehalf.first{
        width:10%;
        width:calc(30px);
    }

    #template section.module .list .onehalf.second{
        width:90%;
        width:calc(100% - 30px);
    }




    .news .onethird{
        width:100%;
    }


    .pdfs .pdf .onehalf.first{
        display: block;
        width:auto;
        margin-right:120px;
    }

    .pdfs .pdf .onehalf.second{
        display: block;
        width:auto;
        margin-right:0px;
        margin-top:20px;
    }

    .pdfs .pdf .onehalf.second .wysiwyg{
        margin-right:0px;
        max-width:100%;
    }

    .events .event .onehalf.first{
        width:100%;
    }

    .events .event .onehalf.second{
        width:100%;
        margin-top:20px;
    }

    .events .event .signup{
        top:20px;
        bottom:auto;
    }



    .informations .information .onehalf.first,
    .informations .information .onehalf.second{
        display: block;
        width:auto;
        margin-right:50px;
    }

    .informations .information .icon{
        right:0px;
        bottom:10px;
        margin:auto 0;
    }






    .children .child{
        height:auto;
    }

    .children .child .background .onehalf.first{
        position: absolute;
        top: 0px;
        right: auto;
        left: 0px;
        width:100%;
        height:100%;
    }

    .children .child .background .onehalf.second{
        position: relative;
        top: auto;
        right: auto;
        bottom:auto;
        left: auto;
        width: 100%;
        height:auto;
        padding-top:50%;
        margin-top:250px;
        min-height:280px;
    }

    .children .child .foreground .onehalf.first{
        position: relative;
        top:0px;
        width:100%;
        height:250px;        
        padding-top:0px;
        padding-right:0px;
        max-width: 420px;
    }

    .children .child.background-2 .foreground .onehalf.first,
    .children .child.background-0 .foreground .onehalf.first{
        min-width:initial;
        max-width:320px;
    }

    .children .child .foreground .title{
        margin-top:30px;
    }

    .children .child .foreground .excerpt{
        top:auto;
        right:auto;
        bottom:20px;
        width:100%;
        -webkit-line-clamp: 5;
        
    }

    .children .child .background .onehalf.second.has_symbol img{
        max-width:200px;
        max-height:200px;
    }


    /* recommended */
    .recommended .rec{
        width:100%;
    }


    #template #share{
        padding-bottom:30px;
    }

    #template #share .btn.small{
        display: block;
    }


    .title-inbetween{
        display: block;
        width:auto;
        max-width:320px;
        margin:0 auto 30px auto;
    }


    .flickity-prev-next-button{
        display: none;
    }

    .flickity-page-dots{
        bottom:20px;
    }

    .flickity-page-dots .dot{
        width:17px;
        height:17px;
        border:2px solid #fff;
        margin:0 5px;
    }




    .responsive-video.on-demand .clicker{
        bottom:100px;
    }

    .responsive-video.on-demand .guideline{
        font-size:13px;
        max-width: 420px;
        margin: auto;        
    }




    footer{

    }

    footer .wrapper{
        padding-left:20px;
    }

    footer .row.first .onefourth{
        width:100%;
        margin-bottom:30px;
    }

    footer .row.first .onefourth:not(.first){
        display: none;
    }

    footer .row.second{
        margin-top:0px;
    }

    footer .row.second .onethird{
        width:100% !important;
        margin-bottom:30px;
        padding-left:55px !important;
    }



    footer .social-media {
        display: block;
    }   

    footer .social-media .icon{
        margin-right:20px;
        position: relative;
        left:-5px;
    }


    section.module:not(.style-20) .btn, .btn.small{
        display: block;
        
    }

    .btn, .btn.small{
        font-size:40px;
        text-align: center;
    }


    .wysiwyg ul li{
        padding-left:30px;
    }




    .p1{
        font-size:32px;
    }

    .p2{
        font-size:26px;
        line-height: 1.2em;
    }

    .p3{
        font-size:20px;
    }


    .m0{
        font-size:16px;
        line-height:1.5em;
    }

    .m1{
        font-size:16px;
        line-height:1.5em;
    }

    .m2{
        font-size:16px;
        line-height:1.5em;
    }

    .m3{
        font-size:16px;
        line-height:1.5em;
    }


    .s0{
        font-size:32px;
    }

    .s1{
        font-size:27px;
    }

    .s2{
        font-size: 20px;
    }

}

@media(max-width:520px){


    #template section.module.style-3 .photo.has_symbol .img-wrapper{
        display: block;
        padding-top:0px;
    }

    #template section.module.style-3 .photo.has_symbol .img-wrapper img{
        /*
        max-width:280px;
        max-height:320px;
        */
        display: block;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;        
        max-width: 240px;
        max-height: 180px;
        margin: 0 auto;

    }



    /* images */

    #template section.module.style-3 .photos{
        display: block;
        max-width:520px;
        margin:auto;
    }

    #template section.module.style-3 .photos .photo{
        width:100% !important;
        margin-bottom:50px;
        padding-left:0px;
    }

    #template section.module.style-3 .photo .img-title{
        margin-top:10px;
    }


    /* logos */

    #template section.module.style-9 .logos{
        margin-left:0px;
        padding:0px;
    }

    #template section.module.style-9 .logos .logo{
        width:100%;
        padding-left:0px;
    }

    #template section.module.style-9 .logos .logo .img-wrapper{
        padding-top:0px;
    }

    #template section.module.style-9 .logos .logo .img-wrapper img{
        display: block;
        max-width:280px;
        max-height:120px;        
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin:0 auto 20px auto;
        width: 100%;
        height: auto;
    }

    #template section.module.style-9 .logos .logo .title{
        display: block;
        text-align: center;
        max-width:320px;
        margin:0 auto;

    }


    #template section.module.style-25 .presentation .slide .onehalf.second .title{
        font-size: 16px;
    }





}

@media(max-width:481px) {

    header{
        padding-top:23px;
    }

    .bbk-logo{
        padding-left:48px;
    }

    .bbk-logo .title{
        font-size:19px;
        top:-3px;
    }

    .bbk-logo:before{
        width:35px;
        height:35px;
    }

    nav .wrapper{
        padding-left:48px;
    }


    .children .child .foreground .excerpt{
        bottom:30px;
    }






    footer .row.second .onethird{
        padding-left:48px !important;
    }


    .btn, .btn.small{
        font-size:35px;
        padding: 4px 7px 8px 7px;
    }



    .p2{
        font-size:22px;
    }

    .m1{
        font-size:17px;
    }

    .s1{
        font-size:24px;
    }

}
