/* ==================================== V.07.03.2017 ==================================== */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, cite, img, ol, ul, li, fieldset, form, label, table, tbody, tr, th, td, article, canvas, footer, header, nav, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	-webkit-text-size-adjust: none;
}

html {
	height: 100%;
}

.clear {
	clear:both;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.hide_d {
	display: none;
}

div.home.background.hide_d {
	display: none;
}

i.icon::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

/* ==================================== generals ==================================== */
body {
	background: white;
	color: #4a4949;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 22px;
	margin: 0;
	padding: 0;
	height: 100%;
}

ul {
	list-style-type: none;
	margin: 0 0 20px 0;
}

ul li {
	margin-top: 7px;
	background: transparent url(../images/icon-list.png) no-repeat 0 9px;
	padding-left: 12px;
}

.content ul, .content ol {
      overflow : hidden;
      zoom: 1;
}

ol {
    padding: 0 0 0 34px;
    list-style: none;
    margin-bottom: 20px;
    counter-reset: numList;
}

ol li {
    margin-right: 44px;
    position: relative;
    padding-bottom: 12px;
}

ol li:before {
    counter-increment: numList;
    content: counter(numList);
    float: left;
    position: absolute;
    left: -34px;
    font: bold 12px sans-serif;
    text-align: center;
    color: #fff;
    line-height: 24px;
    width: 24px;
    height: 24px;
    background: #007ac2;
    border-radius: 12px;
}

a {
	color: #007ac2;
	text-decoration: underline;
	outline: none;
}

a:hover {
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	margin-bottom: 25px;
}

td {
	vertical-align: top;
	border: #c8c8c8 solid 1px;
	padding: 8px 12px;
}

p {
	font-size: var(--font-size-regular);
	line-height: var(--line-height-regular);
	margin-bottom: 22px;
	text-align: left;
}

hr {
	border: dotted #7b7b7b;
	border-width: 1px 0 0;
	clear: both;
	margin: 30px auto 30px auto;
	height: 0;
}

div.crumbs {
	display: none;
}



/* ==================================== main layout (v2) ==================================== */
/* ====================================
				 HEADER
 ==================================== */
body > header:not(.company) {
	display: flex;
	flex-wrap: wrap-reverse;
}

body > header:not(.company) > div {
	flex: 0 0 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/** --- NAV MAIN --- **/
nav.main ul, nav.secondary ul {
	align-items: center;
}

header div.main nav.main ul, header div.main nav.secondary ul {
	justify-content: flex-end;
}

header div.main nav ul li a, nav.cart ol li a {
	border-bottom: transparent solid 2px;
}

header div.main nav.main ul > li, header div.main nav.secondary ul > li {
	display: flex;
	align-items: center;
}

header div.main nav.main ul > li.dropdown {
	flex-wrap: wrap;
	position: relative;
}

header div.main nav.main ul > li.dropdown div {
	flex: 0 0 100%;
}

header div.main nav > ul > li::before {
	content: '\f111';
	/**display: inline-block;**/
	display: none;
	font-family: "Font Awesome 6 Free";
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-weight: 600;
	font-size: 5px;
	margin: 0 12px 0 0;
	color: var(--color);
}

header div.main nav > ul > li:first-of-type::before {
	display: none;
}

/** --- NAV HAMBURGER --- **/
header div.main nav.hamburger-button ul li a {
	font-size: 22px;
}

header div.main nav.hamburger-button ul li a:hover {
	color: var(--color-primary);
	border-bottom-color: transparent;
}

div.hamburger-container {
	position: fixed;
	opacity: 0;
	top: 0;
	left: -10000px;
	height: 100%;
	width: 100%;
	background: #000000BB;
	z-index: 2000;
	transition: var(--transition-default);
}

div.hamburger-container.active {
	left: 0;
	opacity: 1;
}


div.hamburger-container.active div.hamburger-menu {
	opacity: 1;
}

div.hamburger-menu {
	opacity: 0;
	transition: var(--transition-default);
	position: absolute;
	top: 0;
	left: 0;
	background: var(--color-white);
	max-width: 100%;
	width: 320px;
	height: 100%;
	z-index: 2000;
	border-top-right-radius: var(--default-border-radius);
	border-bottom-right-radius: var(--default-border-radius);
	box-shadow: var(--default-shadow);
	box-sizing: border-box;
	border-right: 8px solid var(--color-primary);
}

div.hamburger-menu.right {
	left: auto;
	right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: var(--default-border-radius);
	border-bottom-left-radius: var(--default-border-radius);
	border-left: 8px solid var(--color-primary);
	border-right: 0;
}

div.hamburger-menu.right.active {
	right: 0;
}

div.hamburger-menu a.close {
	position: absolute;
	top: 10px;
	right: 20px;
	color: var(--color-primary);

}

div.hamburger-menu a.close:hover {
	color: var(--color-black);
}

div.hamburger-menu nav {
	background: var(--color-white);
	box-sizing: border-box;
	margin: 44px 0 22px;
	padding: 0 10px;
	overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: var(--color-primary);
	max-height: calc(100% - 88px);
}

div.hamburger-menu nav ul li {
	--padding: 1em 1.5em;
	--margin: 0 0 10px;
	display: flex;
	align-items: center;
	flex: 0 0 100%;
	margin: var(--margin);
	padding: var(--padding);
	box-sizing: border-box;
	border-radius: var(--default-border-radius);
	transition: var(--transition-default);
}

div.hamburger-menu nav ul li:last-of-type {
	border: 0;
}

div.hamburger-menu nav ul li:hover {
	background: var(--color-gray-lightest);
}

div.hamburger-menu nav ul li.selected {
	background: #F9F9F9;
}


div.hamburger-menu nav ul li a {
	--font-size: 16px;
	display: inline-block;
	color: var(--color-gray-darkest);
	font-weight: 500;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
}

div.hamburger-menu nav ul li::before {
	content: '\f054';
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-weight: 600;
	margin: 0 14px;
	color: var(--color-gray);
}

div.hamburger-menu nav ul.main {
	border-radius: var(--default-border-radius);
	background: var(--color-gray-lightest);
}

div.hamburger-menu nav ul.site li {
	margin: 0;
}

div.hamburger-menu nav ul.site li::before {
	content: '';
	display: none;
}

div.hamburger-menu nav ul.site {
	border-top: 1px solid var(--color-gray-lightest);

}

div.hamburger-menu nav ul li a.selected, div.hamburger-menu nav ul li a:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

div.hamburger-menu nav ul.site li {
	display: flex;
	justify-content: center;
	gap: 1em;
}

div.hamburger-menu nav ul.site li a.selected {
	text-decoration: none;
	border-bottom: 1px solid var(--color-primary);
}

div.hamburger-menu div.cta {
	display: flex;
	justify-content: center;
}

/** --- NAV SECONDARY --- **/
header div.secondary {
	justify-content: space-between;
}

header div.secondary nav ul li.site a {
	display: inline-block;
	padding: 0 8px;
}

header div.secondary nav.site ul {
	align-items: center;
	justify-content: flex-end;
}

/** --- NAV CONTACT --- **/
header div.contact nav ul li {
	text-align: center;
	cursor: default;
}

header div.contact nav ul li a {
	display: inline-block;
}

/**	--- DROPDOWN --- **/
header div nav ul li.dropdown div {
	--background: transparent;
	display: none;
	position: absolute;
	top: 30px;
	z-index: 200;
	box-sizing: border-box;
	margin: 8px 0 0 -10px;
	white-space: nowrap;
	max-width: 370px;
}

header div nav ul li.dropdown:hover > div {
	display: block;
}

header div nav ul li.dropdown div ul {
	margin: 0;
	padding: 0 0;
}

header div nav ul li.dropdown div ul li {
	flex: 0 0 100%;
}

header div nav ul li.dropdown div ul li a {
	padding: 0 12px;
	box-sizing: border-box;
}

header div nav ul li.dropdown:hover > div ul li.dropdown div {
	margin: -30px 0 0 188px;
}

/** --- NAV MOBILE --- **/
header div nav ul.toggle-mobile {
	display: none;
	justify-content: flex-end;
}

header div nav ul.toggle-mobile ul li button {
	margin: 0;
}

nav.hamburger-button.mobile {
	display: none;
}



/* ==================================== main layout ==================================== */
#cookies {
	margin: 0;
	background: #f1edeb;
	padding: 8px 32px 8px 32px;
	font-size: 12px;
	display: block;
	text-align: center;
	color: #4a4949;
}

	#cookies a {
		padding: 0 14px 0 14px;
	}

	#cookies a.close_cookies {
		background: transparent url(../images/cookie_accept.png) no-repeat left 3px;
	}

