/*
	Theme Name: BBtheme
	Description: HTML5 Blank WordPress Theme
	Tags: Blank, HTML5, CSS3

*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/
*:root {
	--blue:0,51,153;
	--orange:255,102,0;
	--greyText:156,158,160;
	--swiper-theme-color:rgb(0,51,153) !important;
	--spacer:40px;
	--maxW:1300px;
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
	scroll-behavior: smooth;
}
body {
	font:300 17px/1.4 'Zeitung', Helvetica, Arial, sans-serif;
	color:rgb(var(--blue));
	
}
body:not(.single-post) {
	color:rgb(var(--blue));
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
	object-fit: contain;
}
a {
	/color:#444;
	color:rgb(var(--blue));
	font-weight:bold;
	text-decoration:underline;
}
a:hover {
	color:rgb(var(--orange));
	text-decoration:underline;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

figcaption {
	text-align: center;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	margin:0 auto;
	position:relative;
}
/* header */
.header {

}
/* logo */
.logo {
	flex:1 1 200px;
}
.logo-img {
	max-width:400px;
}
/* nav */
.nav {
	flex:1 1 auto;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

.home .footer {
	margin-top:3vw;
}

.maxW {
	max-width:1300px;
	margin:0 auto;
}
.thinnerContent {
	width:90%;
	margin:0 auto;
}

.flexBox {
	display:flex;
	justify-content: space-around;
}

.fitImage img {
	object-fit:cover;
}

.heightAuto img {
	height:280px;
	width:420px;
	object-fit:cover;
}

.blueBorderButton {
	font-size:20px;
	padding: 12px 24px;
	color:rgb(var(--blue));
	background:white;
	display:block;
	width:max-content;
	border:2px solid rgb(var(--blue));
}

.blueBorderButton:hover {
	color:white;
	background:rgb(var(--blue));
}

.orangeButton {
	/text-transform:uppercase;
	font-size:20px;
	color:white;
	/padding:27px 54px;
	padding: 12px 24px;
	background:rgb(var(--orange));
	display:block;
	width:max-content;
}
.orangeButton:hover {
	color:white;
	background:rgb(var(--blue));
}
.whiteButton {
	font-size:20px;
	color:rgb(var(--blue));
	/padding:27px 54px;
	padding: 0.6em 1.2em;
	border:1px solid rgb(var(--blue));
	display:block;
	width:max-content;
}
.whiteButton:hover {
	color:white;
	background:rgb(var(--blue));
}

h2 {
	/font-size:1.5em;
	font-size:27px;
	color:rgb(var(--blue));
	/text-shadow:0 0 0 white;
}
.sectionContent {width:100%;}
.sectionContent > h2 {
	font-size:50px;
	text-shadow:0 0 0 white;
	margin:0 0 3vw 0;
	color:white;
}
.upperCase {
	text-transform:uppercase;
}
/*------------------------------------*\
    Social menu
\*------------------------------------*/
.socialmenuwrapper {
	background:rgb(var(--blue));
	color:white;
	height:46px;

}
.socialmenu {
	display:flex;
	justify-content:flex-end;
	align-items: center;
	height:inherit;
	}

img.socialicon {
	height:20px;
}

.socialicon {
	margin-left:7px;
}
a.socialMenuLink {
	font-weight:300;
	color:white;
	font-size:14px;
	margin-left:7px;
}
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-1 a.mega-menu-logo img.mega-menu-logo {
	height:40px;
}
body:not(.mega-menu-header-menu-mobile-open) #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link {
	/max-width:110px;
	line-height:18px;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item {
margin-top:15px;
}
/*------------------------------------*\
    menu
\*------------------------------------*/
.mainMenuFlex {
	display:flex;
	align-items:center;
	margin:1vw auto;
}
.searchbox {
	border-radius:unset;
	background: rgb(var(--blue));
}
.searchbox.modal {
	max-width: 1000px;
    position: absolute;
    top: 4vw;
    left: 50%;
    transform: translateX(-50%);
}
.jquery-modal.blocker.current {
    backdrop-filter: blur(4px);
}
.searchbox.modal a.close-modal {
	border: 3px solid rgb(var(--orange));
    background-color: black;
}
.searchbox form.search {
    display: flex;
}
.searchbox input.search-input {
    flex: 1 1 400px;
	border:none;
	color:rgb(var(--blue));
	padding: 9px 3px;
}

.searchbox .search-submit {
	flex: 0 1 100px;
	background:rgb(var(--orange));
	border:none;
	color:white;
}
.searchbox .search-submit:hover {
	background:red;
}

.page-id-236 a#headerApplyButton,
.page-id-43 a#headerApplyButton {
	display:none !important;
}

.headerApplyButton {
    position: fixed;
    top: 10vw;
    left: -180px;
	height:120px;
    box-shadow: 5px 3px 5px #00000026;
	transition:all 0.1s ease;
	background:rgb(var(--orange));
	font-size:13px;
	color:white;
	font-size:20px;
	display:flex;
	z-index:199;
	
	transition:all 0.5s ease;
}
.headerApplyButton span:first-child {
	width:180px;
	padding:0 25px;
	text-align:center;
	line-height:40px;
}
.headerApplyButton span:last-child {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	padding:7px;
	font-size:19px;
	text-align:center;
	height: 100%;
}
.headerApplyButton:hover span:last-child {
	opacity:0;
}

.headerApplyButton:hover {
	color:white;
	left:0;
}
/*------------------------------------*\
    HOME PAGE 
\*------------------------------------*/
.home .pageTitleImageBox,
.home section.topSection {
	background-size:cover;
	padding:20px 0;
	color:white;
	min-height: 500px;
	display: flex;
    flex-direction: column;
    justify-content: center;
	margin-bottom:var(--spacer);
}
.topSection .homeHeaderLeft {
	max-width: 550px;
}

.topSection .homeHeaderLeft h2 {
	color: white;
	font-size: 50px;
}
.home .topSection .sectionContent {
	display: flex;
	justify-content:  space-around;
	flex-wrap: wrap;
	flex-direction: row;
}
.pageTitleImageBox,
section.topSection {
	background-size:cover;
	background-position:50% 30%;
	padding:20px 0;
	color:white;
	min-height: 250px;
	display: flex;
    flex-direction: column;
    justify-content: center;
	margin-bottom:var(--spacer);
}
section.topSection .sectionContent > h2 {
	padding:unset;
	margin:unset;
	max-width:550px;
}
section.topSection .orangeButton {
	margin:60px 0 0 0 ;
}

section.relatedLinks {margin-top:40px;}
.uVideo {
	display:block;
	width:500px;
	/padding:1em 0;
	text-align:center;
	/margin:40px 0;
	}

.uVideo iframe {
	max-width:350px;
	min-height:200px;
	max-height:230px;
	height:100%;
	width:100%;
	margin:0 auto;
	border:1px solid rgb(var(--orange));
}

