@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap');
@import url('../fonts/bundessansoffice/font.css');
@import url('../fonts/bundesserifoffice/font.css');

:root{
    --accent-color:#2c3e50;
}
*,
*:after,
*::before {
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}
body{
    background: #fff;
    font-family: "BundesSansOfficeRegular", sans-serif;
    color:#222;
}
h1,h2,h3,h4,h5,h6{
    font-family: "BundesSansOfficeBold", sans-serif;
}
@media (min-width: 1200px){
	.container {
		max-width: 100% !important;
	}
}
/* GENERAL */
.text-underline {
	text-decoration: underline !important;
}
.bg-none{
    background:none;
}
.bg-accent{
    background-color:var(--accent-color);
}
.text-accent{
    color:var(--accent-color);
}
.bg-dark-20{
    background:rgba(0,0,0,0.2)
}
a{
    color:#222
}
a:hover{
    text-decoration: none;
    color:var(--accent-color);
}
p img{
    max-width:100%;
    height:auto;
}
.object-fit-cover{
    object-fit: cover;
}
.object-fit-contain{
    object-fit: contain;
}
.article ul,
.article ol{
    margin-left:30px;
    line-height:2;
}
.article img{
    max-width:100%;
    height:auto;
}
img.grayscale{
    filter:grayscale(1)
}
.radius-5{
    border-radius: 5px;
}
.radius-10{
    border-radius: 10px;
}
.radius-50{
    border-radius:50px;
}
.radius-circle{
    border-radius:50%;
}
.font-bundes-regular{
    font-family: "BundesSansOfficeRegular", sans-serif;
}
.font-bundes-bold,
.font-weight-bold{
    font-family: "BundesSansOfficeBold", sans-serif;
}
.font-bundesserif-regular{
    font-family: "BundesSerifOfficeRegular", sans-serif;
}
.font-bundesserif-bold{
    font-family: "BundesSerifOfficeBold", sans-serif;
}
.btn{
    border-radius:2px;
}
.column-2{
    column-count: 2;
}
.column-2 > *{
    break-inside: avoid;
}
.font-small{
    font-size:0.9rem;
}
/* NAVBAR */
#navbar{
    background: #fff;
    position:sticky;
    position:-webkit-sticky;
    top:0;
    z-index:999;
    margin:0;
    padding:0;
    box-shadow:0px 1px 3px #0001;
}
.admin-bar #navbar{
    top:32px;
}
.navbar-brand{
    font-weight:bold;
}
.navbar-brand img{
    height:90px;
    object-fit: contain;
    margin:0 15px 0 0;
}
#navbar .navbar-nav > li{
    position: relative;
}
#navbar .navbar-nav > li > i{
    position: absolute;
    top:50%;
	transform:translatey(-50%);
    right:10px;
    pointer-events: none;
}
#navbar .navbar-nav > li > a{
    padding:0 10px;
    height:100px;
    line-height:100px;
    color:#333;
    font-weight:500;
    text-transform: uppercase;
    font-weight: bold;
    font-size:14px;
}
#navbar .navbar-nav > li > a:hover{
    border-bottom:4px solid var(--accent-color);
    transition: .3s ease;
}
#navbar .navbar-nav > li.active > a,
#navbar .navbar-nav > li.current-menu-parent > a,
#navbar .navbar-nav > li.current_page_item > a,
#navbar .navbar-nav > li.current-page-ancestor > a
{
    color:var(--accent-color);
    font-weight: bold;
    border-bottom:4px solid var(--accent-color);
}
#navbar .navbar-nav > li > ul{
    position: absolute;
    top:100%;
    left:0;
    list-style: none;
    margin:0;
    padding:0;
    background:#fff;
    box-shadow:0px 1px 3px #0001;
    min-width:200px;
    padding:10px 0;
    display: none;
}
#navbar .navbar-nav > li:hover > ul{
    display: block;
}
#navbar .navbar-nav > li > ul > li > a{
    padding:10px 15px;
    display:block;
}
#navbar .navbar-nav > li > ul > li > a:hover{
    background:#f5f5f5;
}
/* #navbar .navbar-nav > li.menu-item-has-children > a:after{
    content:"\f107";
    font-family:"fontAwesome";
    margin-left:10px;
} */