#header {
	position: relative;
	z-index: 100;
	padding: 0;
}

	#small{
	}

		#small .content{
			padding-top: 0;
			padding-bottom: 0;
		}

			#small #logo{
				width: 33%;
				margin-right: 2%;
				margin-top: 10px;
				margin-bottom: 10px;
				float: left;
			}

				#small #logo img{
					width: 100%;
				}

			#small #small_banner{
				width: 65%;
				float: right;
				padding-top: 15px;
				text-align: right;
			}

				#small #small_banner img{
					height: 100%;
				}

#superslides {
	width: 100%;
	height: 32vh;
	margin: 0 auto;
}

	.container #superslides {
	    width: 125%;
	    height: 200px;
	    float: left;
	    margin: 0 0 10px -12.5%;
	}

#videobanner {
	width: 100%;
	height: 50vh;
	position: relative;
	overflow: hidden;
}

	#videobanner video {
		position: absolute;
		top: 50%;
		left: 50%;
		min-width: 100%;
		min-height: 100%;
		height: auto;
		width: auto;
		z-index: -100;
		transform: translateX(-50%) translateY(-50%);
		transition: 1s opacity;
	}

.container {
	text-align: left;
	position: relative;
	background-size: cover;
    width: 80%;
    z-index: 10;
    margin: 0 auto;
}

	.container .sidebar {
		width: 21%;
		padding: 40px 3%;
		float: left;
	}

		.container .sidebar p {
			text-align: left;
		}

	.container .content {
		padding: 40px 3%;
		position: relative;
		float: left;
		width: 94%;
	}

		.container .content.withsidebar {
			width: 67%;
			padding: 40px 3%;
		}

		.container .content img {
			max-width: 100%;
 			height: auto !important;
		}



/* ==================================== nav_main ==================================== */



#nav_main {
	list-style: none;
	margin: 15px 0 15px 0;
	padding: 0 13% 0 0;
	background: transparent;
	overflow: hidden;
	float: right;
}

#nav_main li {
	margin: 0 0 0 16px;
	background: none;
    padding: 0;
	float: left;
}

#nav_main li:nth-of-type(1) {
	margin-left: 0;
}

#nav_main li.root{
	background: url('../images/home-icon.png') no-repeat 12px 10px;
}

#nav_main li.root a, #nav_main li.root a:hover{
	color: transparent !important;
}

#nav_main a {
	font-family: 'Open Sans', sans-serif;
	display: block;
	padding: 10px 0 5px 0;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	color: #242424;
	font-weight: 600;
	transition: all 0.1s ease-in-out;
	border-bottom: transparent solid 2px;
}

#nav_main a:hover {
	color: #007ac2 !important;
}

	#nav_main li.dropdown {
		background: transparent url(../images/arrow-open.png) no-repeat 0 19px;
	    padding-left: 10px;
	}

	#nav_main ul {
	   display: none;
	   list-style: none;
	   background: rgba(255,255,255,0.88);
	   margin: 0 0 0 -20px;
	   padding: 10px 20px 10px 20px;
	   position: absolute;
	   z-index: 150;
	}

	#nav_main ul li {
		margin: 0;
		float: none;
	}

	#nav_main li:hover ul {
	   display: block;
	   background: rgba(255,255,255,0.9);
	}

	#nav_main ul li a {
		padding: 5px 0 5px 0;
		text-transform: none;
		font-size: 14px;
		font-weight: 400;
                color: #242424;
	}

	#nav_main ul li a:hover {
		border-color: transparent;
		color: #007ac2;
	}

#nav_main a.selected {
	color: #C21810;
}

#nav_main li.cart {
	margin-left: 20px;
	border-left: #7b7b7b dotted 1px;
}

#nav_main li.cart a {
	min-width: 28px;
	height: 25px;
	background: transparent url(../images/icon-cart.png) no-repeat right 8px;
	position: relative;
	padding: 10px 0 5px 25px; /*+ txt winkelmandje: 10px 40px 5px 25px*/
}

	#nav_main li.cart a span {
		position: absolute;
		top: 0;
		right: 5px;
		background: #007ac2;
		display: block;
		min-width: 20px;
		line-height: 20px;
		text-align: center;
		border-radius: 10px;
		font-size: 13px;
		color: white;
	}

	#nav_main li.cart a:hover {
		border-bottom: none;
	}



/* ==================================== nav_sec ==================================== */



#nav_sec {
	list-style: none;
	padding: 0 12.5% 0 12.5%;
	margin: 0;
	float: left;
	background: #007ac2;
	color: white;
	line-height: 22px;
	font-size: 14px;
	overflow: hidden;
	width: 75%;
}

#nav_sec li {
	margin: 0;
	background: none;
    padding: 0;
  	float: left;
}

#nav_sec li a {
	font-family: 'Open Sans', sans-serif;
	display: block;
	padding: 8px 22px 8px 0;
	text-decoration: none;
	line-height: 22px;
	font-size: 14px;
	color: white;
	font-weight: 400;
	transition: all 0.2s ease-in-out;
}

#nav_sec li a:hover {
	text-decoration: underline;
}

	#nav_sec li.dropdown {
		background: transparent url(../images/arrow-white-down.png) no-repeat 0 17px;
	    padding-left: 13px;
	}

	#nav_sec ul {
	   display: none;
	   list-style: none;
	   background: rgba(0,0,0,0.88);
	   margin: 0 0 0 -20px;
	   padding: 10px 20px 10px 20px;
	   position: absolute;
	   z-index: 150;
	}

	#nav_sec ul li {
		margin: 0;
		float: none;
	}

	#nav_sec li:hover ul {
	        display: block;
	}

	#nav_sec ul li a {
		padding: 3px 0 3px 0;
		text-transform: none;
		font-size: 14px;
		font-weight: 400;
	}

	#nav_sec ul li a:hover {
		border-bottom: none;
		color: #007ac2;
	}

#nav_sec li a.selected {
        color: white;
	text-decoration: underline;
}

#nav_sec li.site {
	float: right;
}

	#nav_sec li.site a {
		border-left: #7b7b7b solid 1px;
		display: inline-block;
		padding: 8px 12px;
	}

	#nav_sec li.site a:nth-last-of-type(1) {
		border-right: #7b7b7b solid 1px;
	}

	#nav_sec li.site a:hover {
		text-decoration: none;
	}

	#nav_sec li.site a.selected {
	}

#nav_sec li.search {
	float: right;
}

	#nav_sec li.search a {
		display: block;
		width: 20px;
		height: 22px;
		background: transparent url(../images/icon-search.png) no-repeat 0 0;
	}



/* ==================================== nav_mobile ==================================== */



