/*
Theme Name: Climate Extremes 2022
Description: Climate Extremes 2022
Author: NTech Media
Author URI: http://ntechmedia.com


	Base Theme Name: HTML5 Blank
	Base Theme URI: http://html5blank.com
	Base Description: HTML5 Blank WordPress Theme
	Base Version: 1.4.2
	Base Author: Todd Motto (@toddmotto)
	Base Author URI: http://toddmotto.com
	Base Tags: Blank, HTML5, CSS3
	
	Base License: MIT
	Base License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
/* Disabling due to issues, and because HTML5 Boilerplate made the same change */
/* for similar reasons 4 years ago and still hasn't added it back in yet */
/* https://github.com/h5bp/html5-boilerplate/commit/0d7f8d775ab4ab171c6372f992d506088ca5d3ed */
/* http://aestheticallyloyal.com/public/optimize-legibility/ */
/*	text-rendering:optimizeLegibility; */
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font: 400 14px/1.2 'Open Sans', Helvetica, Arial, sans-serif;
	color: #000000;
}

p {
	margin: 0.8em 0;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	height: auto;
	vertical-align:bottom;
}
a {
	color: #01b6ed;
	text-decoration: underline;
}

.has-white-color a {
	color: #FFFFFF;
}

a:hover {
	color: #01b6ed;
}

.has-white-color a:hover {
	color: #FFFFFF;
}

a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}

.wrapper a {
	position: relative;
}
/*
.wrapper a::after {
	content: '\00A0\00A0\00A0';
	display: inline-block;
	text-decoration: underline;
}
*/
.wrapper figure > a::after {
	display: none;
}

/* .wrapper a:hover::before {
	content: '\00BB';
	position: absolute;
	right: 0px;
	top: 0px;
	line-height: normal;
}
 */

input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    COLOURS
\*------------------------------------*/

:root body {
	--wp--preset--color--vivid-cyan-blue: #005baa !important;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	position: relative;
	max-width: 100%;
	padding: 0px;
}

/* header */
.header_wrapper {
	background-size: cover;
	background-position: center;
}

.header_inner {
	background: rgba(0,0,0,0.15);
	padding-top: 90px;
}

.home .header_inner {
	background: none;
	padding-top: 0px;
}

.home .header_wrapper {
	min-height: 700px;
	display: flex;
	flex-direction: column;
	background-color: rgba(0,0,0,0.75);
}

.header_shadow {
/*	box-shadow: 0px 0px 50px 50px rgba(0, 0, 0, 0.5);*/
	max-width: 1440px;
	margin: 0px auto;
}

.header {
	position: fixed;
	z-index: 10;
	top: 0px;
	right: 0px;
	left: 0px;
	transition: 0.5s all;
}

.header_wrap {
	display: flex;
	margin: 0px auto;
	max-width: 1440px;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 20px 20px;
	position: relative;
	z-index: 10;
}
/*
.header::before {
	content: '';
	box-shadow: 0px 0px 50px 50px rgba(0, 0, 0, 0.5);
/	max-width: 1440px;/
	margin: 0px auto;
	width: 100%;
	display: block;
	position: absolute;
	z-index: 1;
	top: 0px;
}
*/
.sticky {
	background: linear-gradient(270deg, #0058a3, #002f57); /* #005caa;*/
}

/* logo */
.logo {
	margin-right: 30px;	
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
}
.logo-img {
	display: block;
	max-width: 360px;
}
/* nav */

.nav {
	flex: 1;
	position: relative;
	z-index: 2;
}

.nav ul {
	display: flex;
	list-style: none;
	padding: 0px;
	margin: 0px;
	justify-content: flex-end;
}

.nav ul li.dropdown_left {
	/*flex: 1;*/
	position: relative;
}

.nav ul.sub-menu {
	display: none;
	position: absolute;
	z-index: 100;
}

.nav li.dropdown_left > ul.sub-menu {
	right: 0px;
}

.nav li.dropdown_left ul ul.sub-menu {
	left: auto;
	right: 100%;
	border-right: 2px solid #005caa;
	border-left: none;
}


.nav ul li a {
	font-size: 15px;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	display: block;
	text-align: center;
	color: #FFFFFF;
	position: relative;
	text-decoration: none;
	padding: 6px 12px;
	letter-spacing:0.05em;
	white-space: nowrap;
}

.nav ul li:hover a::after,
.nav ul li.current_page_item a::after {
	content: '';
	display:block;
	position:absolute;
	height: 5px;
	width: calc(100% - 24px);
	background-color: white;
	bottom: -10px;
}

/*
.nav ul li:hover a::after {
	background: rgba(235,33,40,0.15); 
	background: rgba(255,255,255,0.35);
	line-height: 80px;
	content: ' ';
	position: absolute;
	bottom: 0px;
	height: 1px;
	background: #eeeeee;
}
*/

.nav ul li:hover > ul.sub-menu {
	display: block;
	padding-top: 10px;
}

.nav ul.sub-menu li:hover > ul.sub-menu  {
	padding-top: 0px;
}

.nav ul li:hover .sub-menu a::after {
	display: none;
}

.nav .sub-menu li {
	position: relative;
	background: #FFFFFF;
}

.nav .sub-menu li a {
	color: #212429;
	text-align: left;
	font-size: 14px;
	border-left: 2px solid #FFFFFF;
}

.nav .sub-menu li:hover > a {
	border-left: 2px solid #005caa;
} 

.sub-menu .sub-menu {
	left: 100%;
	top: 0px;
	border-left: 2px solid #005caa;
	padding-top: 0px;
}

.mobile_nav_bar {
	display: none;
	cursor: pointer;
	position: relative;
}

.mobile_nav_bar .touch {
	flex: 1;
}

#mobile_nav_icon {
	width: 30px;
	height: 30px;
	min-width: 30px;
	position: relative;
	margin: 20px 20px 10px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#mobile_nav_icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #FFFFFF;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.mobile_nav_bar:hover #mobile_nav_icon span {
	background: #01b6ed;
}


