.hidden {

	position: absolute;

	overflow: hidden;

	width: 0;

	height: 0;

	pointer-events: none;

}



.js .loading::before {

	content: '';

	position: fixed;

	z-index: 1000;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	background: #efeff2;

}



.js .loading::after {

	content: '';

	position: fixed;

	z-index: 1001;

	top: 50%;

	left: 50%;

	width: 50px;

	height: 50px;

	margin: -25px 0 0 -25px;

	pointer-events: none;

	border-radius: 50%;

	background: #dcdcde;

	animation: loaderAnim 0.8s ease-out infinite alternate forwards;

}



@keyframes loaderAnim {

	to {

		transform: scale3d(0.5,0.5,1);

	}

}



/* Icons */

.icon {

	display: block;

	width: 1.5em;

	height: 1.5em;

	margin: 0 auto;

	fill: currentColor;

}



main {

	overflow: hidden;

}



.github {

	position: absolute;

	top: 0;

	right: 0;

	width: 6em;

	height: 6em;

}



.github__deco {

	position: absolute;

	z-index: -1;

	fill: #e6e6e6;

}



.icon--github {

	font-size: 1.15em;

	margin: 1em 0 0 2.5em;

}



/* Content */

.content {

	padding: 3em 0;

}



.content--grid {

	display: grid;

	padding: 10vh 8vw;



	grid-template-columns: 50% 50%;

}



.content--related {

	font-size: 0.85em;

	display: grid;

	justify-content: center;

	align-content: center;

	max-width: 800px;

	margin: 0 auto;

	padding: 0 2em;

	padding: 10em 0;

	text-align: center;

	letter-spacing: 0.05em;



	grid-template-columns: repeat(auto-fill, 260px);

	grid-gap: 4em;

}



.content--related > p {

	grid-column: 1 / -1;

}



/* Header */

.codrops-header {

	position: relative;

	display: flex;

	flex-direction: column;

	flex-wrap: wrap;

	width: 100%;

	padding: 5vw;

}



.codrops-header__title {

	font-size: 1.625em;

	font-weight: 500;

	line-height: 1.5;

	margin: 0;

	padding: 0.5em 0;

	letter-spacing: 0.5em;

	text-transform: uppercase;

}



/* Top Navigation Style */

.codrops-links {

	position: relative;

	display: flex;

	margin: 0 1em 0 0;

	text-align: center;

	white-space: nowrap;

}



.codrops-icon {

	display: inline-block;

	margin: 0.5em;

}



.codrops-icon:first-child {

	margin-left: 0;

}

/* Related post item */

.media-item {

	display: block;

	transition: color 0.3s;

}



.media-item__img {

	max-width: 100%;

	opacity: 0.8;

	border-radius: 60px/100px;

	transition: opacity 0.3s;

}



.media-item:hover .media-item__img,

.media-item:focus .media-item__img {

	opacity: 1;

}



.media-item__title {

	font-weight: normal;

	margin: 0;

	padding: 0.5em;

}



/* items */

.item {

	position: relative;

	width: 100%;

	max-width: 100%;

	margin: 0 0 0 auto;

	cursor: auto;

	-webkit-user-select: none;

	-moz-user-select: none;

	-ms-user-select: none;

	user-select: none;

	grid-column: span 2;

	-webkit-tap-highlight-color: rgba(0,0,0,0);

}



.item:nth-of-type(even) {

	margin: 0 auto 0 0;

}



.item:first-of-type {

	grid-column: span 1;

}



.item__svg {

	position: relative;

	display: block;

	width: 100%;

	height: auto;

	min-height: 500px;

	margin: 0 auto;

}



.item__clippath,

.item__deco,

.item__img {

	transform-origin: 50% 50%;

}



.item__meta {

	position: absolute;

	top: 0;

	display: flex;

	flex-wrap: wrap;

	justify-content: center;

	align-content: center;

	align-items: center;

	width: 100%;

	height: 100%;

}



.item__number {

	position: absolute;

	top: 0;

	width: 100%;

	padding: 12.5% 0 0 3em;

	letter-spacing: 0.5em;

	text-transform: uppercase;

}



.item__specimen {

	font-size: 5em;

	font-weight: 500;

	line-height: 0.9;

	vertical-align: text-bottom;

	letter-spacing: -0.025em;

}



.item__reference {

	font-size: 1.25em;

	-webkit-writing-mode: vertical-rl;

	writing-mode: vertical-rl;

}



.item__title {

	font-size: 1.165em;

	font-weight: 600;

	width: 100%;

	margin: 1em 0 0 0;

	text-align: center;

	letter-spacing: 0.125em;

	color: #fff;

}



.item__subtitle {

	font-size: 1em;

	font-weight: 500;

	margin: 0.5em 0 0;

	text-align: center;

	letter-spacing: 0.15em;

	opacity: 0;

}



/* Individual styles */

.item--style-1 .item__deco {

	fill: #f2f2f2;

}



.item--style-2 .item__deco {

	fill: #f2f2f2;

}



.item--style-3 .item__deco {

	fill: #f2f2f2;

}



.item--style-3 .item__title {

	color: #131314;

}



.item--style-4 .item__deco {

	fill: #dcdcde;

}



.item--style-5 .item__deco {

	fill: #404040;

}



.item--style-6 .item__deco {

	fill: #dcdcde;

}



.item--style-7 .item__deco {

	fill: #fff;

}



.item--style-7 .item__title {

	color: #131314;

}



.item--style-8 .item__deco {

	fill: #404040;

}



.item--style-9 .item__deco {

	fill: #dcdcde;

}



@media screen and (max-width: 60em) {

	.item:first-of-type {

		grid-column: span 2;

	}

	.content--grid {

		grid-row-gap: 25vh;

	}

}