#nav_mobile {
	display: none;
	float: left;
	width: calc(100% - 64px);
	padding: 0;
	z-index: 100;
	margin: 8px 32px 8px 32px;
	background: transparent;
}

	a#btn_nav_mobile {
		float: right;
		padding: 30px 0;
		font-weight: 400;
		text-transform: uppercase;
		font-size: 14px;
		color: #4a4949;
		text-decoration: none;
	}

		a#btn_nav_mobile img {
			float: right;
			margin: 2px 0 0 12px;
		}

	#nav_mobile ul {
		background: transparent;
		list-style-type: none;
		width: 100%;
		margin: 0;
		padding: 10px 0 10px 0;
	}

		#nav_mobile ul li {
			margin: 0 0 12px 0;
			background: none;
		        padding: 0;
		        text-align: center;
		}

		#nav_mobile ul li a {
			display: block;
			padding: 0 0 12px 0;
			text-decoration: none;
			text-transform: uppercase;
			font-size: 14px;
			color: #4a4949;
			font-weight: 400;
			border-bottom: #ac9f9f dotted 1px;
			transition: all 0.2s ease-in-out;
		}

		#nav_mobile ul li a:hover, #nav_mobile ul li a.selected {
			color: #C21810;
		}

		#nav_mobile ul li:nth-last-of-type(1) a {
			border-bottom: none;
		}

		#nav_mobile ul li.sec {
			background: transparent;
			border: none;
			margin: 0 0 12px 0;
			color: #9b8e96;
		}

			#nav_mobile ul li.sec a {
				font-size: 14px;
				color: #4a4949;
				padding: 0 0 12px 0;
				border-bottom: #ac9f9f dotted 1px;
			}

		#nav_mobile ul li.site {
			border: none;
		}

			#nav_mobile ul li.site a {
				font-size: 14px;
				padding: 10px 10px 10px 10px;
				display: inline-block;
			}


/* ==================================== quotes ==================================== */



#quotes {
	width: 75%;
	padding: 40px 12.5% 40px 12.5%;
	margin: 0 0 0 0;
	position: relative;
	z-index: 100 !important;
	background: white;
}

	#quotes li {
		background: white;
		padding-top: 0;
		padding-bottom: 0;
		box-sizing: border-box;
				text-align: center;
	}

	#quotes li p {
			   font-size: 23px;
			   line-height: 33px;
			   margin-bottom: 0;
			   text-align: center;
			   font-weight: 400;
		 }

#quotes li a {
	   font-size: 23px;
			   line-height: 33px;
	   color: #3c3c3c;
	   text-align: underline;
}



/* ==================================== nav_core ==================================== */



#nav_core {
	width: 75%;
	padding: 40px 12.5% 0 12.5%;
	margin: 0 0 0 0;
	position: relative;
	z-index: 100 !important;
	background: #ededed;
}

	#nav_core li {
		background: white;
		padding-top: 0;
		padding-bottom: 0;
		box-sizing: border-box;
	}

        #nav_core li a {
                 overflow: hidden;
        }

        #nav_core li a h2 {
             padding: 18px 0 18px 0 !important;
             margin: 0 !important;
             text-align: center !important;
             display: inline-block;
       }

        #nav_core li img {
                width: 100% !important;
                margin-bottom: -10px;
        }



/* ==================================== nav_crumb ==================================== */



#nav_crumb {
	padding: 10px 12.5% 8px 12.5%;
	margin: 0 0 0 0;
	color: #2d251f;
	font-size: 13px;
	z-index: 100;
	background: #ededed;
	height: 27px;
	overflow: hidden;
}

	#nav_crumb a {
		color: #9f9898;
		padding-right: 18px;
		text-decoration: none;
		background: transparent url(../images/arrow-crumb.png) no-repeat;
		background-position: right 6px bottom 6px;
	}

	#nav_crumb a:hover {
		color: #2d251f;
	}



/* ==================================== nav_sidebar ==================================== */



.nav_sidebar {
	list-style: none;
	margin: 0 auto 45px auto;
	padding: 0;
	background: transparent;
}

.nav_sidebar li {
	margin: 4px 0 4px 0;
	background: none;
        padding: 0;
        border-bottom: #ac9f9f dotted 1px;
}

.nav_sidebar a {
	font-family: 'Open Sans', sans-serif;
	display: inline-block;
	padding: 10px 0;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	color: #4a4949;
	font-weight: 400;
	transition: all 0.2s ease-in-out;
}

.nav_sidebar a:hover {
	color: #007ac2;
}

.nav_sidebar a.selected {
	color: #C21810;
}

.nav_sidebar li li {
	margin: 2px 0 2px 0;
	border: none;
}

	.nav_sidebar li li a {
		padding: 2px 0 2px 12px;
		font-size: 12px;
	}



/* ==================================== nav_cart ==================================== */



#nav_cart {
	list-style: none;
	margin: 5px 0 0 0;
	width: 80%;
	padding: 0 6% 0 14%;
	background: #ededed;
	overflow: hidden;
	float: left;
	counter-reset: numList;
}

#nav_cart li {
	margin: 0 40px 0 0;
	background: none;
        padding: 0;
	display: inline-block;
	position: relative;
}

#nav_cart li:before {
        counter-increment: numList;
        content: counter(numList);
        float: left;
        position: absolute;
        top: 10px;
        left: -26px;
        text-align: center;
        color: white;
        font-size: 14px;
        line-height: 20px;
        width: 20px;
        height: 20px;
        background: #4a4949;
	border-radius: 10px;
}

#nav_cart a {
	font-family: 'Open Sans', sans-serif;
	display: block;
	padding: 11px 0 11px 0;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	color: #382d24;
	font-weight: 400;
	transition: all 0.1s ease-in-out;
}

#nav_cart a:hover {
	color: #007ac2;
}

#nav_cart a.selected {
	color: #007ac2;
}



/* ==================================== nav_footer ==================================== */



#nav_footer {
	background: #007ac2;
	overflow: hidden;
        margin: 0 auto;
        clear: left;
}

#nav_footer .content {
	padding: 20px 13% 30px 13%;
	overflow: hidden;
}

	#nav_footer ul {
		list-style: none;
		margin: 0;
		padding: 0;
		background: transparent;
		overflow: hidden;
		text-align: center;
	}

	#nav_footer ul li {
		margin: 0 12px 0 12px;
		background: none;
	        padding: 0;
		display: inline-block;
	}

	#nav_footer ul li a {
		font-family: 'Open Sans', sans-serif;
		display: inline-block;
		padding: 10px 0 3px 0;
		text-decoration: none;
		font-size: 16px;
		color: #fff;
		font-weight: 400;
	}

	#nav_footer ul li a:hover {
		color: #fff;
	}



/* ==================================== widgets ==================================== */



.widget {
	background: transparent;
	padding: 10% 7% 8% 7%;
	margin: 4% 0 35px 0;
	display: block;
	border: #ededed solid 2px;
	overflow: hidden;
}

.content .widget {
	border: #007ac2 solid 2px;
}

	.widget p, .widget ul {
		margin-bottom: 7px;
	}

	.widget a.button {
		margin-top: 5px;
	}

	.widget .col66 {
		text-align: right;
	}

.content .widget {
	margin-top: 40px;
	padding: 2% 2% 2% 2%;
}

.widget li.facebook {
	list-style: none;
	background: transparent url(../images/icon-facebook.png) no-repeat;
	height: 32px;
	line-height: 32px;
}

.widget li.twitter {
	list-style: none;
	background: transparent url(../images/icon-twitter.png) no-repeat;
	height: 32px;
	line-height: 32px;
}

.widget li.googleplus {
	list-style: none;
	background: transparent url(../images/icon-googleplus.png) no-repeat;
	height: 32px;
	line-height: 32px;
}

.widget li.linkedin {
	list-style: none;
	background: transparent url(../images/icon-linkedin.png) no-repeat;
	height: 32px;
	line-height: 32px;
}

.widget li.instagram {
	list-style: none;
	background: transparent url(../images/icon-instagram.png) no-repeat;
	height: 32px;
	line-height: 32px;
}

.widget li.pinterest {
	list-style: none;
	background: transparent url(../images/icon-pinterest.png) no-repeat;
	height: 32px;
	line-height: 32px;
}