/* SECTION */
section{
    background:#fff;
}
.section-bg{
    position: relative;
}
.section-bg .bg{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index:1;
}
.section-bg-overlay:before{
    content:"";
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:#000;
    opacity: 0.5;
    z-index:2;
}
.section-bg .container{
    position: relative;
    z-index: 3;
}
.section-parallax{
    overflow:hidden;
}
.hero-video{
    background: #000;
    position: relative;
    height:calc(100vh - 80px);
    overflow:hidden;
    pointer-events: none;
}
.hero-video .section-parallax{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
}
#videoPlayer{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index:10;
}
.hero-video .caption{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:#0005;
    z-index:99;
    color:#fff;
}
.home__intro .description{
    columns: 2;
}
.section__partner a img{
    transition: .3s ease;
    filter:grayscale(1);
    opacity:0.7;
}
.section__partner a:hover img{
    filter:grayscale(0);
    opacity: 1;
}
footer{
    padding:50px 0;
    border-top:1px solid #eee;
}
footer ul{
    list-style: none;
}
footer ul.menu{
    column-count: 2;
}
footer .nav-link{
    padding:5px 0;
}
.social-icon a{
    display: inline-block;
    width:40px;
    height:40px;
    line-height: 40px;
    text-align: center;
    border-radius:50%;
    text-decoration: none;
    border:1px solid #333;
    margin:0 5px 5px 0;
    transition: .3s ease;
}
.social-icon a:hover{
    background:#333;
    color:#fff;
}
.row-testimonial-slider{
    padding-bottom:50px;
}
.row-testimonial-slider .slick-arrow{
    position: absolute;
    bottom:0;
    left:10px;
    width:30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background:#fff;
    border-radius: 50%;
    box-shadow:0px 1px 3px #0001;
    border:none;
    outline:none;
}
.row-testimonial-slider .slick-arrow.slick-next{
    left:50px;
}
.card-activity{
    background: linear-gradient(#fff,#000a);
    border:none;
}
.card-activity img.card-img{
    opacity:0.5;
}
.row-report:nth-child(even) > .col-image{
    order:2;
}
.page-numbers{
    display:inline-block;
    padding:10px 15px;
    border:none;
    margin:0 5px 5px 0;
    border:1px solid #ddd;
}
.page-numbers.current{
    font-weight: bold;
    background:var(--accent-color);
    color:#fff;
}
.event-widget span.evcal_desc2.evcal_event_title{
    font-size:14px!important;
}
.event-widget .evcal_cblock{
    display:none!important;
}
.event-widget .evcal_desc{
    padding:0px!important;
}
.event-widget .evcal_list_a{
    background:none!important;
    border:none!important;
}
.event-widget .eventon_events_list{
    border:none!important;
}
.event-widget .evo_search_bar {
    display: none!important;
}
.eventon_events_list .eventon_list_event .evcal_desc, .evo_pop_body .evcal_desc, #page-content p.evcal_desc {margin-left: 25px !important;}
.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title{
	font-size:1rem;
	font-weight:400!important;
}
/*
.vc_general.vc_btn3{
	padding:5px 10px;
}
*/
.btn-download-cp{
	z-index:99;
}
.team-photo{
	filter:grayscale(1);
	transition:.3s ease;
}
.team-photo:hover{
	filter:grayscale(0);
}
.team-photo img{
	height:300px;
	object-fit:cover;
	object-position:top;
}
.cp-img{
	filter:grayscale(0);
	transition:.3s ease;
}
.cp-img:hover{
	filter:grayscale(1);
}
.cp-photo{
	filter:grayscale(1);
	transition:.3s ease;
}
.cp-photo:hover{
	filter:grayscale(0);
}
.op-photo{
	filter:grayscale(1);
	transition:.3s ease;
}
.op-photo:hover{
	filter:grayscale(0);
}
.op-photo img{
	object-position:middle;
}
.pagination{
	text-align:center;
	margin-top:30px;
}
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    color: #333;
    text-decoration:none;
}
 
.navigation li {
    display: inline;
}
 
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    background-color: #fff;
	border:2px solid #333;
	color:#333;
    border-radius: 3px;
    cursor: pointer;
    padding: 12px;
    padding: 0.75rem;
}
 
.navigation li a:hover,
.navigation li.active a {
    background-color: #333;
	color:#fff;
}

/* RESPONSIVE */

@media (min-width: 1440px){
	.team-photo{
		height:450px!important;
		background-size: cover!important;
	    background-position: center top!important;
	}
	.cp-photo{
		background-size: cover!important;
	    background-position: center top!important;
	}
	.team-photo img{
		height:450px;
		object-fit:cover;
	}
}
@media (max-width: 1200px){
    #navbar{
        padding:0 15px;
    }   
    .navbar-toggler{
        border:none;
        outline:none!important;
    }
    .navbar-toggler span{
        display: block;
        width: 30px;
        height: 2px;
        border-radius: 3px;
        background-color: #333;
        margin: 7px 0;
        transition: all 0.4s;
    }
    .navbar-toggler[aria-expanded="true"] span { 
        display: none; 
    }
    .navbar-toggler[aria-expanded="true"] span:first-child {
        display: block; 
        transform: rotate(45deg) translate(9px, 7px);
    }
    .navbar-toggler[aria-expanded="true"] span:last-child { 
        display: block; 
        transform: rotate(-45deg) translate(-1px, 2px); 
    }
    .navbar.float .navbar-toggler span{
        background:#333;
    }
    #navbar .navbar-nav > li > a{
        height:auto;
        line-height:1;
        padding:15px 0;
        border:none!important;
        cursor: pointer;
    }
    #navbar .navbar-nav > li ul{
        position: relative;
        top:auto;
        left:auto;
        box-shadow:none;
    }
    #navbar .navbar-nav > li ul li a{
        padding:10px 0;
        color:#aaa;
    }
    #navbar .navbar-nav > li{
        position: relative;
    }
    #navbar .navbar-nav > li:hover ul{
        display: none;
    }
    #navbar .navbar-nav > li i{
        position: absolute;
        top:0;
        right:0;
		transform:none;
        width:30px;
        height:45px;
        line-height:45px;
        text-align:center;
        pointer-events: initial;
    }
	.navbar-brand img{
		height:70px;
	}
    .hero-video{
        height:50vh;
    }
}
@media (max-width: 480px){
    .hero-video .caption h1{
        font-size:20px;
    }
    .home__intro .description{
        column-count: 1;
    }
    .column-2{
        column-count: 1;
    }
	#maps{
		height:60vh!important;
	}
    
}