#mobile_nav_icon span:nth-child(1) {
	top: 3px;
}

#mobile_nav_icon span:nth-child(2),#mobile_nav_icon span:nth-child(3) {
	top: 12px;
}

#mobile_nav_icon span:nth-child(4) {
	top: 21px;
}

#mobile_nav_icon.open span:nth-child(1) {
	top: 12px;
	width: 0%;
	left: 50%;
}

#mobile_nav_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#mobile_nav_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#mobile_nav_icon.open span:nth-child(4) {
	top: 12px;
	width: 0%;
	left: 50%;
}

.mobilenav {
	display:none;
	position: fixed;
	top: 90px;
	left: 0px;
	right: 0px;
	background: rgba(255,255,255,0.95);
	width: 100%;
	height: calc(100vh - 90px);
	padding-top: 0px;
	z-index: 2;
	overflow: hidden;
	transition: transform .3s ease-in-out;
	will-change: transform;
	padding: 50px 0px;
}

.mobilenav.nav_open {
	display: flex;
}

.mobilenav ul {
	margin: 0px;
	padding: 0px 50px 0px 50px;
	width: 100%;
	transition: transform .3s ease-in-out;
	will-change: transform;
}

.mobilenav ul li {
/*	position: relative;*/
}

.mobilenav ul li a {
	display: flex;
	justify-content: space-between;
	height: 22px;
	line-height: 22px;
/*	padding: 0px 0px 0px 20px;*/
	font-weight: 700;
	font-size: 14px;
	color: #333333;
	white-space: nowrap;
	text-decoration: none;
}

.mobilenav li.menu-item-has-children > a::after {
	content: "\f101";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	color: #005caa;
	margin-right: 5px;
}



.mobilenav ul li:hover > a {
	color: #005caa;
}

.mobilenav li.menu-item-has-children:hover > a::after {
	margin-right: 0px;
}

.mobilenav ul.sub-menu {
	display: none;
	position: absolute;
	left: 100%;
	top: 0px;
	border: none;
}

.mobilenav ul li a.back_link {
	display: block;
	position: relative;
}

.back_link::before {
	content: "\f100";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	color: #005caa;
	position: absolute;
	left: -18px;
	top: 1px;
}

/*
.mobilenav li > a::before {
	content: " ";

}
*/
.touch_bar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}

@media screen and (max-width:768px){
	.mobile_nav_bar {
		align-self: center;
		flex-grow: 1;
		display: flex;
		justify-content: flex-end;
	}
	
	.header {
		display: flex;
	}
	
	.nav {
		display: none;
	}
}

/* main content */
section[role=main] {
	display: block;
	width: 100%;
		padding: 40px 40px;
	margin: 0px auto;
	min-height: calc(100vh - 433px);
}

.home section[role=main] {
	min-height: 0px;
	padding: 0px 0px 0px;
}

.page-template-template-portfolio section[role=main] {
	display: none;
}

/* sidebar */
.sidebar {
	display: block;
}

.sidebar-widget {
	min-width: 350px;
}
/* footer */

.footer_wrapper {
	background: #212429;
}

.footer {
	display: block;
	margin: 0px auto;
	color: #FFFFFF;
}

.nopadding {
	padding: 0px;
}

.copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 75px;
	max-width: 1440px;
	padding: 0px 20px;
	margin: 0px auto;
}

.copyright a {
	display: inline-block;
	color: #FFFFFF;
	text-decoration: underline;
}

.footer_support table td {
	padding: 0px 20px 20px 0px;
}

h1 {
	font-weight: 300;
}

h3 {
	font-size: 16px;
}

h2 {
	font-weight: 600;
	font-size: 24px;
	font-family: 'Barlow', sans-serif;
	color: #0066B3;
}

h4 {
	font-weight: 300;
	font-size: 16px;
}

h5 {
	font-size: 1em;
}


.banner_content h2 {
	color: #FFFFFF;
}

.wrapper .post-edit-link, .wrapper .post-edit-link:hover {
    position: absolute;
    background: #231f1f;
    color: #FFFFFF;
    padding: 5px;
	z-index: 100;
}


/*------------------------------------*\
    BANNER
\*------------------------------------*/

.home_banner {
/*	max-width: 1440px; */
	width: 100%;
	padding: 0px 0px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home_title {
	display: flex;
	position: relative;
}

.home_title::before {
	content: '';
	background: #d50e3c;
	display: block;
	width: 8px;
	border-radius: 4px;
	margin-right: 25px;
	position: relative;
	z-index: 2;
}

.home_title::after {
	width: 100%;
	height: 50%;
	background: rgba(0,0,0,0.29);
	content: '';
	display: block;
	box-shadow: 0px 0px 150px 150px rgba(0,0,0,0.3);
	position: absolute;
	top: 25%;
}


.home_title h1 {
	font-size: 30px;
	font-weight: 400;
	font-family: 'Barlow', sans-serif;
	color: #FFFFFF;
	line-height: 36px;
	margin: 0px;
	position: relative;
	z-index: 2;
}


.home_title h1 strong {
	font-weight: 700;
}

.page_title {
	display: flex;
	position: relative;
	max-width: 1440px;
	padding: 40px 20px 40px 0px;
	margin: 0px auto;
}

.page_title::before {
	content: '';
	background: #d50e3c;
	display: block;
	width: 4px;
	min-width: 4px;
	border-radius: 4px;
	margin-right: 25px;
	margin-left: 5px;
	position: relative;
	z-index: 2;
}

.page_title::after {
	width: 100%;
	height: 50%;
	background: rgba(0,0,0,0.19);
	content: '';
	display: block;
	box-shadow: 0px 0px 35px 25px rgba(0,0,0,0.2);
	position: absolute;
	top: 25%;
}


.page_title h1 {
	font-size: 30px;
	font-weight: 400;
	font-family: 'Barlow', sans-serif;
	color: #FFFFFF;
	line-height: 36px;
	margin: 0px;
	position: relative;
	z-index: 2;
	padding: 7px 0px;
}


.page_title h1 strong {
	font-weight: 700;
}

.sub_header {
	color: rgba(255,255,255,0.9);
	padding-bottom: 6px;
	position: relative;
	z-index: 2;
}

.home_slides {
	max-width: 310px;
	background: rgba(0,0,0,0.6);
/*	position: absolute;
	right: 0px;*/
}

.home_slides_container {
position: absolute;
max-width: 1440px;
margin: 0px auto;
width: 100%;
display: flex;
left: 0px;
right: 0px;
top: 0px;
max-height: 700px;
bottom: 0px;
align-items: center;
justify-content: flex-end;
}


.banner_news_content_wrapper {
	padding: 20px 20px 50px;
	display: flex;
	flex-direction: column;
	margin: 0px auto;
}

.banner_news_content_wrapper h3 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #FFFFFF;
	padding-bottom: 20px;
	border-bottom: 2px solid #005caa;
	margin: 0px 0px 15px;
	width: 100px;
}