.widget li.facebook a, .widget li.twitter a, .widget li.googleplus a, .widget li.linkedin a, .widget li.instagram a, .widget li.pinterest a {
	color: #4a4949;
	text-decoration: none;
	padding-left: 30px;
}



/* ==================================== cols ==================================== */



.colspacer {
	width: 6%;
	float: left;
	overflow: hidden;
	display: block;
}

	.colspacer:before {
		content: "\00a0 ";
	}

.col25 {
	width: 20.50%;
	float: left;
}

.col33 {
	width: 29.33%;
	float: left;
}

.col50 {
	width: 47%;
	float: left;
}

.col66 {
	width: 64.66%;
	float: left;
}

.col33 img, .col50 img, .col66 img, .col25 img {
	width: 100%;
}

.col33 img.ui-datepicker-trigger, .col50 img.ui-datepicker-trigger, .col66 img.ui-datepicker-trigger, .col25 img.ui-datepicker-trigger {
	width: auto;
}


/* ==================================== filter ==================================== */



.filter {
	margin: -10px 0 10px 0;
	padding: 0 0 15px 0;
	font-size: 12px;
	color: #382d24;
}

	.filter a {
		display: inline-block;
		text-decoration: none;
		font-size: 12px;
		margin: 4px 4px;
		padding: 0 6px;
		color: #382d24;
		background: #eaeaea;
	}

	.filter a.selected {
		background: #b0a8a8;
		color: white;
	}



/* ==================================== oldprice ==================================== */



.oldprice {
	color: #cf2228 !important;
	font-weight: 400;
}

	.oldprice span {
		padding-right: 8px;
		text-decoration: line-through;
		color: #4a4949;
	}



/* ==================================== counter ==================================== */



button.counter {
	background: #d4d4d4;
	color: #747373 !important;
	float: left;
	width: 32px;
	font-size: 15px;
	line-height: 32px;
	padding: 0;
}

	button.counter:hover {
		background: #007ac2;
		color: white !important;
	}

input.counter {
	width: calc(100% - 74px) !important;
	float: left;
}



/* ==================================== cart_overview ==================================== */

.cart_overview {
	list-style: none;
	margin: 0 0 25px 0;
	overflow: hidden;
	width: 100%;
}

.cart_overview li {
	list-style: none;
	margin: 0;
	overflow: hidden;
	background: transparent;
	border-bottom: #e4e4e2 dotted 1px;
    padding: 20px 0 20px 0;
    clear: left;
}

	.cart_overview li div:nth-of-type(1) {
		width: 40%;
		float: left;
	}

		.cart_overview li div:nth-of-type(1) img {
			float: left;
			width: 35%;
		}

		.cart_overview li div:nth-of-type(1) h2, .cart_overview li div:nth-of-type(1) p {
			/*margin-left: 38%;*/
		}

	.cart_overview li div:nth-of-type(2) {
		width: 18%;
		float: left;
	}

	.cart_overview li div:nth-of-type(3) {
		width: 18%;
		float: left;
	}

	.cart_overview li div:nth-of-type(4) {
		width: 18%;
		float: left;
		text-align: right;
	}

	.cart_overview li div:nth-of-type(5) {
		width: 6%;
		float: left;
		text-align: right;
	}



/* ==================================== hide toggles ==================================== */



#toggle_zakelijk {
	width: 100%;
	overflow: hidden;
	float: left;
	display: none;
}



/* ==================================== caption ==================================== */
@keyframes animatedarrow {
	0% { background-position: center bottom 22px; }
	50% { background-position: center bottom 30px; }
	100% { background-position: center bottom 22px; }
}


.caption {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: transparent;
	/*background: transparent url(../images/arrow-big-white-down.png) no-repeat;*/
	/*animation: animatedarrow 1s ease infinite;*/
}

.caption .caption_wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.caption .caption_wrapper div.text {
	background: #FFFFFFDD;
	padding: 10px 20px;
	border-radius: var(--default-border-radius);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.caption .caption_wrapper div.text span.heading1, .caption .caption_wrapper div.text p, .caption .caption_wrapper div.text a.button {
	margin: 0;
	text-align: center;
}

.caption .caption_wrapper div.text span.heading1 {
	color: var(--color-primary)!important;
	font-size: 40px;
}

.caption .caption_wrapper div.text p {
	font-size: 24px;
	line-height: 1.1;
}
/* ==================================== article_overview ==================================== */



.article_overview {
	margin: 0;
}

.article_overview div {
	margin-bottom: 3%;
	overflow: hidden;
}

	.article_overview div img {
		float: left;
		width: 30%;
	}

	.team .article_overview div img {
		float: left;
		width: 15%;
	}

	.article_overview div div {
		float: right;
		width: 66%;
	}

		.date {
			margin: -2px 0 7px 0;
			font-size: 12px;
			display: block;
			color: #a59292;
		}

	.article_overview div.no_image div {
		width: 100%;
	}






	.team .article_overview div img {
		float: left;
		width: 25%;
	}

	.team .article_overview div div {
		float: right;
		width: 70%;
	}



/* ==================================== article_detail ==================================== */



.article_detail {
	overflow: hidden;
	width: 100%;
	margin: 0 0 10px 0;
}

.article_detail img {
	float: left;
	margin: 5px 2% 5px 0;
	width: 30%;
}

	.article_detail a:hover img {
		opacity: 0.7;
	}



/* ==================================== gallery ==================================== */



.gallery {
	list-style: none;
	margin: 10px 0 0 0;
	overflow: hidden;
	width: 100%;
	background: transparent;
}

.gallery li {
	list-style: none;
	margin: 0;
	text-align: center;
	background: white;
	border-radius: 2px;
    padding-left: 0;
    overflow: hidden;
    float: left;
}

.home_block .gallery li{
	display: block;
	/*float: none;
	margin: 0 auto !important;*/
}




.home_block #paging{
	margin-top: 0;
}

	.gallery li a {
		text-decoration: none;
		position: relative;
		display: block;
	}

	.gallery li a img {
		width: 100% !important;
		margin-bottom: 3px;
	}

	.gallery li a:hover img {
		opacity: 0.7;
	}

	.gallery li a .label {
		position: absolute;
		z-index: 100;
		background: #cf2228;
		color: white;
		padding: 1px 3px;
	}

	.gallery li h2, .gallery li a h2 {
		display: inline;
		padding: 0 0 0 0;
	}

	.gallery li a:hover h2 {
		color: #007ac2 !important;
	}

	.gallery li a p {
		text-align: center;
		font-weight: 400;
	}

.gallery.col50 li {
	margin: 0 5% 5% 0;
	width: 47.5%;
}

.gallery.col50 li:nth-of-type(2n) {
	margin-right: 0;
}

.gallery.col50 li:nth-of-type(2n+1) {
	clear: left;
}

.gallery.col33 li {
	margin: 0 5% 5% 0;
	width: 30%;
}

.gallery.col33 li:nth-of-type(3n) {
	margin-right: 0;
}

.gallery.col33 li:nth-of-type(3n+1) {
	clear: left;
}

.gallery.col25 li {
	margin: 0 4% 4% 0;
	width: 22%;
}

.gallery.col25 li:nth-of-type(4n) {
	margin-right: 0;
}

.gallery.col25 li:nth-of-type(4n+1) {
	clear: left;
}



/* ==================================== gmap ==================================== */



#gmap {
	width: 100%;
  	height: 30vh;
  	background: #6699cc;
  	float: left;
  	margin: 0 0 40px 0;
}



/* ==================================== paging ==================================== */
div.paging {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 14px 0;
}

div.paging span.button {
	--background: var(--color-primary-lightest);
}

/* ============================== faq_overview ==================================== */



#faq_overview {
	margin-top: 25px;
}

#faq_overview h2 a {
	color: #525252;
	padding-left: 15px;
	text-decoration: none;
	background: transparent url(../images/arrow-close.png) no-repeat 0 6px;
}

#faq_overview div {
	padding: 0 0 5px 15px;
}

