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

*/
/*------------------------------------*\
    Variables
\*------------------------------------*/
*:root {
	--orange:#f15d2a;
	--darkGrey:#4d4d4d;
	--brightBlue:#009EDE;
	--blue:#1f5ab0;
	--green:#4b871e;
	--yellow:#fff100;
	--red:#ec1c24;
}

/*------------------------------------*\
    Globals
\*------------------------------------*/
.maxW800 {
	max-width: 800px;
}
.maxW1000 {
	max-width: 1000px;
}
.maxW1200 {
	max-width: 1200px;
}
.marginCenter {
	margin:0 auto;
}
.marginRight {
	margin:0 0 0 auto;
}
.textAlignCenter {
	text-align: center;
}
.textAlignJustify {
	text-align: justify;
}
.textAlignRight {
	text-align: right;
}
.whiteText {
	color:white;
}
.centerTitle {
	max-width: max-content;
	margin:0 auto;
	display: block;
	padding:0.35em 3em;
}
.mainTexture {
	/*background-color:var(--green);*/
	background-image:url("img/elements/BG.webp");
	background-repeat: no-repeat;
	background-position: center;
}
a.orangeButton,
.orangeButton {
	cursor: pointer;
	background: var(--orange);
	padding:0.15em 2em;
	color:white;
	font-size:0.8em;
	margin-top:1em;

	transition: all 0.15s ease;
}
a.orangeButton:hover,
.orangeButton:hover {
	font-weight: bold;
	color:white;

	transition: all 0.15s ease;
}
a.greyButton,
.greyButton {
	cursor: pointer;
	background: #e6e6e6;
	padding:6px 14px;
	color:#999999;
	font-size:1em;
	margin-top:1em;
	border-radius: 4px;

	transition: all 0.15s ease;
}
a.greyButton:hover,
.greyButton:hover {
	color:black;

	transition: all 0.15s ease;
}
a.websiteButton,
.websiteButton {
	cursor: pointer;
	background: #85d6e0;
	padding: 6px 14px;
	color: white;
	margin: 1em 1em 0 0 ;
	border-radius: 4px;
	transition: all 0.15s ease;
	font-size: 0.85em;
}
a.websiteButton:hover,
.websiteButton:hover {
	background: #59abb6;
	color:white;

	transition: all 0.15s ease;
}

.dispBlock {
	display: block;
}
.fitMe {
	max-width: max-content;
}
.flexRow {
	display: flex;
	flex-direction: row;
}
.flexColumn {
	display: flex;
	flex-direction: column;
}
.flexColumnCenter {
	align-items: center;
}
.centerFlex {
	justify-content: center;
}
.evenlyFlex {
	justify-content: space-evenly;
}
.betweenFlex {
	justify-content: space-between
}
.flexToBottom {
	align-items: flex-end;
}
.flexWrap {
	flex-wrap: wrap;
}
.whiteBlock {
	border:1px solid #F1F2F2;
	background:white;
}
.afterBorder,
.beforeBorder {
	position: relative;
}
.afterBorder::after,
.beforeBorder::before {
	display: block;
	content:'';
	height:20px;
	width:100%;
	background:url('/wp-content/themes/BBtheme/img/elements/BorderTexture.webp');

}
.fontItalic {
	font-style: italic;
}
.upperCase {
	text-transform: uppercase;
}
h2 {
	font-weight: 700;
	padding:20px 0;
	font-size:1.5em;
}
.greenText {
	color:#55be36;
}

h1.pageTitle {
	color:#1f5ab0;
	/*color:#e6e6e6;*/
	font-size: 1.5em;
	margin:10px auto;
	text-transform: uppercase;
}
.expanded {
	height: auto !important;
}

