
/* --------------------------
--- GENERAL CSS ---
----------------------------- */

html {
	font-size: 16px;
}

body {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
	color: #666;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden; /* fix for aos animation */
}

a {
	color: #FFC857;
	text-decoration: none;
  	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:focus,
a:hover {
	color: #000;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}

p,
table {
	margin-bottom: 20px;
}

table {
    width: 100%;
    margin-bottom: 20px;
}
table > thead > tr > th, 
table > tbody > tr > th, 
table > tfoot > tr > th, 
table > thead > tr > td, 
table > tbody > tr > td, 
table > tfoot > tr > td {
	border: 1px solid #dddddd;
	padding: 10px;
    vertical-align: top;
}

img {
	max-width: 100%;
	height: auto;
}

figure {
	margin-bottom: 20px;
}

/* Ordered list default: 1., 2., 3., etc. */
.main-content .item-page ol {
	padding-left: 32px;
	margin-bottom: 20px;
}

/* Ordered list: bottom-spacing */
.main-content .item-page ol.bottom-spacing li {
	margin-bottom: 20px;
}

/* Bullets: default */
.main-content .item-page ul {
	list-style: none;
	margin: 0 0 20px 15px;
	padding: 0;
}
.main-content .item-page ul li {
	position: relative;
	padding-left: 20px;
}
.main-content .item-page ul li:before {
	content: "-";
	position: absolute;
	left: 0;
}

/* Bullets: bottom-spacing */
.main-content .item-page ul.bottom-spacing li {
	margin-bottom: 20px;
}

/* Bullets: red-squares */
.main-content .item-page ul.red-squares {
	padding-left: 15px;
	margin-bottom: 20px;
}
.main-content .item-page ul.red-squares li {
	line-height: 20px;
	margin-bottom: 2px;
}
.main-content .item-page ul.red-squares li:before {
	content: "";
	width: 10px;
	height: 20px;
	background: #ff505d;
}

/* Bullets for Blog articles */
.main-content .item-page .article-body ul li:before {
	content: "\02212";
	font-weight: bold;
}

/* Image alignment for Blog articles */
.align-left,
.alignleft {
	float: left;
	margin-right: 20px;
	margin-bottom: 15px;
	max-width: 300px;
}
.align-right,
.alignright {
	float: right;
	margin-left: 20px;
	margin-bottom: 15px;
	max-width: 300px;
}
.align-center,
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Video embed - IFRAME */
.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 20px;
}
.responsive-video iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.max-width-600 {
	max-width: 600px;
}
.max-width-600.align-center {
	margin-left: auto;
	margin-right: auto;
}

/* Responsive Brochure embed (PDF, pptx embed) */
.responsive-doc-embed {
    position: relative;
    padding-bottom: 115%;
    height: 0;
    margin-bottom: 20px;
}
.responsive-doc-embed iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.max-width-700 {
	max-width: 700px;
}
.max-width-700.align-center {
	margin-left: auto;
	margin-right: auto;
}

/* Social 2s - social sharing on Blog */
.s2s_supra_contenedor {
	display: none;
}

/* --------------------------------------------
--- OVERRIDE over lity lightbox js library ---
----------------------------------------------- */
.lity {
	background: rgba(0,0,0,0.8);
}

/* --------------------------------------
--- CONTAINER width for content ---
----------------------------------------- */
.container-main {
	padding: 0 15px;
}
@media (min-width: 768px) {
	.container-main {
		padding: 0 20px;
	}
}
@media (min-width: 992px) {
	.container-main {
		/*padding: 0 25px;*/
	}
}
@media (min-width: 1200px) {
	.container-main {
		padding: 0 50px;
	}
}
@media (min-width: 1600px) {
	.container-main {
		width: 1480px;
		padding: 0;
		margin: 0 auto;
	}
}

/* --------------------------------------
--- Bootstrap container width fix ---
----------------------------------------- */
@media (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1140px;
	}
}
@media (min-width: 1920px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1320px;
	}
}

/* --------------------------
--- BG IMAGE responsive ---
----------------------------- */
.img-zoom {
	overflow: hidden;
	display: block;
}
.image-cover {
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	padding-bottom: 66.66666%;
	-webkit-transition: transform 0.35s ease;
	-moz-transition: transform 0.35s ease;
	-o-transition: transform 0.35s ease;
	transition: transform 0.35s ease;
}
.img-zoom:hover .image-cover,
.img-zoom:focus .image-cover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/* --------------------------
--- BUTTONS ---
----------------------------- */
.btn {
	position: relative;
    background: transparent;
	border: 1px solid #000;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
    color: #000;
	padding: 13px 50px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.btn:hover,
.btn:focus {
	color: #fff;
	background: #000;
	border-color: #000;
}
.btn i {
	margin-right: 5px;
}

.btn-inverse {
	color: #fff;
	background: transparent;
	border-color: #fff;
}
.btn-inverse:hover,
.btn-inverse:focus {
	color: #000;
	background: #fff;
	border-color: #fff;
}
.btn-inverse:hover i,
.btn-inverse:focus i {
	color: #000;
}

.btn-white {
	color: #FFC857;
	background: #fff;
	border-color: #fff;
}
.btn-white:hover,
.btn-white:focus {
	color: #fff;
	background: #2F2F2F;
	border-color: #2F2F2F;
}
.btn-white:hover i,
.btn-white:focus i {
	color: #fff;
}

.btn-yellow {
	color: #fff;
	background: #FFC857;
	border-color: #FFC857;
}
.btn-yellow:hover,
.btn-yellow:focus {
	color: #FFC857;
	background: none;
	border-color: #FFC857;
}
.btn-yellow:hover i,
.btn-yellow:focus i {
	color: #FFC857;
}

@media (min-width: 768px) {
	.btn {
		font-size: 18px;
	}
}

/* --------------------------
--- HEADER ---
----------------------------- */

.header {
	width: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}
.home .header { 
	position: absolute;
}

/* topbar */
.topbar {
    font-family: 'Gotham Black', 'Open Sans', Arial;
	font-size: 15px;
    font-weight: 900;
	background: rgba(0,0,0,0.1);
	padding: 0;
}
.topbar a {
	color: #fff;
}
.topbar a:hover,
.topbar a:focus {
	color: #085E73;
}
.topbar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.topbar-container {
	display: flex;
	justify-content: flex-end;
}
.topbar input.form-control {
	width: 250px;
	color: #b1b2b3;
    border-left: #ccc solid 2px;
    border-right: #ccc solid 2px;
    border-top: 0;
    border-bottom: 0;
	background-color: transparent;
	padding: 5px 10px 5px 30px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.home .topbar input.form-control {
    border-left: #35373c solid 2px;
    border-right: #35373c solid 2px;
}
.topbar .form-search:before {
	font-family: "Font Awesome\ 5 Free", sans-serif;
	content: "\f002";
	color: #7f8081;
	position: absolute;
	padding: 8px 5px 3px 10px;
}
.topbar ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b1b2b3;
}
.topbar ::-moz-placeholder { /* Firefox 19+ */
  color: #b1b2b3;
}
.topbar :-ms-input-placeholder { /* IE 10+ */
  color: #b1b2b3;
}
.topbar :-moz-placeholder { /* Firefox 18- */
  color: #b1b2b3;
}
.form-search {
	display: none;
}
.btn-lang-open {
	color: #b1b2b3;
	background: transparent;
	border: 0 none;
	margin-right: 15px;
  	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.btn-lang-open:hover {
	color: #666;
}
#language .modal-header {
	border-bottom: 0 none;
	padding: 30px 30px 0 50px;
}
#language .modal-body {
	padding: 20px 50px 30px;
}
#language .modal-body > p {
	margin-bottom: 10px;
}
#language .modal-content {
	background: #1c1f24;
	border: 1px solid rgba(0, 0, 0, .2);
	color: #fff;
}
#language .modal-content h3 {
	color: #fff;
}
#language .modal-content a {
	color: #666;
}
#language .modal-content a:hover {
	color: #085E73;
}
#language ul li {
	margin: 0;
	padding: 0;
}
#language ul li a {
	padding: 5px 0;
}
#language ul li.lang-active {
	background: transparent;
}

.topbar-container .mod--topbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 12px;
	color: #fff;
}
.topbar-container .mod--topbar .phone-number p {
	margin: 0;
}
.topbar .top-menu {
	display: none;
}
.topbar-container .mod--topbar .icons-container {
	position: relative;
	top: 1px;
	display: flex;
	align-items: center;
	margin-left: 15px;
}
.topbar-container .mod--topbar .icons-container a:first-child {
	margin-right: 8px;
}
.topbar-container .mod--topbar .icons-container .fab {
	font-size: 20px;
}
@media (min-width: 768px) {

	.topbar { padding: 0 60px; }
	.form-search {
		display: block;
	}
	.top-links {
		display: flex;
		align-items: center;
	}
	.topbar-container .mod--topbar {
		justify-content: space-between;
	}
	.topbar .top-menu {
		display: block;
	}
	.topbar .top-menu ul {
		display: flex;
	}
	.topbar .top-menu ul li {
		padding-right: 15px;
	}
	.topbar .top-menu ul li:first-child:before {
		display: none;
	}
	.topbar .top-menu ul li:before {
		content: "/";
		padding-right: 15px;
		font-size: 10px;
	}
}


/* header-main */
.header-main {
	position: relative;
	z-index: 1001;
	padding: 10px 10px;
}
.header-main-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
}
.logo-container img {
	height: 60px;
}
.menu-container {
	display: flex;
	align-items: center;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
	.header-main {
		padding: 15px 15px;
	}
	.logo-container img {
		height: 100px;
	}
}
@media (min-width: 1200px) {
	.header-main {
		padding: 0 5vw;
	}
}