#faq_overview hr {
	margin: 14px 0 14px;
}



/* ==================================== next ==================================== */



a.next {
	text-decoration: none;
	background: transparent url(../images/icon-next.png) no-repeat 0 8px;
	padding-left: 10px;
	color: #007ac2;
}



/* ==================================== previous ==================================== */



a.previous {
	text-decoration: none;
	background: transparent url(../images/icon-previous.png) no-repeat 0 8px;
	padding-left: 10px;
	color: #007ac2;
}

/* ==================================== share ==================================== */



h1 span:nth-of-type(1), span.heading1 span:nth-of-type(1) {
	width: 70%;
	display: inline-block;
}

h1 span:nth-of-type(2), span.heading1 span:nth-of-type(2) {
	float: right;
	font-size: 14px;
	font-weight: normal;
	line-height: 22px;
	padding: 11px 0 0 0;
	max-width: 30%;
	text-align: right;
}

	h1 span a, span.heading1 span a {
		color: #007ac2 !important;
		font-size: 14px;
		font-weight: normal;
		line-height: 22px;
		padding: 11px 0 0 8px;
		margin-left: 12px;
		text-decoration: none !important;
		background: transparent url(../images/arrow-grey-small.png) no-repeat 0 17px;
		display: inline-block;
	}

	h1 span a.share, span.heading1 span a.share {
		background: transparent url(../images/icon-share.png) no-repeat right 17px;
		padding-right: 17px;
	}



/* ==================================== form ==================================== */
form {
	margin: 25px 0 50px 0;
	overflow: hidden;
}

div.criteria form {
	margin: 0 0 8px;
}

form.flex {
	display: flex;
	flex-wrap: wrap;
}

form.flex div.row {
	flex: 0 0 100%;
	display: flex;
	align-items: center;
}

form.flex div.row input, form.flex div.row button {
	margin: 0;
}

form.flex div.row div button {
	--background: var(--color-secondary);
}

form.flex div.row div button:hover {
	--background: var(--color-secondary-dark);
}

.flex {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}

.flex.wrap {
	flex-wrap: wrap;
}

.flex div.row {
	display: flex;
	flex: 0 0 100%;
	gap: 1em;
}

.flex div.row div {
	flex: 1;
}

.flex div.row div.large {
	flex: 3;
}

.flex div.row div.fill, .flex div.row div.full {
	flex: 0 1 100%;
}

.flex div.row div > input[type="text"], .flex div.row div > input[type="password"], .flex div.row div > input[type="pasword"], .flex div.row div > select {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
}

.flex div.row div hr {
	margin: 10px 0;
}

.flex div.row div h2 {
	margin: 0;
}

.flex fieldset {
	flex: 0 0 100%;
}

.flex fieldset.login > div {
	display: flex;
	flex: 0 0 100%;
	gap: 1em;
}

.flex fieldset.login > div > div {
	flex: 1;
}

form.flex div.required {
	flex: 0 0 100%;
}

input[type="text"], input[type="password"], input[type="email"], input[type="file"], textarea, select, label.captcha {
	background: var(--input-background);
	box-sizing: border-box;
	font-weight: var(--input-font-weight);
	font-size: var(--input-font-size);
	font-family: var(--input-font-family);
	color: var(--input-color);
	border: 1px solid var(--input-border-color);
	border-radius: var(--input-border-radius);
	padding: var(--input-padding);
	outline: none;
	margin: var(--input-margin);
	width: var(--input-width);
	display: block;
}


input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus, input[type="file"]:focus {
	color: #444;
}

textarea {
	min-height: 20vh;
	resize: vertical;
	width: calc(100% - 12px);
}

label {
	display: block;
	font-size: 14px;
}

.radio label, .checkbox label {
	width: 100%;
	font-weight: normal;
	float: none;
	padding-top: 0px !important;
	margin: 4px 0 8px 0;
}

.radio input, .checkbox input {
	float: left;
	margin: 6px 5px 0 0;
	width: 20px;
}

select {
	width: 100%;
	padding: 7px 12px;
}

#form_errors {
	margin-bottom: 15px;
	color: #ff0000;
}

	input.error, textarea.error, select.error {
		border: 1px solid #ff0000 !important;
	}

	label.error {
		color: #ff0000 !important;
	}

	.error_input {
		border: 1px solid #ff0000 !important;
	}

	.error_label {
		color: #ff0000 !important;
	}

form .required {
	font-size: 10px;
}

input.datepicker {
    width: 150px;
    float: left;
    margin-right: 2px;
}

.ui-datepicker-trigger {
	float : left;
	margin: 3px 0 0 5px;
	width: auto !important;
}

.ui-datepicker-trigger:hover {
	cursor: pointer;
}
/* ==================================== superslide ==================================== */



#slides {
	position: relative;
	margin: 0;
}

#slides .slides-container {
	display: none;
}

#slides .slides-container li {
	padding: 0;
	margin: 0;
	position: relative;
	background: none;
}

#slides .scrollable {
	*zoom: 1;
	position: relative;
	top: 0;
	left: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}

#slides .scrollable:after {
	content: "";
	display: table;
	clear: both;
}

.slides-navigation {
	margin: 0 auto;
	position: absolute;
	z-index: 3;
	top: calc(50% - 13px);
	width: 100%;
}

.slides-navigation a {
	position: absolute;
	display: block;
}

.slides-navigation a.prev {
	left: 12px;
	width: 27px;
	height: 27px;
	background: transparent url(../images/slider-arrows.png) no-repeat;
	padding: 0;
}

.slides-navigation a.next {
	right: 12px;
	width: 27px;
	height: 27px;
	background: transparent url(../images/slider-arrows.png) no-repeat -27px 0;
	padding: 0;
}

.slides-pagination {
	position: absolute;
	z-index: 3;
	bottom: 0;
	text-align: center;
	width: 100%;
	display: none;
}

.slides-pagination a {
	border: 2px solid #222;
	border-radius: 15px;
	width: 10px;
	height: 10px;
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: middle;
	*vertical-align: auto;
	zoom: 1;
	*display: inline;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=");
	margin: 2px;
	overflow: hidden;
	text-indent: -100%;
}

.slides-pagination a.current {
	background: #222;
}

#slides .slides-container li video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	height: auto;
	width: auto;
	z-index: -100;
	transform: translateX(-50%) translateY(-50%);
	background: url('polina.jpg') no-repeat;
	background-size: cover;
	transition: 1s opacity;
}


	#banner_search{
		position: absolute;
		bottom: 0px;
		z-index: 100;
		right: 0;
		padding: 20px 12.5% 20px 12.5%;
	}

		#banner_search form{
			margin: 0 0 25px 0;
		}

		#banner_search input{
			float: left;
			width: 200px;
		}

		#banner_search button{
			background: #007ac2 url('../images/icon-search.png') no-repeat 0 0;
			width:36px;
			height:36px;
		}

	#banner_login{
		position: absolute;
		bottom: 15px;
		z-index: 100;
		right: 0;
		padding: 0 12.5% 0 12.5%;
		color: white;
	}

		#banner_login div{
			background: #007ac2;
		}

		#banner_login a{
			padding: 5px 15px 5px 35px;
			margin-bottom: 20px;
			background: #007ac2 url('../images/icon-login.png') no-repeat 0 0;
			margin-bottom: 0px;
			color: white !important;
			text-decoration: none !important;
		}

#login_container{
	width: 75%;
	position: relative;
	margin: 0 auto;
}

	#login_popup{
		display: none;
		right: 0;
		position: absolute;
		z-index: 1000;
		background: white;
	}


/* ==================================== print ==================================== */



@media print {
	body, p, h1, h2, h3, h4, h5, h6, #container, #content {
		background: white;
		color: black;
	}

	#footer, #header, #sidebar, #nav_crumb {
		display: none;
	}
}



/* ==================================== Nivo Lightbox ==================================== */