.responsiveVideo {
	aspect-ratio: 16 / 9;
	width: 100%;
}
}

.circles > h2 {
	margin:40px auto 0;
	text-align:Center;
}

.circlesWrapper {
	display:flex;
	flex-wrap:wrap;
	text-align:center;
	justify-content: space-around;
	align-items: center;
	margin:var(--spacer) auto var(--spacer);
}
.singleCircle {
	margin:10px 15px; 
}
img.singleCircleImage {
	width:166px;
	height:166px;
	object-fit:cover;
	border-radius:80px;
	transition:all 0.15s ease;
}
img.singleCircleImage.HighlightedIcon {
	border: 5px solid rgb(var(--orange));
	width: 220px;
	height: 220px;
	border-radius: 220px;
}
a.circleLink {
	color:rgb(var(--blue));
	
}
a.circleLink:hover img.singleCircleImage.HighlightedIcon {
	border:10px solid rgb(var(--orange));
	background:rgb(var(--orange));
}
a.circleLink:hover img.singleCircleImage {
	border:5px solid rgb(var(--orange));
	background:rgb(var(--orange));
}

p.singleCircleText {
	font-size:18px;
	max-width:140px;
	text-align:center;
	margin:10px auto 0;
}
h2.h2HowHelp {
	font-size:50px;
	text-align:center;
	max-width:1100px;
	margin:0 auto;
	font-weight:400;
}
.upperContent {
	margin:0 auto;
}
.greyText {
	color:#9C9EA0;
	font-size:23px;
	text-align:center;
	margin-top:1vw;
}
.greyTextColor {
	color:#9C9EA0;
}

.home .supportBoxesWrapper {
	max-width:1120px;
}
.supportBoxesWrapper,
.platformWrapper {
	display:flex;
	flex-wrap:wrap;
	text-align:center;
	justify-content: space-between;
	margin:0 auto;
}
.post-477 .supportBoxesWrapper,
.page-id-193 .supportBoxesWrapper,
.post-209 .platformWrapper,
.page-id-193 .platformWrapper {
	max-width:1120px;
}

.platformWrapper div.singleSupportBox {width:240px;}

.singleSupportBox {
	/width: 240px;
	width: 310px;
    overflow: hidden;
    /margin: calc(var(--spacer) / 2) var(--spacer) calc(var(--spacer) / 2) 0;
    /margin: calc(var(--spacer) / 2) var(--spacer) calc(var(--spacer) / 2) calc(var(--spacer) / 2);
	margin:var(--spacer) 0;
	position:relative;
}
.supportBoxesWrapperMedia .singleSupportBox {
	outline:2px solid rgb(var(--blue));
} 

.platformBox:hover .supportBoxTitle::before,
.singleSupportBox:hover .supportBoxTitle::before {
	content:'';
	display:block;
	position:absolute;
	top:0;
	height:10px;
	width:100%;
	background:rgb(var(--orange));
}
img.supportBoxImage {
	width:100%;
	height:200px;
	object-fit:cover;
	transition: all 0.15s ease;
}

img.supportBoxImageLogo {
    object-fit: contain;
    width: 70%;
}
img.supportBoxImageThumbnail {
    /object-fit: contain !important;
    object-fit: cover !important;
    width: 100% !important;
	transition: all 0.15s ease;
	height:200px;
}
/div.supportBoxTitle:before {
	content:'';
	display:block;
	width:100%;
	height:10px;
	background:rgb(var(--orange));
}
.supportBoxTitle {
	background:rgb(var(--blue));
	color:white;
	text-align:center;
	min-height:110px;
	display: flex;
    flex-direction: column;
    justify-content: center;
	/border-top:10px solid rgb(var(--orange));
	position:relative;
}
.supportBoxTitle > p {
	padding: 15px 5px;
	margin:unset;
	font-size:18px;
}
.sameWidth {
	width:250px;
	margin:calc(var(--spacer) / 2) auto 0;
	text-align:center;
}

section.howCanHelp {
	margin:var(--spacer);
}
section.miniBlueSection {
	padding:1vw 0;
	margin: 3vw 0 3vw 0;
	background:rgb(var(--blue));
	color:white;
	
	display:flex;
	justify-content: space-evenly;
	flex-wrap:wrap;

	text-transform: capitalize;
	font-weight: bold;
}
#platformLinksSection .miniBlueSection {
	justify-content: space-around;
}