/* only on mobile <992 px if scrolled hide the logo */
.mobile .logo-container .scrolled {
	visibility: hidden;
}

/* -----------------
--- BREADCRUMBS ---
-------------------- */
.breadcrumbs {

}
.breadcrumbs ol {
	margin: 0;
	padding: 8px 0 !important;
}
.mod-breadcrumbs__divider {
	display: none;
}
.breadcrumb-item a {
	color: #000;
}
.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
	color: #085E73;
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item:before {
	color: #777;
}
.breadcrumb-item + .breadcrumb-item:before {
	float: none;
}

/* --------------------------
--- mod--social-networks ---
----------------------------- */

.mod--social-networks .icons-container {
	display: flex;
}
.mod--social-networks .icons-container a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #2F2F2F;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	width: 45px;
	height: 45px;
	margin-right: 15px;
}
.mod--social-networks .icons-container .fab {
	font-size: 22px;
}
.mod--social-networks .icons-container a:hover {
	color: #fff;
	background: #FFC857;
}
#hamburger-menu .mod--social-networks {
	padding: 0 30px;
}

/* -------------------------------------
--- mod Articles Newsflash default ---
---------------------------------------- */
.mod-articlesnews__item .newsflash-title {
	font-size: 18px;
	margin-bottom: 15px;
}
.newsflash-date {
	font-size: 16px;
}

/* ------------------------------------------------
--- MAIN CONTENT - where main content comes ---
--------------------------------------------------- */
.main-content {
	
}

/* --------------------------
--- FOOTER ---
----------------------------- */
#back-top {
	display: none;
}
.footer {
	color: #fff;
	text-align: center;
}
.footer a {
	color: #cacbcd;
}
.footer a:hover {
	color: #FFC857;
}
.footer h3 {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin: 20px 0 10px;
	padding-bottom: 10px;
}
.footer .nav {
	flex-direction: column;
}
.footer-main {
	background: #2F2F2F;
	padding: 50px 0 30px;
}
.footer-columns ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-columns ul li:first-child {
	margin-top: 0;
}
.footer-columns ul li {
	margin-top: 10px;
}
.footer-1 {
	font-weight: bold;
}
.logo-footer {
	margin-bottom: 30px;
}
.logo-footer img {
	height: 30px;
}

.footer .mod-menu li a {
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
}
.footer .mod-menu li a:hover {
	color: #FFC857;
}
.footer-slogan .mod-custom {
	font-size: calc(1.1rem + 1vw);
	line-height: 1;
}
.footer-copy {
	background: #262626;
	border-top: 1px solid #272b32;
	font-size: 14px;
	padding: 20px 0;
}
.footer-copy .row {
	align-items: center;
}
.footer-copy .copyright {
	text-align: center;
}
.footer-copy .copyright br {
	display: none;
}
.footer-copy .copyright .mod-custom {
	display: inline-block;
}
.footer-copy .copyright .mod-custom p {
	margin-bottom: 0;
}
.footer-copy .sitemap {
	text-align: center;
	margin-top: 20px;
}
.developer {
	text-align: center;
}
.footer-logos img {
	width: auto;
	max-height: 60px;
}
@media (max-width: 767px) {
	.footer-columns > div {
		margin-top: 40px;
	}
	.footer-columns > div:first-child {
		margin-top: 0;
	}
	.footer .icons-container {
		justify-content: center;
		margin-bottom: 40px;
	}
}
@media (min-width: 768px) {
	.footer {
		text-align: left;
	}
	.footer-main {
		padding: 8vw 0 5vw;
	}
	.footer-columns {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.logo-footer img {
		padding-right: 50px;
	}
	.footer-columns .footer-1,
	.footer-columns .footer-2,
	.footer-columns .footer-3 {
		width: 33.33333333333%;
	}
	.footer-1 .mod-custom a {
		font-size: 16px;
	}
	.footer .icons-container {
		margin-bottom: 30px;
	}
	.footer-copy .copyright {
		text-align: left;
	}
	.footer-copy .copyright br {
		display: inline;
	}
	.footer-copy .sitemap {
		text-align: right;
		margin-top: 0;
	}
	.developer {
		text-align: right;
	}
}
@media (min-width: 992px) {
	.footer-1 .mod-custom a {
		font-size: 18px;
	}
}
@media (min-width: 1200px) {
	.logo-footer {
		margin-bottom: 50px;
	}
	.footer-columns {
		flex-wrap: nowrap;
	}
	.footer .icons-container {
		margin-bottom: 50px;
	}
}

/* --------------------------
--- BACK TO TOP ---
----------------------------- */
#back-to-top {
	display: inline-block;
    width: 36px;
    height: 36px;
	background: #ffb213;
    border: 0 none;
	cursor: pointer;
	position: fixed;
	bottom: 15px;
	right: 6px;
	z-index: 1000;
	filter: alpha(opacity=0);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
#back-to-top:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 10px;
    height: 10px;
    margin: -2px 0 0 -5px;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#back-to-top.reveal {
	filter: alpha(opacity=100);
	opacity: 1;
	visibility: visible;
}
#back-to-top.reachBottom {
	bottom: 15px;
}

/* --------------------------
--- HOMEPAGE ---
----------------------------- */

/* Home intro section */
.home-intro {
	position: relative;
}

/* Home intro slider */
.home-intro-slider {
	background: #1c1f24;
	color: #fff;
}
.home-intro-slider .slide-item {
	position: relative;
}
.home-intro-slider .slide-image-container {
	width: 100%;
	height: 60vh;
}
.home-intro-slider .slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 10% 0%;
}
@media (min-width: 360px) {
	.home-intro-slider .slide-image {
		background-position: 0% 0%;
	}
}

/* Tree Symbol */
.home-intro .tree-symbol {
	position: absolute;
	width: 30%;
	top: 120px;
	right: 0;
}

/* Hero text - Intro text */
.hero-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.intro-text {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding-top: 60px;
	padding-bottom: 50px;
}
.intro-text-cell {
	flex-basis: 100%;
	padding: 0 25px;
}
.intro-text h1 {
	font-size: calc(1.4rem + 3vw);
	line-height: 1;
	text-transform: none;
	color: #000;
	margin: 0;
}
.intro-text h1 b {
	color: #ffcd2c;
}
.slider-controls {
	position: absolute;
	z-index: 2;
	bottom: 30px;
	right: 20px;
}
.slider-controls .slick-control {
	background: #000;
	color: #fff;
	opacity: 0.9;
	padding: 18px 18px 16px 18px;
}
.slider-controls .slick-control:hover {
	background: #222;
}


.home-intro-slider .slide-content-inner {
	display: flex;
	align-items: center;
	min-height: 400px;
}
.home-intro-slider .slide-content {
	position: relative;
	z-index: 1;
	padding-bottom: 60px;
}
.home-intro-slider .slide-text h2 {
	font-weight: 800;
	color: #fff;
}
.home-intro-slider .slide-text h2 + p {
	margin-bottom: 0;
}
.home-intro-slider .slide-item.Right .slide-content-inner {
	justify-content: flex-end;
	text-align: right;
}
.home-intro-slider .slide-item.Center .slide-content-inner {
	justify-content: center;
	text-align: center;
}
.main-content .home-intro-slider .slick-dots {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: flex;
	list-style: none;
	margin: 0 0 55px;
	padding: 0;
}
.main-content .home-intro-slider .slick-dots li {
	padding: 0;
	margin: 0;
}
.main-content .home-intro-slider .slick-dots li:before {
	display: none;
}
.main-content .home-intro-slider .slick-dots li button {
	display: block;
	width: 60px;
	height: 5px;
	background: #fff;
	font-size: 0;
	line-height: 0;
	border: 0 none;
	margin: 0 5px;
}
.main-content .home-intro-slider .slick-dots li.slick-active button {
	background: #db4d40;
}
@media (min-width: 480px) {
	.home-intro-slider .slide-text h2 {
		font-size: calc(1rem + 3vw);
	}
}
@media (min-width: 768px) {
	.intro-text-cell {
		padding: 30px 8vw;
	}
}
@media (min-width: 992px) {
	.intro-text {
		padding-top: 86px;
		padding-bottom: 8vw;
	}
	.home-intro-slider .slide-content-inner {
		min-height: 500px;
	}
	.home-intro-slider .slide-image-container {
		width: 100%;
		height: 80vh;
	}
}
@media (min-width: 1200px) {
	.home-intro-slider .slide-content-inner {
		min-height: 600px;
	}
	.home-intro-slider .slide-image-container {
		width: 100%;
		height: 100vh;
	}
}

/* EU pasica */
.eu-pasica {
	position: absolute;
	/*top: 100%;
	margin-top: -170px;*/
	bottom: 0;
	right: 0;
	display: inline-block;
	max-width: 600px;
	width: 100%;
	z-index: 198;

}

.eu-pasica img {
	width: 100%;
}

@media (min-width: 768px) {
	.eu-pasica {
		right: 150px;
	
	}
}
@media (max-width: 768px) {
	.eu-pasica {
	
		bottom: 30%;
	}
}

