/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

:root {
  --TopMenuHeight: 20px;)
  --lightBlue:#5384b6;
  --darkBlue:#00659e;
  --red:#c31625;
  --brightBlue:#16a9db;
}

/* 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 20px/1.5 'Nunito Sans', sans-serif;
	/font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:white;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#efefef;
	text-decoration:none;
	position:relative;
	display:inline-block;
}

a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}

a::after {
	content:'';
	display:block;
	height:1px;
	background:var(--red);
	transform:scaleX(0);
	transform-origin: center;
	transition:all 0.2s ease;
}

a:hover:after {
	transform:scaleX(1);
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}


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

/* wrapper */
.wrapper {
	/max-width:1280px;
	/width:95%;
	/margin:0 auto;
	/position:relative;
}
/* header */
.header {

}
/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
}

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


body {
	
}

.menubox {
	position:relative;
	height:100px;
}

.nav {
	position:absolute;
	z-index:999;
	width:100%;
}


.menubox li.mega-menu-item {
	height:var(--TopMenuHeight);
	line-height:var(--TopMenuHeight);
	
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item {
	vertical-align:top;
	margin:0 0 0 3vw;
}




#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
	background:none;
	border:none;
	font-size:10pt;
	font-weight:bold;
	text-align:center;
	/padding-left:30px;
	/padding-right:30px;
	line-height:var(--TopMenuLineHeight);
	height:var(--TopMenuLineHeight);
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background:none;
	font-weight:bold;
}

@keyframes bouncein15 {
	from	{height:0;}
	to		{height:25px;}
}
@keyframes bouncein5 {
	from	{height:0;}
	to		{height:15px;}
}
@keyframes bouncein37 {
	from	{height:0;}
	to		{height:47px;}
}
@keyframes bouncein23 {
	from	{height:0;}
	to		{height:33px;}
}
@keyframes bounceinlogo {
	from	{top:-90px;}
	to		{top:0px;}
}