@media screen and (max-width: 40em) {

	.codrops-header__title {

		font-size: 1em;

	}

	.content--grid {

		padding: 2vh 8vw;

	}

	.item__number {

		font-size: 0.75em;

	}

	.item__svg {

		min-height: 360px;

	}

}

/* PAGE RESOURCES */
.page-template-resources .resource-bar:after {
	background-image: none !important;
}
.page-template-resources .work-bar.resources {
	background: #fff !important;
}
.page-template-resources .work-bar .filter-bar h4 {
	color: #3a3132 !important;
}
.page-template-resources .work-bar .filter-bar a.togglestyle {
	color: #3a3132 !important;
}
.page-template-resources .work-bar .filter-bar a.togglestyle:after {
    border-top: 8px solid #000 !important;
}
.page-template-resources .work-bar .filter-bar .dropdown {
    background: #fff !important;
}
.page-template-resources .work-bar .filter-bar .dropdown li a {
	color: #332d2d !important;
}
.page-template-resources .work-bar .filter-bar .dropdown li a:before {
    background: #fff !important;
    border: 1px solid #332d2d !important;
}
.page-template-resources .work-bar .projectbg .hoverstate {
    opacity: 1 !important;
	/*background: rgba(0, 0, 0, 0.4) !important;*/
	padding: 1px 1px !important;
	
	/* OVERLAY PUNTEADO */
	background: rgba(127, 127, 127, 0.5);
    /*background-image: radial-gradient(black 10%, transparent 20%);*/
    background-size: 3px 3px;
}
.page-template-resources .work-bar.resources .projectbg h4 {
    font-size: 23px; /*18px;*/
    line-height: 25px; /*22px;*/
    position: absolute;
    width: 100%;
    left: 0;
	bottom: 50px;
    padding: 0 10px;
}
.page-template-resources .work-bar.resources .projectbg span.category-name {
    background: #e04264;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
    font-size: 14px;
    color: #fff;
}
.page-template-resources .work-bar.resources .projectbg span.category-name:before {
	background-image: url('../diagonal-category-bg.html');
    background-repeat: no-repeat;
    background-position: top right;
    padding-right: 15px;
	content: " ";
	width: 13px;
	height: 26px;
	position: absolute;
    left: 100%;
    top: 0px;
    margin-left: -15px;
}
.page-template-resources .work-bar.resources .midtext {
	height: 100% !important;
}
.page-template-resources .work-bar .projectbg .hoverstate a.button {
    bottom: 20px !important;
    position: absolute !important;
    left: 101px !important;
    background: #5a5d59 !important;
    border: 1px solid #5a5d59 !important;
    line-height: 0px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
}
.page-template-resources .resource-bar .itembox .subtext {
	width: 100%;
}
.page-template-resources .resource-bar .itembox {
	padding: 0;
}
.page-template-resources .resource-bar {
    padding: 95px 0 10px;
}
.page-template-resources .work-bar .filter-bar a.submit-btn {
	border: 1px solid #90d757;
	height: 48px;
    margin-top: 0px;
    line-height: 50px;
}
.page-template-resources .feed-loader-wrap {
    background: #fff;
}
.content-image-slider {
	padding-right: 25px;
	padding-left: 25px;
}


/*************************************/
/*************************************/