.miniBlueSection.double p {
	max-width:250px;
	text-align: center;
}
section.blueSection {
	padding:var(--spacer) 0;
	background:rgb(var(--blue));
	color:white;

	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
.blueSectionSideBox {
	max-width:380px;
	text-align:center;
	margin:0 60px 10px;
	
	display:flex;
	flex-direction: column;
    justify-content: center;
	align-items:center;
	}
.platformsLinks .blueSectionSideBox {
	max-width: 310px;
	width: 310px;
	height: 298px;
	background:	rgb(var(--blue));
	padding:1vw;
	color:white;
	margin:unset;
}
	
section.blueSection .uVideo {
	flex:0 0 350px;
	min-height: 390px;
}		
section.blueSection .uVideo p {
	max-width:100%;
	padding:10px;
}	

.gradientBox {
    display: flex;
}

img.calatogImage {
	max-width:500px;
}
	
.blueSectionSideBox .orangeButton {
	width:max-content;
	margin:0 auto 10px;
}
.blueSectionSideBox .orangeButton:hover {
	background:rgb(var(--orange));
}
.blueSectionSideBox p {
	margin:20px 0;
	max-width:250px;
	font-weight:bold;
}

section.platformsLinks {
	margin:0 auto;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1120px;
}

.partnersMapWrapper {
	background:rgb(var(--blue));
	position:relative;
	padding:var(--spacer) 0;
	width: 100%;
}

.platformsWrapper {
	display:flex;
	justify-content: space-around;
	margin-top:var(--spacer);
	max-width:800px;
}

.platformBox {
	max-width:310px;
	display:block;
}

.platformBox .supportBoxTitle {
	padding-bottom:21px;
}

.platformBox p {
	margin:unset;
}

.whiteButtonBorder,
a.whiteButtonBorder {
	color:white;
	border:1px solid white;
	width:max-content;
	padding:7px 33px;
	margin:0 auto;
}
.parntnersInfoBox {
	background:rgb(var(--orange));
	padding:4vw;
	font-size:40px;
	text-transform:uppercase;
	color:white;
	width:max-content;
	position:absolute;
	/top:4vw;
	left:0;
	z-index:0;
}
a.parntnersInfoBox:hover {
	color:white;
}
.parntnersInfoBox p {
	margin:unset;
}
.cls-3 {
	stroke: rgb(var(--blue));
	stroke-width: 0.2;
}
.cls-3:hover {
	stroke-width: 0.4;
}
/*
.cls-2 {
	transition:all 5s ease;
	position:relative;
}

.cls-2:hover {
	fill:rgb(var(--orange));
	transition:all .01s ease;
}
.cls-2:hover:before {
	content:'';
	display:block;
	position:absolute;
	width:50px;
	height:50px;
	border-radius:25px;
	background:rgb(var(--orange));
}
*/
.svgmap {position:relative;}

.cls-2:hover,
.cls-2 {
	transition:all 0.35s ease;
}

.singlePartnerBox {
	display:none;
	/width:350px;
	max-width:90%;
	min-width: 50%;
	width:fit-content;
	box-shadow: 10px 15px 0px 0px rgb(var(--blue));
	position:absolute;
	z-index:5;
	background:white;
/	max-height: 600px;
   / overflow-y: scroll;
	
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	
	transition:height 0.35s ease;
}

.partnership .singlePartnerBox {
	background:white;

}

.centerShow .grid{
	display: grid !important;
	grid-template-columns: repeat(auto-fit,max(200px));
	justify-content: start;
	align-items: end;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.singlePartnerBox::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.singlePartnerBox {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.singlePartnerBoxTitleBar {
	background:rgb(var(--orange));
	color:white;
	font-size:18px;
	padding:4px 0;
	font-weight:100;
	text-align:center;
}
.singlePartnerBoxTitleBar span {
	padding:0 5%;
}
img.singlePartnerLogo {
	max-height:60px;
	margin:10px auto;
	width:100%;
}
div.partnerContent {
	padding:15px;
	font-size:0.85em;
}
.partnerText {
	border-top:4px solid rgb(var(--orange));
	padding-top:10px;
}
span.partnerName {
	font-weight: normal;
    text-align: center;
    width: 100%;
    display: block;
}
span.partnerDesc {
	color:black;
}
/*------------------------------------*\
    homepage coordinators contact section
\*------------------------------------*/
	.homeCoordinatorsContactsBox {
		padding: var(--spacer) 0;
		display:flex;
		flex-wrap:wrap;
		justify-content:space-around;
	}
	
	.co_img {
		width:150px;
		height:150px;
		object-fit:cover;
		border-radius:100px;
		overflow:hidden;
	}
	
	.co_title {
		font-size:20px;
		/margin-bottom:1em;
	}
	
	.co_subline {
		color:rgb(var(--greyText));
		max-width:280px;
	}
	
	.co_button {
		margin:var(--spacer) auto 0;
		/padding:0.7em 1.5em;
	}
	
	.leftPart {
		display:flex;
		justify-content:space-around;
		align-items:center;
	}
	
	.rightPart > div {
		max-width:280px;
		margin:0 auto;
	}
	
	.leftPart,
	.rightPart { 
		flex:1 1 370px;
		
	}
	.innerMax {
		max-width: 1120px;
		width: 100%;
	}
	.partners {
		flex:0 0 350px;
	}
	.flexMeRow {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-around;
	}
	.flexMeRow .parntnersInfoBox {
		font-size:12px;
		padding: 1vw;
		z-index: 1;
	}
	.flexMeRow .singlePartnerBox {
		max-width: 100vw;
		width:500px;
	}
	section.homeCoordinatorsContacts {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: flex-start;
	}
/*------------------------------------*\
    scouting Carousel
\*------------------------------------*/
.scoutingCarousel  {
	display:block;
	max-height:450px;
	width:100%;
	margin:40px 0;
}
.scoutingSlide{
	display:block;
	width:inherit;
	height:inherit;
}
img.scoutingCarouselImage {
	object-fit:cover;
	object-position:0 50%;
	width:100%;
	height:450px;
}
.scoutingImageCaption {
	position: absolute;
    transform: translateY(-100%);
    padding: 10px;
    background: rgb(var(--blue));
    color: white;
    width: 100%;
    text-align: center;
}
.scoutingPagination {
	bottom: 45px !important;
}
/*------------------------------------*\
    platforms slider
\*------------------------------------*/
.platformSliderWrapper {
    position: relative;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
	padding:var(--spacer) 0;
}
.platformsSlider {
	max-width: 1200px;
    margin: 0 auto;
    justify-self: center;
	overflow:hidden;
}
.page-id-43 .platformsSlider {
	max-width: 1190px;
}

.platformsSwiperWrapper {

}

.platformSlide {
	/width:220px !important;
	margin:unset;
}
.platformSlide:first-child {
	/margin-left:0;
}
.platformSlide:last-child {
	/margin-right:0;
}
.platformsPagination {
	margin: 0 auto;
    left: 50% !important;
	bottom:unset !important;
    transform: translate(-50%, 0) !important;
}
.platformsPagination > span {
	margin:0 5px;
}

.platformSliderWrapper .blueBorderButton {
	margin:calc(var(--spacer) + 24px) auto 0;
}

.platformSliderWrapper .swiper-button-next,
.platformSliderWrapper .swiper-button-prev {
	top:calc(50% - 60px); 
}
/*------------------------------------*\
    calendar slider
\*------------------------------------*/
.calendarSlider {
    padding: 25px 0 40px;
}

.calendarSlider p.trainingOrganizer {
	margin-bottom:17px;
}
.calendarSlider p {
	margin:unset;
}
.calendarSlider p.trainingDate,
.calendarSlider p.trainingTime {
	margin-top:5px;
	font-size:0.85em;
	font-style:italic;
}


.calendarItem {
    height: 180px;
    background: rgb(var(--blue));
    text-align: center;
    color: white;
	padding:5px;
}
.calendarItem h3 {
	font-size:17px;
}
/*------------------------------------*\
    contact us page
\*------------------------------------*/
.contactForm,
.form800 {
	max-width:800px;
	margin:0 auto;
}

.marginCenter {
	margin:0 auto !important;
}

.orangeTextBox {
	background: rgb(var(--orange));
    padding: 0.3em;
    color: white;
	width:max-content;
}

.co_contactsBox {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-around;
	margin:40px 0 20px;
}

.contactUsPerson {
	text-align:center;
	flex:1 1 380px;
	margin-bottom:40px;
}

.contactUsPerson .co_img {
	margin-bottom:20px;
}
.contactUsPerson .co_name {
	font-size:20px;
}
.contactUsPerson .co_email {
	font-size:16px;
	color:rgb(var(--greyText));
}
.contactUsPerson .co_title {
	font-size:16px;
	color:rgb(var(--greyText));
}

 .caldera-grid .form-group > label {
	position:relative;
	color:white;
	background:rgb(var(--blue));
	margin:unset !important;
	padding:3px 5px 3px 9px;
	font-size:12px;
	height:29px;
	line-height: 22px;
}
.caldera-grid .form-group > label::after {
	content:'';
	display:inline-block;
	position:absolute;
    top: 0;
    right: -40px;
    width: 0;
    height: 0;
    border-bottom: 29px solid rgb(var(--blue));
    border-right: 40px solid transparent;
}
.caldera-grid .form-control {
	border: 1px solid #c3c3c3 !important;
	border-radius:unset !important;
}
.submitBtn .btn-default,
.submitBtn {
	background:rgb(var(--orange)) !important;
	color:white !important;
	font-size:16px !important;
	padding:12px 24px !important;
	border:none !important;
}

.cf-toggle-switch .btn-success.active, .cf-toggle-switch .btn-success:active, .cf-toggle-switch .btn-success:focus, .cf-toggle-switch .btn-success:hover, .cf-toggle-switch .open .dropdown-toggle.btn-success {
    color: #fff;
    background-color: rgb(var(--orange)) !important;
    border-color: rgb(var(--orange)) !important;
}
.cf-toggle-switch .btn-success {
	color: #fff;
    background-color: rgb(var(--orange)) !important;
    border-color: rgb(var(--orange)) !important;
}
.cf-toggle-switch .btn {
	border-radius:unset !important;
}

.caldera-grid .checkbox, .caldera-grid .radio {
	font-size:0.85em;
	margin:15px 0 !important;
}

.caldera-grid a {
   / background-color: rgb(var(--orange)) !important;
}

.caldera-forms-gdpr-field-label {
	font-weight:normal !important;
	font-size:0.85em;
}

.contactUsSocialIconsBox > div {
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
}
.contactUsSocialIcon {
	padding: 10px;
    border-radius: 80px !important;
    width: 80px;
    height: 80px;
    background: rgb(var(--blue));
    margin-top: unset;
    margin-bottom: unset;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contactUsSocialIcon img {
    object-fit: cover;
    padding: 10px;
    border-radius: unset !important;
	width:100%;
}
.contactUsSocialIcon:first-child,
.contactUsSocialIcon:last-child {
	margin:0 15px;
}

.cssImage figure,
.cssImage,
.cssImage img {
	width:100%;
	max-width:500px;
	margin:40px auto 0;
	/height:350px;
	height:auto;
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
	background:black;
	padding:var(--spacer) 20px;
	color:white;
}
.footer p {
	margin:unset;
}
.footer a:hover {
	color:rgb(var(--orange));
}
.footer a {
	color:white;
}
.footerFlex {
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.footerMenu::before {
	content:'';
	display:block;
	width:100%;
	height:5px;
	background:rgb(var(--orange));
}
.footerMenu a {
	display:block;
	font-size:1.1em;
}

a.footerLogo {
	max-width:30%;
	width:30%;
	display:inline-block;
}
img.footerLogo {
    /max-width: 30%;
}
.photonics21 {
	max-width:200px;
	font-size:0.7em;
}
.photonics21 img {
	background:white;
	padding:5px;
	margin-top:7px;
}

.smallerLinks a {
	/font-size:0.85em;
	font-size:1.1em;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
/*.pageTitleImageBox {
	background-size: cover;
    padding: 5vw 0 8vw;
    min-height: 80vh;
	display: flex;
    align-items: center;
}
*/
.pageTitleImageBox h1 {
	font-size:70px;
	text-shadow:0 0 0 white;
	width:100%;
	color: white;

}

.pageTitleImageBox h1:after {
	content:'';
	display:block;
	height:10px;
	width:15%;
	background:rgb(var(--orange));
	margin-top:20px;
}
.underH1 { 
	color:white;
	width:100%;
	text-align:left;
	margin-top: 30px;
}
section.platforms > h2 {
	text-align:center;
	text-transform:uppercase;
	margin:unset;
}
/*------------------------------------*\
    platforms template
\*------------------------------------*/
.templateSections {
    display: flex;
	flex-wrap:wrap;
    justify-content: center;
    align-items: flex-start;
}
section.templateSections {
	margin:calc(var(--spacer) * 1) 0;
}

.sectionRight {
	width:50%;
	flex:1 1 400px;
}
.sectionRightInner {
	max-width:650px;
}
.sectionLeftInner {
	height:inherit;
	position:relative;
	max-width: 650px;
	margin: 0 0 0 auto;
}
.sectionLeft {
    width: 50%;
	height:400px;
    text-align: right;
	background:rgb(var(--blue));
	margin-right: var(--spacer);
}

.generalInformation {
    color: grey;
	/padding:var(--spacer) 0;
}

img.platformSectionImage {
	width:100%;
	height:inherit;
	/max-width:650px;
	object-fit:cover;
}
.platformSectionImageCaption {
    position: absolute;
    color: white;
    padding: 5px;
    font-size: 11px;
    right: 0;
    background: rgb(var(--blue));
    transform: translateY(-101%);
}
.platformSectionTitle {

}
.platformContent {
    width: 100%;
    color: black;
    font-size: 14px;
}
/*------------------------------------*\
    FAQ
\*------------------------------------*/
.faqTitle  {
    background: rgb(var(--blue));
    padding: 0.5em 2em;
    color: white;
    text-transform: uppercase;
    font-size: 1.5em;
    border-left: 10px solid rgb(var(--orange));
	margin-bottom:calc(var(--spacer) / 2);
	font-weight:bold;
}

.faqWrapper .clickerTitle:before {
	content:'\f059';
}
/*------------------------------------*\
    misc
\*------------------------------------*/
#nf-field-11-wrap div.nf-field-element > div,
#nf-field-39-wrap div.nf-field-element > div {
	display:none;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}
/*
@font-face {
	font-family:'ZeitungPro';
	src:url('fonts/ZeitungPro.otf') format("opentype");
    font-weight:normal;
    font-style:normal;
}
@font-face {
	font-family:'ZeitungProLight';
	src:url('fonts/ZeitungPro-Light.otf') format("opentype");
    font-weight:normal;
    font-style:normal;
}
@font-face {
	font-family:'ZeitungPro-SemiBold';
	src:url('fonts/ZeitungPro-Semibold.otf') format("opentype");
}
*/
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

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

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

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

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

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

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

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

@media (max-width:1300px) {
	.maxW {padding:0 10px;}
	.pageTitleImageBox h1 {padding-left:4vw;}
	.underH1 {padding-left:4vw;}
	body.home .supportBoxesWrapper {
		max-width:860px;
	}
}
@media (max-width:954px) {
	body.home .supportBoxesWrapper {
		max-width:580px;
	}
}
@media (max-width:1148px) {
	.homeHeaderRight {
		margin-top:4vw;
	}
}
@media (max-width:673px) {
	body.home .supportBoxesWrapper {
		max-width:min-content;
	}
}
@media (min-width:1920px) {
	
}

@media (max-width:900px) {
	section.templateSections {
		display:block;
	}
	.sectionLeft,.sectionRight {width:100%;}
	.sectionRight {
		padding:0 var(--spacer);
		margin:0 auto;
	}
	.sectionLeft {height:250px;}
	.sectionLeftInner,.sectionRightInner {max-width:100%;}
}

@media (max-width:800px) {
	/h2:not(.blueTitle) {font-size:56px;}
	.nomobile {display:none;}
	.mainMenuFlex {align-items: end;}
	.logo-img {max-height:40px;}
	.parntnersInfoBox {
		position: relative;
		display: block;
		width: 100%;
		top: 0;
	}
	.footerFlex {display:block;}
	img.footerLogo {width:100%;margin-bottom:2vw;}
	.photonics21 {
    max-width: 100%;
    font-size: 0.9em;
    margin-top: 2vw;
	}
	.pageTitleImageBox h1 {font-size:70px;}
	.our-services .singleDirection::before {display:none !important;}
	.page .servicesDirections {
		display: grid;
		grid-gap: 5vw;
	}

}

@media (max-width:550px) {
	h2.h2HowHelp {font-size:50px;}
	.pageTitleImageBox h1 {font-size:50px;}
	body .customPostHeaderTitle {
		font-size:25px;
		line-height: 36px;
		}
		body .singleSupportBox {
			margin: 10px auto;
			width:290px !important;
		}
	img.calatogImage {max-width:350px;}	
	.caldera-grid .form-group > label {
		line-height: unset;
		height: unset;
	}
	.caldera-grid .form-group > label::after {
		display:none;
	}
}

@media (max-width:700px) {
	.blueTitle > strong {
    text-align:center;
	}
	.blueTitle img {
	flex:1 1 150px;
	text-align:center;
	}
	
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    our services page
\*------------------------------------*/
.servicesDirections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
a.singleDirection {
    display: flex !important;
    flex-direction: column;
    flex-wrap: wrap;
    margin: unset !important;
    align-items: center;
    background: white !important;
    color: rgb(var(--blue)) !important;
	padding:0 !important;
}
.our-services a.singleDirection {
 	opacity:0.6;
}
.our-services a.singleDirection.activeDirection {
	opacity:1;
}

.activeDirectionIcon {
	display:none;
}
a.singleDirection.activeDirection .activeDirectionIcon {
	display:block;
	width:150px;
	border:3px solid rgb(var(--orange));
	border-radius:150px;
	background:rgb(var(--orange));
}
a.singleDirection.activeDirection .directionLabel,
a.singleDirection.activeDirection .directionIcon {
	display:none;
}
.directionLabel {
	font-size: 1em;
    font-weight: bold;
    /* flex: 1 1 400px; */
    text-align: center;
    max-width: 150px;
	/text-transform:uppercase;
	margin-top:10px;
}
.directionLabel i {
	margin-right:0.5em;
}
img.directionIcon {
	/flex:0 1 150px;
    max-height: 120px;
    /margin-right: 3em;
    /padding-right: 1em;
    background: white !important;
	border: 3px solid rgb(var(--blue));
	height: 120px;
    width: 120px;
	border-radius:120px;
    object-fit: cover;
}

#service-3 img.directionIcon {
	border: 5px solid rgb(var(--orange));
	height: 200px;
	max-height: 200px;
	width: 200px;
	border-radius: 200px;
}
#service-3 img.activeDirectionIcon {
	/border:5px solid rgb(var(--orange));
	height:200px;
	max-height:200px;
	width:200px;
	border-radius: 200px;
}
.our-services .singleDirection:not(#service-3)::before {
	margin-bottom:60px;
}
.our-services .singleDirection::before {
	content:'';
	display:block;
	width:10px;
	height:40px;
	background:rgb(var(--blue));
	margin-bottom:1.75em;
}

h2.blueTitle {
	font-size:1.5em;
}
.blueTitle {
	background:rgb(var(--blue));
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	color:white;
	padding:0.3em 1em;
	text-transform:uppercase;
	/margin-top:8vw;
}

@keyframes showUp {
	from {width:0;}
	to {width:5%;}
}
@keyframes showUpFull {
	from {width:0;}
	to {width:90%;}
}
.platforms .blockGroup .wp-block-group__inner-container > h2::after,
.applications .blockGroup .wp-block-group__inner-container > h2::after {
	content:'';
	display:block;
	height:4px;
	width:0;
	background:rgb(var(--orange));
	animation: showUp 0.25s 0.5s ease forwards;
	
}
.blueTitle > strong {flex: 1 1 400px;}

.blueTitle img {
	max-height:150px;
	margin-right:1em;
	vertical-align:middle;
}
.blueOrienteering {
	background:rgb(var(--blue));
	color:white;
	padding:0 40px;
	align-items: center !important;
}
.blueOrienteering  h2.blueTitle {
	padding:0.3em 0;
	width: max-content;
}
.blueOrienteering  .blueTitle > strong::after {
    content: '';
    display: block;
    height: 4px;
	margin-top:10px
    width: 0;
    background: rgb(var(--orange));
    animation: showUpFull 0.25s 0.5s ease forwards;
}

.post-43 .blockGroup::before {
	content:'';
	display: block;
	position: relative;
	width: 0;
	height: 250px;
	margin-top: -250px;
}

.scoutingGroup {
	padding:15px;
	border:1px solid rgb(var(--orange));
}
.scoutingActivitiesBlueBox {
	display:block;
	width:100%;
	background:rgb(var(--blue));
	color:white;
	font-size:30px;
	font-weight:bold;
	padding:30px 0;
	margin:unset;
}

/.our-services article a,
/body:not(.page-id-49):not(.page-id-477):not(.page-id-47):not(.page-id-749):not(.single-post) article a,
.orangeLink {
	background:rgb(var(--orange));
	padding:12px 24px;
	color:white;
	display:inline-block;
	margin:0 0.3em;
}

/.flexBox .wp-block-column:first-child {
	margin-top:10px;
}
.flexBox .wp-block-column {
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	padding:1em;
	border: 1px solid rgb(var(--orange));
	margin-top:40px;
	min-height:390px;
	position:relative;
}
.flexBox .wp-block-column::before {
	content: '';
    display: block;
    width: 10px;
    height: 40px;
    background: rgb(var(--blue));
    margin-bottom: 1.75em;
	left:50%;
	transform:translateX(-50%);
	position:absolute;
	top:-40px;
}

#Innovation .flexBox {
	align-items: baseline;
}

/*------------------------------------*\
    partners page
\*------------------------------------*/
.projectPartnersList {
    width: 98%;
    margin-left: auto;
}
.projectPartnersWrapper > h2,
.clickerTitle {
	background:rgb(var(--blue));
	padding:0.5em 2em;
	color:white;
	text-transform:uppercase;
	font-size:1.5em;
	border-left: 10px solid rgb(var(--orange));
}
.blockGroup .wp-block-group__inner-container > h2 {
	background:rgb(var(--blue));
	padding:0.5em 2em;
	color:white;
	font-size:1.5em;
	border-left: 10px solid rgb(var(--orange));
}

.clickerTitle {
	font-size:1em !important;
}

.groupP {
	margin-left:4em;
}

.groupWidth {
    width: calc(100% - 5em);
    margin: 0 0 0 auto;
}

.partnerTrigger:before,
.groupP:before,
.clickerTitle:before {
	content:'\f358';
	display:inline-block;
	margin-right:1em;
    font-family: 'font awesome 5 pro';
	font-weight:bold;
}
.partnerTrigger.opened:before {
	content:'\f35b';
	display:inline-block;
	margin-right:1em;
    font-family: 'font awesome 5 pro';
	font-weight:bold;
}

.singlePartnerItem {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	border:3px solid rgb(var(--orange));
	/background:rgb(var(--blue));
	color:rgb(var(--blue));
	margin-top:2vw;
}

.singlePartnerItem:last-child {
	margin-bottom:4vw;
} 

.singlePartnerItem div.pContent {
	flex:1 1 380px;
	display: flex;
    flex-direction: column;
	align-self: flex-start;
}
span.projectRole {
	display: none;
	/display: inline-block;
    margin: 0 1em;
    font-size: 0.5em;
    opacity: 0.75;
	}
.pName {
	display: inline-block;
    font-size: 1.3em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.5em;
    width: 100%;
    background: rgb(var(--blue));
    color: white;
    padding: 0.3em 1em;
}
.pSubContent {
    margin-bottom: 0.5em;
}

.pShortName::before {
	font-size:0.75em; 
	content:'Short name:';
	display:inline-block;
	text-transform:capitalize;
	color:grey;
	margin-right:4px;
}
.pShortName, .pCountry {
	font-size:0.85em;
	text-transform:uppercase;
	display:inline-block;
}

.pShortName {
	margin:0 2em;
}

.pCountry::before {
	font-size:0.75em; 
	content:'Country:';
	display:inline-block;
	text-transform:capitalize;
	color:grey;
	margin-right:4px;
}

a.pWebsite {
	font-size:0.75em;
	background:rgb(var(--blue));
	color:white;
	padding: 0.15em 1em;
	margin-left:2em;
}
.singlePartnerBox a.pWebsite {
    margin: 1.5em auto 0;
    width: max-content;
    display: block;
}
.singlePartnerItem div.pLogoBox {
	flex:0 1 200px;
	text-align:right;
	max-width:200px;
	padding:10px 10px 10px 2vw;
}
.singlePartnerItem .pLogoBox  {
	background:white;
}
.singlePartnerItem .pLogoBox img {
	max-height:70px;
}
.svgActualMap > svg,
.svgActualMap {
	max-height:600px;
}
.svgActualMap  {
	display: flex;
    justify-content: flex-end;
}
.page-id-45 .svgActualMap  {
	display: flex;
    justify-content:center;
}
.closeBox {
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    border-radius: 25px;
    position: absolute;
    background: rgb(var(--orange));
	color:black;
	cursor:pointer;
    right: 0;
	right: -11px;
    top: -13px;
}

h2.inMap {
	grid-column-start: span 2;
	padding: 0.5em 0.5em 0.5em 1em;
	font-size:13px;
	text-align: center;
	background: rgb(var(--blue));
	color: white;
	margin: 0.5em;
}
.onePartner {
	width: 100%;
}

/*------------------------------------*\
   News media page
\*------------------------------------*/
.categoriesSwitcher {
	display:flex;
	flex-wrap:wrap;
	justify-content: flex-start;
	padding:0 var(--spacer);
}
.categoriesSwitcher .newsSwitchAll, 
.categoriesSwitcher .newsSwitch { 
	margin-left:10px;
	color:rgb(var(--greyText));
	text-transform:uppercase;
	font-size:16px;
	cursor:pointer;
	font-weight:normal;
	text-decoration:none;
}
.categoriesSwitcher .newsSwitchAll.categorySingled, 
.categoriesSwitcher .newsSwitch.categorySingled  { 
	color:rgb(var(--orange));

}
.page-id-47 .supportBoxesWrapper {
	justify-content:flex-start;
	max-width:1140px;
}

.page-id-47 .singleSupportBox {
	margin:var(--spacer) var(--spacer) 0 0;
}

.supportBoxTitleInside {
    margin: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* number of lines to show */
	-webkit-box-orient: vertical;
	min-height:4.5em;
	line-height:1.5em;
}

.supportBoxesWrapperMedia  .supportBoxTitleInside {
	text-align:center;
	min-height:unset;
	line-height:unset;
}

.newsCdate {
	color:rgb(var(--orange));
	margin:0 15px 15px 15px;
	font-size:10px;
}
.inOtherNewsWrapper .supportBoxTitle,
.page-id-749 .supportBoxTitle,
.special-category .supportBoxTitle,
.page-id-47 .supportBoxTitle  {
	text-align:left;
}
.inOtherNewsWrapper .singleSupportBox,
.page-id-749 .singleSupportBox,
.special-category .singleSupportBox,
.page-id-47 .singleSupportBox  {
	width:340px;
}
.noMorePosts {
	background:rgb(var(--greyText)) !important
}
/*------------------------------------*\
   Press page
\*------------------------------------*/
.greyTextColor a {
	color:inherit;
}
.inPageSubTitle {
	font-size: 50px;
	font-weight: 400;
	margin:var(--spacer) 0;
}
.spacerPaddingSides {
	padding:0 var(--spacer);
} 
.flexSpaceBetween {
	justify-content: space-between !important;
}

.spaceMarginBottom {
	margin-bottom:var(--spacer);
}
.marginSpacerTop {
	margin:var(--spacer) 0;
}

.noMargin {
	margin:unset;
}

.page-id-749 .supportBoxesWrapper {
	justify-content:flex-start;
}
.page-id-749 .supportBoxesWrapper a.singleNewsLinkBox {
	margin-right:2vw;
}

.inOtherNewsWrapper .supportBoxesWrapper  {
	/justify-content:space-between;
	justify-content:flex-start;
}
.inOtherNewsWrapper .supportBoxesWrapper a.singleNewsLinkBox:first-child .singleSupportBox,
.page-id-749 .supportBoxesWrapper a.singleNewsLinkBox:first-child .singleSupportBox {
	margin-left:0;
}
.inOtherNewsWrapper .supportBoxesWrapper a.singleNewsLinkBox:last-child .singleSupportBox {
	margin-right:0;
}

a.singleNewsLinkBox {
	width: max-content;
	display: block;
}

.aboveListTitle {
	margin-bottom:0 !important;
}
/*------------------------------------*\
   Single post template
\*------------------------------------*/
.customPostHeaderWrapper {
	background:rgb(var(--blue));
	margin-bottom:var(--spacer);
}
.customPostHeader {
    width: 100%;
	max-width:var(--maxW);
    min-height: 650px;
	background-size: cover;
	margin:0 auto;
	position:relative;
}
.customPostHeaderGradient {
	background:linear-gradient(0grad, rgba(var(--blue),0.65), transparent);
	position:absolute;
	width:100%;
	height:50%;
	bottom:0;
}
.customPostHeaderTitle {
    font-size: 40px;
    font-weight: bold;
    color: white;
    line-height: 50px;
	padding:0 var(--spacer) var(--spacer);
	position:absolute;
	bottom:0;
	max-width:100%;
}
.postHeaderInfoBox {
	margin-bottom:var(--spacer);
	display: flex;
	justify-content: space-between;
}
.authorInfoBox {
    display: flex;
    align-items: center;
	color:rgb(var(--orange));
}
.authorTextInfoBox {
	margin-left:calc(var(--spacer) / 2);	
}

.authorName {
	font-weight: 600;
    font-size: 20px;
}
.postCdate{
	font-size: 16px;
    font-weight: 100;
}

.avatarImage > img {
	border-radius:50px;
}
.postCategoriesList {
	display:flex;
	flex-wrap;
}
.categoryPostListItem { 
	margin-left:10px;
	color:rgb(var(--greyText));
	text-transform:uppercase;
	font-size:16px;
}

/*------------------------------------*\
   Share buttons
\*------------------------------------*/
.shareButtonsWrapper {
	margin:var(--spacer) 0;
}
.addtoany_shortcode .a2a_button_email > span,
.addtoany_shortcode .a2a_button_whatsapp > span,
.addtoany_shortcode .a2a_button_linkedin > span,
.addtoany_shortcode .a2a_button_facebook > span,
.addtoany_shortcode .a2a_button_twitter > span {
	border-radius:100px !important
	}
.addtoany_shortcode .a2a_button_email ,
.addtoany_shortcode .a2a_button_whatsapp ,
.addtoany_shortcode .a2a_button_linkedin ,
.addtoany_shortcode .a2a_button_facebook ,
.addtoany_shortcode .a2a_button_twitter {
	line-height: 0;
	}
.addtoany_shortcode .a2a_button_email  > span > svg,
.addtoany_shortcode .a2a_button_whatsapp  > span > svg,
.addtoany_shortcode .a2a_button_linkedin  > span > svg,
.addtoany_shortcode .a2a_button_facebook  > span > svg,
.addtoany_shortcode .a2a_button_twitter > span > svg {
	top: 50% !important;
    transform: translateY(-50%) !important;
    width: 90% !important;
    height: 90% !important;
}
.addtoany_list a {
	padding: 0 25px 0 0 !important;
}

h2.shareButtonsHeadline {
	color:rgb(var(--blue));
	/font-weight:bold;
}
h2.shareButtonsHeadline::after {
	content:'';
	display:block;
	margin-top:10px;
	height:4px;
	width:80px;
	background:rgb(var(--orange));
}

.logoClass {
	object-fit:contain !important;
	padding:10px;
	border: 2px solid rgb(var(--blue));
} 

/*------------------------------------*\
   Pilot Lines
\*------------------------------------*/
.pilotImageBox {position:relative;}
img.pilotLineLogo {
position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    margin-right: 0;
    /opacity: 0.7;
    background: white;
	padding:5px;
}

input#fld_1936205_1::-webkit-outer-spin-button,
input#fld_1936205_1::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cursorPointer {
	cursor:pointer;
}

.disabled {display:none !important;}

/*------------------------------------*\
    training list
\*------------------------------------*/
.trainingListhead {
	background:rgb(var(--blue));
	color:white;
 
	font-weight:bold;
}
.trainingListhead p {
	font-size:20px !important;
}

.trainingListItem:nth-child(even) {
	background:#f3f3f3;
}

.trainingListItem {
    display: flex;
    align-items: center;
	padding:15px 10px;
}
.trainingListItem .trainingDate {
	font-weight:bold;
}
.trainingListItem .trainingTime {
	font-style:italic;
}

.trainingListItem h3,
.trainingListItem p {
	margin:unset;
}
.trainingListItem p {
	font-size:14px;
}
.trainingListItem .trainingInfo {
	margin-right:20px;
	min-width: 200px;
}

#post-917 .inOtherNewsWrapper,
#post-914 .inOtherNewsWrapper,
#post-911 .inOtherNewsWrapper {
	margin-top:var(--spacer);
}

#post-917 .postHeaderInfoBox,
#post-914 .postHeaderInfoBox,
#post-911 .postHeaderInfoBox,
#post-917 .shareButtonsWrapper,
#post-914 .shareButtonsWrapper,
#post-911 .shareButtonsWrapper {
	display:none;
}