.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	background: #666;
	background: rgba(0,0,0,0.6);
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: url(../images/loading.gif) no-repeat 50% 50%;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
	opacity: 1;
}

.nivo-lightbox-theme-default .nivo-lightbox-prev {
	background-image: url(../images/prev.png);
	border-radius: 0 3px 3px 0;
}

.nivo-lightbox-theme-default .nivo-lightbox-next {
	background-image: url(../images/next.png);
	border-radius: 3px 0 0 3px;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
	display: block;
	background: url(../images/close.png) no-repeat 5px 5px;
	width: 16px;
	height: 16px;
	text-indent: -9999px;
	padding: 5px;
	opacity: 0.5;
}

.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
	opacity: 1;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap {
	bottom: -7%;
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 2px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	background: #fff;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax, .nivo-lightbox-theme-default .nivo-lightbox-inline {
	background: #fff;
	padding: 40px;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}

@media (-webkit-min-device-pixel-ratio: 1.3),
       (-o-min-device-pixel-ratio: 2.6/2),
       (min--moz-device-pixel-ratio: 1.3),
       (min-device-pixel-ratio: 1.3),
       (min-resolution: 1.3dppx) {

	.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
		background-image: url(../images/loading-2x.gif);
		background-size: 32px 32px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-prev {
		background-image: url(../images/prev-2x.png);
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-next {
		background-image: url(../images/next-2x.png);
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-close {
		background-image: url(../images/close-2x.png);
		background-size: 16px 16px;
	}

}

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}

.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}

.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}

.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}

.nivo-lightbox-nav {
	display: none;
}

.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}

.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}

.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image {
	text-align: center;
}

.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
	display: inline-block;
}

.nivo-lightbox-image:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}

.nivo-lightbox-inline, .nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}

.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}

.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}

.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}

.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap, .nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}

.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}

.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}

.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap, .nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}

.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}

.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}



/* ==================================== Debug ==================================== */



pre.dump {
	color : #F3F3F3;
	font-family: Verdana, sans-serif;
	background : #131313;
	border : 1px #D4D4D4 solid;
	border-radius : 2px;
	min-height : 75px;
	max-height : 350px;
	width : 650px;
	margin : 15px auto;
	overflow-y : auto;
	padding : 15px;
}

.alert-box {
    color: #555;
    border-radius: 2px;
    font-family: Verdana, sans-serif;
    font-size: 11px;
    padding: 10px 10px 10px 36px;
    margin: 10px;
	z-index: 100;
	position: relative;
}

.alert-box span {
    font-weight:bold;
    text-transform:uppercase;
	margin-right : 5px;
}

.alert-box a.close {
	position: absolute;
	top: 0px;
	right: 10px;
	background: none !important;
	height: auto !important;
	display: block !important;
	color: #020202;
	text-decoration: none;
}

.alert-box h5 {
	font-size: 10px;
	font-weight: normal;
	font-style: italic;
}

div.error {
    background: #ffecec url(../cp/images/error.png) no-repeat 10px 50%;
    border: 1px solid #f5aca6;
}

div.success {
    background: #e9ffd9 url(../cp/images/success.png) no-repeat 10px 50%;
    border: 1px solid #a6ca8a;
}

div.warning {
    background: #fff8c4 url(../cp/images/warning.png) no-repeat 10px 50%;
    border: 1px solid #f2c779;
}

div.notice {
    background: #e3f7fc url(../cp/images/notice.png) no-repeat 10px 50%;
    border: 1px solid #8ed9f6;
}

.ckeditor_wrapper .message {
	display: none;
}

div.popup_wrapper {
	position: relative;
}

span.popup {
	position: absolute;
	display: inline;
	top: 35px;
	z-index: 10;
	padding: 10px 10px 5px 10px;
	background: #f4f4f4;
	border-radius: 2px;
	box-shadow: 0 2px 7px #131313;
}

.imageBox img {
	max-width: 135px;
	float: left;
}
.imageBoxInfo {
	padding-top: 35px;
}

button:disabled {
	/*display: none;*/
	background-color: #C5C5C5;
	cursor: not-allowed;
}


.only_registrants{
	text-decoration: none;
	background: transparent url(../images/icon-next.png) no-repeat 0 8px;
	padding-left: 10px;
	color: red;
}


#superpublicity {
	/*margin: 0 0 25px 12%;*/
	margin: 0 auto 25px;
	width: 50%;
	height: 146px;
	overflow: hidden;
}

	#superpublicity .slides-container {
		list-style: none;
		margin: 0;
	}

	#superpublicity .slides-container li {
		background: none;
	}

	#superpublicity .slides-container img {
		width: 100%;
	}

	.container #superpublicity {
	    float: left;
	    margin: 0 0 10px -12.5%;
	}

ul.product_overview li{
	border: 1px solid #ededed;
}

ul.gallery.product_overview.col25 li{
	width: calc(22% - 2px);
	min-height: 370px;
}

img[alt="Captcha"]{
	width: auto !important;
}


	.home_block .gallery li {
		/*margin: 0 4% 4% 0 !important;*/
		min-height: 180px;
		/*
		background: #ededed !important;
		border: 1px solid #ededed;
		*/
		background: #007ac2 !important;
		border: 1px solid #007ac2;
		width: calc(22% - 2px);
		min-height: 180px;
	}

	.home_block .gallery li h2{
		margin-top: 35px;
		/*padding: 0 0 15px 26px;*/
		/*background: transparent url(../images/icon-li-ubf-aca.png) no-repeat -2px 0;*/
		font-size: 14px;
		color: white !important;
	}

	.home_block .gallery li a:hover h2{
		color: white !important;
	}

	.home_block .gallery li img{
	}


p.download{margin-bottom: 0px;}




#certification{}


#certification ol.overview span.heading{
	font-size: 18px;
	font-weight: bold;
	margin-right: 15px;
}

	#certification ul{
		list-style: none;
	}

		#certification ol.overview li{
			width: 45%;
		}

		#certification ol.overview li:hover{
		}

			#certification ol.overview li img{
				width: 15px;
				float: right;
			}

#certification a.disabled{
	color: gray;
	text-decoration: none;
	cursor: not-allowed;
}

#certification .controls{
	display: block;
}

#certification .controls.center{
	text-align: center;
}

	#certification .controls .previous_step{
		float: left;
	}

	#certification .controls .next_step{
		float: right;
	}

#certification h2{
	float: left;
}

	#certification .login h2{
		float: none;
	}

	#certification .login form{
		margin-bottom: 0;
	}

#certification p{
	margin-bottom: 0;
}

#certification ul{
	margin-bottom: 25px;
}

#certification .status{
	float:right;
}

	#certification .status span{
		float: left;
		margin-right: 10px;
	}

	#certification .status img{
		width: 25px;
	}


#certification .box{
	padding: 10px;
	margin-bottom: 25px;
	border-radius: 5px;
	background: #ededed;
	min-height: 250px;
}

#certification input[type="radio"]{
	margin-left: 0;
}

#certification .question{
	background: #ededed;
	padding: 5px;
	margin-bottom: 15px;
}

#certification .questions label{
	display: inline;
}

#certification div[id^="content_"]{
	display: none;
}



#certification .checklist ul, #certification ol.overview{
}

#certification .checklist ul li, #certification ol.overview li{
	background: none;
	margin-left: 0;
	padding-left: 0;
}

#certification .explanation{
	margin: 0 0 15px 25px;
	background: #EDEDED;
	border-radius: 5px;
	padding: 5px;
}

#animated_gif{
	width: 100%;
	text-align: center;
	background-color: #fbfbfb;
	height: 200px;
	margin-bottom: 10px;
}

#animated_gif .container{
	width: 80%;
	height: 200px;
}

#animated_gif .container img{
	height: 100%;
	margin-left: 40px;
}

.content.service iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

div.strong {
	font-weight: 600;
}