/* PAGE HOME */
.logolist-bar:after {
    /*background-image: none !important;*/
	background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 600 560' preserveAspectRatio='none'%3E%3Cpolygon points='0,560 900,0 600,650' style='fill:%23ffffff;' /%3E%3C/svg%3E") !important;
}
.contact-bar {
	background-color: #efefef;
	clip-path: polygon(0% 8%, 100% 0%, 100% 100%, 0% 100%);
    padding-top: 150px;
}
.contact-bar .input input, .contact-bar textarea {
	background-color: #ffffff !important;
}
.hs_rfp_file_upload .input input {
	background-color: transparent !important;
}
.content-image-slider {
	display: inline-table;
    vertical-align: top;
	background-size: 0;
	max-width: 50%;
	float: none;
	width: 100%;
}
.content-text-slider {
	display: inline-table !important;
    vertical-align: top;
	padding-left: 25px;
	padding-top: 0px;
	max-width: 49%;
	float: none;
	width: 100%;
}
.content-text-slider table {
	height: 100%;
}
.content-text-slider-header {
	float: left;
	margin-top: 0px;
	height: 355px;
	margin-top: 0px;
	display: table;
	vertical-align: middle;
}
.content-text-slider-header-inner {
	display: table-cell;
	vertical-align: middle;
}
.content-text-slider h4 {
	color: #6CC72B;
	font-size: 24px;
    text-align: left;
	line-height: 26px;
    margin-bottom: 5px;
	margin-left: 0px;
	margin-top: 0px;
}
.content-text-slider h4 span {
	color: #fff;
}
.content-text-slider h2 {
	color: #fff;
    font-size: 75px;
    text-align: left;
    max-width: 700px;
    line-height: 75px;
	margin-bottom: 0px;
	margin-left: 0px;
	max-height: 300px;
    overflow: hidden;
}
.content-text-slider h2.HomeNewsSmallerTitle {
	font-size: 58px;
	line-height: 62px;
	margin-bottom: 0px;
	max-height: 250px;
    overflow: hidden;
}
.content-text-slider h2 span {
	color: #6CC72B;
}
.content-text-slider a {
	border: 2px solid #6CC72B;
    color: #ffffff;
    font-size: 23px;
    float: left;
    padding: 5px 15px;
    font-weight: 700;
    margin-top: 0px;
}
img.image-slider {
	/*clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);*/
	/*clip-path: polygon(32% 0%, 100% 0%, 68% 100%, 0% 100%);*/
	border-radius: 40px;
}
.content-text-slider .clear {
	clear: both;
}
.content-text-slider .spacer {
    height: 0px;
    float: left;
    width: 100%;
}
.banner-bar:before {
	background: none !important;
}
.logolist-bar .slick-slide {
	padding: 0 40px;
}
.logolist-bar, h1 strong:before, .contact-bar h3 strong:before {
	background: #6CC72B;
}
.button:hover, .instagram-bar .crt-feed-container .crt-load-more a:hover, .instagram-bar .work .button:hover, .instagram-bar button.crt-load-more:hover, .resource-bar.newspage .btn-row .btn1:hover, .twitter-bar button.crt-load-more:hover, .work-bar .projectbg .btn1:hover {
    background: #6CC72B;
}
.contact-bar .hbspt-form .hs-button, .contact-bar .wpcf7 .wpcf7-submit {
    background: #6CC72B;
}
.nav-bar .toplinks a.phonenumber {
    color: #6CC72B;
}
.banner-bar.homeslider ul.slick-dots li.slick-active button {
    background-color: #6CC72B;
}
.button {
    border: 2px solid #6CC72B;
}
.show-mobile {
	display: none !important;	
}
.hidden-mobile {
	display: block !important;
}
/*@media (min-width: 981px) and (max-width: 1220px) {
	.content-text-slider {
		padding-top: 0px;
		max-width: 49%;
	}
	.content-image-slider {
		max-width: 50%;
	}
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 45px !important;
		line-height: 45px !important;
	}
	.content-text-slider h2 {
		font-size: 48px !important;
		line-height: 48px !important;
	}
	.content-text-slider h4 {
		font-size: 21px !important;
		line-height: 21px !important;
	}
	.content-text-slider-header {
		height: 240px;
	}
	
}
@media (min-width: 981px) and (max-width: 1220px) {
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 45px !important;
		line-height: 45px !important;
	}
	.content-text-slider h2 {
		font-size: 45px !important;
		line-height: 45px !important;
	}
}
@media (min-width: 830px) and (max-width: 980px) {
	img.image-slider {
		max-height: 350px;
	}
	.content-text-slider {
		padding-top: 15px;
		max-width: 49%;
	}
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 37px !important;
		line-height: 37px !important;
	}
	.content-text-slider h2 {
		font-size: 40px !important;
		line-height: 40px !important;
	}
	.content-text-slider h4 {
		font-size: 20px !important;
		line-height: 20px !important;
	}
	.content-text-slider-header {
		height: 180px;
		margin-top: 0px;
	}
	.content-image-slider {
		max-width: 50%;
	}
}
@media (min-width: 768px) and (max-width: 830px) {
	img.image-slider {
		max-height: 293px;
	}
	.content-text-slider {
		padding-top: 15px;
		max-width: 48%;
	}
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 31px !important;
		line-height: 31px !important;
		margin-left: -5px;
	}
	.content-text-slider h2 {
		font-size: 34px !important;
		line-height: 34px !important;
		margin-left: -5px;
	}
	.content-text-slider h4 {
		font-size: 22px !important;
		line-height: 22px !important;
		margin-left: -5px;
	}
	.content-text-slider-header {
		height: 170px;
		margin-top: 0px;
	}
	.content-text-slider a {
		font-size: 15px !important;
    }
}

@media (max-width: 768px) {
	.content-text-slider-header {
		height: 114px;
		margin-top: 0px;
	}
	img.image-slider {
		max-height: 260px;
		margin-left: -20px;
		clip-path: polygon(0% 0%, 100% 0%, 62% 100%, 0% 100%);
	}
	.content-image-slider {
		background-image: none !important;
		float: left;
		overflow: hidden;
		max-width: 50%;
	}
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 26px !important;
        margin-left: -15px;
        line-height: 28px !important;
		padding-right: 20px;
	}
	.content-text-slider h2 {
		font-size: 26px !important;
		line-height: 28px !important;
	}
	.content-text-slider h4 {
		font-size: 10px;
        margin-left: -15px;
        line-height: 12px;
		padding-right: 20px;
		margin-bottom: 5px;
	}
	.content-text-slider {
		width: 50%;
		float: right;
		padding-left: 0px;
        padding-top: 0px;
	}
	.content-text-slider a {
		font-size: 10px;
        margin-left: -15px;
        border: 1px solid #73b943;
	}
	.banner-bar.homeslider ul.slick-dots {
		display: none !important;
	}
	.content-text-slider .spacer {
		height: 5px;
	}
}

@media (min-width: 600px) and (max-width: 769px) {
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 31px !important;
        margin-left: -45px;



        line-height: 31px !important;	
	}
	.content-text-slider h2 {
		font-size: 33px !important;
		line-height: 33px !important;
	}
	.content-text-slider h4 {
		font-size: 13px !important;
        margin-left: -45px;
        line-height: 15px;	
	}
	.content-text-slider-header {
        height: 170px;
        margin-top: 0px;
    }
	img.image-slider {
        max-height: 300px;
        margin-left: -39px;
    }
	.content-text-slider a {
        margin-left: -10px;
		font-size: 13px !important;
    }
}
@media (min-width: 500px) and (max-width: 560px) {
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 23px !important;
        line-height: 23px !important;	
		margin-left: -20px;
	}
	.content-text-slider h2 {
		font-size: 23px !important;
		line-height: 23px !important;
		margin-left: -20px;
	}
	.content-text-slider h4 {
		font-size: 12px;
        line-height: 14px;	
		margin-left: -20px;
	}
	.content-text-slider-header {
        height: 140px;
    }
}
@media (min-width: 560px) and (max-width: 768px) {
	.content-text-slider h2 {
		font-size: 30px !important;
        line-height: 30px !important;	
		margin-left: -20px;
	}
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 30px !important;
		line-height: 30px !important;
		margin-left: -20px;
	}
	.content-text-slider h4 {
		font-size: 13px;
        line-height: 15px;	
		margin-left: -20px;
	}
	.content-text-slider-header {
        height: 160px;
    }
}
@media (min-width: 768px) and (max-width: 1040px) {
	.content-text-slider h2 {
		font-size: 36px !important;
        line-height: 36px !important;	
		margin-left: -20px;
	}
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 36px !important;
		line-height: 36px !important;
		margin-left: -20px;
	}
	.content-text-slider h4 {
		font-size: 18px !important;
        line-height: 18px !important;	
		margin-left: -20px !important;
	}
	.content-text-slider a {
        font-size: 15px !important;
        padding: 5px 15px !important;
		margin-left: -20px !important;
    }
	.content-text-slider-header {
		height: 114px !important;
		margin-top: 0px !important;
	}
}
@media (max-width: 500px) {
	.content-text-slider h2 {
        font-size: 18px !important;
        line-height: 18px !important;
		margin-left: -20px;
		margin-bottom: 0px;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 18px !important;
		line-height: 18px !important;
		margin-left: -20px;
		margin-bottom: 0px;
	}
	.content-text-slider-header {
        height: 110px;
        margin-top: 0px;
    }
	.content-text-slider h4 {
        font-size: 10px;
        line-height: 10px;
		margin-left: -20px;
    }
	.content-text-slider a {
        font-size: 9px;
        padding: 3px 15px;
		margin-left: -15px;
    }
}
@media (max-width: 390px) {
	.content-text-slider h2 {
        font-size: 19px !important;
        line-height: 19px !important;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 18px !important;
		line-height: 18px !important;
	}
	.content-image-slider {
		max-width: 58%;
	}
	.content-text-slider {
		width: 42%;
	}
	.content-text-slider-header {
		height: 125px;
	}
}
@media (max-width: 365px) {
	.content-text-slider h2 {
        font-size: 17px !important;
        line-height: 17px !important;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 17px !important;
		line-height: 17px !important;
	}
}
*/