/*------------------------------------*\
    Custom ScrollBar
\*------------------------------------*/
/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius:20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
	border-radius:20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--orange);
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* 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%;
}
body {
	font:300 14px/1.4 'Arial', Helvetica, Arial, sans-serif;
	color:var(--darkGrey);
	min-height:100vh;
	background:url('/wp-content/themes/BBtheme/img/elements/HyperImage_BG.webp');
	background-size:cover !important;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

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

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

}
/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {
	z-index: 10;
	position: relative;
	background: white;
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
	position: relative;
	background:white;
	padding:15px 0;
	font-size:0.85em;
	margin-top:40px;
}
.footer::after {
	content: '';
	position: absolute;
	width: calc(100% + 50px);
	height: calc(100% + 20px);
	top: -20px;
	left: -50px;
	z-index: -1;
	background: url('/wp-content/themes/BBtheme/img/elements/HI_stripes.webp');
}
footer p {
	margin:unset;
}
/*------------------------------------*\
    Mega Menu
\*------------------------------------*/
nav {
	position: relative;
}
nav::before {
	content: "";
	width: 300%;
	transform: translateX(-50%);
	height: 40px;
	position: absolute;
	top: 0;
	left: 50%;
	background: white;
}
.topMenuWrapper::after {
	content: '';
	position: absolute;
	width: calc(100% + 50px);
	height: calc(100% + 20px);
	top: -10px;
	left: -50px;
	z-index: 0;
	background: url('/wp-content/themes/BBtheme/img/elements/HI_stripes.webp');
}
.topMenuWrapper {
	background:white;
	position: relative;
	overflow-x: clip;
}
/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header {
	padding-bottom:10px;
}
.headerLogo > img {
	width: 100%;
	max-width: 400px;
	max-height: 150px;
	display: block;
	margin: 0 auto;
}
.projectTagLine {
	font-size:1em;
	margin:0px auto 30px;
}
/*------------------------------------*\
    HOME PAGE
\*------------------------------------*/
#frontProjectImageSlider .sectionInner {
	position: relative;
}
#frontProjectImageSlider .sectionInner .rightSide {
	max-height: 800px;
	position: absolute;
	right: 0;
	top: 0;
}
.projectImageBox {
	position: relative;
	min-height: 50vh;
	width: 100%;
}

.projectImageBox > svg {
	max-height:800px;
	margin: 0 auto;
	display: block;
	left: -4vw;
	position: relative;
}

img.rightSlideImage {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	width:100%;
	max-width:70%;
	min-width:50%;
	height:auto;
	max-height:100%;
	z-index: -1;
	object-fit: contain;


	transition:all 1s ease;
}

img.hovered {
	position: absolute;
	top: 0;
	right: 0;
	width:100%;
	max-width:70%;
	min-width:50%;
	height:auto;
	max-height:100%;
	object-fit: contain;
	opacity: 1;

	transition:all 1s ease;
}

rect.cls-1 {
	backdrop-filter: blur(2px);
	fill:rgba(0,0,0,0.15);
	transition:all 1s ease;
	opacity:1;
}

rect.hovered {
	fill:white;
	opacity: 0;
	transition:all 1s ease;
}

#key1, #key2, #key3, #key4 {
	cursor: pointer;

}
#frontProjectImageSlider {
	position: relative;
}
#frontProjectImageSlider::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 80%;
	background: white;
	filter: blur(100px);
}
#projectDesc .sectionInner {
	padding-right:120px;
	position: relative;
}
#projectDesc .sectionInner::after {
	content: '';
	bottom: 0px;
	right: 0;
	position: absolute;
	width: 100px;
	height: 100%;
	background-position-y: center !important;
	background: url(/wp-content/themes/BBtheme/img/elements/HI_sidePanel.webp) no-repeat;
	background-size: contain !important;
}
#frontNumbersAnimation .sectionInner {
	padding:60px 0;
}

.numberItem.numberValue {
	font-size: 3em;
	font-weight: bold;
	color:var(--darkGrey);
}
.numberLabel {
	text-transform: uppercase;
}
.numberLabel::before {
	content: '';
	display: block;
	position: relative;
	border-radius: 6px;
	width: 50px;
	height: 8px;
	margin:0 auto 8px;
}

.singleNumber:nth-child(4) .numberValue::before {
	content:'€ ';
	display: inline;
}
.singleNumber:nth-child(4) .numberValue::after {
	content:' M';
	display: inline;
}