.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:first-child a.mega-menu-link:before {
	height:0;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item a.mega-menu-link:before {
	content:'';
	display:block;
	width:100%;
	height:47px;
	position:relative;
	transform:skew(30deg);
	left:-13px;
	/border-radius:0 0 5px 5px;
}

.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item a.mega-menu-link:before {
	
	/background:#16a9db;
	background:rgba(16, 98, 144, 0.5);
	/background:linear-gradient(0deg, rgba(255,255,255,1) 85%, rgba(255,255,255,0) 100%);
}


.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu  li.mega-menu-item a.mega-menu-link:before {
	padding-top:0;
	animation-duration:.25s;
	animation-fill-mode:forwards;
	animation-timing-function:ease-in;
	min-width:85px;
	
}

.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(1) a.mega-menu-link:before {
	/animation-name:bouncein23;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(2) a.mega-menu-link:before{
	/animation-name:bouncein23;
	animation-delay:0.1s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(3) a.mega-menu-link:before{
	/animation-name:bouncein23;
	animation-delay:0.3s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(4) a.mega-menu-link:before{
	/animation-name:bouncein23;	
	animation-delay:0.15s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(5) a.mega-menu-link:before{
	/animation-name:bouncein23;	
	animation-delay:0.05s;
}

.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-homebutton {
	position:relative;
	top:0px;
	animation-delay:1.75s;
	animation-duration:.25s;
	animation-fill-mode:forwards;
	animation-timing-function:ease-out;
	/animation-name:bounceinlogo;

}

#mega-menu-wrap-header-menu #mega-menu-header-menu .mega-sub-menu li.mega-menu-item a.mega-menu-link:before {
	height:auto;
	animation:none;
}

/* Menu texts appear */
@keyframes textinORIG {
	from	{color:transparent;}
	to		{color:white;}
}

@keyframes textin {
	from	{color:transparent;}
	to		{color:var(--darkBlue);}
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item a.mega-menu-link {
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	/color:transparent;
	color:var(--darkBlue);
}

img.mega-menu-logo {
	width:160px !important;
	height:60px !important;
}

.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(1) a.mega-menu-link {
	/animation-name:textin;
	animation-delay:1.2s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(2) a.mega-menu-link {
	/animation-name:textin;
	animation-delay:1.3s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(3) a.mega-menu-link {
	/animation-name:textin;
	animation-delay:1.4s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(4) a.mega-menu-link {
	/animation-name:textin;	
	animation-delay:1.5s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(5) a.mega-menu-link {
	/animation-name:textin;	
	animation-delay:1.6s;
}
.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item:nth-child(6) a.mega-menu-link {
	/animation-name:textin;	
	animation-delay:1.7s;
}

/* sub menus */ 

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu {
	background:rgb(61 130 170);
	border:1px solid white;
	border-radius:5px;
	overflow:hidden;
	box-shadow: 0 2px 36px -17px black;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	color:white;
	background:none;
	backdrop-filter:blur(4px);
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
	text-shadow:0 0 1px var(--red);
}
/* menu logo item */ 

#mega-menu-wrap-header-menu #mega-menu-header-menu li#mega-menu-item-29 > a.mega-menu-link {
	background:none;

}

#mega-menu-wrap-header-menu #mega-menu-header-menu input, #mega-menu-wrap-header-menu #mega-menu-header-menu img {
	background:white;
	border-radius:0 0 5px 5px;
	/border-bottom:2px solid #16a9db;
	border-bottom:1px solid #5598bed4;
	padding:10px;
	box-shadow: 0 2px 14px -6px #0000008a;
}


#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
	 background:transparent;
	 font-weight:bold;
 }

/* last update script */

.lastupdatebox {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
	display:inline-block;
	height:60px;
	/background:var(--brightBlue);
	background:rgba(16, 98, 144, 0.5);
	
	font-size:0.7vw;
	font-weight:bold;
	text-transform:uppercase;
	line-height:22px;
}
.lastupdatebox::before {
	content: '';
    display: inline-block;
    /border-top: 60px solid var(--brightBlue);
    border-top: 60px solid rgba(16, 98, 144, 0.5);
    border-left: 40px solid transparent;
    border-bottom: 0px solid transparent;
    position: absolute;
    left: -40px;
    top: 0;
}
.partnersListWrapper {
    max-width: 820px;
    margin: 0 auto;
}

/*
.arrowDown .singleYear::after {
	content:'\f102';
	display:inline-block;
	color:white;
	font-family:'Font Awesome 5 Pro';
	font-size:0.5em;
	margin-left:1em;
}

.singleYear::after {
	content:'\f103';
	display:inline-block;
	color:white;
	font-family:'Font Awesome 5 Pro';
	font-size:0.5em;
	margin-left:1em;
	opacity:0.5;
}
*/
.singlePartner:first-child {
	font-weight:bold;
}
.singlePartner:nth-child(even) {
	background:rgba(255,255,255,0.1);
}

.singlePartner {
	padding:3px 6px;
	margin:6px 0;
	cursor:pointer;
}

.partnerInfo {
    display: flex;
    flex-wrap: wrap;
}
.singlePartner:first-child .partnerInfo div {
	font-size:0.65em;
}

.porderNumber {
	font-style:italic;
	width:30px;
	font-size:0.85em;
}

.companyName {width:500px;margin-right:2em;font-weight:bold;}
.companyName p {
    display: inline;
    font-size: 0.6em;
    font-weight: 300;
}
.pShortName {width:200px;}

.singlePerson {
   padding: 1vw 1vw 1vw 4vw;
    display: flex;
    align-items: center;
}

.personBio {
	margin-left:25px;
}

.personBio div:first-child {
	font-weight:bold;
}
.personBio div:nth-child(2) {
	font-style:italic;
	font-size:0.85em;
}
.personBio a {
	font-size:0.85em;
}

img.personImage {
    height: 100px;
    width: 100px;
    border-radius: 70px;
    object-fit: cover;
}

a.websiteButton {
	background: #1f6f9d;
    color: white;
    border-radius: 15px;
    padding: 0px 7px;
    font-size: 0.55em;
    display: block;
    width: max-content;
    margin: 0 0 0 30px;
}

/* page */ 

@keyframes mainhandle {
	from {left:-50%;}
	to {left:0;}
}

body {
	max-width: 1920px;
    /*/background-color: var(--darkBlue);*/
    background-size: cover;
    /*/background-blend-mode: hard-light;*/
    background-position-y: 20%;
	background-repeat-y:repeat;
    /*/position: relative;*/
	/*/overflow-x:hidden;*/
	margin:0 auto;
}

.wrapper {
	position:relative;
	width:100%;
	min-height:calc(100% - 61px);
	max-width:1920px;
	overflow-X:hidden;
}

@keyframes mainin {
	from {transform:scaleY(0);}
	to {transform:scaleY(1);}
}

main {
    /background: #00476f69;
    background: rgba(16, 98, 144, 0.5);
    backdrop-filter: blur(3px);
    color: white !important;
    max-width: 80%;
    position: relative;
	transform:scaleY(1);
    border: 1px solid #16a9db;
	border-radius:5px;
 	margin:0 auto;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-timing-function: ease-in;
    /animation-name: mainin;
    animation-duration: .2s;
}

.topbarinner {
	background-size:100%;
	/background-blend-mode:luminosity;
	transform:skew(-57deg) translateX(20%);
}

.topbar {
    display: block;
    position: relative;
	min-height:60px;
    top: 5px;
    height: auto;
    width: 100%;
    z-index: 801;
	box-shadow:0 3px 9px -5px var(--red), 0 0 38px -23px black;
	transform: skewX(57deg) translateX(-20%);
	overflow:hidden;
	
    animation-name: mainhandle;
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-delay: 0s;

}

.topbarinner {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}

@keyframes mainhandleright {
	from {right:-200%;}
	to {right:-35%;}
}

.bottombar {
    display: block;
    position: relative;
	z-index: 1;
	top: -5px;
	right:-35%;
    height: 30px;
    width: 75%;
	float:right;
	box-shadow: 0 -3px 6px -5px var(--red);
	transform: skewX(57deg);
	/margin-bottom:65px;
	overflow:hidden;
	
    /animation-name: mainhandleright;
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

.bottombarinner {
	position:absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
	width:108%;
	background-size:100%;
	/background-blend-mode:hard-light;
	transform:skew(-57deg) scaleX(1) translateX(-30px);

}

.barinnertext {
	margin-left:7vw;
	text-transform:uppercase;
}

.barinnertext h1 {
	margin:unset;
	line-height:60px;
	color:whitesmoke;
	font-size:1.5em;
	font-weight:bold;
	/text-shadow: 0 0 15px var(--red);
	text-shadow: 0 0 5px var(--red);
}

.topbarinner {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00659e+0,5384b6+100 */
background-color: rgb(0,101,158); /* Old browsers */
background-color: -moz-linear-gradient(-45deg,  rgba(0,101,158,1) 0%, rgba(83,132,182,1) 100%); /* FF3.6-15 */
background-color: -webkit-linear-gradient(-45deg,  rgba(0,101,158,1) 0%,rgba(83,132,182,1) 100%); /* Chrome10-25,Safari5.1-6 */
background-color: linear-gradient(135deg,  rgba(0,101,158,1) 0%,rgba(83,132,182,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00659e', endColorstr='#5384b6',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */


}
.bottombarinner {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00659e+0,5384b6+100 */
background-color: #00659e; /* Old browsers */
background-color: -moz-linear-gradient(45deg,  #00659e 0%, #5384b6 100%); /* FF3.6-15 */
background-color: -webkit-linear-gradient(45deg,  #00659e 0%,#5384b6 100%); /* Chrome10-25,Safari5.1-6 */
background-color: linear-gradient(45deg,  #00659e 0%,#5384b6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00659e', endColorstr='#5384b6',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

main section {
	padding: 4em;
	z-index:800;
}

main section:before {
	content:'';
	display:block;
	width:10px;
	background:red;
}
	
.footer {
    position: relative;
    width: 80%;
    margin: 65px auto 0;
    border-radius: 5px 5px 0 0;
    height: auto;
    z-index: 999;
	bottom:0;
    /background: #00517f;
    background: rgba(0, 81, 127, 0.75);

	font-size:0.8em;
    text-align: center;	
	
	/animation-name: footerin;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: .25s;
}
.footerblockswrapper {
	padding:1em;
}

.footerblock {
	display:inline-block;
	width:25%;
	text-align:left;
	vertical-align:top;
	padding:0 10px;
}

.blockheadline {
	color:var(--brightBlue);
	font-weight:bold;
	margin-bottom:1em;
}

.footer p {
	margin:0;
}

.eusentence {
	color:#16a9db;
	font-size:10pt;
	padding:7px 1em;
}

.eusentence p,
.eusentence:before {
	display:inline-block;
	vertical-align: bottom;
}

.eusentence p {
	width:calc(100% - 160px);
}

.eusentence:before {
	content: '';
    background: url(/resources/euflag.png);
    height: 40px;
    width: 80px;
    background-size: contain;
    background-position-x: right;
    background-repeat: no-repeat;
	
}

@keyframes footerin {
	from {bottom:-200px;}
	to {bottom:0}
}


/* caldera forms */ 

.contact-us #caldera_form_1 {
	max-width:500px;
	position:relative;
	left:0;
	margin:0 auto 0 0;
}

.wrapper .caldera-grid .form-control {
	background-color:var(--brightBlue);
	border:none;
	color:white;
}
.wrapper .caldera-grid .form-control::placeholder {
	color:white;
}

.wrapper .caldera-grid p, 
.wrapper .caldera-grid .checkbox label, .caldera-grid .radio label {
	font-size:0.8em;
	/color:var(--brightBlue);
	color:white;
}

.wrapper .caldera-grid a:focus {
	/color:var(--brightBlue);
	color:white;
	text-decoration:none;
}

.wrapper .caldera-grid a:hover {
	color:white;
	text-decoration:none;
}

.wrapper .caldera-grid .help-block {
	font-size:0.65em;
	/color:var(--brightBlue);
	color:white;
}


/* news and events */ 

.newseventslist {
}

.newseventslist a {
	display:flex;
	color:white;
	margin:9px 0;
}

.dateclass,
.titleclass,
.newsid {
	/display:inline-block;
	padding:0 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position:relative;
}

.news,
.event {
	display:flex;
	width:100%;
}
.newsid {
	font-weight:bold;
	text-align:center;
	color: var(--lightBlue);
	width:200px;
	background:var(--darkBlue);
	
}
.newsid:after {
	content:'';
	position:absolute;
	z-index:1;
	left:100%;
	width: 0; 
	height: 0; 
	border-top: 15px solid transparent;
	border-bottom:15px solid transparent;
 	border-left: 10px solid var(--darkBlue);

}
.dateclass {
	background:var(--lightBlue);
	color:var(--darkBlue);
	padding:0 15px;
	width:30%;
	text-align:center;
	background:whitesmoke;
}

.dateclass:after {
	content:'';
	position:absolute;
	z-index:1;
	left:100%;
	width: 0; 
	height: 0; 
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
 	border-left: 10px solid var(--lightBlue);

}

.titleclass {
	background:white;
	color:var(--darkBlue);
	width:100%;
	font-weight:bold;
	padding: 0 15px;
}

	
	
.cartoon .blocks-gallery-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
    grid-gap: 20px;
	width:100%;
}

.cartoon li.blocks-gallery-item {
	width:100% !important;
	margin:unset !important;
	
}

.cartoon li.blocks-gallery-item img {
	max-height:200px;
	max-width:200px;
	margin:0 auto;
	
    box-shadow: 0 0 50px -20px var(--red);
    border: 1px solid #16a9db;
}

.cartoon:hover a:after {
	display:none;
}
	
#fancybox-content {
	border: 1px solid #16a9db;
	border-width:1px !important;
}
	
.videosize {
	max-width:800px;
	margin:0 auto;
}	

.collumsimages {
	margin: 0 2em;
}
	
.collumsimages .wp-block-image {
	margin:0;
}	

.collumsimages .wp-block-image img {
	max-height: 440px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}


/***** Scientific publications */ 
.yearWrapper {
    margin-top: 1em;
	cursor:pointer;
}
.singleYear {
    font-size: 1.5em;
    font-weight: bold;
}

a.singlePublication {
	display:block;
	/width:max-content;
	color:white;
}
a.singlePublication i {
	font-size:0.7em;
	vertical-align: baseline;
	margin-left:1em;
	color:var(--darkBlue);
	font-family: 'FontAwesome';
    font-style: normal;
	}

p.citation {
	margin:0 0 20px 0;
	font-size:0.65em;
	text-align:justify;
	max-width:800px;
}
.wp-block-image img {
    border: 1px solid rgb(97 175 218);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 40px #369cd5;
}


#post-44 .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
	width:200px !important;
	flex: 0 0 200px;
}
body #post-44 .is-layout-flex {
	justify-content: space-around;
}
.singlePub {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background: rgba(255,255,255,0.1);
	margin-bottom: 1vw;
	padding: 1vw;
}
.pubMidBox {
	max-width:80%;
}
.pubLinkOut i {
	font-size: 50px;
}
img.pubImage {
	max-width: 150px;
	border: 1px solid rgb(97 175 218);
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 40px #369cd5;
}
.singleGoal {
	display:flex;
	flex-wrap:wrap;
	margin-bottom: 3vw;
}
.singleGoal p {
	margin:unset;
	font-size: 0.9em;
	flex:1 0 300px;
	text-align: justify;
}
.titlebox {flex:0 0 300px;}
.goalTitle {
	font-weight: bold;
}
.singleGoal p a,
.goalbtn {
	background:white;
	color:var(--red);
	padding:0.5em 1.5em;
	/border-radius: 50px;
	margin-top: 1em;
	font-size:0.8em;
	font-weight: bold;
}

.flexme {
	display:flex;
}
.justifyme {
	text-align: justify;
}

.swiper.research-highlights-slider {
	max-width:80%;
	/height:300px;
	margin:1vw;
	font-size:15px;
	padding:2vw;

	border: 1px solid #16a9db;
	border-radius: 5px;
	background: rgba(16, 98, 144, 0.5);
	backdrop-filter: blur(3px);
	margin:0 auto;
	margin-top:2vw;
	position: relative;
}
.research-highlights-slider .swiper-slide {
	padding:2vw;
	display:flex;
	flex-direction: column;
}
.research-highlights-slider h3 {
	margin:usent;
}

img.slideImage {
	display: block;
	/max-width:70%;
	width:100%;
	margin:0 auto;
	height:200px;
	object-fit: cover;

	border: 1px solid rgb(97 175 218);
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 40px #369cd5;
}
.highlightsImagesWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
}
img.highlightImage {
	max-width: 300px;
	border: 1px solid rgb(97 175 218);
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 40px #369cd5;
}
@media (min-width: 782px) {
	.wp-block-column:not(:first-child) {
		margin-left: 0px;
	}	
	
}

.videoAlertBox {
	display: flex;
	flex-direction: column;
	max-width: 80%;
	margin: 1vw;
	font-size: 15px;
	padding: 2vw;
	border: 1px solid #16a9db;
	border-radius: 5px;
	background: rgba(16, 98, 144, 0.5);
	backdrop-filter: blur(3px);
	margin: 0 auto;
	margin-top: 2vw;
	position: relative;
	text-align: center;
}
.videoAlertBox h2 {
	font-size: 2.5em;
}
.videoAlertBox a::after {
	display: none;
}
.videoAlertBox i {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	color:rgba(255,255,255,0.35);
	font-size: 5em;
	transition: all 0.1s ease-in;
	z-index: 10;
}
.videoAlertBox:hover i {
	color:rgba(255,255,255,0.7);
	transition: all 0.1s ease-in;
}

.videoModal.modal {
	width:80% !important;
	max-width:80% !important;
	height:auto !important;
	aspect-ratio: 16 / 9 ;
}
.videoModal.modal iframe {
	width:100%;
	height:auto;
	aspect-ratio: 16 / 9 ;
}
img.videoPopThumb {
	width:100%;
	max-width:500px;
	margin:0 auto;
	display: block;
	filter: drop-shadow(5px 5px 10px #185678);
	border: 1px solid #5095be;
}
	
	
	
	


/**** MEDIA ****/

@media only screen and (max-width:800px) {
	main section {
		padding:1em;
	}
	
	.topbar,.bottombar {
		animation:none;
	}
	.bottombar {right:-35%;}
	main {
		margin:0 auto;
		width:99%;
		max-width:unset;
		animation:none;
		transform:scale(1);
	}
	.eusentence p, .eusentence:before {
		display:block;
	}
	.eusentence p {width:100%}
	.eusentence:before {
		background-position-x: center;
		margin:0 auto 5px;
	}
	/* menu animation disable */ 
	/* item link :before */  
	.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item a.mega-menu-link:before {
		animation:none;
	}
	/* item link */
	.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item a.mega-menu-link {
		animation:none;
		color:white;
		font-size:1.3em;
	}
	/* logo item */
	.menubox #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-homebutton {
		animation:none;
		top:0;
		background:white;
	}
	#mega-menu-wrap-header-menu #mega-menu-header-menu li#mega-menu-item-29 > a.mega-menu-link {
		padding:0;
		text-align:center;
		margin-top:30px;
	}
	body #mega-menu-wrap-header-menu li.mega-menu-item img.mega-menu-logo {
		border-radius:0 !important;
		border-bottom:none !important;
		box-shadow:none !important;
	}
	/* submenu */
	#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu {
		background:none;
		border:none;
		box-shadow:none;
	}
	/* submenu item */
	#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item {
		margin:0 15px;
	}
	/* sub menu item link */
	#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
	#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		text-shadow:none;
		background:none;
		margin-left:15px;
		font-size:1.2em;
	}		
	/* mobile menu bar logo */
#mega-menu-wrap-header-menu .mega-menu-toggle .mega-toggle-block-2 a.mega-menu-logo img.mega-menu-logo {
	width:150px;
	}
	/* footer */ 
	.footer {
		width:99%;
	}
	.footerblock {
		display:block;
		width:100%;
	}
	
}