/*** NINJA FORMS ***/
.nf-field-label {
    position: relative;
    color: white;
    background: rgb(var(--blue));
    margin: unset !important;
    
    font-size: 12px;
    height: 29px;
    line-height: 29px;
}

.nf-field-label::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    right: -40px;
    width: 0;
    height: 0;
    border-bottom: 29px solid rgb(var(--blue));
    border-right: 40px solid transparent;
}

.nf-field-label > label {
	font-size:12px !important;
	padding: 3px 5px 3px 9px !important;
}
.nf-form-content label {
    font-size: 14px !important;
    line-height: 20px;
}

.nf-field-element div,
.nf-field-element select,
.nf-field-element input[type='text'] {
	background:transparent !important;
	border:1px solid #b5b5b5 !important;
	height:35px !important;
	padding: 3px 6px !important;
	font-size: 14px !important;
}
.nf-pass.field-wrap .nf-field-element:after {
    color: green;
    font-family: FontAwesome;
    font-size: 30px;
    content: "\f058";
    position: absolute;
    top: 0;
    right: 16px;
    height: 35px !important;
    line-height: 35px !important;
    transition: all .5s;
}
.nf-error.field-wrap .nf-field-element:after {
    background: #e80000;
    color: #fff;
    font-family: FontAwesome;
    font-size: 20px;
    content: "\f12a";
    position: absolute;
    top: 0px !important; 
    right: 0px !important; 
    bottom: 0px !important; 
    height: 35px !important;
    width: 35px !important;
    line-height: 35px !important;
    text-align: center;
    transition: all .5s;
}