div.strong div.checkbox {
	display: flex;
	align-items: center;
	gap: 5px;
}

div.strong div.checkbox label {
	display: inline-block;
	font-weight: 600;
}

div.strong div.checkbox input, div.strong div.checkbox label {
	padding: 0;
	margin: 0;
	float: none;
}


fieldset[disabled] {

}

fieldset[disabled] input, fieldset[disabled] label {
	cursor:  not-allowed;
	opacity: 0.5;
}

p.message {
	padding: 10px 14px;
	border: 1px solid transparent;
	border-radius: var(--default-border-radius-small);
}

p.message.success {
	background: #d8f3dc;
	border-color: #588157;
}

div.input_file_wrapper {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0 0 20px;
}



/* ------------------------------------------ **/
ul.flex-gallery {
	--justify-content: flex-start;
	--background: transparent;
	--padding: 0;
	--margin: 0;

	--items: 3;
	--item-offset: 20px;
	--item-width: calc( (100% - (var(--item-offset) * (var(--items) - 1))) / var(--items));

	--label-padding: 2px 6px;
	--label-background: var(--color-primary);
	--label-color: var(--color-white);

	display: flex;
	flex-wrap: wrap;
	justify-content: var(--justify-content);
	gap: var(--item-offset);
	margin: var(--margin);
	background: var(--background);
	padding: var(--padding);
	box-sizing: border-box;
}

ul.flex-gallery.one {
	--items: 1;
}


ul.flex-gallery.two {
	--items: 2;
}

ul.flex-gallery.four {
	--items: 4;
}

ul.flex-gallery.five {
	--items: 5;
}

ul.flex-gallery > li {
	--background: var(--color-gray);
	display: flex;
	flex-direction: column;
	flex: 0 0 var(--item-width);
	background: var(--background);
	padding: 0!important;
	margin: 0!important;
	position: relative;
	border-radius: var(--default-border-radius);
	overflow: hidden;
}

ul.flex-gallery > li:before {
	content: none!important;
}

ul.flex-gallery > li div.flex-gallery-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex: 1;
	padding: 20px 24px;
	box-sizing: border-box;
}

ul.flex-gallery > li div.flex-gallery-content h2, ul.flex-gallery > li div.flex-gallery-content h2 a {
	font-size: var(--font-size-large);
	line-height: var(--line-height-large);
	margin: 0;
}

ul.flex-gallery > li div.flex-gallery-content h3 {
	font-size: var(--font-size-medium);
	line-height: var(--line-height-medium);
	margin: 0;
}

ul.flex-gallery > li div.flex-gallery-content div.buttons {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	align-items: flex-end;
}

ul.flex-gallery.services > li div.flex-gallery-content div.buttons {
	justify-content: space-between;
}

ul.flex-gallery.services > li div.flex-gallery-content div.buttons span.button {
	--background: var(--color-primary-lightest);
	--color: var(--color-primary);
}

ul.flex-gallery > li div.flex-gallery-content ul {
	margin: 0;
}

ul.flex-gallery > li div.flex-gallery-content ul.contact {
	margin: 4px 0 0;
}

ul.flex-gallery > li div.flex-gallery-content ul li {
	padding: 0;
	background: none;
}

ul.flex-gallery > li div.flex-gallery-content ul li a i {
	margin: 0 4px 0 0;
}

/** ==== FLEX GALLERY REGISTRANTS ==== **/
ul.flex-gallery.registrants > li, ul.flex-gallery.registrants > li div.flex-gallery-content {
	display: flex;
	flex-direction: column;
}

ul.flex-gallery.registrants > li div.flex-gallery-content {
	height: 100%;
}

ul.flex-gallery.registrants > li div.flex-gallery-content div.details {
	flex: 1;
}

div.container div.sidebar div.criterias {
	background: var(--color-primary);
	border-radius: var(--default-border-radius);
	padding: 20px 20px;
}

div.container div.sidebar div.criterias div.criteria h2 {
	--color: var(--color-primary-lightest);
	--font-weight: 600;
}

div.container div.sidebar div.criterias div.criteria ul li {
	border: 0;
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

div.container div.sidebar div.criterias div.criteria ul li a {
	color: var(--color-white);
	text-transform: none;
	padding: 0;
	font-size: var(--font-size-regular);
}

div.container div.sidebar div.criterias div.criteria ul li input[type="checkbox"] {
	margin: 4px 0 0;
}

div.container div.sidebar div.criterias div.toggle {
	cursor: pointer;
	background: var(--color-primary-dark);
	border-radius: var(--input-border-radius);
	padding: var(--input-padding);
	color: var(--color-white);
	font-weight: 600;
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 0 0 10px;
}

div.container div.sidebar div.criterias div.toggle.hide_d {
	display: none;
}

div.container div.sidebar div.criterias div.toggle i.icon {
	border-radius: var(--input-border-radius);
	padding: 4px;
	box-sizing: border-box;
	background: var(--color-primary);
	display: inline-block;
	width: 32px;
	text-align: center;
}

div.container div.sidebar div.criterias div.toggle i.icon::before {
	--icon: "\2b";
	--icon-color: var(--color-white);
}

div.container div.sidebar div.criterias div.toggle.active i.icon::before {
	--icon: "\f068";
}

/** ========= REGISTRANTS ========= **/
header.company {
	overflow: hidden;
}

header.company div.container {
	width: 100%;
}

header.company div.container div.content {
	display: flex;
	float: none;
	padding: 0;
	width: 100%;
	align-items: flex-start;
}

header.company div.container div.content div.title, header.company div.container div.content div.gmap {
	flex: 0 0 50%;
}

header.company div.container div.content div.title {
	box-sizing: border-box;
	background: var(--color-primary);
	padding: 5% 0 5% 12.50%;
}

header.company div.container div.content div.title h1 {
	color: white!important;
}

header.company div.container div.content div.title a.button {
	--background: var(--color-primary-dark);
}

header.company div.container div.content div.title a.button:hover {
	--background: var(--color-primary-light);
}

header.company div.container div.content div.gmap {
	display: block;
	background: var(--color-primary-lightest);
	height: 400px;
	border-bottom-left-radius: 200px;
	margin: 0 0 0 -50px;
	padding: 0 0 0 50px;
}

div.registrant_container {
	display: flex;
	gap: 40px;
}

div.registrant_container div.general {
	flex: 1 0 70%;
}

div.registrant_container aside {
	flex: 0 1 30%;
}

div.registrant_container div.general ul, div.registrant_container aside {
	margin: 0;
}

div.registrant_container div.general ul li, div.registrant_container aside ul li {
	background: none;
	margin: 0;
	padding: 0;
}

div.registrant_container div.general div.contact {
	display: flex;
	align-items: center;
	gap: 30px;
	background: var(--color-white);
	border: 1px solid #020202;
	padding: 20px 30px;
	box-sizing: border-box;
	border-radius: var(--default-border-radius);
	margin: 0 0 50px;
}

div.registrant_container div.general div.contact div.logo {
	flex: 1;
}

div.registrant_container div.general div.contact div.address {
	flex: 3;
}

div.registrant_container div.general div.contact div.links {
	flex: 2;
}

div.registrant_container div.general div.contact div.links a.button {
	width: 100%;
	text-align: center;
	margin: 0;
}

div.registrant_container div.general div.contact div.links ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

div.registrant_container div.general div.contact div.links ul li a.button i {
	margin: 0 10px 0 0;
	transition: margin 0.3s ease-in-out;
}

div.registrant_container div.general div.contact div.links ul li a.button:hover i {
	margin: 0 15px 0 0;
}

div.registrant_container aside div.information {
	border-radius: var(--default-border-radius);
	border: 1px solid #020202;
	overflow: hidden;
}

div.registrant_container aside div.information div.header {
	background: var(--color-primary);
}

div.registrant_container aside div.information div.header, div.registrant_container aside div.information div.details {
	padding: 20px 30px;
	box-sizing: border-box;
}

div.registrant_container aside div.header ul li + li {
	margin: 6px 0 0;
}

div.registrant_container aside ul.tags {
	display: flex;
	flex-wrap: wrap;
	flex-wrap;
	gap: 8px 4px;
}

div.registrant_container aside ul.tags li {
	background: #EFEFEF;
	border-radius: var(--default-border-radius-small);
	margin: 0;
	padding: 4px 8px;
	box-sizing: border-box;
	text-align: center;
}

span.bullet {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	padding: 4px;
	box-sizing: border-box;
	background: red;
	margin: 0 4px 0 0;
}

span.bullet i {
	color: #FFFFFF;
}


/** =============== HOME PAGE ================	**/
div.container.home {
	width: 100%;
}

div.container.home div.content {
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}

div.container.home div.content.home div.home {
	--background: transparent;
	background: var(--background);
	padding: 40px 10%;
	box-sizing: border-box;
}

div.container.home div.content.home div.home:nth-of-type(even) {
	--background: var(--color-gray-light);
}

div.home:last-of-type {
	margin: 0;
}

div.home div.title {
	margin: 0 0 40px;
}

div.home div.title {
	display: flex;
	align-items: center;
	gap: 20px;
}

div.home div.title span.button, div.home div.title h1 {
	margin: 0;
}

div.home div.item_container {
	display: flex;
	gap: 40px;
}

div.home div.item_container div.spotlight, div.home div.item_container div.items {
	flex: 0 1 50%;
}

div.home div.item_container div.spotlight {
	align-self: flex-start;
	background: var(--color-primary);
	border-radius: var(--default-border-radius);
	padding: 20px 40px;
	box-sizing: border-box;
	color: var(--color-white);
}

div.home div.item_container div.spotlight time {
	font-weight: 300;
}

div.home div.item_container div.spotlight h2 {
	--color: var(--color-white);
	--font-size: 42px;
	--font-weight: 600;
	--line-height: 1.2;
	margin: 20px 0 40px;
}

div.home div.item_container div.spotlight p {
	font-size: var(--font-size-normal);
	line-height: var(--line-height-normal);
}

div.home div.item_container div.spotlight div.buttons {
	display:flex;
	justify-content: flex-end;
}

div.home div.item_container div.spotlight div.buttons a.button {
	--background: var(--color-white);
	--color: var(--color-primary);
}

div.home div.item_container div.spotlight div.buttons a.button:hover {
	--background :var(--color-primary-dark);
	--color: var(--color-white);
}

div.home div.item_container div.items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

div.home div.item_container div.items div.item {
	flex: 0 0 100%;
	display: flex;
	gap: 10px;
}

div.home div.item_container div.items div.item time {
	color: var(--color-gray-darkest);
}

div.home div.item_container div.items div.item div.image {
	flex: 0 0 20%;
}

div.home div.item_container div.items div.item div.image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--default-border-radius-small);
}