.banner_news_content_wrapper a {
	text-decoration: none;
	color: #FFFFFF;
}

.banner_content a {
	text-decoration: none;
	color: #FFFFFF;
}

.banner_content h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0px;
}

.banner_content {
	font-weight: 300;
	font-size: 14px;
}


.banner_news_slide {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.banner_news_content {
	max-width: 768px;
	color: #FFFFFF;
	position:relative;
}

.banner_slides {
	width: 100%;
}

.banner_slide.slick-slide {
	background-size: cover;
	background-position: center;
}

.banner_inner {
	min-height: 700px;
	width: 100%;
	max-width: 1440px;
	margin: 0px auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0px 20px;
}

.banner_inner h1::before {
	content: '';
	background: #d50e3c;
	display: block;
	width: 8px;
	border-radius: 4px;
	margin-right: 25px;
	position: relative;
	z-index: 2;
}

.banner_inner h1 {
	font-size: 30px;
	font-weight: 400;
	font-family: 'Barlow', sans-serif;
	color: #FFFFFF;
	line-height: 36px;
	margin: 0px;
	position: relative;
	z-index: 2;
}

/*
.banner_content * {
	position:relative;
	z-index: 10;
}
*/
.banner_content h3 {
	color: #fed077;
	font-size: 28px;
	font-style: italic;
	font-weight: 400;
	margin: 0px;
	letter-spacing: 0.2em;
}

.banner_content h1 {
	color: #FFFFFF;
	font-size: 60px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	margin: 15px 0px;
	letter-spacing: 0.05em;
}

.banner_video {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}

.slick-prev,
.slick-next {
	position: absolute;
	z-index: 1;
	background: none;
	border: none;
	bottom: 5px;
	transform: translate(0, -50%);
	font-size: 0px;
	line-height: 0px;
	padding: 0px;
}

.slick-prev {
	left: auto;
	right: 50px;
}

.slick-next {
	right: 10px;
}

.home_banner .slick-prev {
	left: auto;
	right: 50px;
}

.home_banner .slick-next {
	right: 10px;
}

.slick-prev::before {
	content: ' ';
	background: url(img/slider_left.png) no-repeat center;
	background-size: contain;
	display: block;
	height: 25px;
	width: 25px;
}

.slick-next::after {
	content: ' ';
	background: url(img/slider_right.png) no-repeat center;
	background-size: contain;
	display: block;
	height: 25px;
	width: 25px;
}

.home_banner .slick-prev::before {
	content: ' ';
	background: url(img/banner_left.png) no-repeat center;
	background-size: contain;
	display: block;
	height: 25px;
	width: 25px;
}

.home_banner .slick-next::after {
	content: ' ';
	background: url(img/banner_right.png) no-repeat center;
	background-size: contain;
	display: block;
	height: 25px;
	width: 25px;
}

.banner {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.home .banner {
	display: none;
}


.wp-block-group.home_top {
	background: #000000 url(/wp-content/uploads/clex_icon_bg.png) no-repeat left bottom;
	color: #FFFFFF;
	min-height: 500px;
	display: flex;
	flex-direction: column;
}

.home_top .wp-block-group__inner-container {
	max-width: 960px;
	margin: 0px auto;
	font-size: 20px;
}

/*.wp-block-cover.is-style-cover_left::before {*/
.home article > div:first-child::before {
	content: '';
	box-shadow: 0px 0px 50px 25px rgba(0,0,0,1);
	position: absolute;
	top: 0px;
	width: 100%;
	height: 0px;
}

.wp-block-cover.is-style-cover_left .wp-block-cover__gradient-background {
	z-index: 0;
}

.wp-block-cover.is-style-cover_left img.wp-block-cover__image-background {
	width: auto;
	height: auto;
	top: auto;
	max-width: 100%;
}

.wp-block-cover.is-style-cover_left .wp-block-cover__inner-container {
	max-width: 960px;
	margin: 0px auto;
}

.wp-block-cover.is-style-cover_right .wp-block-cover__gradient-background {
	z-index: 0;
}

.wp-block-cover.is-style-cover_right img.wp-block-cover__image-background {
	width: auto;
	height: auto;
	top: auto;
	left: auto;
}

.wp-block-cover.is-style-cover_right .wp-block-cover__inner-container {
	max-width: 1440px;
	margin: 0px auto;
	font-size: 14px;
}

.posts_briefs .wp-block-latest-posts__featured-image {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.wp-block-cover.is-style-cover_right .wp-block-quote {
	max-width: 960px;
	margin: 1em 0px;
	position: relative;
	padding-left: 33px;
	display: block;
}

.wp-block-cover.is-style-cover_right .wp-block-quote::before {
	content: '';
	background: #FFFFFF;
	display: block;
	width: 8px;
	height: 100%;
	border-radius: 4px;
	margin-right: 25px;
	position: absolute;
	left: 0px;
	z-index: 2;
}

.wp-block-quote cite a {
	color: #FFFFFF;
	font-style: normal;
}

.wp-block-latest-posts.is-grid.posts_briefs {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 5em;
}

.wp-block-latest-posts.columns-4.posts_briefs li {
	width: auto;
}


.posts_briefs .wp-block-latest-posts__featured-image::before {
	content: 'Briefing Note';
	display: inline-block;
	color: #FFFFFF;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 18px;
	margin-right: auto;
	text-transform: uppercase;
	padding-right: 5px;
	max-width: 100px;
}

.wp-block-latest-posts.is-grid.posts_briefs li a {
	color: #FFFFFF;
	text-decoration: none;
	margin-top: 10px;
}


.posts_briefs li a::before,
.posts_briefs li a::after,
.posts_homenews li a::before,
.posts_homenews li a::after,
.is-style-cover_link a::before,
.is-style-cover_link a::after {
	display: none;
}

.wp-block-latest-posts.columns-3.posts_homenews li {
	width: 33.33333%;
	margin-right: 0px;
}

.posts_briefs li a {
	display: flex;
	flex-direction: column;
}

.posts_briefs li > a::after {
	content: 'Read more\00A0\00A0\00A0';
	display: block;
	text-decoration: underline;
	margin-top: auto;
	padding-top: 20px
}

.posts_homenews li > a {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #FFFFFF;
	padding: 10px 40px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
}

.posts_homenews li > a::after {
	content: 'Read more\00A0\00A0\00A0';
	display: block;
	text-decoration: underline;
	margin-top: auto;
	padding-top: 20px
}

.wp-block-cover.is-style-cover_link {
/* 	justify-content: flex-end;
	align-items: flex-end; */
	align-items: stretch;
	overflow: hidden;
	padding: 0px;
}

.wp-block-cover.is-style-cover_link .wp-block-cover__inner-container {
/* 	margin: 0 5% 1.5% 0;
	width: auto;
 */
}

.wp-block-cover.is-style-cover_link a {
	color: #FFFFFF;
	text-decoration: none;
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.wp-block-cover.is-style-cover_link h2 {
/* 	position: relative;
	display: block; */
	margin: 0px;
}

.wp-block-cover.is-style-cover_link a strong {
	font-weight: 600;
	position: relative;
	margin: 0 5% 1.5% 0;
}

.wp-block-cover.is-style-cover_link a em {
	font-style: normal;
	position: relative;
}

.wp-block-cover.is-style-cover_link a strong::before {
	width: 100%;
	height: 50%;
	background: rgba(0,0,0,0.29);
	content: '';
	display: block;
	box-shadow: 0px 0px 75px 55px rgba(0,0,0,0.3);
	position: absolute;
	top: 25%;
}

.wp-block-cover.is-style-cover_link img.wp-block-cover__image-background {
	transition: all 1s;
}

.wp-block-cover.is-style-cover_link:hover img.wp-block-cover__image-background {
	width: 101%;
	height: 101%;
}

.weathex_footer {
	position: absolute;
	top: -75px;
	right: 50px;
	padding: 25px 50px;
	border-radius: 100px;
}

.weathex_footer h2 {
	line-height: 44px;
}

.page-template-default .weathex_widget,
.author .weathex_widget,
.single .weathex_widget {
	display: none;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/


.page_banner {
	background-size: cover;
	background-position: center;
}

.page_banner_wrapper {
	padding: 120px 20px 20px;
	background: rgba(0,0,0,0.33);
}
.title_wrapper {
	max-width: 1280px;
    margin: 0px auto;
    padding: 0px 40px;
}

.page_banner_wrapper h1 {
	color: #FFFFFF;
	font-size: 36px;
	margin:0;
}

.featured_projects {
	text-align: center;
	color: #585d5e;
	background: #f6f6f6;
	padding: 50px 0px;
}

.featured_projects h2 {
	color: #111111;
	margin-top: 0px;
}

.projects {
	display: flex;
	justify-content: center;
	max-width: 1280px;
	margin: 30px auto 40px;
	flex-wrap: wrap;
}

.project_image {
	width: 375px;
	height: 219px;
	display: block;
	background-position: center;
	background-size: cover;
	margin: 20px 20px;
}

.home .testimonials {
	text-align: center;
	color: #FFFFFF;
	background: url(/wp-content/uploads/slider1.jpg) center no-repeat;
	background-size: cover;
	font-weight: 300;
	display: flex;
	
}

.testimonials_wrapper {
	padding: 50px 0px;
	background: rgba(0,0,0,0.45);
	max-width:50%;
	margin-right:auto;
}

.home .testimonials h2 {
	margin-top: 0px;
	color: #FFFFFF;
}

.home .testimonials h4 {
	font-weight: 400;
	text-transform: uppercase;
}

.testimonial_text p {
	max-width: 680px;
	padding: 0px 40px;
	margin: 0px auto;
	text-align: left;
}

.slick-dots {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0px 0px 20px 0px;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button::before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #FFFFFF;
}

.slick-dots li.slick-active button::before {
    opacity: .75;
    color: #FFFFFF;
}

.sidebar {
	max-width: 1280px;
	padding: 40px 40px;
	width: 100%;
	margin: 0px auto;
	min-height: 300px;
}

.sidebar .sidebar-widget {
	display: flex;
}

.sidebar .widget-last {
	border-left: 1px solid #dcdcdc;
	margin-left: 70px;
	padding-left: 40px;
}

.wp-block-columns .wp-block-column {
	/*border-left: 1px solid rgba(88,93,94,0.33);*/
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
/*
.wp-block-columns.column_nosplit .wp-block-column {
	border: none;
	padding: 0px;
}

.wp-block-columns.column_nosplit .wp-block-column div:last-child {
	margin-top: auto;
}


.wp-block-columns .wp-block-column:first-child {
	padding-left: 0px;
	border: none;
}

.wp-block-columns .wp-block-column:last-child {
	padding-right: 0px;
}
*/
.wp-block-columns.home_features .wp-block-column {
	padding: 0;
	border:none;
	margin: 0;
}
.wp-block-button .wp-block-button__link,
.gform_wrapper .gform_footer input.button {
	font-weight: 600;
	font-size: 14px;
	border-radius: 3px;
	min-width: 175px;
	height: 38px;
	line-height: 34px;
	text-align: center;
	padding: 0px 25px;
	letter-spacing: 0.09em;
	margin-right: 15px;
}

.wp-block-button.is-style-border_button .wp-block-button__link {
	text-align: left;
	padding: 0px;
	display: flex;
	align-items: center;
	border-radius: 3px;
}

.wp-block-button.is-style-border_button .wp-block-button__link::before {
	content: ' ';
	display: inline-block;
	width: 5px;
	height: 100%;
	border-radius: 5px;
	margin-right: 10px;
}

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexdarkblue-background-color { color: #005baa;	background: rgba(0, 91, 170,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexdarkblue-background-color::before { background: #005baa; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexdarkblue-background-color:hover { background: rgba(0, 91, 170,1); color: #FFFFFF; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexblue-background-color { color: #0087cc;	background: rgba(0, 135, 204,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexblue-background-color::before { background: #0087cc; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexblue-background-color:hover { background: rgba(0, 135, 204); color: #FFFFFF; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightblue-background-color { color: #01b6ed;	background: rgba(1, 182, 237,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightblue-background-color::before { background: #01b6ed; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightblue-background-color:hover { background: rgba(1, 182, 237,1); color: #FFFFFF; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightred-background-color { color: #f08482;	background: rgba(240, 132, 130,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightred-background-color::before { background: #f08482; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightred-background-color:hover { background: rgba(240, 132, 130,1); color: #FFFFFF; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexred-background-color { color: #d50e3c;	background: rgba(213, 14, 60,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexred-background-color::before { background: #d50e3c; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexred-background-color:hover { background: rgba(213, 14, 60,1); color: #FFFFFF; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexblack-background-color { color: #000000;	background: rgba(0, 0, 0,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexblack-background-color::before { background: #000000; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexblack-background-color:hover { background: rgba(0, 0, 0,1); color: #FFFFFF; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexwhite-background-color { color: #FFFFFF;	background: rgba(255, 255, 255,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexwhite-background-color::before { background: #FFFFFF; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexwhite-background-color:hover { background: rgba(0255, 255, 255,1); color: #212429; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightgrey-background-color { color: #e8e8e8;	background: rgba(232, 232, 232,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightgrey-background-color::before { background: #e8e8e8; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexlightgrey-background-color:hover { background: rgba(232, 232, 232,1); color: #212429; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexgrey-background-color { color: #42464c;	background: rgba(66, 70, 76,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexgrey-background-color::before { background: #42464c; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexgrey-background-color:hover { background: rgba(66, 70, 76,1); color: #FFFFFF; }

.wp-block-button.is-style-border_button .wp-block-button__link.has-clexdarkgrey-background-color { color: #212429;	background: rgba(33, 36, 41,0.15); }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexdarkgrey-background-color::before { background: #212429; }
.wp-block-button.is-style-border_button .wp-block-button__link.has-clexdarkgrey-background-color:hover { background: rgba(33, 36, 41,1); color: #FFFFFF; }

.wp-block-button .wp-block-button__link.has-clexdarkblue-background-color {	background: #005baa; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexdarkblue-background-color:hover {	background: rgba(0, 91, 170,0.15); color: #005baa; }
.wp-block-button .wp-block-button__link.has-clexblue-background-color {	background: #0087cc; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexblue-background-color:hover { color: #0087cc;	background: rgba(0, 135, 204,0.15); }
.wp-block-button .wp-block-button__link.has-clexlightblue-background-color {	background: #01b6ed; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexlightblue-background-color:hover { color: #01b6ed;	background: rgba(1, 182, 237,0.15); }
.wp-block-button .wp-block-button__link.has-clexlightred-background-color {	background: #f08482; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexlightred-background-color:hover { color: #f08482;	background: rgba(240, 132, 130,0.15); }
.wp-block-button .wp-block-button__link.has-clexred-background-color {	background: #d50e3c; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexred-background-color:hover { color: #d50e3c;	background: rgba(213, 14, 60,0.15); }
.wp-block-button .wp-block-button__link.has-clexblack-background-color {	background: #000000; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexblack-background-color:hover { color: #000000;	background: rgba(0, 0, 0,0.15); }
.wp-block-button .wp-block-button__link.has-clexwhite-background-color {	background: #FFFFFF; color: #212429; }
.wp-block-button .wp-block-button__link.has-clexwhite-background-color:hover { color: #FFFFFF;	background: rgba(255, 255, 255,0.15); }
.wp-block-button .wp-block-button__link.has-clexlightgrey-background-color {	background: #e8e8e8; color: #212429; }
.wp-block-button .wp-block-button__link.has-clexlightgrey-background-color:hover { color: #212429;	background: rgba(232, 232, 232,0.15); }
.wp-block-button .wp-block-button__link.has-clexgrey-background-color {	background: #42464c; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexgrey-background-color:hover { color: #42464c;	background: rgba(66, 70, 76,0.15); }
.wp-block-button .wp-block-button__link.has-clexdarkgrey-background-color {	background: #212429; color: #FFFFFF; }
.wp-block-button .wp-block-button__link.has-clexdarkgrey-background-color:hover { color: #FFFFFF;	background: rgba(33, 36, 41,0.15); }

.wp-block-button.is-style-outline_button .wp-block-button__link {
	border-width: 1px;
	border-style: solid;
}

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexdarkblue-background-color { color: #005baa;	background: rgba(0, 91, 170,0.15); border-color: #005baa; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexdarkblue-background-color:hover { background: rgba(0, 91, 170,1); color: #FFFFFF; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexblue-background-color { color: #0087cc;	background: rgba(0, 135, 204,0.15); border-color: #0087cc; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexblue-background-color:hover { background: rgba(0, 135, 204); color: #FFFFFF; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexlightblue-background-color { color: #01b6ed;	background: rgba(1, 182, 237,0.15); border-color: #01b6ed; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexlightblue-background-color:hover { background: rgba(1, 182, 237,1); color: #FFFFFF; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexlightred-background-color { color: #f08482;	background: rgba(240, 132, 130,0.15); border-color: #f08482; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexlightred-background-color:hover { background: rgba(240, 132, 130,1); color: #FFFFFF; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexred-background-color { color: #d50e3c;	background: rgba(213, 14, 60,0.15); border-color: #d50e3c; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexred-background-color:hover { background: rgba(213, 14, 60,1); color: #FFFFFF; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexblack-background-color { color: #000000;	background: rgba(0, 0, 0,0.15); border-color: #000000; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexblack-background-color:hover { background: rgba(0, 0, 0,1); color: #FFFFFF; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexwhite-background-color { color: #FFFFFF;	background: rgba(255, 255, 255,0.15); border-color: #FFFFFF; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexwhite-background-color:hover { background: rgba(0255, 255, 255,1); color: #212429; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexlightgrey-background-color { color: #e8e8e8;	background: rgba(232, 232, 232,0.15); border-color: #e8e8e8; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexlightgrey-background-color:hover { background: rgba(232, 232, 232,1); color: #212429; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexgrey-background-color { color: #42464c;	background: rgba(66, 70, 76,0.15); border-color: #42464c; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexgrey-background-color:hover { background: rgba(66, 70, 76,1); color: #FFFFFF; }

.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexdarkgrey-background-color { color: #212429;	background: rgba(33, 36, 41,0.15); border-color: #212429; }
.wp-block-button.is-style-outline_button .wp-block-button__link.has-clexdarkgrey-background-color:hover { background: rgba(33, 36, 41,1); color: #FFFFFF; }


.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexdarkblue-background-color { color: #005baa; border-color: #005baa; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexdarkblue-background-color:hover { background: rgba(0, 91, 170,1); color: #FFFFFF; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexblue-background-color { color: #0087cc; border-color: #0087cc; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexblue-background-color:hover { background: rgba(0, 135, 204); color: #FFFFFF; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexlightblue-background-color { color: #01b6ed; border-color: #01b6ed; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexlightblue-background-color:hover { background: rgba(1, 182, 237,1); color: #FFFFFF; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexlightred-background-color { color: #f08482; border-color: #f08482; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexlightred-background-color:hover { background: rgba(240, 132, 130,1); color: #FFFFFF; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexred-background-color { color: #d50e3c; border-color: #d50e3c; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexred-background-color:hover { background: rgba(213, 14, 60,1); color: #FFFFFF; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexblack-background-color { color: #000000; border-color: #000000; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexblack-background-color:hover { background: rgba(0, 0, 0,1); color: #FFFFFF; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexwhite-background-color { color: #FFFFFF; border-color: #FFFFFF; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexwhite-background-color:hover { background: rgba(0255, 255, 255,1); color: #212429; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexlightgrey-background-color { color: #e8e8e8; border-color: #e8e8e8; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexlightgrey-background-color:hover { background: rgba(232, 232, 232,1); color: #212429; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexgrey-background-color { color: #42464c; border-color: #42464c; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexgrey-background-color:hover { background: rgba(66, 70, 76,1); color: #FFFFFF; }

.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexdarkgrey-background-color { color: #212429; border-color: #212429; }
.wp-block-button.is-style-icon_button .wp-block-button__link.has-clexdarkgrey-background-color:hover { background: rgba(33, 36, 41,1); color: #FFFFFF; }


.wp-block-post-excerpt__more-link {
	font-weight: 600;
	font-size: 14px;
	border-radius: 3px;
	min-width: 175px;
	height: 38px;
	line-height: 34px;
	text-align: center;
	padding: 0px 25px;
	letter-spacing: 0.09em;
	margin-right: 15px;
	border-width: 1px;
	border-style: solid;
	color: #01b6ed;
	border-color: #01b6ed;
	text-decoration: none;
}

.wp-block-post-excerpt__more-link:hover { background: rgba(1, 182, 237,1); color: #FFFFFF; }


.wp-block-button.is-style-icon_button {
	margin: 0px 10px;
}

.wp-block-button.is-style-icon_button .wp-block-button__link {
	min-width: 0px;
	background: none;
	border: 2px solid #FFFFFF;
	border-radius: 20px;
	width: 40px;
	height: 40px;
	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	letter-spacing: normal;
}

.has-clexdarkblue-background-color 	{ background-color: #005baa; }
.has-clexblue-background-color 		{ background-color: #0087cc; }
.has-clexlightblue-background-color	{ background-color: #01b6ed; }
.has-clexlightred-background-color 	{ background-color: #f08482; }
.has-clexred-background-color 		{ background-color: #d50e3c; }
.has-clexblack-background-color 	{ background-color: #000000; }
.has-clexwhite-background-color 	{ background-color: #FFFFFF; }
.has-clexlightgrey-background-color 		{ background-color: #e8e8e8; }
.has-clexgrey-background-color 		{ background-color: #42464c; }
.has-clexdarkgrey-background-color 	{ background-color: #212429;  }

.has-clexdarkblue-color 	{ color: #005baa; }
.has-clexblue-color 		{ color: #0087cc; }
.has-clexlightblue-color	{ color: #01b6ed; }
.has-clexlightred-color 	{ color: #f08482; }
.has-clexred-color 		{ color: #d50e3c; }
.has-clexblack-color 	{ color: #000000; }
.has-clexwhite-color 	{ color: #FFFFFF; }
.has-clexlightgrey-color 		{ color: #e8e8e8; }
.has-clexgrey-color 		{ color: #42464c; }
.has-clexdarkgrey-color 	{ color: #212429;  }


iframe {
	border: none;
}


.wp-block-quote {
	display: grid;
	position: relative;
	grid-template-columns: 33px 1fr;
	grid-template-rows: auto auto;
}

.wp-block-quote::before {
	content: '';
	background: #005baa;
	display: block;
	width: 8px;
	border-radius: 4px;
	margin-right: 25px;
	position: relative;
	z-index: 2;
	grid-row-start: 1;
	grid-row-end: 3;
}

.home_features {
	margin: 0px;
}

.home_features .wp-block-cover .wp-block-cover__inner-container {
	padding: 50px 50px 50px 100px;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 70%);
}

.home_features .wp-block-cover {
	padding: 0px;
}
.home_features h2 {
	margin: 0;
	line-height:40px;
}


.wp-block-button.is-style-default_button .wp-block-button__link,
.gform_wrapper .gform_footer input.button {
	background: #005baa;
	color: #FFFFFF;
	border: 1px solid #005baa;
}

.wp-block-button.is-style-alt_button .wp-block-button__link,
.wp-block-button.is-style-default_button .wp-block-button__link:hover,
.gform_wrapper .gform_footer input.button:hover {
	background: rgba(0, 91, 170,0.15);
	color: #005baa;
	border: 1px solid #005baa;
}

.wp-block-button.is-style-transparent_button .wp-block-button__link {
	background: none;
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
}

.wp-block-button.is-style-transparent_button .wp-block-button__link:hover {
	background: #FFFFFF;
	color: #111111;
}

.wp-block-button.is-style-black_button .wp-block-button__link {
	background: none;
	color: #111111;
	border: 2px solid #111111;
}

.wp-block-button.is-style-black_button .wp-block-button__link:hover {
	background: #111111;
	color: #FFFFFF;
}

.contact-us .wp-block-column table {
	margin-bottom: 20px;
}

.contact-us .wp-block-column table td {
	padding: 0px 20px 15px 0px;
}

.posts_testimonials,
.posts_services {
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
}

.posts_testimonials li {
	width: 48%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 80px;
}

.posts_testimonials li:nth-child(even) {
	margin-left: 2%;
}

.posts_testimonials li:nth-child(odd) {
	margin-right: 2%;
	position: relative;
}

.posts_testimonials li:nth-child(odd)::after {
	content: ' ';
	display: block;
	width: 1px;
	height: 100px;
	background: rgba(0,0,0,0.15);
	position: absolute;
	right: -20px;
	top: 60px;
}

.posts_testimonials li a {
	order: 1;
}

.posts_testimonials li .wp-block-latest-posts__post-full-content {
	order: 2;
	margin-bottom: 20px;
}

.posts_testimonials li .wp-block-latest-posts__featured-image {
	order: 3;
	margin-top: auto;
	margin-bottom: auto;
	text-align: center;
}

.posts_services li a,
.posts_testimonials li a {
	text-decoration: none;
	font-size: 20px;
	pointer-events: none;
	cursor: default;
	margin-bottom: 10px;
	display: block;
}

.posts_services li {
	margin-bottom: 80px;
}

.wp-block-group.is-style-group_centered .wp-block-group__inner-container {
	max-width: 1440px;
	margin: 0px auto;
	padding: 0px 40px;
	
}


.large_icons {
	font-size: 14px;
}

.large_icons i {
	font-size: 100px;
	color: #eb2128;
	display: block;
	text-align: center;
}

.red_icons i { color: #eb2128; }
.black_icons i { color: #231f1f; }
.grey_icons i { color: #666666; }

.header_icon i {
	font-size: 100px;
	color: #eb2128;
	display: block;
}

.hide {
	display: none;
}

br.clear {
	height: 0px;
	display: inherit;
}



.page-template-default article > *,
.post-template-default article > * {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

iframe {
	display: block;
}

article > :is(h1,h2,h3):first-child {
	margin-top: 0px;
	display: flex;
	max-width: 100%;
}

article :is(h1,h2,h3):first-child::before {
	content: '';
	background-color: transparent;
	width: calc(((100vw - 1440px) / 2) - 2.375em);
	display: block;
}

.page-template-default section[role="main"] {
	padding: 20px 40px;
}

.profile_inner {
	max-width: 50%;
}

.profile_description {
	max-width: 1440px;
	margin: 0px auto;
}

.profile_right {
	position: absolute;
	right: 40px;
	display: none;
	background: #212429;
	border-radius: 20px;
	padding: 40px;
	max-width: 50%;
}

.profile_spacer {
	float: right;
	display: flex;
	align-items: flex-start;
	background: #212429;
	border-radius: 20px;
	padding: 40px;
	max-width: 50%;
	margin: -200px 40px 20px 20px;
}

.profile_details {
	color: #FFFFFF;
}

.profile_spacer img {
	margin-left: 15px;
	max-width: 200px;
	/* border-radius: 0px 20px 20px 0px */
}

.profile_info {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 10px;
	margin-top: 10px;
}

.profile_card {
	display: flex;
}

.profile_card img {
	width: 200px;
}

.profile_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 40px;
	row-gap: 40px;
}

.profile_card_inner h4 {
	margin-top: 0px;
	font-weight: 600
}

.profile_photo {
	margin-right: 40px;
}

.profile_card_inner .profile_info {
	margin-bottom: 10px;
}

.publications .wp-block-group ul {
	list-style: none;
	padding: 0px;
}

.publications .wp-block-group ul li {
	margin: 0px 0px 25px;
	padding: 10px;
}

.publications .wp-block-group ul li:nth-child(even) {
	background: #F6F6F6;
}


.wp-block-post-template li.wp-block-post {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto 1fr;
	column-gap: 50px;
	margin-bottom: 50px;
}

.wp-block-post-template li.wp-block-post figure {
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 4;
}

.wp-block-post-template li.wp-block-post hr {
	display: none;
}

.wp-block-post-template li.wp-block-post .wp-block-post-excerpt {
	grid-row-start: 3;
	grid-row-end: 4;
}

.wp-block-post-template li.wp-block-post .wp-block-post-title {
	margin-top: 0px;
}

.post_details {
	margin: 5px 0px;
	color: #FFFFFF;
	position: relative;
	z-index: 2;
}

.post_details a {
	color: #CCCCCC;
}


.wp-block-query-pagination {
	justify-content: center;
}

.wp-block-image.is-style-image_shadow img {
	box-shadow: 0px 0px 3px 3px rgba(0, 0, 0,0.15);
}

.wp-block-image.is-style-image_fullwidth img {
	width: 100%;
}
/*
article .wp-block-cover {
	overflow: hidden;
}
*/

/*
@media only screen and (max-width:920px) {
	.wp-block-columns.home_columns,
	.sidebar .sidebar-widget,
	.copyright {
		flex-direction: column;
	}
	
	.wp-block-columns.home_columns .wp-block-column {
		padding: 0px;
		margin: 0px 0px 40px 0px;
		border: 0px;
	}
	
	.sidebar .widget-last {
		margin: 40px auto;
		padding: 0px;
		border: none;
	}
}

@media only screen and (max-width:768px) {
	.slick-arrow {
		display: none !important;
	}
	
	.banner_content h2 {
		font-size: 24px;
	}
}
*/

/*------------------------------------*\
    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;
}

div.shiftnav-wrap {
	line-height: 1.4; /* Fixes ShiftNav setting an em based line height when we want a unitless multiplier. */
}

.shiftnav-inner {
	background: url() center top no-repeat; /* Specify the site logo you want to appear in the mobile menu. */
	padding-top: 0px; /* Set to however tall the site logo is. */
}

.shiftnav ul.shiftnav-menu ul.sub-menu li.menu-item > .shiftnav-target,
.shiftnav ul.shiftnav-menu ul.sub-menu li.shiftnav-retract > .shiftnav-target {
	line-height: 100%;
	padding: 15px 25px 15px 35px;
}

div.mobilenav {
	display:none;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1240px) {
	.wp-block-latest-posts.is-grid.posts_briefs {
		grid-template-columns: 1fr 1fr;
	}

	.profile_spacer {
		flex-direction: column-reverse;
	}

	.profile_spacer img {
		align-self: center;
		margin: 0px 0px 15px 0px;
	}
}

@media only screen and (max-width:1024px) {
	.nav ul li a {
/*		font-size: 13px;*/
	}

	.header_wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.logo {
		max-width: 334px;
	}

	.profile_list {
		grid-template-columns: 1fr;
	}

	.profile_photo {
		min-width: 120px;
	}

	.nav li.dropdown_left ul ul.sub-menu .sub-menu {
		left: 100%;
		right: auto;
		border-left: 2px solid #005caa;
		border-right: none;	
	}

}

@media only screen and (max-width:960px) {
	.logo-img {
		max-width: 500px;
	}

	.profile_spacer {
		margin: 0px 40px 20px 20px
	}

	.profile_inner {
		max-width: 100%;
	}
}

@media only screen and (max-width:768px) {
	.header_wrap {
		flex-direction: row;
		align-items: center;
	}

	.logo-img,
	.logo {
		max-width: 334px;
	}

	.wp-block-latest-posts.columns-3.posts_homenews {
		flex-direction: column;
	}

	.wp-block-latest-posts.columns-3.posts_homenews li {
		width: 100%;
		display: flex;
	}

	.wp-block-latest-posts.columns-3.posts_homenews .wp-block-latest-posts__featured-image {
		max-width: 250px;
	}

	.profile_spacer {
		float: none;
		max-width: 100%;
		margin: 0px 0px 20px 0px;
		padding: 20px;
	}

	.wp-block-post-template li.wp-block-post {
		grid-template-columns: 1fr;
	}

	.wp-block-post-template li.wp-block-post figure {
		grid-column-start: unset;
		grid-column-end: unset;
		grid-row-start: 1;
		grid-row-end: unset;
		margin-bottom: 20px;
	}

}

@media only screen and (max-width:640px) {
	.home_banner {
		flex-direction: column;

	}

	.home_title {
		margin-bottom: 40px;
	}

	.wp-block-latest-posts.is-grid.posts_briefs {
		grid-template-columns: 1fr;
	}

	.wp-block-latest-posts.columns-3.posts_homenews li {
		flex-direction: column;
	}

	.wp-block-latest-posts.columns-3.posts_homenews .wp-block-latest-posts__featured-image {
		max-width: 100%;
	}

	.alignright.size-medium {
		float: none;
		margin: 0px auto;
	}

}


@media only screen and (max-width:480px) {
	.logo-img,
	.logo {
		max-width: 225px;
		margin: 0px;
	}

	.sidebar-widget {
		min-width: 0px;
	}

	.weathex_footer {
		position: initial;
	}

	.profile_card {
		flex-direction: column;
	}

	.profile_photo {
		margin-bottom: 20px;
	}

}

@media only screen and (max-width:320px) {


}

/*------------------------------------*\
    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;
}
.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
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;
	}
}