.nf-form-content .list-select-wrap>div div:after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    height: 35px !important;
    line-height: 35px !important;
}
.nf-error .nf-error-msg {
	font-size:10px !important;
}

.nf-form-content .listcheckbox-wrap li:first-child, .nf-form-content .listradio-wrap li:first-child {
	margin-top:10px !important;
}

input.applyButton {
	background: rgb(var(--orange)) !important;
    color: white !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
    border: none !important;
	height:auto !important;
}
.listradio-wrap .nf-field-element label.nf-checked-label:before {
    background: rgb(var(--orange)) !important;
}
.listradio-wrap .nf-field-element label.nf-checked-label:after {
    border-color: rgb(var(--orange)) !important;
    transition: all .5s;
}

.checkbox-wrap .nf-field-element label.nf-checked-label:before, .checkbox-wrap .nf-field-label label.nf-checked-label:before, .listcheckbox-wrap .nf-field-element label.nf-checked-label:before, .listcheckbox-wrap .nf-field-label label.nf-checked-label:before {
    color: rgb(var(--orange)) !important;
}

.HideMe {
	display:none !important;
}
/*------------------------------------*\
    Filter Everything Filters
\*------------------------------------*/

.post-type-archive-supported_companies .wpc-filters-widget-wrapper {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.post-type-archive-supported_companies .wpc-filters-section {
	padding: unset;
}

.post-type-archive-supported_companies .wpc-filters-widget-top-container {
	display:none;
}

.post-type-archive-supported_companies .wpc-posts-found {
	display:none;
}
.post-type-archive-supported_companies .wpc-filters-section,
.post-type-archive-supported_companies .wpc-filter-content select  {
	margin-bottom: unset;
}
.post-type-archive-supported_companies .wpc-filter-content select {
	color:grey;
	font-size:0.95em;
	font-weight: 200;
	border-color:whitesmoke;
}
.post-type-archive-supported_companies .wpc-filter-header {
	background: rgb(var(--blue));
	padding: 0.5em 1em;
	color: white;
}
.post-type-archive-supported_companies .wpc-filter-title {
	margin-bottom: unset;
}
.post-type-archive-supported_companies .wpc-filter-content {
	color:grey;
}
.post-type-archive-supported_companies .supportBoxTitle > p {
	font-weight:normal;
}

.post-type-archive-supported_companies a.singleNewsLinkBox {
	width: max-content;
	display: flex;
	flex-direction: row;
	align-content: stretch;
	align-items: flex-end;
	margin: 0 auto;
}
.post-type-archive-supported_companies .singleSupportBox {
	margin:unset;
	width:300px;
}
.SPloopWrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
	grid-gap: 2em;
	margin-bottom: 2em;
}
.post-type-archive-supported_companies .supportBoxTitleInside {
	margin: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	min-height: unset;
	line-height: 1.5em;
}
.post-type-archive-supported_companies p.country {
	font-size:0.7em;
}
.post-type-archive-supported_companies .supportBoxTitle > p {
	padding:0.5em;
}
.post-type-archive-supported_companies section {
	padding:2em 0;
}
section#SPanalytics {
	background:whitesmoke;
}
/*------------------------------------*\
    Single Supported Company Page
\*------------------------------------*/
.post-type-archive-supported_companies h1 {
	margin:1em auto;
	text-transform: uppercase;
	font-size: 2em;
}
.post-type-archive-supported_companies h2 {
	margin:0 0 1em 0;
	text-align:center;
}