.singleNumber:nth-child(1) .numberLabel::before {
	background:var(--blue);
}
.singleNumber:nth-child(2) .numberLabel::before {
	background:var(--green);
}
.singleNumber:nth-child(3) .numberLabel::before {
	background:var(--yellow);
}
.singleNumber:nth-child(4) .numberLabel::before {
	background:var(--red);
}
.numberLabel::before {
	background:green;
}
#frontPartnersSlider .swiper {
	width: 100%;
	height: auto;
}
img.frontSliderLogo {
	height:150px;
	width:200px;
	object-fit: contain;
}
.swiper-slide {
	flex-wrap: wrap;
	justify-content: center;
	display: flex !important;
}
.swiper-slide img.frontSliderLogo{
	filter:saturate(0);
}
.swiper-slide:hover img.frontSliderLogo {
	filter:saturate(1) ;
}
.singleStuff {
	width: 220px;
	text-align: center;
}
.partnerDesc {
	margin: 30px 0 15px;
}
img.partnerStuff {
	width: 180px;
	height: 180px;
	object-fit: contain;
}
/*------------------------------------*\
    FOOTER
\*------------------------------------*/
img.euFooterLogo {
	width: 60px;
	margin-bottom:6px;
}
/*------------------------------------*\
    PROJECT
\*------------------------------------*/
.singleCompartment {
	max-width: 300px;
	background:#e6e6e6;
	padding:15px;
	position: relative;
	margin: 30px 0;
	z-index: 1;
}
.singleCompartment::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	bottom: -8px;
	left: 0;
	z-index: -1;
	background-size: cover !important;
	background: url(/wp-content/themes/BBtheme/img/elements/HI_boxStripe.webp) no-repeat;
}
.singleCompartment h3 {
	text-transform: uppercase;
	font-weight: 900;
	font-size:1.5em;
}
.singleCompartment p {
	font-weight: 700;
	font-size:1.15em;
	position: relative;
	z-index: 1;
}
span.bgNumber {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 900;
	font-size: 40rem;
	z-index: 0;
}
#partnersList {
	padding-top: 40px;
}
.singlePartner {
	margin-bottom: 70px;
	cursor: pointer;
}
img.parnterLogo {
	max-width: 200px;
	width: 200px;
	max-height: 80px;
	height: auto;
	object-fit: contain;
}
.partnerHeaderRight .greyButton {
	margin-right:20px;
}
.partnerHeader h2 {
	padding:unset;
	margin:unset;
	font-size:2em;
	font-weight: 900;
	max-width: 50%;
}
.partnerHeader {
	position: relative;
}
.partnerHeaderRight {
	flex: 0 0 300px;
}
.partnerHeader::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	bottom: -18px;
	left: 0;
	z-index: -1;
	background-size: cover !important;
	background: url(/wp-content/themes/BBtheme/img/elements/partnerAfter.webp) no-repeat;
}
.singleItem {
	margin-bottom:10px;
}

section#linkedinFeed .sectionInner {
	filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.15));
	height: 700px;
	overflow-y: auto;
	overflow-x: clip;
}
section#newsroomLinkedinFeed .sectionInner {
	max-height:80vh;
	overflow-y: auto;
	overflow-x: clip;
}
/*------------------------------------*\
    Contacts
\*------------------------------------*/
#contacts div {

}
.contactsLeft h2 {
	margin:0 0 8px 0;
	padding:unset;
}
.contactsLeft div {
	margin:0 0 8px 0;
}
.contactForm {
	/max-width: 600px;
}
.verticalSeparator {
	width: 5px;
	border-radius: 10px;
	background: #55be36;
	height: inherit;
}
.nf-form-cont ::placeholder {
	color:#00adee;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    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;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:600px) {

	.projectImageBox > svg {
		left: 0%;
	}
	img.rightSlideImage {
		display: none;
	}
}
@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) {

}

/*------------------------------------*\
    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 {

}

/*------------------------------------*\
    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;
	}
}