div.home.background {
	--background: var(--color-primary)!important;
	margin: 20px 0;
	padding: 20px 10%;
	box-sizing: bordere-box;
	color: var(--color-white);
	display: flex;
	font-size: var(--font-size-normal);
	line-height: var(--line-height-norma);
}

div.home.background {
	h1, h1, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a {
		color: var(--color-white)!important;
	}
}

div.home.background div.text {
	flex: 1;
	align-self: center;
}

div.home.background div.text a.button {
	--background: var(--color-white);
	--color: var(--color-primary)!important;
}

div.home.background div.text a.button:hover {
	--background :var(--color-primary-dark)!important;
	--color: var(--color-white)!important;
}

div.home.background div.images {
	flex: 0 0 25%;
	margin: 0;
}

div.home.background div.images div.image {
	border-radius: var(--default-border-radius);
	width: 100%;
	overflow: hidden;
	margin: -20% 0;
}

div.home.background div.images div.image:nth-of-type(odd) {
	margin-right: -50%;
}

div.home.background div.images div.image:nth-of-type(even) {
	margin-left: -50%;
}

div.home.background div.images div.image img {
	display: block;
	width: 100%;
	height: 100%!important;
	object-fit: cover;
}


div.container.home div.content.home div.home:nth-of-type(even) ul.flex-gallery > li {
	--background: var(--color-white);
}

div.container.home div.content.home div.home:last-of-type {
	margin-bottom: 60px;
}
/** =============== HOME PAGE ================	**/


/** =============== FOOTER ================	**/
body > footer {
	--background: var(--color-primary);
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

body > footer div.newsletter, body > footer div.container, body > footer div.credits, body > footer div.menu.slim {
	flex: 0 0 100%;
	box-sizing: border-box;
}

body > footer div.newsletter {
	flex-wrap: wrap;
}

body > footer div.newsletter div {
	flex: 0 0 100%;
}

body > footer div.newsletter.flex {
	display: flex;
	flex-wrap: wrap;
}

body > footer div.newsletter.flex div {
	flex: 1;
}

body > footer div.container {
	display: flex;
	gap: 50px;
}

body > footer div.container div.contact {
	flex: 0 1 25%;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

body > footer div.container div.contact div.socials {
	flex: 0 0 100%;
}

body > footer div.container div.contact div.address ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

body > footer div.container div.contact div.address ul li {
	flex: 0 0 100%;
	margin: 0;
	padding: 0;
	background: none;
}

body > footer div.container div.navs {
	flex: 1 1 33%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

body > footer div.container div.navs nav {
	flex: 0 1 auto;
}

body > footer div.container div.navs nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}

body > footer div.container div.navs nav ul li {
	flex: 0 0 100%;
	padding: 0 0 8px;
	border-bottom: 1px solid var(--color-primary-darkest);
}

body > footer div.container div.navs nav ul li a:hover, body > footer div.container div.navs nav ul li a.selected {
	--color: var(--color-primary-lightest);
}

body > footer div.container div.navs nav:first-of-type ul li a {
	font-size: var(--font-size-regular);
}

body > footer div.container div.socials {
	flex: 0 1 25%;
}

div.socials a {
	flex: 0 1 auto;
	background: var(--color-primary-dark);
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	border: none;
	box-sizing: border-box;
	border-radius: 50%;
	transition: var(--transition-default);
}

div.socials a:hover{
	background :red;
}

body > footer div.container div.socials.animated a i {
		transition: transform 0.5s;
}

body > footer div.container div.socials.animated a:hover i {
	transform: rotateY(360deg);
}


body > footer div.container div.socials nav + div.newsletter {
	margin: 1em 0 0;
}

body > footer div.credits {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

body > footer div.credits, body > footer div.credits a, body > footer div.menu.slim {
	font-size: var(--font-size-small);
}

body > footer div.credits div.menu {
	flex: 1;
}

body > footer div.credits div.menu nav ul {
	justify-content: center;
}

body > footer div.credits div.menu nav ul li {
	padding: 0;
}

body > footer hr.spacer {
	flex: 1;
	border-color: var(--color-primary-light);
	margin: 1em var(--default-padding-sides) 0;
}

body > footer div.menu.slim {
	flex: 0 0 100%;
}

body > footer div.menu.slim nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

body > footer div.menu.slim nav ul li {
	padding: 0;
}

body > footer div.menu.slim nav ul li a {
	--font-size: var(--font-size-small);
}


footer article.chapter.partners {
	--items: 6;
	--item-offset: 20px;
	--item-width: calc( (100% - (var(--item-offset) * (var(--items) - 1))) / var(--items));
	padding: 20px 12.5%;
	box-sizing: border-box;
	background: var(--color-white);
	display: flex;
	justify-content: center;
	gap: var(--item-offset);
	width: 100%;
}

footer article.chapter.partners div.partner {
	flex: 0 0 var(--item-width);
}

footer article.chapter.partners div.partner a {
	display: block;
}

footer article.chapter.partners div.partner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/** =============== /FOOTER ================	**/