.single-supported_companies .customPostHeader {
	min-height: 250px;
}
img.supCompLogo {
	max-height:150px;
	display: block;
}
.single-supported_companies .customPostHeaderGradient {
	background: linear-gradient(0grad, rgba(var(--blue),0.65), transparent);
	position: absolute;
	width: 100%;
	height: 100%;
	/bottom: 0;
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
	padding:2em;
}

.single-supported_companies .customPostHeaderTitle {
	padding: unset;
	position: unset;
	bottom: unset;
}
.single-supported_companies h3 {
	font-size:1.5em;
	color: #808080;
}
.supCompGrid .row {
	display:flex;
	flex-wrap: wrap;
	margin-top:0.25em;
}
.spGridLabel {
	margin-right:15px;
	width:170px;
	font-size:0.85em;
}
.spGridValue {
	font-weight:bold;
}
.single-supported_companies a.orangeButton {
	margin-top:2em;
}
.supCompLogoWrapper {
	background: white;
	padding: 1em;
}

/*------------------------------------*\
    Google Maps
\*------------------------------------*/
.innerMarker {
	text-align:center;
}
img.MapLogo {
	max-height:80px;
}
.innerMarker a {
	text-decoration: none;
}
/*------------------------------------*\
    SP analytics
\*------------------------------------*/
.SPanalyticsWrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-evenly;
}