/* Home - Invento Top 3 (3 columns) */
.blue-container {
	background: #FFC857;
	padding: 0 15px;
}
.invento-top-3 {
	position: relative;
	margin-top: -50px;
	background: #fff;
	padding: 40px 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.invento-top-3-container .column-item {
	text-align: center;
	margin-bottom: 40px;
}
.invento-top-3-container .column-item:last-child {
	margin-bottom: 0;
}
.invento-top-3-container .column-item img {
	height: 120px;
	margin-bottom: 30px;
}
.invento-top-3-container .column-item h3 {
	text-transform: capitalize;
	margin-bottom: 20px;
}
.invento-top-3-container .column-item ul {
	display: inline-block;
	list-style: none;
	padding: 0;
}
.invento-top-3-container .column-item ul li {
	text-align: left;
}
.invento-top-3-container .column-item ul li:before {
	position: relative;
	top: -4px;
	content: "\f111";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 4px;
	padding-right: 5px;
}
@media (min-width: 576px) {
	.invento-top-3-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.invento-top-3-container .column-item {
		width: 50%;
		padding: 0 4vw;
	}
}
@media (min-width: 768px) {
	.blue-container {
		padding: 0 7vw;
	}
	.invento-top-3 {
		padding: 4vw 0;
	}
}
@media (min-width: 992px) {
	.invento-top-3 {
		margin-top: -8vw;
	}
	.invento-top-3-container .column-item {
		width: 33.33333333%;
		margin-bottom: 0;
	}
	.invento-top-3-container .column-item ul li {
		text-align: center;
	}
}
@media (min-width: 1200px) {
	.invento-top-3-container .column-item img {
		height: 150px;
	}
	.invento-top-3-container .column-item ul li {
		text-align: left;
	}
}

/* Home - Invento numbers */
.invento-numbers {
	padding: 50px 0;
}
.invento-numbers-container .number-item {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.invento-numbers-container .number-item:last-child {
	margin-bottom: 0;
}
.invento-numbers-container .number-item p {
	margin-bottom: 0;
}
.invento-numbers-container .number-item h3 {
	font-size: calc(1rem + 8vw);
	color: #fff;
	margin: 0;
}
@media (min-width: 768px) {
	.invento-numbers {
		padding: 7vw 0;
	}
	.invento-numbers-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.invento-numbers-container .number-item {
		width: 25%;
		margin-bottom: 0;
		font-size: 16px;
	}
	.invento-numbers-container.cols-3 .number-item {
		width: 33.33333333333%;
	}
	.invento-numbers-container .number-item h3 {
		font-size: calc(1rem + 4vw);
	}
}
@media (min-width: 992px) {
	.invento-numbers-container .number-item {
		font-size: 18px;
	}
}

/* Home - Projects */
.projects-container .project-item {
	position: relative;
}
.projects-container  .project-image {
	padding-bottom: 100%;
	background-size: cover;
}
.projects-container .project-item a {
	position: relative;
	display: block;
}
.projects-container .project-item .project-content > * {
	flex-grow: 1;
}
.projects-container .project-item .project-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
}
.projects-container .project-item h3 {
	font-size: calc(1rem + 3vw);
	color: #fff;
	text-align: center;
	padding: 0 20px;
	margin-bottom: 0;
	text-shadow: 5px 5px 10px #000000;
}
.projects-container .project-item h3 {
	font-size: calc(1rem + 8vw);
}
@media (min-width: 768px) {
	.projects-container {
		display: flex;
		justify-content: center;
	}
	.projects-container .project-item {
		width: 50%;
	}
	.projects-container.count-1 {
		padding: 12vw;
	}
	.projects-container.count-1 .project-item {
		width: 100%;
	}
	.projects-container.count-5,
	.projects-container.count-6 {
		flex-wrap: wrap;
	}
	.projects-container.count-5 .project-item,
	.projects-container.count-6 .project-item {
		width: 33.333333333%;
	}
	.projects-container.count-3 .project-item h3 {
		font-size: calc(1rem + 2.5vw);
	}
	.projects-container.count-4 .project-item h3 {
		font-size: calc(1rem + 1.5vw);
	}
}

/* Home Blog news
 mod__latest-posts */
.blog-module {
	padding: 40px 15px;
	background: #FFC857;
}
.mod__latest-posts .mod-title h2 {
	font-size: calc(1.1rem + 1vw);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.mod__latest-posts .mod-articlesnews__item .newsflash-title {
	font-size: calc(0.8rem + 1vw);
	text-transform: none;
	margin: 0;
}
.mod__latest-posts .mod-articlesnews__item .newsflash-title a {
	color: #000;
}
.mod__latest-posts .mod-articlesnews__item .newsflash-title a:hover,
.mod__latest-posts .mod-articlesnews__item .newsflash-title a:focus {
	color: #555;
}
.mod__latest-posts .mod-articlesnews__item .published {
	color: #444;
	margin-bottom: 5px;
}
.mod__latest-posts .mod-articlesnews__item .published .icon-calendar {
	display: none;
}
.newsflash-image {
	/*background: #FFC857;*/
	margin-bottom: 40px;
}
.newsflash-image .img-container {
	padding-bottom: 100%;
	background-size: cover;
	-webkit-box-shadow: 0 0 10px #333;
	-moz-box-shadow: 0 0 10px #333;
	box-shadow: 0 0 10px #333;
}
.mod__latest-posts .more-news {
	text-align: center;
	margin-top: 40px;
}
@media (max-width: 767px) {
	.mod__latest-posts .mod-articlesnews__item {
		display: flex;
	}
	.mod__latest-posts .mod-articlesnews__item .newsflash-image {
		width: 25%;
	}
	.mod__latest-posts .mod-articlesnews__item .newsflash-content {
		width: 75%;
		padding-left: 15px;
	}
	.mod__latest-posts .mod-articlesnews__item:last-child .newsflash-image {
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	.blog-module {
		padding: 6vw 6vw;
	}
	.mod__latest-posts .mod-title h2 {
		margin-bottom: 50px;
	}
	.mod__latest-posts .items-container {
		display: flex;
		margin-left: -20px;
		margin-right: -20px;
		margin-bottom: 20px;
	}
	.mod__latest-posts .mod-articlesnews__item {
		width: 33.3333333333%;
		padding-left: 20px;
		padding-right: 20px;
	}
	.mod__latest-posts .mod-articlesnews__item .newsflash-title {
		font-size: 20px;
	}
	.mod__latest-posts .more-news {
		margin-top: 50px;
	}
}

/* Home - Brochure */
.brochure {
	background: url('../images/brochure-bg.jpg') no-repeat;
	background-color: #FFC857;
	background-size: cover;
	background-position: 50%;
	color: #fff;
	text-align: center;
	padding: 30px 0;
}
.brochure-inner h1,
.brochure-inner h2,
.brochure-inner h3,
.brochure-inner h4,
.brochure-inner h5 {
	color: #fff;
}
.brochure-inner p:last-child {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.brochure {
		padding: 6vw 0;
	}
}

/* Home Testimonials */
.testimonials {
	padding: 50px 30px 40px;
	background: #2F2F2F;
	color: #fff;
}
.testimonials h2 {
	color: #48D6F8;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.testimonial-item .author {
	margin-top: 20px;
	padding: 0 8vw;
}
@media (min-width: 768px) {
	.testimonials {
		padding: 6vw 6vw;
	}
	.testimonials h2 {
		margin-bottom: 4vw;
	}
	.testimonials-container {
		display: flex;
		margin-left: -50px;
		margin-right: -50px;
	}
	.testimonials-container .testimonial-item {
		width: 50%;
		padding-left: 50px;
		padding-right: 50px;
		text-align: center;
	}
}

/* Video block - homepage */
.video-block-homepage {
	position: relative;
	color: #fff;
	/*background-attachment: fixed;*/
	background-color: #000;
	background-size: cover;
	background-position: 50% 50%;
	padding: 60px 0 40px;
}
.video-block-homepage:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.video-block-homepage .container-main {
	position: relative;
}
/* On mobile browsers disable attachment fixed */
@media (hover: none) {
	.video-block-homepage {
		background-attachment: scroll;
	}
}
.video-block-homepage h2 {
	margin-bottom: 20px;
	color: #fff;
}
.btn-play-video {
	box-sizing: border-box;
	display: inline-block;
	width: 120px;
	height: 120px;
	padding-top: 34px;
	padding-left: 8px;
	line-height: 26px;
	border: 0 none;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	background-color: #000;
	font-size: 26px;
	font-weight: bold;
	transition: all 0.3s ease;
}
.btn-play-video:hover,
.btn-play-video:focus {
	background-color: #FFC857;
	color: #fff;
}
.video-block-homepage .videos-library {
	margin-top: 4vw;
}
.video-block-homepage .videos-library p {
	font-weight: bold;
	margin-bottom: 10px;
}
.video-block-homepage .videos-library h2 {
	margin-bottom: 0;
}
.video-block-homepage .videos-library a {
	color: #fff;
}
.video-block-homepage .videos-library a:hover,
.video-block-homepage .videos-library a:focus {
	color: #1f94e6;
}
@media (max-width: 767px) {
	.video-block-homepage .item-text {
		padding: 0 10px;
	}
}
@media (min-width: 768px) {
	.video-block-homepage {
		padding: 12vw 0;
	}
	.video-block-homepage .container-main {
		display: flex;
		justify-content: flex-end;
	}
	.video-block-homepage .item-text {
		width: 50%;
	}
}

/* Home Footer Logos - EU projects */
.footer-logos-eu-projects {
	padding: 3vw 20px 5vw;
	text-align: center;
	box-shadow: inset 0 0 20px #eee;
}
.footer-logos-eu-projects p {
	margin-bottom: 0;
}
.footer-logos-eu-projects img {
	margin: 0;
}
@media (min-width: 768px) {
	.footer-logos-eu-projects {
		padding: 3vw 14vw 4vw;
	}
}

/* Slick styles */
.slick-dots {
	margin: 20px 0 0 !important;
	display: flex;
	justify-content: center;
}
.slick-dots li {
	padding: 0 !important;
	margin: 0 5px !important;
}
.slick-dots li:before {
	display: none;
}
.slick-dots li button {
	font-size: 0;
	background: #ccc;
	border: 0;
	width: 15px;
	height: 15px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

/* end Homepage */

/* ----------------------------------------
--- PAGES as Articles (default styles) ---
------------------------------------------- */

.page-layout-default .image-gallery {
	padding: 25px 0;
}
.page-layout-default .article-gallery {
	max-width: 800px;
	margin: 0 auto;
}
.page-layout-default .article-slideshow {
	max-width: 600px;
	margin: 0 auto;
	-webkit-box-shadow: 0px 0px 20px #ccc;
	-moz-box-shadow: 0px 0px 20px #ccc;
	box-shadow: 0px 0px 20px #ccc;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
	background-color: rgba(0,0,0,0.3);
	border: 5px solid rgba(0,0,0,0.01);
}
@media (min-width: 768px) {
	.page-layout-default .image-gallery {
		padding: 50px 0;
	}
}

/* Page header */
.page-header {
	position: relative;
	background: #FFC857;
	color: #000;
}
.view-article .page-header {
	padding-top:100px;
}
.page-header .bg-image-container,
.page-header .bg-image-container .img-overlay-1,
.page-header .bg-image-container .img-overlay-2,
.page-header .bg-image-container .bg-image-cover {
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}
.page-header .bg-image-container .bg-image-cover {
	background-size: cover;
	background-position: 50% 50%;
	/*background-position: 50% 0;*/
	/*background-attachment: fixed;*/
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.3;
}
.page-header .breadcrumbs {
	margin-bottom: 30px;
}
/* On mobile browsers disable attachment fixed */
@media (hover: none) {
	.page-header .bg-image-container .bg-image-cover {
		background-attachment: scroll;
	}
}
.page-header .bg-image-container .img-overlay-1 {
	/*background: rgba(27,63,122, 0.66);*/
	z-index: 1;
}
.page-header a {
	color: #fff;
}
.page-header a:hover {
	color: #000;
}
.page-header-content {
	position: relative;
	z-index: 1;
	padding: 30px 15px 20px;
	text-align: center;
}
.page-header-content h1,
.page-header-content h2,
.page-header-content h3,
.page-header-content h4,
.page-header-content h5,
.page-header-content h6 {
	color: #000;
}
.page-header-content h1 {
	margin-bottom: 0;
}
.page-header-content.cols-2 .head-2 {
	padding: 0 30px;
}
.page-header-content h1 {
	font-size: calc(1.4rem + 4vw);
}
.page-header-content .image_intro img {
	width: 100%;
}
@media (min-width: 768px) {
	.page-header-content {
		padding: 4vw 20px;
	}
	.page-header.has-img .page-header-content {
		min-height: 420px;
		display: flex;
		align-items: center;
	}
	.page-header.has-img .page-header-content .cat-header-container {
		flex-grow: 1;
	}
	.page-header-content.cols-1 {
		display: flex;
		align-items: center;
	}
	.page-header-content.cols-1 {
		display: flex;
	}
	.page-header-content.cols-1 .head-1 {
		flex-grow: 1;
	}
	.page-header-content.cols-2 .head-1 {
		width: 70%;
	}
	.page-header-content.cols-2 .head-2 {
		width: 30%;
		padding: 0 0 0 2vw;
	}
	.page-header-content.cols-2 .article-text {
		padding-right: 4vw;
	}
	.page-header-content .article-title + .article-text {
		margin-top: 20px;
	}
}
@media (min-width: 992px) {
	.page-header-content h1 {
		font-size: 50px;
	}
}
@media (min-width: 1200px) {
	.page-header-content {
		padding: 4vw 5vw;
	}
	.page-header-content.cols-2 .head-1 {
		width: 60%;
	}
	.page-header-content.cols-2 .head-2 {
		width: 40%;
	}
}
@media (min-width: 1600px) {
	.page-header-content {
		padding: 4vw 12vw;
	}
}

/* Page body */
.page-body {
	position: relative;
	z-index: 2;
}
.page-body .article-text {
	padding: 4vw 50px 0;
}
@media (max-width: 767px) {
	.page-body .article-text {
		padding: 0 15px;
	}
}

/* -----------------------------------------
--- CUSTOM FIELDS - Page elements for Pages
-------------------------------------------- */

/* ------------------------------------------------------------------------
--- CONTENT-ROW: repeatable custom field (sections bellow Page header) ---
--------------------------------------------------------------------------- */

/* content-row colors */
.content-row.white-bg .text-field-inner {
	background: #fff;
}
.content-row.lightyellow-bg .text-field-inner {
	background: #FFC857;
	color: #000;
}
.content-row.darkyellow-bg .text-field-inner {
	background: #ffb213;
	color: #000;
}
.content-row.lightgray-bg .text-field-inner {
	background: #efefef;
}
.content-row.not-white-bg h1,
.content-row.not-white-bg h2,
.content-row.not-white-bg h3,
.content-row.not-white-bg h4,
.content-row.not-white-bg h5,
.content-row.not-white-bg h6 {
	color: #000;
}
.content-row.not-white-bg.lightgray-bg h1,
.content-row.not-white-bg.lightgray-bg h2,
.content-row.not-white-bg.lightgray-bg h3,
.content-row.not-white-bg.lightgray-bg h4,
.content-row.not-white-bg.lightgray-bg h5,
.content-row.not-white-bg.lightgray-bg h6 {
	color: #000;
}

/* content-row has-Image */
.content-row.hasImg .text-field-inner {
	padding: 30px 15px 20px;
}
.content-row.hasImg.img-Left .text-field-inner {
	padding: 30px 15px 20px;
}
.content-row.hasImg .img-field {
	position: relative;
}
.content-row.hasImg .video-controls {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (max-width: 767px) {
	.content-row.hasImg .text-field {
		width: 100% !important;
	}
	.content-row.hasImg .img-field {
		width: 100% !important;
	}
	.content-row.hasImg .img-field .img-container {
		width: 100% !important;
	}
}
@media (min-width: 768px) {
	.content-row .image-cover {
		position: absolute;
		width: 100%;
		height: 100%;
		padding-bottom: 0;
	}
	.content-row.hasImg {
		display: flex;
	}
	.content-row.hasImg.img-Left {
		flex-direction: row-reverse;
	}
	.content-row.hasImg .text-field {
		position: relative;
		z-index: 1;
		width: 50%;
	}
	.content-row.hasImg .text-field-inner {
		padding: 6vw 20px 5vw 20px;
	}
	.content-row.hasImg.img-Left .text-field-inner {
		padding: 6vw 20px 5vw 20px;
	}
	.content-row.hasImg .img-field {
		width: 50%;
	}
}
@media (min-width: 1200px) {
	.content-row.hasImg .text-field-inner {
		padding: 6vw 50px 5vw 50px;
	}
	.content-row.hasImg.img-Left .text-field-inner {
		padding: 6vw 50px 5vw 50px;
	}
}
@media (min-width: 1600px) {
	.content-row.hasImg .text-field-inner {
		padding: 6vw 6vw 5vw 12vw;
	}
	.content-row.hasImg.img-Left .text-field-inner {
		padding: 6vw 12vw 5vw 6vw;
	}
}

/* content-row = ROW-1 = has-Image */
@media (min-width: 768px) {
	.content-row.hasImg.row-1 {
		/*margin-top: -3vw;*/
	}
	.content-row.hasImg.row-1 .text-field {
		/*padding-top: 3vw;*/
	}
	.content-row.hasImg.row-1 .img-container {
		position: absolute;
		width: 100%;
		height: 100%;
		right: 0;
	}
}

/* content-row = ROW-1 = No-Image = Blue Box */
@media (min-width: 576px) {
	.content-row.noImg.row-1 .blue-box {
		margin-top: -8vw;
	}
}

/* content-row No-Image */
.content-row.noImg .text-field-inner {
	padding: 30px 15px 20px;
}
@media (min-width: 768px) {
	.content-row.noImg .text-field-inner {
		/*padding: 6vw 12vw 5vw;*/ /* reduced by Doron wish */
		padding: 4vw 20px 2vw;
	}
}
@media (min-width: 1200px) {
	.content-row.noImg .text-field-inner {
		padding: 4vw 50px 2vw;
	}
}
@media (min-width: 1600px) {
	.content-row.noImg .text-field-inner {
		padding: 4vw 12vw 2vw;
	}
}

/* content-row Background-Image */
.content-row.hasImg.img-Bg-image {
	position: relative;
	display: block;
	color: #fff;
	text-align: center;
}
.content-row.hasImg.img-Bg-image .text-field,
.content-row.hasImg.img-Bg-image .img-field {
	width: 100%;
}
.content-row.img-Bg-image h1,
.content-row.img-Bg-image h2,
.content-row.img-Bg-image h3,
.content-row.img-Bg-image h4,
.content-row.img-Bg-image h5,
.content-row.img-Bg-image h6 {
	color: #fff;
}
.content-row.img-Bg-image .text-field {
	position: relative;
	z-index: 3;
}
.content-row.img-Bg-image .img-field,
.content-row.img-Bg-image .img-container,
.content-row.img-Bg-image .image-cover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.content-row.img-Bg-image .image-cover {
	padding-bottom: 0;
}
.content-row.img-Bg-image .text-field-inner {
	background: transparent;
	padding: 30px 30px 20px;
}
.content-row.img-Bg-image .img-container {
	background: rgba(27, 63, 122, 1);
}
.content-row.img-Bg-image .img-container .image-cover {
	opacity: 0.2;
}
@media (min-width: 576px) {
	.content-row.img-Bg-image .text-field-inner {
		padding: 6vw 12vw 5vw;
	}
}

/* -------------------------------------------------
--- FAQ custom field - section at the bottom of Page
---------------------------------------------------- */
.faq-widget {
	background: #FFC857;
	color: #fff;
	margin: 4vw 5vw 0;
}
.faq-widget .answer a {
	color: rgba(255,255,255,0.6);
	text-decoration: underline;
}
.faq-widget .answer a:hover {
	color: #fff;
}
.faq-widget-inner {
	padding: 40px 15px 50px;
}
.faq-block-title {
	color: #fff;
	margin-bottom: 30px;
}
.faq-item:first-child {
	border-top: 1px solid rgba(255,255,255,0.2);
}
.faq-item {
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.faq-item .question {
	font-size: 16px;
	margin: 0;
	padding: 20px 0;
}
.faq-item .question a {
	position: relative;
	display: block;
	color: #fff;
	padding-right: 30px;
}
.faq-item .question a:hover {
	color: rgba(255,255,255,0.4);
}
.faq-item .question a:after {
	content: "\f054";
	font-family: "Font Awesome\ 5 Free", sans-serif;
	color: #fff;
	position: absolute;
	right: 10px;
	top: 1px;
}
.faq-item.expanded .question a:after {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.faq-item .answer {
	display: none;
	padding: 0 15px;
	color: rgba(255, 255, 255, 0.8);
}
.faq-item .answer h1,
.faq-item .answer h2,
.faq-item .answer h3,
.faq-item .answer h4,
.faq-item .answer h5,
.faq-item .answer h6 {
	color: #fff;
}
@media (min-width: 768px) {
	.faq-widget-inner {
		padding: 40px 20px 50px;
	}
	.faq-block-title {
		margin-bottom: 40px;
	}
	.faq-item .question {
		font-size: 20px;
	}
}
@media (min-width: 1200px) {
	.faq-widget-inner {
		padding: 4vw 50px 4vw;
	}
	.faq-item .answer {
		padding: 0 30px 0 15px;
	}
}
@media (min-width: 1600px) {
	.faq-block-title {
		margin-bottom: 60px;
	}
}

/* Faq widget in Page elements (content blocks) */
.content-row .faq-widget {
	margin: 15px 0;
}
.content-row .faq-widget-inner > h2,
.content-row .faq-widget-inner > h3,
.content-row .faq-widget-inner > h4,
.content-row .faq-widget-inner > h5 {
	color: #fff;
}
.content-row .faq-widget-inner > h3 + p {
	margin-bottom: 30px;
}
.content-row .faq-items + p {
	margin-top: 30px;
}
.content-row .faq-item .question {
	font-size: 18px;
}

/* ----------------------------------------------------
--- EDITOR SUB-TEMPLATES - columns in Text Editor ---
------------------------------------------------------- */
.content-row hr {
	/*display: none;*/
	background: transparent;
	margin: 10px 0 20px;
}
.custom-block.cols-2_blue-box .blue-box {
	background: #132b5b;
	color: #fff;
	padding: 22px 22px 1px;
}
.custom-block.cols-2_blue-box + hr {
	display: none;
}
.custom-block.cols-2_blue-box .blue-box h1,
.custom-block.cols-2_blue-box .blue-box h2,
.custom-block.cols-2_blue-box .blue-box h3,
.custom-block.cols-2_blue-box .blue-box h4,
.custom-block.cols-2_blue-box .blue-box h5,
.custom-block.cols-2_blue-box .blue-box h6 {
	color: #fff;
}
.custom-block.cols-3.style-lines .b-row .b-col > * {
	padding-left: 25px;
}
.custom-block.cols-3.style-lines h1,
.custom-block.cols-3.style-lines h2,
.custom-block.cols-3.style-lines h3,
.custom-block.cols-3.style-lines h4,
.custom-block.cols-3.style-lines h5,
.custom-block.cols-3.style-lines h6 {
	margin-bottom: 5px;
}
.custom-block.cols-3.style-lines .b-row .b-col {
	position: relative;
}
.custom-block.cols-3.style-lines .b-row .b-col:before {
	content: "";
	width: 4px;
	height: 50px;
	background: #ff515c;
	position: absolute;
	left: 0;
	top: 0;
}
@media (min-width: 576px) {
	.custom-block .b-row {
		display: flex;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
	}
	.custom-block .b-row .b-col {
		padding-left: 15px;
		padding-right: 15px;
	}
	.custom-block.cols-3.style-lines .b-row .b-col:before {
		left: 15px;
	}
	.custom-block.cols-2 .b-row .b-col {
		width: 50%;
	}
	.custom-block.cols-2_blue-box .column1 {
		width: 60%;
	}
	.custom-block.cols-2_blue-box .column2 {
		width: 40%;
	}
	.custom-block.cols-3 .b-row .b-col {
		width: 100%;
	}
}
@media (min-width: 576px) and (max-width: 767px) {
	.custom-block.cols-2_blue-box .blue-box * {
		font-size: 20px;
	}
	.custom-block.cols-2_blue-box .blue-box p {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.custom-block.cols-3.style-lines + hr {
		display: none;
	}
}
@media (min-width: 768px) {
	/*.custom-block .b-row {
		margin-left: -30px;
		margin-right: -30px;
	}
	.custom-block .b-row .b-col {
		padding-left: 30px;
		padding-right: 30px;
	}
	.custom-block.cols-3.style-lines .b-row .b-col:before {
		left: 30px;
	}*/
	.custom-block.cols-3 .b-row .b-col {
		width: 50%;
	}
	.custom-block.cols-4 .b-row .b-col {
		width: 50%;
	}
	.custom-block.cols-2_blue-box .blue-box {
		padding: 4vw 4vw calc(4vw - 29px);
	}
}
@media (min-width: 992px) {
	.custom-block.cols-3 .b-row .b-col {
		width: 33.3333333333%;
	}
	.custom-block.cols-4 .b-row .b-col {
		width: 25%;
	}
}
@media (min-width: 1200px) {
	.custom-block.cols-3.style-lines h1,
	.custom-block.cols-3.style-lines h2,
	.custom-block.cols-3.style-lines h3,
	.custom-block.cols-3.style-lines h4,
	.custom-block.cols-3.style-lines h5,
	.custom-block.cols-3.style-lines h6 {
		margin-bottom: 20px;
	}
}

/* ------------------------------------------
--- SPECIFIC PAGES created from Articles ---
---------------------------------------------*/

/* Page - About Us */
.site.about-us .invento-numbers {
	padding: 2vw 0;
}
.team-leaders .b-col,
.team-members .b-col {
	text-align: center;
}
.team-leaders.cols-2 {
	max-width: 600px;
	margin: 0 auto;
}
.team-members .b-row {
	flex-wrap: wrap;
	justify-content: center;
}
.team-members .b-col {
	width: 100%;
}
.site.about-us .content-row.row-9 .text-field-inner {
	padding-top: 0;
}
.partner-slider .slick-slide {
	text-align: center;
}
@media (min-width: 576px) {
	.team-members .b-col {
		width: 50%;
	}
}
@media (min-width: 768px) {
	.team-members .b-col {
		width: 33.3333333333%;
	}
	.partner-slider .slick-slide span {
		float: left;
		width: 50%;
	}
}
@media (min-width: 992px) {
	.team-members .b-col {
		width: 25%;
	}
}
@media (min-width: 1200px) {
	.team-members .b-col {
		width: 20%;
	}
}

/* Page - About Us - layout-about-us */
.section.white-bg {
	background: #fff;
}
.section.lightyellow-bg {
	background: #FFC857;
	color: #000;
}
.section.darkyellow-bg {
	background: #ffb213;
	color: #fff;
}
.section.lightgray-bg {
	background: #efefef;
}
.section-2.lightyellow-bg .section-2-header *,
.section-2.darkyellow-bg .section-2-header * {
	color: #000;
}
.section-4-header,
.section-5-header {
	margin-bottom: 35px;
}
.section-7-header {
	margin-bottom: 40px;
}
.member-image {
	margin-bottom: 20px;
}
#partner-network .carousel-item {
	text-align: center;
}
#partner-network .carousel-item img {
	display: block;
}
#partner-network .carousel-inner {
	padding-bottom: 40px;
}
#partner-network .carousel-indicators {
	margin-bottom: 0;
}
#partner-network .carousel-indicators [data-bs-target] {
	background: #ccc;
	border: 0;
	width: 15px;
	height: 15px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
@media (min-width: 768px) {
	#partner-network .carousel-item span {
		float: left;
		width: 50%;
	}
}
.about-padding {
	padding: 30px 15px 30px;
}
@media (max-width: 479px) {
	.page-layout-about-us .block-columns-2 h3 {
		font-size: calc(1rem + .1vw);
	}
}
@media (min-width: 768px) {
	.about-padding {
		padding: 4vw 20px 4vw;
	}
	.page-layout-about-us .content-row.hasImg {
		padding-top: 4vw;
	}
}
@media (min-width: 1200px) {
	.about-padding {
		padding: 4vw 50px 4vw;
	}
}
@media (min-width: 1600px) {
	.about-padding {
		padding: 4vw 12vw 4vw;
	}
}

/* Page - Contact Us */
.page-layout-contact .page-body {
	padding: 30px 15px;
}
.page-layout-contact .contact-part-1 {
	margin-bottom: 40px;
}
#contact-us-map {
	height: 400px;
	margin-bottom: 30px;
}
.page-layout-contact .page-header-content h1 {
    font-size: 40px;
}
form .formError {
	font-size: 12px;
}
@media (max-width: 992px) {
	.contact-form-container {
		max-width: 400px;
		margin: 0 auto;
	}
	.contact-form-container h2 {
		text-align: center;
	}
}
@media (min-width: 768px) {
	.page-layout-contact .page-body {
		padding: 4vw 20px;
	}
	.page-layout-contact .contact-part-1 {
		margin-bottom: 0;
	}
	#contact-us-map {
		height: 600px;
		margin-bottom: 0;
	}
}
@media (min-width: 992px) {
	.page-layout-contact .contact-section {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		margin-left: -20px;
		margin-right: -20px;
	}
	.page-layout-contact .contact-section .contact-part-1,
	.page-layout-contact .contact-section .contact-part-2 {
		width: 50%;
		padding: 0 20px;
	}
}
@media (min-width: 1200px) {
	.page-layout-contact .page-body {
		padding: 4vw 50px;
	}
	.page-layout-contact .contact-section {
		margin-left: -3vw;
		margin-right: -3vw;
	}
	.page-layout-contact .contact-section .contact-part-1,
	.page-layout-contact .contact-section .contact-part-2 {
		padding: 0 3vw;
	}
}
@media (min-width: 1600px) {
	.page-layout-contact .page-body {
		padding: 4vw 12vw;
	}
}

/* Page - Author */
.page-layout-author {
	padding: 20px 0 30px;
}
.page-layout-author .author-info {
	background: #f1f1f1;
	padding: 20px;
}
@media (max-width: 575px) {
	.page-layout-author .author-columns .author-col-1,
	.page-layout-author .author-columns .author-col-2 {
		margin-bottom: 25px;
	}
	.page-layout-author .author-info {
		overflow: hidden;
	}
	.page-layout-author .author-info .author-image {
		float: left;
		margin-right: 15px;
	}
}
@media (min-width: 576px) {
	.page-layout-author .author-columns {
		display: flex;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
	}
	.page-layout-author .author-columns > div {
		padding: 0 15px;
	}
	.page-layout-author .author-columns .author-col-1 {
		width: 200px;
	}
	.page-layout-author .author-columns .author-col-2 {
		width: calc(100% - 200px);
	}
	.page-layout-author .author-columns .author-col-3 {
		width: 100%;
		border-left: 1px solid #eeeeee;
	}
	.page-layout-author .author-info {
		text-align: center;
	}
	.page-layout-author .author-info .author-image {
		margin-bottom: 10px;
	}
	.page-layout-author .author-info .author-image img {
		width: 100%;
	}
}
@media (min-width: 768px) {
	.page-layout-author {
		padding: 3vw 0;
	}
}
@media (min-width: 1200px) {
	.page-layout-author .author-columns {
		flex-wrap: nowrap;
		margin-left: -30px;
		margin-right: -30px;
	}
	.page-layout-author .author-columns > div {
		padding: 0 30px;
	}
	.page-layout-author .author-columns .author-col-1 {
		width: 20%;
	}
	.page-layout-author .author-columns .author-col-2 {
		width: 55%;
	}
	.page-layout-author .author-columns .author-col-3 {
		width: 25%;
	}
}
@media (min-width: 1600px) {
	.page-layout-author .author-columns .author-col-1 {
		width: 15%;
	}
	.page-layout-author .author-columns .author-col-2 {
		width: 60%;
	}
	.page-layout-author .author-columns .author-col-3 {
		width: 25%;
	}
}

/* Page - Videos: Youtube videos listing */
.page-layout-videos {
	background: #eee;
}
.page-layout-videos .page-header {
	background: #ddd;
	margin-bottom: 30px;
}
.page-layout-videos .page-header-inner {
	padding: 20px 0 20px;
}
.page-layout-videos .page-header h1,
.page-layout-videos .page-header p {
	margin-bottom: 0;
}
.page-layout-videos .page-header .article-text {
	margin-top: 10px;
	margin-bottom: 5px;
}
.page-layout-videos .page-body {
	padding-bottom: 1px;
}
.video-filters {
	margin-bottom: 15px;
}
.video-filters ul {
	margin: 0 !important;
}
.video-filters button {
	margin: 0 15px 15px 0;
}
.video-filters .btn {
	border-color: #1f94e6;
	color: #1f94e6;
}
.video-filters .btn.active {
	color: #fff;
	background: #1f94e6;
}
.video-filters .btn:hover {
	border-color: #1f94e6;
	color: #1f94e6;
}
.video-filters .btn:hover,
.video-filters .btn:focus {
	color: #fff;
	background: #1f94e6;
	border-color: #1f94e6;
}
.main-content .item-page .video-filters ul li {
	padding: 0;
	margin: 0;
}
.main-content .item-page .video-filters ul li:before {
	display: none;
}
.videos-container .video-item {
	margin-bottom: 30px;
}
.videos-container .video-item .video-link {
	position: relative;
	display: block;
	color: #fff;
	border-radius: 10px;
	overflow: hidden;
}
.videos-container .video-item .overlay-text {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(27,63,122, 0.9);
	display: flex;
	align-items: center;
	text-align: center;
	padding: 30px;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    -o-transition: all 0.35s ease-out;
    -ms-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
	opacity: 0;
}
.videos-container .video-item .video-link:hover .overlay-text {
	opacity: 1;
}
.videos-container .video-item img {
	width: 100%;
}
.videos-container .video-item .video-title {
	display: block;
	padding: 20px 20px;
	text-align: center;
	font-weight: 700;
	color: #333;
	background: #fff;
}
@media (min-width: 576px) {
	.videos-container {
		display: flex;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
	}
	.videos-container .video-item {
		width: 50%;
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media (min-width: 768px) {
	.page-layout-videos .page-header-inner {
		padding: 2vw 0;
	}
	.videos-container .video-item {
		width: 33.33333333%;
	}
}
@media (min-width: 1600px) {
	.videos-container .video-item {
		width: 25%;
	}
}

/* ------------------------------------------
--- SPECIFIC PAGES created as Categories ---
---------------------------------------------*/

/* Page Authors (category list) */
.com-content-category.category-list {
	padding: 20px 15px;
}
@media (min-width: 768px) {
	.com-content-category.category-list {
		padding: 4vw 20px;
	}
}
@media (min-width: 1200px) {
	.com-content-category.category-list {
		padding: 4vw 50px;
	}
}
@media (min-width: 1600px) {
	.com-content-category.category-list {
		padding: 4vw 12vw;
	}
}

/* Page PRODUCTS (category) - INVENTO IN ACTION */
.page-category-products {
	padding-bottom: 0;
}
.page-category-products .page-header-content {
	display: flex;
	align-items: center;
}
.page-category-products .page-header-content .cat-header-container {
	flex-grow: 1;
}
.page-category-products .page-header h1 {
	position: relative;
	text-align: center;
	margin-bottom: 0;
}
.page-category-products .category-desc {
	margin-top: 20px;
}
.page-category-products .children-categories {
	display: flex;
	margin-left: -1%;
	margin-right: -1%;
	justify-content: center;
	flex-wrap: wrap;
}
.page-category-products .children-categories .child-item {
	width: 50%;
	padding: 0 1%;
	margin-bottom: 2%;
}
.page-category-products .children-categories .child-item a {
	display: block;
	position: relative;
	overflow: hidden;
	height: 260px;
}
.page-category-products .children-categories .child-item h2 {
	position: absolute;
	top: 40%;
	z-index: 1;
	width: 100%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	margin-bottom: 0;
	padding-bottom: 25px;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.page-category-products .children-categories .child-item h2:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 10px auto;
    width: 100px;
    height: 4px;
    background: #085E73;
}
.page-category-products .children-categories .child-item a:hover h2 {
	padding-bottom: 35px;
}
.page-category-products .children-categories .child-item img {
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	-webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.page-category-products .children-categories .child-item a:hover img {
	transform: scale(1.5, 1.5);
	-ms-transform: scale(1.5, 1.5);
	-webkit-transform: scale(1.5, 1.5);
	-webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.page-category-products .items-leading .lead-item:first-child {
	border-top: 1px solid #ddd;
	padding-top: 15px;
}
.page-category-products .items-leading .lead-item {
	/*-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);*/
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.page-category-products .items-leading .lead-item h2 {
	font-size: 26px;
	color: #144673;
	margin: 0;
}
.page-category-products .items-leading .lead-item h3 {
	font-size: 20px;
	color: #59595c;
}
.page-category-products .items-leading .lead-item .product-content {
	padding: 20px 30px;
}
.page-category-products .items-leading .lead-item .product-content-inner {
	flex-grow: 1;
}
.product-content a {
	display: inline-block;
}
.mod-catalog-download {
	text-align: center;
	padding: 0 6vw 50px;
}
.page-category-products .items-leading .lead-item .product-image {
	margin-bottom: 20px;
}
@media (min-width: 480px) {
	.page-category-products .children-categories .child-item h2 {
		font-size: 30px;
	}
	.page-category-products .items-leading .lead-item .product-image {
		text-align: center;
	}
	.page-category-products .items-leading .lead-item .product-image img {
		max-width: 250px;
	}
}
@media (min-width: 768px) {
	.page-category-products .children-categories {
		margin-left: -0.5%;
		margin-right: -0.5%;
	}
	.page-category-products .children-categories .child-item {
		padding: 0 0.5%;
		margin-bottom: 1%;
	}
	.page-category-products .items-leading .lead-item:first-child {
		padding-top: 25px;
	}
	.page-category-products .items-leading .lead-item {
		display: flex;
		align-items: center;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}
	.page-category-products .items-leading .lead-item .product-image img {
		width: 50%;
		max-width: 100%;
	}
	.page-category-products .items-leading .lead-item .product-content {
		width: 60%;
		padding: 40px 50px 40px 0;
	}
}
@media (min-width: 992px) {
	.page-category-products .items-leading .lead-item .product-content {
		width: 75%;
	}
}
@media (max-width: 1199px) {
	.page-category-products .children-categories .child-item:last-child {
		width: 100%;
	}
}
@media (min-width: 1200px) {
	.page-category-products .children-categories .child-item {
		width: 20%;
	}
	.page-category-products .children-categories .child-item a {
		height: 500px;
	}
	.mod-catalog-download {
		padding: 0 6vw 100px;
	}
}

/* category page Invento in Action */
.invento-in-action .page-body-inner {
	padding-top: 30px;
}
.invento-in-action .page-category-products .items-leading .lead-item:first-child {
	border-top: 0;
	padding-top: 0;
}
.invento-in-action .page-category-products .items-leading .lead-item .product-content {
	padding: 0;
	width: 100%;
	height: 100%;
}
.invento-in-action .page-category-products .items-leading .lead-item .product-content a {
	display: flex;
	align-items: center;
	min-height: 300px;
	height: 100%;
	padding: 50px 30px;
	background: transparent;
	-webkit-box-shadow: 0 0 10px #ddd;
	-moz-box-shadow: 0 0 10px #ddd;
	box-shadow: 0 0 10px #ddd;
}
.invento-in-action .page-category-products .product-title h2 {
	color: #FFC857;
	margin: 0;
	text-align: center;
}
.invento-in-action .page-category-products .product-image img,
.invento-in-action .page-category-products .product-title h2 {
  	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.invento-in-action .page-category-products .items-leading .lead-item .product-content a:hover {
	background: #FFC857;
}
.invento-in-action .page-category-products .items-leading .lead-item .product-content a:hover .product-image img {
	filter: brightness(0) invert(1);
}
.invento-in-action .page-category-products .items-leading .lead-item .product-content a:hover .product-title h2 {
	color: #fff;
}
@media (min-width: 576px) {
	.invento-in-action .items-leading {
		display: flex;
		flex-wrap: wrap;
		margin-left: 2vw;
		margin-right: 2vw;
	}
	.invento-in-action .page-category-products .lead-item {
		display: block;
		width: 50%;
		padding-left: 2vw;
		padding-right: 2vw;
	}
}
@media (min-width: 768px) {
	.invento-in-action .page-body-inner {
		padding-top: 50px;
	}
}
@media (min-width: 992px) {
	.invento-in-action .page-category-products .lead-item {
		width: 33.333333333%;
	}
}

/* Article single page: invento-in-action */
.invento-in-action .page-body {
	padding: 0 5vw;
}
.invento-in-action .page-body .article-text {
	text-align: left;
}
.block-columns-2 .b-row {
	display: flex;
	margin-left: 5px;
	margin-right: 5px;
}
.block-columns-2 .b-col {
	padding-left: 5px;
	padding-right: 5px;
}
.block-columns-2.img-left .b-col:first-child {
	width: 25%;
}
.block-columns-2.img-left .b-col + .b-col {
	width: 75%;
}
.block-columns-2.img-right .b-col:first-child {
	width: 75%;
}
.block-columns-2.img-right .b-col + .b-col {
	width: 25%;
}
@media (min-width: 768px) {
	.block-columns-2 .b-row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.block-columns-2 .b-col {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Page FAQ (category - with tabs) */
.page-category-faq .page-header {
	background: rgba(27,63,122, 0.66);
	margin-bottom: 20px;
}
.page-category-faq .page-header-inner {
	padding: 30px 0 20px;
}
.page-category-faq .page-header h1,
.page-category-faq .page-header h2,
.page-category-faq .page-header h3,
.page-category-faq .page-header h4,
.page-category-faq .page-header h5,
.page-category-faq .page-header h6,
.page-category-faq .category-desc {
	color: #fff;
}
.page-category-faq .nav-tabs {
	flex-direction: column;
}
.page-category-faq .nav-tabs .nav-link {
	font-size: 18px;
	color: #1d417f;
	padding: 20px 30px;
	border-color: #ddd;
	border-bottom: 0;
	background: #eee;
}
.page-category-faq .nav-tabs .nav-link:hover,
.page-category-faq .nav-tabs .nav-link:focus {
	color: #085E73;
}
.page-category-faq .nav-tabs .nav-link.active {
	background-color: #1d417f;
	border-color: #1d417f;
	color: #fff;
}
.page-category-faq .nav-tabs button {
	font-weight: bold;
}
.page-category-faq .tab-content {
	margin-bottom: 20px;
}
.page-category-faq .faq-widget-inner {
	padding: 25px 15px;
}
@media (min-width: 768px) {
	.page-category-faq .page-header {
		margin-bottom: 4vw;
	}
	.page-category-faq .page-header-inner {
		padding: 2vw 0;
	}
	.page-category-faq .nav-tabs {
		flex-wrap: nowrap;
		flex-direction: row;
	}
	.page-category-faq .tab-content {
		margin-bottom: 4vw;
	}
	.page-category-faq .faq-widget-inner {
		padding: 3vw 3vw;
	}
}

/* Page Category - INDEX (default category articles list different from Blog) */
.page-category-index .page-header {
	background: rgba(27,63,122, 0.66);
	margin-bottom: 20px;
}
.page-category-index .page-header-inner {
	padding: 30px 0 20px;
}
.page-category-index .page-header * {
	color: #fff;
	margin-bottom: 0;
}
.page-category-index .page-header .category-desc {
	padding-top: 25px;
}
.page-category-index .page-body {
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.page-category-index .page-header {
		margin-bottom: 4vw;
	}
	.page-category-index .page-header-inner {
		padding: 2vw 0;
	}
	.page-category-index .page-body {
		margin-bottom: 4vw;
	}
}

/* -----------------------------------------------------
--- SPECIFIC PAGES - different Components (Plugins) ---
-------------------------------------------------------*/

/* Page TAGS */
.com_tags .article-container {
	padding: 20px 0 30px;
}
.com_tags .com-tags-tags__filter {
	margin-bottom: 30px;
}
.com_tags .com-tags-tags__filter input[type="text"] {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
	border-width: 1px;
	padding: 5px 10px;
}
.com_tags .com-tags__items ul li h3 {
	margin-bottom: 0;
}
.com-tags__pagination {
	margin-top: 50px;
}
@media (min-width: 768px) {
	.com_tags .article-container {
		padding: 3vw 0;
	}
}
@media (min-width: 1200px) {
	.tag-category .com-tags__items ul li h3 {
		font-size: 20px;
	}
}

/* Page SEARCH (com-finder) */
.com-finder {
	padding: 150px 12vw 50px;
}
.com-finder h1 {
	text-align: center;
}
.com-finder label.me-2 {
	font-weight: bold;
	margin-bottom: 10px;
}
.com-finder .awesomplete {
	flex-grow: 1;
}
.com-finder .awesomplete > input {
	line-height: 1.3;
	padding: 13px 15px;
}
.com-finder .result__title-url {
	font-weight: 300;
}
.com-finder .result__title-text {
	font-weight: bold;
}
.com-finder .result__description {
	font-weight: 400;
}
.com-finder .result__date {
	font-weight: 800;
}
.com-finder .com-finder__form button {
	line-height: 18.2px;
}
@media (min-width: 768px) {
	.com-finder h1 {
		text-align: left;
	}
}
@media (min-width: 1200px) {
	.com-finder {
		padding: 250px 12vw 150px;
	}
}

/* ---------------------------------
--- BLOG CATEGORY - LAYOUT-BLOG ---
------------------------------------ */
.article-info .article-info-term,
.article-info .published .icon-calendar {
	display: none;
}
dd.published {
	color: #999;
}
.blog-item .article-info {
	margin: 0 0 0 0;
}
.layout-blog .blog,
.view-article.layout-blog .main-content {
	background: rgb(255,255,255);
	background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#efefef",GradientType=1);
}
.layout-blog .page-body-inner,
.layout-blog .article-container {
	padding: 20px 0 30px;
}
.layout-blog .category-desc {
	margin-top: 20px;
}

.blog-page-1st .items-leading .items-column-2 .blog-item .article-title h2 {
	font-size: 20px;
}
.leading-separator {
	display: none;
}
.blog-page-1st .items-leading + .leading-separator {
	display: block;
	height: 1px;
	background: #dedede;
	margin: -10px 0 30px;
}

.blog .items-leading .blog-item {
	margin-bottom: 40px;
}
.blog .blog-item figure {
	margin-bottom: 15px;
}
.blog .blog-item figure img {
	-webkit-box-shadow: 0 0 10px #ddd;
	-moz-box-shadow: 0 0 10px #ddd;
	box-shadow: 0 0 10px #ddd;
}
.blog .article-date {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
	background: #085E73;
	color: #fff;
	padding: 6px 10px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.blog .article-title h2 {
	margin-bottom: 15px;
}
.blog .article-title h2 a {
	color: #2F2F2F;
}
.blog .article-title h2 a:hover,
.blog .article-title h2 a:focus {
	color: #FFC857;
}
.blog .article-intro,
.blog .article-tags {
	margin-bottom: 20px;
}
.blog .com-content-category-blog__navigation ul.pagination {
	flex-wrap: wrap;
	margin-bottom: 40px !important;
}
.blog .com-content-category-blog__navigation ul.pagination li {
	margin-bottom: 10px;
}
@media (min-width: 576px) {
	.blog-page-1st .items-leading .items-column-2 .blog-item {
		display: flex;
		align-items: center;
		margin-left: -10px;
		margin-right: -10px;
	}
	.blog-page-1st .items-leading .items-column-2 .blog-item figure {
		width: 48%;
		padding: 0 10px;
	}
	.blog-page-1st .items-leading .items-column-2 .blog-item .item-content {
		width: 52%;
		padding: 0 10px;
	}
	.blog-page-1st .items-leading .items-column-2 .blog-item .item-content .article-intro,
	.blog-page-1st .items-leading .items-column-2 .blog-item .item-content .article-tags {
		display: none;
	}
	.blog .com-content-category-blog__navigation ul.pagination {
		margin-bottom: 0 !important;
	}
}
@media (min-width: 576px) and (max-width: 767px) {
	.blog-page-1st .items-leading .items-column-2 figure,
	.blog-page-1st .items-leading .items-column-2 .blog-item .article-title h2 {
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	.layout-blog .page-body-inner,
	.layout-blog .article-container {
		padding: 3vw 0;
	}
	.blog-page-1st .items-leading {
		display: flex;
		margin-left: -15px;
		margin-right: -15px;
	}
	.blog-page-1st .items-leading .items-column-1 {
		width: 55%;
		padding: 0 15px;
	}
	.blog-page-1st .items-leading .items-column-2 {
		width: 45%;
		padding: 0 15px;
	}
	.blog .items-leading .blog-item {
		margin-bottom: 30px;
	}
	.blog .blog-item figure {
		margin-bottom: 30px;
	}
	.blog-page-1st .items-leading + .leading-separator {
		margin: 2vw 0 3vw;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.blog-page-1st .items-leading .items-column-2 .blog-item {
		display: block;
		margin-left: 0;
		margin-right: 0;
	}
	.blog-page-1st .items-leading .items-column-2 .blog-item figure {
		width: 100%;
		padding: 0;
	}
	.blog-page-1st .items-leading .items-column-2 .blog-item .item-content {
		width: 100%;
		padding: 0;
	}
}
@media (min-width: 992px) {
	.blog-page-1st .items-leading .items-column-2 figure,
	.blog-page-1st .items-leading .items-column-2 .blog-item .article-title h2 {
		margin-bottom: 0;
	}
}

/* Blog secondary listing - columns */
.blog .items-intro .blog-item {
	margin-bottom: 40px;
}
.blog .items-intro .blog-item .intro-image-cover {
	margin-bottom: 20px;
}
.blog .items-intro .image-cover {
	-webkit-box-shadow: 0 0 10px #ddd;
	-moz-box-shadow: 0 0 10px #ddd;
	box-shadow: 0 0 10px #ddd;
}
@media (min-width: 576px) {
	.secondary-listing.with-sidebar {
		display: flex;
		margin-left: -15px;
		margin-right: -15px;
	}
	.secondary-listing.with-sidebar .items-column-1 {
		width: 55%;
		padding: 0 15px;
	}
	.secondary-listing.with-sidebar .items-column-2 {
		width: 45%;
		padding: 0 15px;
	}
	.secondary-listing.with-sidebar .items-column-2 .moduletable {
		padding: 0 2vw;
	}
	.blog .items-intro .blog-item {
		display: flex;
		align-items: center;
		margin-left: -20px;
		margin-right: -20px;
	}
	.blog .items-intro .blog-item .intro-image-cover {
		width: 30%;
		padding: 0 10px;
	}
	.blog .items-intro .blog-item .item-content {
		width: 70%;
		padding: 0 20px;
	}
}
@media (min-width: 768px) {
	.blog .items-intro .blog-item {
		margin-bottom: 4vw;
	}
}
@media (min-width: 1600px) {
	.blog .items-intro .blog-item {
		margin-bottom: 3vw;
	}
}

/* Blog Article Tags - same style for category and item view */
.article-tags {
	display: flex;
}
.article-tags .tags-icon {
	position: relative;
	top: 1px;
	margin-right: 6px;
	color: #FFC857;
}
.article-tags ul {
	margin: 0 !important;
}
.article-tags .list-inline-item {
	position: relative;
	margin-right: 5px;
	padding-left: 0 !important;
	margin-bottom: 0 !important;
}
.article-tags .list-inline-item:before {
	display: none;
}
.article-tags .list-inline-item .btn {
	display: inline;
	border: 0 none;
	font-size: 16px;
	font-weight: normal;
	color: #FFC857;
	padding: 0;
}
.article-tags .list-inline-item .btn:hover,
.article-tags .list-inline-item .btn:focus {
	background: none;
	color: #666;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.article-tags .list-inline-item:not(:last-child):after {
	position: absolute;
	content: ",";
	color: #FFC857;
}

/* ----------------
--- PAGINATION ---
------------------- */
.page-item {
	margin-right: 10px;
}
.page-item .page-link {
	color: #FFC857;
	border: 0 none;
	background-color: #e9ecef;
}
.page-item .page-link:hover {
	background-color: #FFC857;
	color: #fff;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.page-item.disabled .page-link {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}
.page-item.active .page-link {
    background-color: #FFC857;
    border-color: #FFC857;
}

/* --------------------------------
--- BLOG POST - Article single ---
----------------------------------- */
.article-sidebar h3 {
	font-size: 24px;
	margin-bottom: 20px;
}
.article-sidebar .moduletable {
	margin-bottom: 40px;
}
.article-content .article-date {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
	background: #FFC857;
	color: #fff;
	padding: 6px 10px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.article-header h1 {
	margin-bottom: 10px;
}
.article-body {
	line-height: 1.4;
}
.article-body .com-content-article__body h1,
.article-body .com-content-article__body h2,
.article-body .com-content-article__body h3,
.article-body .com-content-article__body h4,
.article-body .com-content-article__body h5,
.article-body .com-content-article__body h6 {
	margin-bottom: 20px;
}
.article-body .com-content-article__body * + h1,
.article-body .com-content-article__body * + h2,
.article-body .com-content-article__body * + h3,
.article-body .com-content-article__body * + h4,
.article-body .com-content-article__body * + h5,
.article-body .com-content-article__body * + h6 {
	margin-top: 30px;
}
.article-body figure {
	margin-bottom: 30px;
}
.article-body figure img {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.author-block {
	background: #eee;
	padding: 20px 20px 5px;
	margin: 30px 0;
}
.author-block .written-by {
	margin-bottom: 15px;
}
.author-block .biography .avatar {
	margin-bottom: 15px;
}
.author-block .biography .avatar img {
	width: 80px;
}
.author-block .biography .short-bio {
	color: #666;
}
.article-content .article-tags {
	margin-bottom: 20px;
}
.button-back {
	padding: 20px 0 30px;
}
.button-back .btn {
	font-size: 16px;
}
@media (min-width: 576px) {
	.article-sides {
		display: flex;
		margin-left: -10px;
		margin-right: -10px;
	}
	.article-sides .article-side-1,
	.article-sides .article-side-2 {
		padding: 0 10px;
	}
	.article-sides .article-side-2 {
		width: calc(100% - 120px);
	}
	.article-content .article-date {
		width: 100px;
		text-align: center;
		padding: 10px 15px 16px;
		margin-bottom: 30px;
	}
	.article-content .article-date .day {
		display: block;
		font-size: 32px;
	}
	.article-content .article-date .month {
		display: block;
		font-size: 16px;
		font-weight: 500;
	}
	.author-block .biography .avatar {
		float: left;
		padding-right: 20px;
		margin-bottom: 0;
	}
	.author-block .biography .short-bio {
		margin-left: 100px;
	}
}
@media (min-width: 992px) {
	.article-container {
		display: flex;
		margin-left: -2vw;
		margin-right: -2vw;
	}
	.article-container .article-content {
		width: 65%;
		padding: 0 2vw;
	}
	.article-container .article-sidebar {
		width: 35%;
		padding: 0 2vw;
	}
}

/* -------------------------
--- module POPULAR TAGS ---
---------------------------- */
.mod-tagspopular ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mod-tagspopular ul li {
	display: inline-block;
	margin-bottom: 6px;
}
.mod-tagspopular ul li a {
	display: block;
	padding: 5px 10px;
	border: 1px solid #ccc;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	color: #666;
}
.mod-tagspopular ul li a:hover,
.mod-tagspopular ul li a:focus {
	background: #085E73;
	border-color: #085E73;
	color: #fff;
}


/* -----------------------------------------------------------
--- SEARCH-FULLSCREEN container for search field (mod_finder)
- shows up after click on Topbar link "Search" ---
-------------------------------------------------------------- */
.search-fullscreen {
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: #083d7f;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 20px 20px 0;
}
.search-fullscreen.is-open {
	visibility: visible;
	filter: alpha(opacity=100);
    opacity: 1;
}
.search-fullscreen h3 {
	color: #fff;
	margin-bottom: 2vw;
}
.search-fullscreen .close-button-container {
    text-align: right;
}
button.close {
    font-size: 56px;
	color: #fff;
    background-color: transparent;
    border: 0;
    padding: 0;
	filter: alpha(opacity=90);
    opacity: .9;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
button.close:focus,
button.close:hover {
	filter: alpha(opacity=50);
    opacity: .5;
}
.search-fullscreen .awesomplete {
	display: block;
}
.search-fullscreen .awesomplete > input {
	height: 48px;
}
@media (min-width: 768px) {
	.search-fullscreen {
		padding: 50px 15vw 0;
	}
}
@media (min-width: 1200px) {
	.search-fullscreen h3 {
		font-size: 36px;
	}
}

/* -------------------------------
--- CUSTOM ANIMATIONS ---
---------------------------------- */

/* Logo, Hamburger */
.focus-in-expand{-webkit-animation:focus-in-expand .8s cubic-bezier(.25,.46,.45,.94) .8s both;animation:focus-in-expand .8s cubic-bezier(.25,.46,.45,.94) .8s both}
@-webkit-keyframes focus-in-expand{0%{letter-spacing:-.5em;-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}@keyframes focus-in-expand{0%{letter-spacing:-.5em;-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}

/*  main-menu */
.fade-in-top-1{-webkit-animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) .0s both;animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) .0s both}
.fade-in-top-2{-webkit-animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) .3s both;animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) .3s both}
@-webkit-keyframes fade-in-top{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-top{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

/* Intro slider text */
.fade-in-bottom-1{-webkit-animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) .1s both;animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) .1s both}
.fade-in-bottom-2{-webkit-animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 1.2s both;animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 1.2s both}
@-webkit-keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}