.outerContainerMain {
  display: table;
  /*overflow: hidden;*/
}

.outerContainerMain .innerContainerMain {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.outerContainer {
  display: table;
  /*overflow: hidden;*/
}

.outerContainer .innerContainer {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.slick-slide {
	text-align: center !important;
	/*max-width: 1680px !important;*/
	/*width: 100%;*/
}
.logolist-bar {
    padding: 100px 0 140px;
    height: 350px;
}
.contact-bar {
	overflow: visible;
    margin-top: -100px;
}
.banner-bar {
    height: 800px;
    background-color: #000;
    padding-top: 6.5vh !important;
}

/*@media (min-width: 1041px) {	
	.content-image-slider {
		float: left;
		margin-left: 5%;
    }
	.content-text-slider {
		float: left;
    }
}
@media (min-width: 1680px) {	
	.content-image-slider {
		margin-left: 10%;
    }
}
@media (min-width: 1920px) {	
	.content-image-slider {
		margin-left: 17%;
    }
}*/

@media (min-width: 1280px) {	
	.content-text-slider h4 {
        max-height: 26px;
        overflow: hidden;
		height: 26px;
    }
}
@media (min-width: 768px) and (max-width: 1280px) {	
	.contact-bar {
        padding-top: 100px !important;
        height: 1150px;
    }
	.banner-bar {
		height: auto;
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
}
@media (min-width: 1400px) {	
	/*.content-image-slider {
		margin-left: -10%;
    }*/
}
@media (min-width: 1280px) {	
    .content-text-slider a {
        font-size: 18px !important;
        padding: 5px 15px !important;
		margin-left: 0px !important;
		margin-top: 0px !important;
    }
}
@media (min-width: 1040px) and (max-width: 1280px) {	
	
	.slick-slide {
		text-align: left !important;
	}
	.content-image-slider {
        max-width: 50% !important;
		float: left;
    }
	.content-text-slider {
        padding-top: 0px !important;
        max-width: 49% !important;
		padding-left: 0px !important;
		float: left;
    }
	.content-text-slider-header {
        height: 270px !important;
        margin-top: 0px !important;
    }
	.content-text-slider h2 {
        font-size: 45px !important;
        line-height: 45px !important;
		margin-left: 0px !important;
		max-height: 185px;
        overflow: hidden;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 45px !important;
		line-height: 45px !important;
		margin-left: 0px !important;
		max-height: 175px;
        overflow: hidden;
	}
	.content-text-slider h4 {
        font-size: 21px !important;
        line-height: 21px !important;
		margin-left: 0px !important;
		max-height: 23px;
        overflow: hidden;
		height: 23px;
    }
	.content-text-slider a {
        font-size: 18px !important;
        padding: 5px 15px !important;
		margin-left: 0px !important;
		margin-top: 0px !important;
    }
}
@media (min-width: 768px) and (max-width: 1040px) {
	.slick-slide {
		text-align: left !important;
	}
	.content-image-slider {
        max-width: 50% !important;
		float: left;
    }
	.content-text-slider {
        padding-top: 0px !important;
        max-width: 48% !important;
		padding-left: 0px !important;
		float: left;
    }
	.content-text-slider-header {
        height: 190px !important;
        margin-top: 0px !important;
    }
	.content-text-slider h2 {
        font-size: 36px !important;
        line-height: 36px !important;
		margin-left: 0px !important;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 36px !important;
		line-height: 36px !important;
		margin-left: 0px !important;
	}
	.content-text-slider h4 {
        font-size: 18px !important;
        line-height: 18px !important;
		margin-left: 0px !important;
		max-height: 19px;
        overflow: hidden;
		height: 19px;
    }
	.content-text-slider a {
        font-size: 15px !important;
        padding: 5px 15px !important;
		margin-left: 0px !important;
		margin-top: 0px !important;
    }
	.banner-bar.homeslider ul.slick-dots li button {
    	width: 13px;
    	height: 13px;
	}
	.banner-bar.homeslider .slick-arrow {
        left: 10px;
        width: 40px;
        height: 40px;
    }
	.banner-bar.homeslider .slick-arrow:before, .banner-bar.homeslider .slick-next:before {
        left: 9px;
        top: 6px;
        width: 12px;
        height: 25px;
        background-size: 100%;
    }
	.banner-bar.homeslider .slick-next {
        left: auto;
        right: 10px;
    }
	.banner-bar.homeslider .slick-next:before {
        left: 11px;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
	.slick-slide {
		text-align: left !important;
	}
	.content-image-slider {
        max-width: 50% !important;
		float: left !important;
		overflow: hidden !important;
		padding-left: 0px;
    }
	.content-text-slider {
        padding-top: 0px !important;
        max-width: 50% !important;
		padding-left: 0px !important;
		float: left !important:
    }
	img.image-slider {
        max-height: 260px !important;
        margin-left: -20px !important;
        /*clip-path: polygon(0% 0%, 100% 0%, 62% 100%, 0% 100%) !important;*/
		border-radius: 0px;
    }
	.content-text-slider-header {
        height: 140px !important;
        margin-top: 0px !important;
    }
	.content-text-slider h2 {
        font-size: 26px !important; /*30px !important;*/
        line-height: 26px !important; /*30px !important;*/
		margin-left: -20px !important;
		max-height: 105px;
        overflow: hidden;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 26px !important; /*30px !important;*/
		line-height: 26px !important; /*30px !important;*/
		margin-left: -20px !important;
		max-height: 100px;
        overflow: hidden;
	}
	.content-text-slider h4 {
        font-size: 13px !important;
        line-height: 13px !important;
		margin-left: -20px !important;
		max-height: 13px;
        overflow: hidden;
    }
	.content-text-slider a {
        font-size: 10px !important;
        padding: 5px 15px !important;
		margin-left: -20px !important;
		border: 1px solid #6CC72B;
		margin-top: 0px !important;
    }
	/*.banner-bar.homeslider ul.slick-dots {
        padding: 15px 0 0;
		bottom: 10px;
	}
	.banner-bar.homeslider ul.slick-dots li button {
    	width: 13px;
    	height: 13px;
	}*/

	.banner-bar.homeslider ul.slick-dots {
        padding: 15px 0 0 !important;
		bottom: 10px !important;
		/*display: none !important;*/
	}
	.banner-bar.homeslider .slick-arrow {
        display: block !important;
    }
	.banner-bar.homeslider ul.slick-dots li button {
    	width: 8px !important;
    	height: 8px !important;
	}
	.banner-bar.homeslider .slick-arrow {
        left: 10px;
        width: 30px !important;
        height: 30px !important;
		border: 3px solid #fff;
    }
	.banner-bar.homeslider .slick-arrow:before, .banner-bar.homeslider .slick-next:before {
        left: 6px !important;
        top: 5px !important;
        width: 12px !important;
        height: 25px !important;
        background-size: 65% !important;
    }
	.banner-bar.homeslider .slick-next {
        left: auto;
        right: 10px !important;
    }
	.banner-bar.homeslider .slick-next:before {
        left: 8px !important;
    }
	.banner-bar.homeslider ul.slick-dots li {
        padding: 0 7px !important;
        display: inline-block;
    }
}

@media (max-width: 768px) { 
	.slick-slide {
		text-align: left !important;
	}
	.content-image-slider {
        max-width: 41% !important;
		overflow: hidden !important;
		float: left !important;
		padding-right: 0px !important;
        padding-left: 0px !important;
    }
	.content-text-slider {
        padding-top: 0px !important;
        width: 59% !important;
		max-width: 59% !important;
		padding-left: 20px !important;
		float: left !important;
		margin-top: -5px;
    }
	img.image-slider {
        max-height: max-content !important;
        margin-left: 0px !important;
        /*clip-path: polygon(0% 0%, 100% 0%, 62% 100%, 0% 100%) !important;*/
    }
	.content-text-slider-header {
        height: 85px !important; /*105px !important;*/
        margin-top: 0px !important;
		margin-bottom: 0px !important;
    }
	.content-text-slider h2 {
		margin-left: 0px !important;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		margin-left: 0px !important;
	}
	.content-text-slider h4 {
		margin-left: 0px !important;
		max-height: 9px;
        overflow: hidden;
    }
	.content-text-slider a {
        padding: 3px 15px !important;
		margin-left: 0px !important;
		border: 1px solid #6CC72B !important;
		margin-top: 0px !important;
    }
	.banner-bar.homeslider ul.slick-dots {
        padding: 5px 0 0 !important;
		bottom: 6px !important;
		/*display: none !important;*/
	}
	.banner-bar.homeslider .slick-arrow {
        display: block !important;
    }
	.banner-bar.homeslider ul.slick-dots li button {
    	width: 7px !important;
    	height: 7px !important;
	}


	.banner-bar.homeslider .slick-arrow {
        left: 10px;
        width: 30px !important;
        height: 30px !important;
		border: 3px solid #fff;
    }
	.banner-bar.homeslider .slick-arrow:before, .banner-bar.homeslider .slick-next:before {
        left: 6px !important;
        top: 5px !important;
        width: 12px !important;
        height: 25px !important;
        background-size: 65% !important;
    }
	.banner-bar.homeslider .slick-next {
        left: auto;
        right: 10px !important;
    }
	.banner-bar.homeslider .slick-next:before {
        left: 8px !important;
    }
	.banner-bar.homeslider ul.slick-dots li {
        padding: 0 4px !important;
        display: inline-block;
    }
}
@media (min-width: 500px) and (max-width: 768px) {
   	.content-text-slider-header {
        height: 140px !important; /*105px !important;*/
    }
	.content-text-slider h4 {
        max-height: 14px !important;
		overflow: hidden;
    }
}
@media (max-width: 500px) { /* 500px */
	.slick-slide {
		text-align: left !important;
	}
	.content-image-slider {
        max-width: 41% !important;
		overflow: hidden !important;
		float: left !important;
		padding-right: 0px !important;
        padding-left: 0px !important;
    }
	.content-text-slider {
        padding-top: 0px !important;
        width: 59% !important;
		max-width: 59% !important;
		padding-left: 20px !important;
		float: left !important;
    }
	img.image-slider {
        max-height: max-content !important;
        margin-left: 0px !important;
        /*clip-path: polygon(0% 0%, 100% 0%, 62% 100%, 0% 100%) !important;*/
    }
	.content-text-slider-header {
        height: 85px !important; /*105px !important;*/
        margin-top: 0px !important;
		margin-bottom: 0px !important;
    }
	.content-text-slider h2 {
        font-size: 18px !important;
        line-height: 18px !important;
		margin-left: 0px !important;
		max-height: 74px;
        overflow: hidden;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 18px !important;
		line-height: 18px !important;
		margin-left: 0px !important;
		max-height: 74px;
        overflow: hidden;
	}
	.content-text-slider h4 {
        font-size: 9px !important;
        line-height: 9px !important;
		margin-left: 0px !important;
		height: 9px;
        overflow: hidden;
    }
	.content-text-slider a {
        font-size: 9px !important;
        padding: 3px 15px !important;
		margin-left: 0px !important;
		border: 1px solid #6CC72B !important;
		margin-top: 0px !important;
    }
	.banner-bar.homeslider ul.slick-dots {
        padding: 5px 0 0 !important;
		bottom: 6px !important;
		/*display: none !important;*/
	}
	.banner-bar.homeslider .slick-arrow {
        display: block !important;
    }
	.banner-bar.homeslider ul.slick-dots li button {
    	width: 7px !important;
    	height: 7px !important;
	}


	.banner-bar.homeslider .slick-arrow {
        left: 10px;
        width: 30px !important;
        height: 30px !important;
		border: 3px solid #fff;
    }
	.banner-bar.homeslider .slick-arrow:before, .banner-bar.homeslider .slick-next:before {
        left: 6px !important;
        top: 5px !important;
        width: 12px !important;
        height: 25px !important;
        background-size: 65% !important;
    }
	.banner-bar.homeslider .slick-next {
        left: auto;
        right: 10px !important;
    }
	.banner-bar.homeslider .slick-next:before {
        left: 8px !important;
    }
	.banner-bar.homeslider ul.slick-dots li {
        padding: 0 4px !important;
        display: inline-block;
    }
	/*.logolist-bar .slick-slide img {
		width: 100% !important;
		height: auto !important;
		max-width: 260px !important;
		max-height: 40px !important;
		margin-top: -80px !important;
	}
	.logolist-bar {
        padding: 0px !important;
		height: 190px !important;
    }*/
	.logolist-bar .slick-slide img {
		max-width: 260px;
		max-height: 40px;
		margin-top: -80px;
	}
	.logolist-bar {
        padding: 0px !important;
		height: 190px;
    }
}
@media (min-width: 410px) and (max-width: 460px) {
	/*.logolist-bar .slick-slide img {
		margin-top: -100px !important;
	}*/
}
@media (min-width: 460px) and (max-width: 500px) {
	/*.logolist-bar .slick-slide img {
		margin-top: -120px !important;
	}*/
}
/*
 * @media (min-width: 374px) and (max-width: 500px) {
	.content-text-slider-header {
        height: 90px !important;
    }
}
@media (max-width: 374px) {
    .content-text-slider-header {
        height: 90px !important;
    }
	.content-text-slider h4 {
		font-size: 10px !important;
		line-height: 10px !important;
	}
}
*/


/*
 * @media (max-width: 410px) {
	.banner-bar {
		height: 153px !important;
		background-color: #000 !important;
	}
	.content-image-slider {
        max-width: 50% !important;
		overflow: hidden !important;
		float: left !important;
    }
	.content-text-slider {
        padding-top: 0px !important;
        width: 65% !important;
		padding-left: 0px !important;
		float: right !important;
    }
	img.image-slider {
        max-height: 260px !important;
        margin-left: -35px !important;
        clip-path: polygon(0% 0%, 100% 0%, 62% 100%, 0% 100%) !important;
    }
	.content-text-slider-header {
        height: 105px !important;
        margin-top: 0px !important;
		margin-bottom: 0px !important;
    }
	.content-text-slider h2 {
        font-size: 18px !important;
        line-height: 18px !important;
		margin-left: -40px !important;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
		font-size: 18px !important;
		line-height: 18px !important;
		margin-left: -40px !important;
	}
	.content-text-slider h4 {
        font-size: 11px !important;
        line-height: 11px !important;
		margin-left: -40px !important;
    }
	.content-text-slider a {
        font-size: 9px !important;
        padding: 3px 15px !important;
		margin-left: -32px !important;
		border: 1px solid #6CC72B !important;
		margin-top: 0px !important;
    }
}
*/
/* Video Vimeo */
.video-bar {
	max-height: 1080px; /* 530px; /*619px; /*800px;*/
	overflow: hidden;
	position: relative;
}
.video-bar iframe, .video-bar object, .video-bar embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin:0px;
}
.vimeo-hidden-mobile {
	width: 100%;
}
.logolist-bar:after {
	background-image: none !important;
}
@media (min-width: 1920px) {
	.vimeo-hidden-mobile {
		height: 800px;
	}
}
/*.video-bar iframe {
    max-height: 535px;
}*/
.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0; overflow: hidden;
	max-width: 100%; height: auto;
}
.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.vimeo-hidden-mobile {
	display: block;
}
.vimeo-show-mobile {
	display: none;
}
@media (min-width: 1280px) {
	.banner-bar.homeslider ul.slick-dots {
		bottom: -60px;
	}
}
@media (min-width: 768px) and (max-width: 1280px) {
	.banner-bar.homeslider ul.slick-dots {
		bottom: -35px;
	}
}
@media (max-width: 500px) {
	.vimeo-hidden-mobile {
		display: none;
	}
	.vimeo-show-mobile {
		display: block;
	}
	.video-bar #player {
		max-width: 100%;
		width: 100%;
	}
	.player.right-content-area-supported {
		width: 100%;
		max-width: 100% !important;
	}
}

/* Form Home */
.contact-bar .hbspt-form {
    padding: 40px 97px 0 21px;
}
@media (max-width: 768px) {
    .contact-bar {
        padding: 50px 0 45px;
        clip-path: polygon(0% 5%, 100% 0%, 100% 100%, 0% 100%);
    }
}
/*@media (max-width: 768px) {
	.page-template-resources .work-bar .projectbg .hoverstate {
		opacity: 1 !important;
		padding: 1px 1px !important;
		background: rgba(127, 127, 127, 0.5);
		background-image: radial-gradient(black 15%, transparent 15%);
		background-size: 3px 3px;
	}
}*/

/* FORM Home */
.contact-bar {
    text-align: center;
}
.contact-bar .intro {
	float: none;
	display: inline-block;
}
.contact-bar .intro img {
    margin-top: 25%;
}
.contact-bar .form {
	display: inline-block;	
	text-align: left;
}
@media (max-width: 768px) {
	.contact-bar .intro img {
	    margin: 0 auto;
		margin-top: 15%;
		margin-bottom: 50px;
		max-width: 320px;
	}
	.contact-bar {
        min-height: 1600px !important;
    }
	.imgcontent-bar .rightimg .item__svg {
        max-width: 360px;
    }
}
@media (min-width: 1280px) {
	.contact-bar .intro {
		float: none;
		margin-left: 0px;
		width: 50%;
		padding-left: 20px;
		padding-right: 20px;
	}
	.contact-bar .form {
		width: 50% !important;
	}
}
@media (min-width: 768px) and (max-width: 1280px) {
	.contact-bar .intro {
		float: none;
		margin-left: 0px !important;
		width: 43% !important;
		padding-left: 20px;
		padding-right: 20px;
	}
	.contact-bar .form {
		width: 57% !important;
	}
    .contact-bar .hbspt-form {
        padding: 30px 20px 0 0 !important;
    }
}
/*************************************/
/*************************************/

@media (min-width: 1200px) {
	.page-template-resources .work-bar .projectbg .hoverstate a.button {
	    padding: 15px 20px !important;
        font-size: 13px !important;
		width: 40% !important;
		left: 30% !important;
    }
}
@media (min-width: 768px) and (max-width: 1200px) { /*1024*/
	.page-template-resources .work-bar .projectbg .hoverstate a.button {
		line-height: 15px !important;
		width: 50% !important;
		left: 25% !important;
	}
	.work-bar .projectbg .hoverstate a.button {
        font-size: 13px !important;
        padding: 5px 11px !important;
    }
}
@media (min-width: 900px) and (max-width: 1024px) { 
	.page-template-resources .work-bar.resources .projectbg h4 {
		font-size: 20px;
		line-height: 22px;
		bottom: 40px;
	}
}
@media (min-width: 768px) and (max-width: 900px) { /*1024*/
	.page-template-resources .work-bar.resources .projectbg h4 {
		font-size: 17px;
		line-height: 19px;
		bottom: 40px;
	}
}
/*@media (min-width: 768px) and (max-width: 1024px) { 
	.page-template-resources .work-bar.resources .projectbg h4 {
		line-height: 19px;
	}
}*/
@media (max-width: 768px) {
	.show-mobile {
		display: block !important;	
	}
	.hidden-mobile {
		display: none !important;
	}
	
	/* Resources */
	.page-template-resources .work-bar .projectbg .hoverstate a.button {
		line-height: 15px !important;
		width: 30%;
		left: 35% !important;
	}
	.page-template-resources .work-bar .projectbg .img img {
        margin: 0 auto;
        width: 100%;
    }
	.page-template-resources h1 {
		text-align: left; /*center*/
	}
	img.image-slider {
		border-radius: 0px;
	}
}
@media (min-width: 460px) and (max-width: 768px) {
	.page-template-resources .work-bar.resources .projectbg h4 {
		font-size: 22px;
		line-height: 24px;
	}
	.page-template-resources .work-bar .projectbg .hoverstate a.button {
        line-height: 20px !important;
    }
}
@media (min-width: 600px) and (max-width: 768px) {
	.page-template-resources .work-bar ul {
		max-width: 570px;
        margin: 0 auto;
	}
}

/* Thought Leadership */
.page-template-resources .work-bar .projectbg .hoverstate {
    height: 185px;
    background-color: #74b83d;
	position: relative;
	text-align: left;
}
.page-template-resources .work-bar.resources .projectbg h4 {
    height: 100px;
    overflow: hidden;
    float: left;
}
.page-template-resources .work-bar .projectbg .hoverstate a.button {
	position: absolute;
	bottom: 10px;
	left: 10px !important;
	background: transparent !important;
    border: 1px solid #fff !important;
	text-align: center !important;
}
.page-template-resources .work-bar.resources .projectbg span.category-name {
	margin-top: -100% !important;
}
.work-bar.resources .projectbg li {
    padding: 0 20px 40px;
}

/* Form Home */
.hs_submit {
	width: auto;
	display: inline-block;
    float: left;
    margin-right: 25px;
}
.hs_recaptcha {
	width: auto;
	display: inline-block;
}
@media (max-width: 506px) {
	.hs_submit {
	    margin-top: 25px;
	}
}
@media (max-width: 768px) {
	.banner-bar {
		height: auto; 
		padding-top: 0px !important;
		padding-bottom: 0px !important;
	}
}
@media (min-width: 768px) and (max-width: 1040px) {
    .banner-bar {
        height: auto;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
	.content-image-slider {
        max-width: 50% !important;
        float: left;
    }
	.content-text-slider {
        padding-top: 0px !important;
        max-width: 48% !important;
        padding-left: 0px !important;
        float: left;
    }
	.content-text-slider h2 {
        font-size: 36px !important;
        line-height: 36px !important;
        margin-left: 0px !important;
		max-height: 149px;
        overflow: hidden;
    }
	.content-text-slider h2.HomeNewsSmallerTitle {
        font-size: 36px !important;
        line-height: 36px !important;
        margin-left: 0px !important;
		max-height: 149px;
        overflow: hidden;
    }
	.content-text-slider h4 {
        font-size: 18px !important;
        line-height: 18px !important;
        margin-left: 0px !important;
    }
	.content-text-slider a {
        font-size: 15px !important;
        padding: 5px 15px !important;
        margin-left: 0px !important;
        margin-top: 0px !important;
    }
	.content-text-slider-header {
        height: 190px !important;
        margin-top: 0px !important;
    }
	.content-text-slider-header {
        height: 190px !important;
        margin-top: 0px !important;
    }
	.banner-bar.homeslider ul.slick-dots {
        bottom: -35px !important;
    }
	img.image-slider {
		border-radius: 40px;
	}
	.content-image-slider {
		padding-right: 25px !important;
		padding-left: 25px !important;
	}
	.banner-bar.homeslider ul.slick-dots li button {
        width: 13px !important;
        height: 13px !important;
    }
	img.image-slider.hidden-mobile {
		display: block !important;
	}
	img.image-slider.show-mobile {
		display: none !important;
	}
	.banner-bar.homeslider .slick-arrow {
        left: 10px;
        width: 40px !important;
        height: 40px !important;
    }
	.banner-bar.homeslider .slick-next {
        left: auto;
        right: 10px;
    }
	.banner-bar.homeslider .slick-arrow:before, .banner-bar.homeslider .slick-next:before {
        left: 9px !important;
        top: 6px !important;
        width: 12px !important;
        height: 25px !important;
        background-size: 100% !important;
    }
	.banner-bar.homeslider .slick-next:before {
        left: 11px !important;
    }
}
@media (min-width: 1280px) and (max-width: 1360px) {
    .banner-bar {
		padding-top: 7.9vh !important;
	}
}
@media (min-width: 1360px) and (max-width: 1440px) {
    .banner-bar {
		padding-top: 7.6vh !important;
	}
}
@media (min-width: 1440px) {
	.banner-bar {
		height: 800px;
		padding-top: 125px !important;
		overflow: hidden;
	}
}
@media (min-width: 500px) and (max-width: 768px) {
	/*.logolist-bar .slick-slide img {
		width: 100% !important;
		height: auto !important;
		max-width: 260px !important;
		max-height: 100px !important;
		margin-top: -100px !important;
	}
	.logolist-bar {
        padding: 0px !important;
		height: 280px !important;
    }*/
	.logolist-bar .slick-slide img {
		/*width: 100%;
		height: auto;*/
		max-width: 260px;
		max-height: 100px;
		margin-top: -100px;
	}
	.logolist-bar {
        padding: 0px !important;
		height: 280px;
    }
}
@media (min-width: 670px) and (max-width: 768px) {
	/*.logolist-bar .slick-slide img {
		margin-top: -130px !important;
	}*/
}
body .uwy.userway_p5 .userway_buttons_wrapper {
    left: auto !important;
    right: 13px !important;
}
@media (max-width: 500px) {
    .contact-bar {
        clip-path: polygon(0% 3%, 100% 0%, 100% 100%, 0% 100%);
    }
	/*.logolist-bar .slick-slide {
 	   padding: 0 20px;
	}*/
}
@media (min-width: 768px) and (max-width: 1280px) {
    /*.logolist-bar {
        padding: 0 !important;
        height: 260px !important;
    }
	.logolist-bar .slick-slide {
        height: 200px !important;
	}
	.logolist-bar .slick-slide img {
        margin-top: 0px !important;
		max-height: 130px !important;
    }*/
	.logolist-bar {
        padding: 0 !important;
        height: 260px;
    }
	.logolist-bar .slick-slide {
        height: 200px;
	}
	.logolist-bar .slick-slide img {
        margin-top: 0px;
		max-height: 130px;
    }
}
@media (min-width: 1280px) {
    /*.logolist-bar .slick-slide img {
	    max-height: 55px !important;
	}*/
}
@media (min-width: 768px) and (max-width: 1023px) {
	.imgcontent-bar .rightimg {
        width: 45% !important;
        margin-right: 0% !important;
    }
	.imgcontent-bar .rightimg .item__svg {
        width: 100% !important;
    }
}
@media (min-width: 768px) and (max-width: 901px) {
	.hs_submit {
		margin-top: 20px;
	}
}
@media (min-width: 767px) and (max-width: 768px) {
    .contact-bar .intro img {
        max-width: 280px;
    }
	.contact-bar {
        min-height: 1150px !important;
    }
	.content-text-slider h2 {
        height: 149px;
    }
    .content-text-slider h4 {
		max-height: 20px !important;
		overflow: hidden;
		height: 30px
    }

}
@media (min-width: 1280px) and (max-width: 1400px) {
    #header-part a.logo {
        margin-left: 15px !important;
    }
	.nav-bar .toplinks {
		right: 45px !important;
	}
	.nav-bar {
        padding-right: 0px !important;
    }
}
@media (min-width: 1280px) and (max-width: 1300px) {
	.banner-bar {
		height: auto;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
	.banner-bar.homeslider ul.slick-dots {
        bottom: -35px;
    }
}
@media (min-width: 1400px) {
    #nimbly-banner img.hidden-mobile {
		float: left;
		max-width: 550px !important;
		max-height: 550px !important;
	}
	.max-width-slider {
		max-width: 1245px;
		margin: 0 auto;
	}
	.banner-bar.homeslider ul.slick-dots {
        bottom: -30px;
    }
}
@media (min-width: 1400px) and (max-width: 1440px) {
    .banner-bar {
        padding-top: 125px !important;
    }
}