.SingleAnalyticsBox {
	margin:0 0 2em 0;
	text-align:center;
	flex:300px;
}

.SingleAnalyticsBox h3 {
	margin:unset;
	font-weight: normal;
	font-size: 0.9em;
}
.AnalyticsData {
	font-weight: bold;
	font-size: 1.7em;
	/background:rgb(var(--blue));
	/color:white;
	/padding:0.25em;
}
/*------------------------------------*\
    SP testimonials swiper
\*------------------------------------*/
.SPtestimonialsSwiper {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
}
.SPtestimonialsSwiper .swiper {
	width: 600px;
	/height: 300px;
}
.swiper-slide {
	cursor: pointer;
	margin:0 auto;
}
.swiper-pagination {
	position: relative !important;
	display: block;
	margin-top: 10px;
}
.credentials {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 1em;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	flex-wrap: wrap;
	color:white;
	text-shadow:2px 2px 3px black;
	max-width:400px;
}
.single-testimonialHover {
	display:none;
	transition:all 0.75s ease-out;
}
.Single_testimonial_wrapper {
	display:flex;
	position:relative;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	margin-bottom:2em;
}
.YTtestimonial {
	position: relative;
	cursor:pointer;
}
.SPname_wrapper {
	display:flex;
	flex-wrap: wrap;
	padding:0 15px;
}
.SPquote {
	padding:0 15px;
	font-size:1.5em;
}
.SPposition,
.SPCompany {
	margin-left:0.5em;
}

.SPname {
	font-weight: bold;
}
.SPposition {
	font-style: italic;
}
.SPCompany,
.hoverName {
	font-weight: bold;
	color:rgb(var(--orange));
}
.Single_testimonial_wrapper i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;
	font-size: 2em;
	font-weight: 100;
	text-shadow: 0 0 6px white;
	text-align: center;
	opacity: 0.65;
	transition: all 0.5s ease;
}
.page-id-2526 .Single_testimonial_wrapper i {
	position: absolute;
	top: 78%;
	left: 18%;
	transform: translate(-50%,-50%);
	color: white;
	font-size: 2em;
	font-weight: 100;
	text-shadow: 0 0 6px white;
	text-align: center;
	opacity: 0.65;
	transition: all 0.5s ease;
}
a#backFromTestimonialsList {
	margin:2em auto;
}
.swiper-slide:hover .single-testimonialHover {
	display:flex;
	position:absolute;
	width: 100%;
	height: 100%;
	padding:1em;
	background:rgba(255,255,255,0.75);
	flex-direction: column;
	align-content: center;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(2px);
	text-align:center;
}
a.orangeButton.allTestimonials {
	margin:0 auto;
}
.hoverQuote {
	font-size:1.5em;
	font-style: italic;
}
.hoverName {
	margin-top:8px;
	font-weight:bold;
}
.swiper-slide i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color:white;
	font-size: 60px;
	font-weight: 100;
	text-shadow:0 0 6px white;
	text-align: center;
	opacity:0.35;

	transition:all 0.5s ease;
}
.swiper-slide:hover i {
	font-size: 80px;
	opacity:0.75;
	transition:all 0.5s ease;
}
.icon::before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

img.YTthumb {
	object-fit:cover;
	margin:0 auto;
	display:block;
}
/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

