/*
---------------------------
ALGEMEEN
---------------------------
*/

/* #page-background {
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
} */

/* body::before {
	position: absolute;
	width: 100%;
	height: 700px;
	content:'';
	background: rgb(237,237,237);
	background: linear-gradient(0deg, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 45%);
} */

#page-container {
	position:relative;
	z-index: 2;
	margin: auto ;
	margin-top: 0px;
	margin-bottom: 0px;

	
	padding: 0 0px;
}




	@media (max-width: 1540px) {
		#page-container {
			max-width: 100%;
		}
	}
	
	@media (max-width: 1460px) {
		#page-container {
			/* padding: 0 40px; */
		}
	}


	@media (max-width: 1130px) {
		#page-container {
			padding: 0 0px;
		}
	}
	@media (max-width: 970px) {
		#page-container {
			margin-top: 0px;
		}
	}

.section-wrapper {
	display: block;
	position: relative;
}
.section-wrapper.contentbox {
	padding-top: 1rem;
}

.row {
	max-width: 78em;
	z-index: 3;
	position: relative;
}
.row.narrow {
	max-width: 60em
}
.row.wide {
	max-width: 80em
}
.row.wider {
	max-width: 92.5em
}

.max-width {
	max-width: 88em;
	margin: auto;
}

.header-placeholder {
	position: relative;
	display: block;
	height: 320px;
	z-index: 1;
}
.header-placeholder .row {
	height: 100%;
}

.header-placeholder .row h1 {
	position: absolute;
	left: 2.5rem;
	bottom: 70px;
	font-size: 32px;
	color: #fff;
}

.section-wrapper > .row iframe {
	width: 100%;
	height: 700px;
	border:0;
}
.section-wrapper > .row iframe .btn {
	font-size: 0.96rem !important;
	padding: 1rem .75rem !important;
}

	@media (max-width: 1460px) {
		.row {
			max-width: 70em
		}
	}
	@media (max-width: 1320px) {
		.row.wider {
			max-width: 90%
		}
	}
	@media (max-width: 1130px) {
		.row {
			max-width: 64rem
		}
	}
	@media (max-width: 1080px) {
		.row {
			max-width: 60rem
		}
		.row.wider {
			max-width: 96%
		}
		.row.narrow {
			max-width: 94%
		}
	}
	@media (max-width: 970px) {
		.row {
			max-width: 96%
		}
		.white-popup .row {
			max-width: 100%;
		}
		.header-placeholder {
			height: 320px;
		}
		.header-placeholder .row h1 {
			position: absolute;
			left: 1rem;
			bottom: 80px;
			font-size: 32px;
			color: #fff;
		}
	}
	@media (max-width: 640px) {
		.row {
			max-width: 98%
		}
		.header-placeholder {
			height: 220px;
		}
		.header-placeholder .row h1 {
			position: absolute;
			left: 1rem;
			bottom: 60px;
			font-size: 24px;
			color: #fff;
		}
	}

/*
---------------------------
TOPBAR 
---------------------------
*/


#topbar {
	position: fixed !important;
	top: 0;
	left: 0%;
	width: 100%;
	height: 120px;
	z-index: 997 !important;
	background: #fff;
	/* background: rgb(237,237,237);
	background: linear-gradient(0deg, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 45%); */
	/* backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px); */
	
	transform: translateY(0%);
	-webkit-transition: transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out;
	-ms-transition:transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

#topbar:before {
	position: absolute;
	bottom:0px;
	left:0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 30px #000;
	content:'';

	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition:opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
#topbar.small:before {
	opacity: 0.1
}
#topbar.no-cover:before {
	opacity: 0.1
}

/* On scroll */
#topbar.small {
	transform: translateY(-42px);
	border:0;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%);
}

	@media (max-width: 1130px) {
		#topbar {
			position: absolute !important;
		}
	}
	@media (max-width: 640px) {
		#topbar {
			position: absolute !important;
			height: 80px;
		}
	}
	@media (max-width: 400px) {
		#topbar {
			position: absolute !important;
		}
	}

#topbar .row  {
	display: block;
	height: 100%;
	position: relative;
	margin: auto;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

/* Logo */
.logo {
	position: absolute;
	top: 40px;
	left: 5px;	
	width: 260px;
	height: 130px;
	display: block;
	transform: translateY(0px);
	transform-origin: top left;
  z-index: 998 !important;
  background: #fff  url('../images/logo-elann.svg') no-repeat center;
	background-size: 180px auto;
	border-radius: 10px 10px 10px;
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	will-change: transform;

	-webkit-box-shadow: 0px 10px 34px -21px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 10px 34px -21px rgba(0,0,0,0.35);
box-shadow: 0px 10px 34px -21px rgba(0,0,0,0.35);
}
.logo:hover {
	transform: translateY(4px);
}
.small .logo {
	transform: scale(0.8);
}
.small .logo:hover {
	transform: scale(0.8) translateY(4px);
}
	@media (max-width: 1460px) {
		.logo {
			width: 240px;
			height: 120px;
			background-size: 180px auto;
		}
	}

	@media (max-width: 640px) {
		.logo {
			top: 0px;
			width: 180px;
			height: 100px;
		
			background-size: 140px auto;
			border-radius: 10px 10px;
		}
	}
	@media (max-width: 360px) {
		.logo {
			width: 140px;
			height: 80px;
			
			background-size: 130px auto;
			border-radius: 10px 10px;
		}
	}
.print-only{
	display:none;
}
.topbar-sitelinks {
	position: absolute;
	top: 0rem;
	right:0rem;
	width: 100%;
	height: 40px;
	
	text-align: right;
	z-index: 4;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	
	visibility: visible;
	opacity: 1;	
	will-change: opacity, visibility; 
}
.topbar-sitelinks .line {
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0.08);
}

.topbar-sitelinks .site-info {
	display: flex;
	align-items: center;
	justify-content: space-between; 
	/* border-bottom: 1px solid #eee; */
	padding: 0 10px;
}

.topbar-sitelinks ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	list-style: none;
	padding:0;
	margin:0;
	height: 40px;
}

.topbar-sitelinks ul li {
	display: inline-block;
	padding:0;
	margin:0 0px;
}

.topbar-sitelinks ul li span,
.topbar-sitelinks ul li a {
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;	
	height: 22px;
	line-height: 1;
	color:rgba(29, 31, 42, 0.7);
	padding: 0 0.5rem;
	margin-right: 10px;
}
.topbar-sitelinks ul li span {

}
.topbar-sitelinks ul li i {
	position: relative;
	margin-right: 5px;
	color: rgba(24, 7, 31, 0.603);
}
.topbar-sitelinks ul li i.fa-envelope {
	top:1px;
}
.topbar-sitelinks ul li i.fa-info-circle {
	top:1px;
}
.topbar-sitelinks ul li a i {
	color: #362782;	
}
.topbar-sitelinks ul li a:hover {
	color: #362782;	
}
[class*=" bg-"]:not(.bg-white):not(.bg-light) ul li a  {
	color: rgba(255, 255, 255, 0.6) ;
}
[class*=" bg-"]:not(.bg-white):not(.bg-light) ul li a:hover  {
	color: rgba(255, 255, 255, 1) ;
}

/* Social */
.topbar-sitelinks .socialist {
	margin-right: 0px;
	top:0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.topbar-sitelinks .socialist a {
	padding-left: 0px !important;
	position: relative;
	width: 40px;
	height: 40px;
	margin:0;
	color: rgba(255, 255, 255, 0.568);
}
.bg-white.topbar-sitelinks .socialist a {
	color: #004A99;
}

.topbar-sitelinks .socialist li a span {
	display: none !important;
}
.topbar-sitelinks .socialist a:hover {
	color: #362782 !important;
}
.topbar-sitelinks .socialist {
	padding: 0px 0px;
}
.topbar-sitelinks .socialist a i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.699);
	width: 40px !important;
	height: 40px !important;
	line-height: 40px !important;
	background: rgba(0, 0, 0, 0) !important;
}
.bg-white.topbar-sitelinks .socialist a i {
	color: rgba(0, 0, 0, 0.3);
}
.topbar-sitelinks .socialist .share a i {
	padding-right: 2px;
}
.topbar-sitelinks .socialist a:hover i {
	color: #362782;
	background-color: transparent !important;
}
.topbar-sitelinks .socialist li.phone {
	display: inline-block;
	padding-right: 30px;
}
.topbar-sitelinks .socialist li.phone a{
	width: auto;
	padding-left: 40px !important;
}
.topbar-sitelinks .socialist li.phone a span {
	display: block !important;
	color: #004A99;
	font-size: 1rem;
}
.topbar-sitelinks .socialist li.phone a i {
	width: 40px !important;
	top: 50%;
	left: 0rem;
	transform: translateX(0%) translateY(-50%);
	color: #004A99;
}
.topbar-sitelinks ul.print-page{
	margin-left:auto;
	justify-content: flex-end
}

	@media (max-width: 1130px) {
		.topbar-sitelinks .socialist {
			text-align: right;
			width: auto !important;
			margin-right:0px;
			display: block;
		}
	}
	@media (max-width: 970px) {

		.topbar-sitelinks .extra-button {
			margin-right: 80px;
		}
		.topbar-sitelinks ul {
			width: 100%;
		}
		.topbar-sitelinks .socialist {
			display: none;
		}
		.topbar-sitelinks .socialist li {
			display: none;	
		}
		.topbar-sitelinks .socialist li.phone {
			display: inline-block;
			padding-right: 20px;	
		}
		.topbar-sitelinks .socialist li.phone a i{
			font-size: 1.4rem;
			color: #362782 !important
		}
	}
	@media (max-width: 640px) {
		.topbar-sitelinks {
			display: none;
		}
		.topbar-sitelinks .socialist li.phone {
			display: inline-block;
			padding-right: 0px;
		}
		.topbar-sitelinks .socialist li.phone a i{
			font-size: 1.4rem;
		}
		.topbar-sitelinks .socialist li.phone a span{
			display: none !important;
		}
	}
	@media (max-width: 400px) {
		.topbar-sitelinks .socialist li.twitter,
		.topbar-sitelinks .socialist li.facebook,
		.topbar-sitelinks .socialist li.linkedin,
		.topbar-sitelinks .socialist li.youtube,
		.topbar-sitelinks .socialist li.instagram {
			display: none;	
		}
		.topbar-sitelinks {
			right:0;
		}
		.small .topbar-sitelinks {	
			visibility: visible;
			opacity: 1;	
		}
	}
	
/*
---------------------------
SECTION TITLES
---------------------------
*/
.section-c2a {
	border-radius: 0px 0 0px 0;
	overflow: hidden;
}
.section-title-wrapper {
	padding-left: 0rem;
}
.section-title-wrapper.text-center {
	padding-bottom: 1rem;
}
.section-c2a .section-title-wrapper {
	padding-left: 1.5rem;
}	
.introduction .section-title-wrapper {
	padding-left: 1.5rem;
}

	@media (max-width: 970px) {
		.section-c2a .section-title-wrapper {
			padding-left: 1rem;
		}	
	}
	@media (max-width: 640px) {
		.section-c2a {
		
			overflow: hidden;
		}
	}
	@media (max-width: 400px) {
		.section-c2a {
		
			overflow: hidden;
		}
	}
.section-intro {
	font-family: 'diavlo';
	font-size: 20px;
	font-weight: 300;
	/* text-transform: uppercase;
	letter-spacing: 3px; */
	display: inline-block;
	margin-bottom: 15px;
	color: #362782 !important;
	padding-left: 3px;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .section-intro {
	color: #ffffff !important;
}
.section-title {
	font-size: 2.2rem;
	display: block;
	position: relative;
	font-weight: 700;
	margin-bottom: 20px;
}
.section-title.title-small {
	font-size: 2rem;
}
.section-title.title-medium {
	font-size: 2.2rem;
}
.section-title.title-large {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.1;
}
.section-title em {
	font-style: normal;
	color: #362782;
}

.text-center .section-title:before {
	position: absolute;
	top:-10px;
	left: 50%;
	transform: translateX(-50%);
}


[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-extralight) .section-title  {
	color: rgba(255, 255, 255, 1) !important;
}
.section-lead {
	display: block;
	
}
.section-lead p {
	font-family: 'diavlo';
	color: rgba(14, 10, 44, 0.6);
	font-size: 1.125rem;
	font-weight: 400;
}
.introduction .section-lead {
	padding-top:25px;
}
.introduction .section-lead.with-label {
	padding-top:50px;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-lighter) .section-lead p  {
	color: rgba(255, 255, 255, 1) !important;
}
.section-more {
	position: absolute;
	top: 5px;
	right:10px;
	font-size: 0.96rem;
	margin-top: 0rem;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	border: 0px solid rgba(166, 166, 163, 0.31);
}
.section-button {
	margin-top: 1rem;

}
.section-button span{
	display: inline-block;
	margin-right: 5px;
}
.section-footer {
	padding-top:1rem;
}

	@media (max-width: 1130px) {
		.section-title {
			font-size: 2.4rem;
			display: block;
		}
		.section-title.title-small {
			font-size: 1.6rem;
		}
		.section-title.title-medium {
			font-size: 1.8rem;
		}
		.section-title.title-large {
			font-size: 2.4rem;
			line-height: 1.1;
		}
		.section-lead p {
			font-size: 1rem;
		}
	}
	@media (max-width: 970px) {
		.section-title {
			font-size: 2rem;
			display: block;
		}
		.section-title.title-small {
			font-size: 1.5rem;
		}
		.section-title.title-medium {
			font-size: 1.6rem;
		}
		.section-title.title-large {
			font-size: 2.4rem;
			line-height: 1.2;
		}
	}
	@media (max-width: 640px) {
		.section-intro {
			display: block;
			margin-bottom: 5px;

		}
		.section-title {
			font-size: 1.4rem;
			display: block;
		}
		.section-title.title-small {
			font-size: 1.3rem;
			margin-bottom: 0;
		}
		.section-title.title-medium {
			font-size: 1.4rem;
		}
		.section-title.title-large {
			font-size: 2rem;
			line-height: 1.2;
		}
		.section-lead p {
			font-size: 1rem;
		}
		.section-more {
			position: absolute;
			top: -5px;
			right:10px;
			font-size: 0.76rem;
			padding-left:1rem;
			padding-right:1rem;
		}
	}
	@media (max-width: 400px) {
		.section-intro {
			display: block;
			margin-bottom: 5px;
			font-size: 1.125rem;
		}
		.section-title.medium {
			font-size: 2rem;
		}
		.section-title.title-large {
			font-size: 2rem;
			line-height: 1.2;
		}
	}


/* Section background image */
.bg-section-image {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
}

.bg-section-image.bg-repeat {
	background-position: top left;
	background-size: 10% auto;
	background-repeat: repeat;
	z-index: 1;
}

/* Shape */
/* .section-shape {
	position: absolute;
	top: -60px;
	right: 50%;
	transform: translateX(50%);
	margin-right: -36em;
	width: 120px;
	height: 120px;
	display: block;
	border-radius: 100px;
	background: transparent;
	z-index: 3;
}
.section-shape:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background:  url('../images/icon.svg') no-repeat top right;
	background-size: contain;
	content: '';
	z-index: 3;
}
.section-shape.left {
	right: auto;
	left: 50%;
	transform: translateX(-50%);
	margin-left: -36em;
	margin-right: 0;
} */

/* Icon */
.section-icon {
	position: absolute;
	bottom: -30px;
	right: 0;
	width: 60%;
	height: 90%;
	background:  url('../images/icon.svg') no-repeat bottom left;
	background-size: contain;
	z-index: 1;
	opacity: 0.7;
	mix-blend-mode: soft-light;

}
.section-icon.normal {
	mix-blend-mode: unset;
}
@media (max-width: 1130px) {
	.section-icon {
		width: 70%;
	}
}

/*
---------------------------
INTRODUCTION
---------------------------
*/

.introduction-title-wrapper {
	position: relative;
}
.introduction-label {
	font-weight: 700;
}
.introduction-title {
	line-height: 1.2;
	position: relative;
	font-size: 2rem;
}
.introduction-title span {
	display: inline-block;
}
.introduction-lead {
	padding-top: 0rem;
}
.introduction-lead p {
	font-size: 1.3rem;
	font-weight: 700;
}
.introduction-button {
	margin-top: 10px;
}
.introduction-link i {
	margin-left: 5px;
}

	@media (max-width: 1024px) {
		.introduction-title-wrapper {
				padding-left: 1.5rem;
		}
		.introduction-title {
			font-size: 2rem;
		}
		.introduction-text {
			padding-right: 2rem;
		}
		.introduction-lead {
			padding-top: 0.5rem;
		}
		.introduction-lead p {
			font-size: 1.1rem;
		
		}
	}
	@media (max-width: 970px) {
		.introduction-title-wrapper {
				padding-left: 1rem;
		}
		.white-popup .introduction-title-wrapper {
				padding-left: 0rem;
		}
		.introduction-title {
			font-size: 1.8rem;
		}
	}
	@media (max-width: 640px) {
		.introduction-title-wrapper {
			padding: 1rem;
			text-align: center !important
		}
		.introduction-title {
			font-size: 1.8rem;
		}
		.introduction-lead {
			text-align: center !important
		}
		.white-popup .introduction-title-wrapper {
			padding: 0rem !important;
			text-align: left !important;	
		}
		.white-popup .introduction-lead {
			text-align: left !important; 	
		}
		.white-popup .introduction-title-wrapper p {
			font-size: 0.96rem;
			line-height: 1.5;
			
		}
	}


/*
---------------------------
CALL TO ACTION
---------------------------
*/

.c2a-wrapper.text-right {
	text-align: left !important
}
.c2a-wrapper {
	padding: 0 4rem 0 3rem;
}
.c2a-label {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
	font-size: 1rem;
	position: relative;
	padding-left:2px;
}
[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-lighter):not(.bg-secondary) .c2a-label {
	color: rgba(255, 255, 255, 1) !important;
}
.c2a-label:before {
	position: absolute;
	bottom: 100%;
	left: 50%;
	content:'';
	height: 120px;
	width: 1px;
	background: #eb6209;
	transform: translateX(-50%) translateY(-30%);
}
.float-left .c2a-label:before,
.float-right .c2a-label:before {
	display: none;
}
.c2a-title {
	margin-bottom: 1.4rem;
	line-height: 1.2;
}
.c2a-title.large {
	font-size: 3.2rem;
	line-height: 1.1;
	max-width: 80%;
}
.c2a-title.medium {
	font-size: 2.4rem;
	line-height: 1.2;
}
.c2a-title span {
	display: inline-block;
}
.c2a-text {
	padding-top: 1rem;
	padding-left: 0rem;
}
.c2a-text p {
	font-size: 1rem;
	line-height:1.7;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-lighter):not(.bg-secondary) .c2a-text p   {
	color: rgba(255, 255, 255, 1) !important;
}

.c2a-button {
	margin-top: 1rem;
}


/*
-----------------------------
Actionbar
-----------------------------
*/
.actione {
	margin: 0 1rem;
}
.actionbar {
	padding: 1.6rem 1rem 1.8rem;
	text-align: center;
	position: relative;
}
.actionbar .actionbar-title {
	position: relative;
	top: 5px;
	display: inline-block;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.2;
}
[class*=" bg-"]:not(.bg-white):not(.bg-light) .actionbar .actionbar-title {
	color: rgba(255, 255, 255, 1) !important;
}

.actionbar .actionbar-button {
	display: inline-block;
	margin-left: 1rem;

}

	@media (max-width: 970px) {
		.actionbar .actionbar-title {
			font-size: 1.5rem;
			line-height: 1.2;
		}
		.actionbar .actionbar-button {
			margin-top: 20px;
		}
	}
	@media (max-width: 400px) {
		.actionbar {
			padding: 1rem 0rem 1rem;
			text-align: center;
			position: relative;
		}
		.actionbar .actionbar-button {
			float: none;
			margin-left: 0rem;
		}
	}	


/*
---------------------------
USP BOX
---------------------------
*/
.section-usp {
	max-width: calc(78em - 10px);
	margin: auto;
	margin-top: -40px;
	border-radius: 10px 10px 10px;
	z-index: 99;
}

	@media (max-width: 1460px) {
		.section-usp {
			max-width: calc(70em - 10px);
		}
	}
	@media (max-width: 1130px) {
		.section-usp {
		
			margin-top: -40px;
			border-radius: 10px 10px 10px;
			max-width: calc(60rem - 10px);
			/* max-width: 100%; */
		}
	}
	@media (max-width: 970px) {
		.section-usp {
			max-width: 96%;
		}
	}
	@media (max-width: 640px) {
		.section-usp {
			margin-top: 0px;
			max-width: 100%;
			padding-bottom: 10px !important;
			border-radius: 0;
		}
	}
	
	@media (max-width: 400px) {
		.section-usp {
			
		}
	}

.usp-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	border-radius: 15px;
	padding: 1rem 1rem 1rem 1rem;
	margin-bottom: 2rem;
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.usp-box.icon-left {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: row;
	text-align: left;
	border-radius: 15px;
	padding: 1rem 2rem 1rem 2rem;
	margin-bottom: 2rem;
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.usp-box.icon-left.bg-white {
	border: 2px solid rgba(0, 74, 153, 0.3);
}
.usp-box.icon-left.bg-white:hover {
	border: 2px solid #004A99;
}

.usp-icon {
	font-size: 1.4rem;
	text-align: center;
	padding: 1rem 0rem;
	border-radius: 100px;
	position: relative;
}
.usp-box.icon-left .usp-icon {
	margin-right: 20px;
}


.usp-icon.icon-small i:before{
	font-size: 1.4rem;
}
.usp-icon.icon-medium i:before{
	font-size: 2.8rem;
}
.usp-icon.icon-large i:before{
	font-size: 4.2rem;
}
.usp-icon i {
	z-index: 2;
}
.usp-icon i:before {
	line-height: 1;
	margin-left:0;
}

.usp-description {
	padding-top: 1rem;
}

.usp-title {
	font-size: 1.4rem;
	font-weight: 600;

}
.icon-left .usp-title {
	margin:0;
}
.usp-description p {
	font-size: 1rem;
	line-height:1.6;
	margin:0;
}
a.usp-box .usp-description p {

}
a.usp-box:hover {
	background-color: #f7faf7;
}
.bg-light a.usp-box:hover {
	background-color: #fff;
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.13);
}
.usp-more {
	font-family: 'diavlo', sans-serif;
	font-weight: 700;

}

[class*=" bg-"]:not(.bg-white):not(.bg-light) .usp-title {
	color: rgba(255, 255, 255, 1) !important;
}
[class*=" bg-"]:not(.bg-white):not(.bg-light) .usp-description p {
	color: rgba(255, 255, 255, 0.7) !important;
}


	@media (max-width: 1130px) {
		.usp-title {
			font-size: 1.2rem;

		
		}
	}
	@media (max-width: 970px) {
		.usp-box {	
			padding: 1rem 1rem 1rem 0rem;
		}
		.usp-icon.icon-small i:before{
			font-size: 1.4rem;
		}
		.usp-icon.icon-medium i:before{
			font-size: 2.4rem;
		}
		.usp-icon.icon-large i:before{
			font-size: 4rem;
		}
		.usp-title {
			font-size: 1.1rem;
		}
	}
	@media (max-width: 640px) {
		.usp-box {
			margin-bottom: 0rem;
		}
		.usp-box.icon-left {
			display: flex;
			align-items: flex-start;
			justify-content: flex-start;
			flex-direction: row;
			text-align: left;
			border-radius: 15px;
			padding: 1rem 1rem 1rem 1rem;
		}
		.usp-icon {
			padding: 0;
		}
		.usp-icon.icon-small i:before{
			font-size: 1.4rem;
		}
		.usp-icon.icon-medium i:before{
			font-size: 2.2rem;
		}
		.usp-icon.icon-large i:before{
			font-size: 3.6rem;
		}
		.usp-description {
			padding-top: 0rem;
		}
	}

.usp-listing {
	padding: 0 1.5rem;
}
.usp-listing ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin:0;
}
.usp-listing ul li {
	font-family: 'diavlo';
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 16px;
	font-weight: 900;
	color: #004A99;
}
.usp-listing ul li i,
.usp-listing ul li img {
	position: relative;
	top:-2px;
	margin-right: 10px;
	font-size: 24px;
}
[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-extralight) .usp-listing ul li {
	color: rgba(255, 255, 255, 1) !important;
}

@media (max-width: 1130px) {
	.usp-listing {
		padding: 0 2rem 0 2rem;
	}
	.usp-listing ul li {
		font-sizE: 13px;
		line-height: 1.1;
	}
}
@media (max-width: 970px) {
	.usp-listing {
		padding: 0 1rem 0 0rem;
	}
	.usp-listing ul li {
		font-sizE: 13px;
		line-height: 1.1;
	}
}
@media (max-width: 640px) {
	.usp-listing ul  {
		flex-direction: column;
		align-items: flex-start;
	}
	.usp-listing ul li {
		padding-top: 3px;
		padding-bottom: 3px;
	}
	.usp-listing ul li i,
	.usp-listing ul li img {
		position: relative;
		top: -1px;
		margin-right: 10px;
		font-size: 16px;
	}
}

/*
---------------------------
BRANDS
---------------------------
*/

.section-brands {
	border-bottom: 1px solid #eee;
}
.brands {
	position: relative;
	width: 100%;
	overflow: hidden;
	/* text-align: center; */
}
.brands:before,
.brands:after {
	position: absolute;
	top:0;
	width: 200px;
	height: 100%;
	content:'';
	z-index: 9;;
}
.brands:before {
	left:0;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.brands:after {
	right:0;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
@media (max-width: 970px) {
	.brands:before,
	.brands:after {
		width: 80px;
	}
}

.brands .slick-track {
		
}
#brands {
	width: 100%;
	overflow: hidden;
	
}
.brands-carousel div.scrollableArea {
	display: flex;
	align-items: center;
	
}

.brands-carousel img {
	height: 60px;
	-webkit-user-select: none;
			-khtml-user-select: none;
			-moz-user-select: none;
			-o-user-select: none;
			user-select: none;
}
.brands .brands-item{
	padding: 2rem;
}
.brands .brands-item img {
	max-height: 70px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

	@media (max-width: 970px) {
		.brands .brands-item{
			padding: 1rem 1.3rem;			
		}
	}
	@media (max-width: 640px) {
		.brands {
			display: flex;
		  justify-content: space-around;
		  align-items: center;
			flex-wrap: wrap;
		}
		.brands .brands-item {
			text-align: center;
			width: 33% !important;
			padding: .6rem 0.5rem;		
			align-items: none;	
		}
		.brands .brands-item img {
			height: 60px;
		}
		.brands-carousel img {
			height: 50px
		}
	}

/*
---------------------------
TEXT BOX
---------------------------
*/

.textbox {
	margin-top: 0px;
	position: relative;
	margin-bottom: 30px;
	min-height: 100px;
	border: 0px solid #eee;
	background: #f7f7f7;
	padding: 1rem;
	border-radius: 10px 10px 10px 10px;
}

.textbox.no-border {
	border:0;
	margin-bottom: 10px;
}

.textbox-image {
	position: relative;
	display: block;
}

.textbox-image a {
	display: block;
}
a.textbox-image,
.textbox-image img {
	border-radius: 3px 3px;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	z-index: 2;
}


.textbox-image a:hover img {
	opacity: 0.9;
}
.textbox-icon {
	position: absolute;
	top: 0px;
	left: 0rem;
	width: 80px;
	height: 80px;
	font-size: 1.4rem;
	text-align: center;
	padding: 2rem;
	border-radius: 0px;
	z-index: 992;
}
.textbox-icon.icon-small {
	font-size: 1.8rem;
}
.textbox-icon.icon-medium {
	font-size: 3.3rem;
}
.textbox-icon.icon-large {
	font-size: 6.2rem;
}
.textbox-icon i {
	position: absolute;
	left:50%;
	bottom: 50%;
	transform: translateX(-50%) translateY(50%);
}
.textbox-image-border {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 15px;
	border-radius: 0 0 15px 5px;
	z-index: 98;
}
.textbox-section {
	display: block;
	margin-top: 20px;
	padding: 0px 0.5rem;
}

.textbox.team .textbox-section {
	padding: 15px 0rem;
}
.textbox-section .textbox-label {
	font-size: 1.1rem;
	display: block;
	position: relative;
	margin-left:1px;
	margin-bottom: 5px;
}
.textbox-section .textbox-title {
	line-height: 1.2;	
	font-weight: 600;
}
.textbox-section .textbox-title.title-small {
	font-size: 1.3rem;
}
.textbox-section .textbox-title.title-medium {
	font-size: 1.6rem !important;
}
.textbox-section .textbox-title.title-large {
	font-size: 2rem !important;
}
.textbox-section .textbox-title a{
	color: #004A99;
	position: relative;
}
.textbox-section p {
	font-size: 1rem;
	line-height: 1.7;
}

/* Listing */

.textbox-list ul {
	position: relative;
	margin: 0px 0 0 0;
	margin-bottom: 10px;
	padding:0;
	list-style: none;
}
.textbox-list ul li {
	font-size: 1rem;
	position: relative;
	padding: 0 0 0 0rem;
	line-height: 1.5;
	border-bottom: 1px solid rgba(4, 19, 31, 0.11);
}
.textbox-list ul li:last-child {
	border:0;	
}
.textbox-list ul li a {
	display: block;
	padding: 0.5rem 0 0.5rem  1rem;
	font-weight: 700;

}
.textbox-list ul li a:hover {

}
.textbox-list ul li a:before {
	position: absolute;
	left: 0px;
	top: 13px;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
	content: '\f0da';
	font-size: 1rem;
	margin-right: 0px;
	color: #004A99;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 1;
}
.textbox-list ul li a:hover:before {
	-webkit-transform: translate(3px, 0);
  transform: translate(3px, 0);
}
.textbox-image .textbox-date {
	left: 15px;
	bottom: -10px !important;
	position: absolute;
	display: inline-block;
	line-height: 1.1;
	font-size: 0.76rem;
	color: #fff;
	background-color: #362782;
	padding: 5px 10px;
	border-radius: 5px;
	z-index: 99;;
}
.textbox-section p.blog-info,
.text-wrapper p.blog-info {
	line-height: 1.1;
	font-size: 0.96rem;
	font-weight: 400;
}
.blog-info .textbox-date {
	font-size: 0.96rem;
	top: 0;
	color: rgba(4, 19, 31, 0.34);
}
.blog-info a,
.blog-info span {
	display: inline-block;
	margin: 0 0px;
}
.flex-video iframe {
	border-radius: 10px;
}

.textbox-social {
	display: block;
	padding-top: 1rem;
}
.textbox-social ul li {
	display: inline-block;
}
.textbox-social ul li a {
	float: left;
	position: relative;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 100px;
	background-color: #6e6e6e;
}
.textbox-social ul li a i {
	position: absolute;
	bottom: 0%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	color: #fff;
}
.bg-twitter {
	background-color: #658bca !important;
}
.bg-facebook {
	background-color: #44569c !important;
}
.bg-instagram {
	background: rgb(243,165,88);
	background: -moz-linear-gradient(45deg,  rgba(243,165,88,1) 0%, rgba(187,46,123,1) 55%, rgba(127,70,174,1) 100%) !important;
	background: -webkit-linear-gradient(45deg,  rgba(243,165,88,1) 0%,rgba(187,46,123,1) 55%,rgba(127,70,174,1) 100%) !important;
	background: linear-gradient(45deg,  rgba(243,165,88,1) 0%,rgba(187,46,123,1) 55%,rgba(127,70,174,1) 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3a558', endColorstr='#7f46ae',GradientType=1 );

}
.bg-linkedin {
	background-color: #2f78b9 !important;
}
.bg-googleplus {
	background-color: #cf4836 !important;
}
.bg-youtube {
	background-color: #c8312e !important;
}
.textbox.team .button {
/*	visibility: hidden;
	opacity:0;
*/}
.textbox.team:hover .button {
	visibility: visible;
	opacity:1;
}

	@media (max-width: 1130px) {
		.textbox-section .textbox-title {
			font-size: 1.4rem;
		}
		.textbox-section .textbox-title.title-small {
			font-size: 1.1rem;
		}
		.textbox-section p {
			font-size: 0.96rem;
			line-height: 1.7;
		}
	}
	@media (max-width: 970px) {
		.textbox-icon {
			width: 60px;
			height: 60px;
			font-size: 1.2rem;
			text-align: center;
			z-index: 98;
		}
		.textbox-section .textbox-title {
			font-size: 1.2rem !important;
		}
		.textbox-section {
			padding: 10px 0rem !important;
		}
		.textbox-section p {
			font-size: 0.86rem;
			line-height: 1.7;
		}
		.textbox-list ul li {
			font-size: 1rem;
		}
	}
	@media (max-width: 640px) {
		.textbox {
			padding-top: 20px;
			margin-bottom: 10px;
		}
		.textbox-image .textbox-date {
			left: 0px;
			bottom: -10px !important;
			position: absolute;
			display: inline-block;
			line-height: 1.1;
			font-size: 0.76rem;
			color: #fff;
			background-color: #362782;
			padding: 5px 10px;
			border-radius: 0 5px 5px 5px;
			z-index: 99;;
		}
		.textbox-section .textbox-title {
			line-height: 1.2;	
			
		}
		.textbox-section .textbox-title.title-small {
			font-size: 1rem;
		}
		.textbox-section .textbox-title.title-medium {
			font-size: 1.2rem !important;
		}
		.textbox-section .textbox-title.title-large {
			font-size: 1.6rem !important;
		}
	}
	@media (max-width: 440px) {
		.textbox-section {
			padding: 0px 0rem !important;
		}
		.textbox-section .textbox-title.title-medium {
			font-size: 1.1rem !important;
		}
		.textbox-section .textbox-title.title-large {
			font-size: 1.5rem !important;
		}
	}

/* Centered */
.text-center .textbox-section {
	padding: 1rem 1.5rem;
}


/*
---------------------------
TEXT WRAPPER
---------------------------
*/

#page-content {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	margin:auto;
	z-index: 999;
	background: #fff;
	max-width: calc(78em - 10px);
	margin: auto;
	margin-top: -50px;
	border-radius: 15px 40px 0 0;
}


.main-content {
	position: relative;
}
#content {
	position: relative;
	padding: 0 0rem 3rem 1.5rem;
}
	@media (max-width: 1440px) {
		#content {
			padding: 0 0rem 0 0rem;
		}
	}
	@media (max-width: 970px) {
		#page-content {
			border-radius: 0px 40px 0 0;
		}
		#content {
			padding: 0 1.5rem 4rem 0.5rem;
		}
	
	}
	@media (max-width: 640px) {
		#page-content {
			padding-top: 0;
		}
		#content {
			padding: 0;
		}
	}

.text-wrapper {
	position: relative;
	padding-bottom: 1rem;
}
.text-wrapper.first {
	padding-top: 1rem;
}


.large-6 .text-wrapper {
	padding-top: 2rem;
	padding-left: 1.5rem;
}
.large-6.float-left .text-wrapper {
	padding-top: 2rem;
	padding-left: 0rem;
	padding-right: 2rem;
}

	@media (max-width: 1130px) {
		.large-6 .text-wrapper {
			padding-top: 0rem;
			padding-left: 1.5rem;
		}
	}
	@media (max-width: 970px) {
		.large-6 .text-wrapper {
			padding-top: 0rem;
			padding-left: 0rem;
		}
	}

.text-wrapper-intro {
	font-family: 'diavlo';
	font-weight: 700;
	display: inline-block;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 0.86rem;
	color: rgba(24, 7, 31, 0.4) !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}


.text-wrapper-title {
	font-size: 2.4rem;
	line-height: 1.1;
	margin-bottom: 1rem;
	position: relative;
	padding:0;
	font-weight: 700;
}
.text-wrapper-title.title-small {
	font-size: 1.3rem;
	margin-bottom: 5px;
}
.text-wrapper-title.title-medium {
	font-size: 1.8rem;
}
.text-wrapper-title.title-huge {
	font-size: 48px;
}
.text-wrapper-title.sub {
	font-size: 1.4rem !important;
	font-weight: 700;
}
.text-wrapper-title a {
	color: #004A99;
}
.text-wrapper-title a:hover {
	color: #362782;
}

.text-wrapper-subtitle {
	font-size: 1.2rem;
}
.text-wrapper-lead {
	padding-top: 0px;
}
.text-wrapper-lead p {
	font-size: 0.96rem;
	font-weight: 700;
}
.vacature .text-wrapper-lead {
	max-width: 600px
}
.vacature .text-wrapper-lead p {
	font-size: 1.3rem;
	font-family: 'diavlo';
	font-weight: 700;
}

.text-wrapper-content {
	padding-top: 0px;
}
.text-wrapper-content h1,
.text-wrapper-content h2,
.text-wrapper-content h3,
.text-wrapper-content h4,
.text-wrapper-content h5,
.text-wrapper-content h6 {
	text-align: left;
	margin: 40px 0 30px;
	color: #362782;
}

.text-wrapper-content p {
	font-size: 0.96rem;
	font-weight: 400;
}
.modal-body .text-wrapper-content {
	padding-top: 0rem;
	padding-bottom: 2rem;	
}
.text-wrapper-content ul {
	margin-top: -15px;
	margin-left: 30px;
}
.text-wrapper-content ul li {
	font-size: 0.96rem;
}

.text-wrapper-button {
	margin-top: 1rem;
}

/* Listing */
.text-wrapper-listing table tbody td {
	padding-left:0;
}
.text-wrapper-listing ul {
	position: relative;
	top: -15px;
	margin: 0px 0 0 0;
	margin-bottom: 30px;
	padding:0;
	list-style: none;
}
.text-wrapper-listing ul li {
	font-size: 1rem;
	position: relative;
	padding: 0.4rem 0 0 1.5rem;
	line-height: 1.5;
}
.text-wrapper-listing ul li i,
.text-wrapper-listing ul li img {
	position: absolute;
	top: 10px;
	left: 0;
	font-size: 1.2rem;
	color: #362782;
}
.text-wrapper-listing ul li i.icon-check {
	font-size: 1.3rem;
	color: #004A99;
	top: 8px;
	left: -2px;
}
.text-wrapper-listing ul li img {
	top: 13px;
	left: 0px;
}

/* Quotyy */
.text-wrapper blockquote {
	float: right;
	max-width: 50%;
	padding-bottom: 0px;
	letter-spacing: 0;
	border-left: 0;
	padding-left: 0rem;
	margin-bottom: 20px;
	position: relative;
	font-style: none;
	margin: 1em 0 1.25rem;
	text-align: left;
	margin-left: 40px;
	padding: 0em 1rem 0 3rem;
	border-right: 0px solid #ddd;
	border-left: 0px solid #ddd;
}
.text-wrapper blockquote:before {
	position: absolute;
	top: -30px;
	left: 5px;
	content: '';
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMzIDI1IiBoZWlnaHQ9IjI1cHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAzMyAyNSIgd2lkdGg9IjMzcHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxnPjxwYXRoIGQ9Ik0xOC4wMDYsNi41MzhjMC0xLjk3MywwLjY2Mi0zLjU1NCwxLjk4OC00Ljc0M2MxLjMyNi0xLjE5LDIuOTc3LTEuNzg1LDQuOTQ3LTEuNzg1ICAgYzIuNTE3LDAsNC40ODgsMC43OTksNS45MTYsMi4zOTdDMzIuMjg1LDQuMDA0LDMzLDYuMTMsMzMsOC43ODJjMCwyLjcxOS0wLjQyNCw1LjAzMi0xLjI3NSw2LjkzNiAgIGMtMC44NSwxLjkwMy0xLjg2OSwzLjQ4My0zLjA2MSw0Ljc0M2MtMS4xODgsMS4yNTgtMi40MywyLjI0NC0zLjcyMywyLjk1OGMtMS4yOTEsMC43MTQtMi40MTMsMS4yMzktMy4zNjUsMS41ODFsLTMuMjY1LTUuNTA4ICAgYzEuMzYtMC41NDUsMi41MTctMS40MTIsMy40NjgtMi42MDJjMC45NTMtMS4xOSwxLjQ5Ni0yLjQ2NSwxLjYzMy0zLjgyNGMtMS4zNTksMC0yLjYwMi0wLjU5Ny0zLjcyNC0xLjc4NiAgIEMxOC41NjYsMTAuMDksMTguMDA2LDguNTA5LDE4LjAwNiw2LjUzOHogTTAuMzU5LDYuNTM4YzAtMS45NzMsMC42NjMtMy41NTQsMS45ODktNC43NDNDMy42NzQsMC42MDQsNS4zMjQsMC4wMSw3LjI5NSwwLjAxICAgYzIuNTE4LDAsNC40ODgsMC43OTksNS45MTYsMi4zOTdjMS40MjksMS41OTcsMi4xNDMsMy43MjMsMi4xNDMsNi4zNzVjMCwyLjcxOS0wLjQyNCw1LjAzMi0xLjI3NSw2LjkzNiAgIGMtMC44NSwxLjkwMy0xLjg2OSwzLjQ4My0zLjA2LDQuNzQzYy0xLjE4OCwxLjI1OC0yLjQzMSwyLjI0NC0zLjcyNCwyLjk1OEM2LjAwNCwyNC4xMzMsNC44ODMsMjQuNjU4LDMuOTMsMjVsLTMuMjY0LTUuNTA4ICAgYzEuMzYtMC41NDUsMi41MTYtMS40MTIsMy40NjctMi42MDJjMC45NTMtMS4xOSwxLjQ5Ny0yLjQ2NSwxLjYzMy0zLjgyNGMtMS4zNTksMC0yLjYwMi0wLjU5Ny0zLjcyMy0xLjc4NiAgIEMwLjkyLDEwLjA5LDAuMzU5LDguNTA5LDAuMzU5LDYuNTM4eiIgZmlsbD0iIzIzMUYyMCIvPjwvZz48L3N2Zz4=');
	width: 40px;
	height: 40px;
	opacity: 0.2;
}
	
	@media (max-width: 1130px) {
		.text-wrapper-intro {
		
		}
		.text-wrapper-title.title-large {
			font-size: 1.8rem;
		}
		.text-wrapper-title:before {
			display: none;
		}
		.text-wrapper-lead p {
			font-size: 0.96rem;
		}
	}
	
	@media (max-width: 640px) {
		.text-wrapper.contact {
			padding-right: 1rem;
		}
		.text-wrapper-title {
			font-size: 1.6rem;
			line-height: 1.1;
		}
		.text-wrapper-title.title-small {
			font-size: 1.2rem;
		}
		.text-wrapper-title.title-huge {
			font-size: 36px;
		}
		.text-wrapper-title.sub {
			font-size: 1.6rem !important;
		}
		.vacature .text-wrapper-lead {
			max-width: 600px
		}
		.vacature .text-wrapper-lead p {
			font-size: 1.125rem;
			font-family: 'diavlo';
			font-weight: 700;
		}
		.text-wrapper blockquote {
			max-width: 100%;
			margin-left: 0;
			margin-top: 2rem;
			padding-left: 0;
		}
	}

.text-wrapper blockquote p {
	font-size: 1.7rem;
	line-height: 1.4;
	font-weight: 400 !important;
	color: #004A99;
	font-family: 'unit-rounded', sans-serif;

}
.text-wrapper blockquote p strong {
	color: rgba(4, 19, 31, 0.43);
	font-size: 0.96rem;
	font-weight: 400;
	font-style: normal;
}

/* Accordion */
.accordion {
	margin-top: 1.5rem;
	margin-bottom:40px;
	background: none;
}

.accordion-item:first-child>:first-child {
	border-radius: 10px 10px 0 0;
}
.accordion-item:last-child>:last-child {
	border-radius: 0 0 10px 10px;
}
:last-child:not(.is-active)>.accordion-title {
	border-radius: 0 0 10px 10px;
}

.accordion-title {
	font-size: 1rem;
	color: #004A99;
	font-weight: 700 !important;
}
.accordion-title:before {
	right: 1.2rem;
	font-weight: 400;
	font-size: 1.3rem;
	margin-top: -0.7rem;
	color: #362782;
}

.is-active .accordion-title {
	color: #004A99;
}
.is-active .accordion-title:before {
	right: 1.2rem;
	color: #362782;
}

.accordion-title:focus, .accordion-title:hover {
	background-color: rgba(0, 0, 0, 0.04) !important;
	color: #004A99;
}

.accordion .accordion-content {
	padding-top: 0.5rem;
	padding-bottom: 2rem;
	padding-right: 2rem;
}
.accordion .accordion-content p {
	font-size: 1rem;
}

	@media (max-width: 540px) {
		.accordion-title {
			padding: 0.7rem;
			padding-right: 2.5rem;
			font-size: 1rem;
			line-height: 1.1;
		}
		.accordion .accordion-content {
			padding: 1rem 0.7rem;
		}
		.accordion .accordion-content p {
			font-size: 0.96rem;
		}
	}

/* About */
.section-extra .text-wrapper {
	padding-top: 1rem;
	padding-left: 1.5rem;
	padding-right: 2rem;
}
.section-extra .text-wrapper.order-2 {
	padding-left: 60px;
	border-left: 1px solid #eee;
}
.section-extra .text-wrapper p {
	
}
@media (max-width: 1130px) {
	.section-extra .text-wrapper {
		padding-left: 0rem;
	}
	.section-extra .text-wrapper.order-2 {
		padding-left: 40px;
		border-left: 1px solid #eee;
	}
}
	@media (max-width: 970px) {
		.section-extra .text-wrapper.order-2 {
			padding-left: 0px;
			border-left: 0px solid #eee;
		}
	}
	@media (max-width: 640px) {
		.section-extra .text-wrapper {
			padding-top: 1rem;
			padding-left: 0rem;
			padding-right: 0rem;
			
		}
	}

/*
---------------------------
NEWS BOX
---------------------------
*/

.newsbox {
	padding:0;
	border-radius: 0px;
	
	position: relative;
	margin-bottom: 20px;
	margin-top: 0px;
	min-height: 100px;
	
}
.newsbox-section {
	display: block;
	padding: 0px 0rem 0rem;
}

.newsbox-section .newsbox-label {
	font-size: 0.86rem;
	display: block;
	position: relative;
	margin-left:1px;
	margin-bottom: 5px;
}
.newsbox-section .newsbox-title-wrap {
	display: block;
	padding-left: 1rem;
	position: relative;
}
.newsbox-section .newsbox-title {
	line-height: 1.2;
	font-weight: 700;
	font-size: 1.4rem;

}
.newsbox-section .newsbox-title a {
	color: #362782;
}
.newsbox-section .newsbox-date {
	font-family: 'diavlo', sans-serif;
	font-weight: 700;
	display: block;
	font-size: 0.96rem;
	
	line-height: 1.6;
	margin-bottom:10px;
	color: rgba(24, 7, 31, 0.4) !important;
}

.newsbox-section p {
	font-size: 0.96rem;
	line-height: 1.7;
	font-weight: 700;
	margin: 0;
}

.newsbox-more {
	margin-top:0;

	display: inline-block;
	color: #362782;
}

.newsbox-list {
	
}
.newsbox-list li {
	border-bottom: 1px solid #eee;
}
.newsbox-list li:last-child {
	border:0;	
}
.newsbox-list li a {
	border-radius: 0px;
	display: block;
	padding: 1rem 1.5rem 1rem 1rem;
	position: relative;
	-webkit-transition: background 0.2s ease-in-out;
	-moz-transition: background 0.2s ease-in-out;
	-ms-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}
.newsbox-list li a:hover {
	background: rgba(255, 255, 255, 1);	
}
.newsbox-list li a:after {
	color: #003247;
	content: "\e93c";
	margin: 0 .75rem;
	position: absolute;
	bottom: 10px;
	right: 5px;
	font-size: 1.1rem;
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.newsbox-list li a:hover:after {
	opacity: 1;

	transform: translateX(3px) translateY(0);
}
.newsbox-list li a .newsbox-list-image {
	
}
.newsbox-list li a .newsbox-list-label {
	color: rgba(4, 19, 31, 0.33);
	font-size: 0.86rem;
}
.newsbox-list li a .newsbox-list-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color:#003247;
		-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.newsbox-list li a:hover .newsbox-list-title {
	color: #302580;
}
.newsbox-list li a .newsbox-list-lead {
	display: block;
	font-size: 0.96rem;
	line-height: 1.5;
	color: #04131f;
}
	
	@media (max-width: 970px) {
		.newsbox {
			padding: 1.5rem 0.5rem 1rem;
		}
		.newsbox-section .newsbox-title {
			font-size: 1.1rem;
		}
		.newsbox-list li a {
			padding: 1rem 0.5rem 1rem 0.5rem;
		}
		.newsbox-list li a .newsbox-list-title {
			font-size: 0.96rem;
		}
		.newsbox-list li a .newsbox-list-lead {
			display: block;
			font-size: 0.86rem;

		}
		.newsbox-section .newsbox-title-wrap {
			padding-left: 0.5rem;
		}
		.newsbox-more {
			padding-right:1rem;
		}
		.newsbox-more span{
			display: none;
		}
	}
	@media (max-width: 640px) {
		.newsbox {
			border:0;
			padding: 0rem 0rem 0rem;
		}
	
		.newsbox-section .newsbox-title-wrap {
			padding-left: 0rem;
		}
		.newsbox-list li a {
			padding-left:0;
		}
	}

/* Pages (onderliggende pagina's) */

/* Pagebox */
.pagebox {
	width: 100%;
	display: block;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.09);
	margin: 0 0px;
	padding: 1rem 1rem ;
	min-height: 60px;
	border-radius: 10px;
	-webkit-backface-visibility: hidden;
   	backface-visibility: hidden;
   		-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a.pagebox:hover {
	border-color: #004A99;
}
.pagebox .pagebox-image {
	position: relative;
	display: block;
	z-index: 2;
	overflow: hidden;
	border-radius: 0;
	-webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a.pagebox:hover .pagebox-image:after {
	opacity: 0.6;
}
.pagebox .pagebox-description {
	display: block;
	text-align: left !important;
	padding: 1rem 0 0;
	letter-spacing: 0px;
	width: 100%;
	position: relative;
}
.pagebox .pagebox-description .pagebox-date {
	font-size: 0.86rem;
	display: block;
	color: rgba(75, 75, 94, 0.65);
	font-size: 13px;
}
.pagebox .pagebox-description .pagebox-title {
	position: relative;
	display: inline-block;
	font-size: 1rem;
	line-height: 1.1;
	padding: 0em;
	margin: 0 0 0px 0px;
	font-weight: 700;
}
.pagebox .pagebox-description .pagebox-title small {
	display: block;
	line-height: 1.2;
}
.pagebox .pagebox-description p  {
	display: block;
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 400;
	color: #000;
	margin: 0;
}
.pagebox .pagebox-button {
	position: absolute;
	right:2rem;
	bottom: 0.76rem;
	font-size: 1.125rem;
	transform: translateX(0px) translateY(0%);

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.pagebox:hover .pagebox-button {
	transform: translateX(5px) translateY(0%);
}

	@media (max-width: 500px) {
		.pagebox {
			padding: 1rem;
			min-height: 40px;
			margin-bottom: 1rem;
		}
		.pagebox .pagebox-description {

		}
		.pagebox .pagebox-description .pagebox-title {
			font-size: 1rem;
			padding-top:0;
			margin: 0 0 5px 0px;
		}
		.pagebox .pagebox-description {
			padding-top: 1rem;
		}
		.pagebox .pagebox-description p  {
			font-size: 0.86rem;
		}
	}



/*
-------------------------------
 CAROUSEL (slick)
-------------------------------
*/

.objects-carousel .column {
	outline: 0;
}
.slick-slide {
	outline: 0 !important;
}
.slick-slider .slick-dots {
	bottom: -35px;
	opacity: 1;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}
.slick-slider:hover .slick-dots {
	opacity: 1;
}

/* Slick Arrows */
.slick-prev,
.slick-next {
	z-index: 99 !important;
}
.slick-prev {
	left:0px;
	border-radius: 0px 0 0 0px;
}
.slick-prev:before {
	content: '◀';
}
.slick-next {
	right: 0px;
	border-radius: 0px 0px 0px 0;
}
.slick-next:before {
	content: '▶';
}

.slick-slider .slick-arrow {
	background-color: rgba(69, 78, 70, 0.3);
	width: 50px;
	height: 80px;
	opacity: 0;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
}
.slick-slider:hover .slick-arrow {
	opacity: 1;
}

/* Slick Dots */
.slick-dots li button {
	width: 10px;
	height: 11px;
	padding: 0px;
	margin: 0;
	border-radius: 0;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 5px;
  width: 10px;
  height: 10px;
  content: '•';
  text-align: center;
  opacity: .25;
  font-size: 0.76rem;
  color: rgba(0, 0, 0, 0.31);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.slick-dots li.slick-active button:hover:before {
	opacity: .2;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #004A99;
}

.quotes-carousel .slick-prev {
	border-radius: 0px 0px 0px 0;
}
.quotes-carousel .slick-next {
	border-radius: 0px 0 0 0px;
}

.quote-wrapper,
.quotes-carousel {
	position: relative;
	z-index: 4 !important;
}
.quote-wrapper blockquote {
	text-align: center;
	border-left: 0;
	font-size: 1.4rem;
	line-height: 1.3;
	max-width: 50%;
	margin: auto;
	padding: 1rem 0;
}
.quote-wrapper blockquote p {
	font-family: 'diavlo';
	color: rgba(24, 7, 31, 0.6);

	font-size: 1.4rem;
}	
.quote-wrapper blockquote footer {
    margin: auto;
	margin-top: 2rem;
	font-size: 0.96rem;
    text-align: left;
    width: 260px;
    font-weight: 400;
}
.quote-wrapper blockquote footer .name {
	font-weight: 700 !important;
}
.quote-wrapper blockquote footer span {
	font-weight: 400;
}
.quote-wrapper .quote-image {
   float: left;
    width: 64px;
    height: 64px;
    position: relative;
    top: -8px;
    margin-right: 10px;
    margin-left: 30px;
}

	@media (max-width: 970px) {
		.quote-wrapper blockquote {
			max-width: 75%;
		}
	}
	@media (max-width: 640px) {
		.quote-wrapper blockquote {
			max-width: 90%;
			font-size: 1rem;
		}
	}
	

/* Controls
---------------------------------------------------------------------- */

#objects {
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.controls {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin-left:0;
	list-style: none;
	background: transparent;
	border:0;
	padding: 1rem 15px;
	margin: 0 0rem 1rem;
}
.control {
	position: relative;
	width: 100%;
	text-align: center;
	display: block;
	font-size: 0.96rem;
	font-weight: 600;
	padding: 0.66rem 1rem 0.5rem;
	background:transparent;
	border: 1px solid rgba(0, 0, 0, 0);
	margin: 0 10px 0px 0px;
	border-radius: 100px;
	color: #004A99;
}
.control:hover {
	border-color: rgba(31, 55, 69, 0.14);
}

.mixitup-control-active {
	background: #362782;
	color: #fff;
	font-weight: 600;
}
.project-carousel .slick-list {
	padding: 2rem 0 0;
}
.project-carousel .slick-arrow {
	background-color: #362782;
	width: 50px;
	height: 80px;
}
.project-carousel .slick-arrow:hover {
	background-color: #362782;
}	
.project-carousel .slick-prev {
	left: 0px;
	border-radius: 0px 5px 5px 0px;
}
.project-carousel  .slick-next {
	right: 0px;
	border-radius: 5px 0px 0px 5px;
}
.project-carousel  .slick-slide {
	padding: 1rem 1.5rem;
}

	@media (max-width: 1130px) {
		.project-carousel .slick-prev {
			left:0px;
			border-radius: 0px 5px 5px 0px;
		}
		.project-carousel  .slick-next {
			right: 0px;
			border-radius: 5px 0px 0px 5px;
		}
		.controls {
			margin: 0 0rem;
		}
	}
	@media (max-width: 970px) {
		.project-carousel  .slick-slide {
			padding: 1rem 1rem;
		}
		.controls {
			margin: 0;
		}
		.controls li {
			display: inline-block;
		}
	}
	@media (max-width: 640px) {
		.project-carousel  .slick-slide {
			padding: 1rem .5rem;
		}
		.controls {
			width: 100%;
			overflow: hidden;
			overflow-x: scroll;
			-webkit-overflow-scrolling: touch;
		}
	}
	@media (max-width: 440px) {
		.project-carousel  .slick-slide {
			padding: 0rem .5rem;
		}
	}

.mix {
	width: 33.333%;
	float: left;
	padding: 0 0.96rem;
}

	@media (max-width: 970px) {
		.mix { width: 50%; }
	}
	@media (max-width: 767px) {
		.mix { width: 50%; }
	}
	@media (max-width: 500px) {
		.mix { width: 100%; }
	}

/*
-------------------------------
 OBJECTS (overview)
-------------------------------
*/

#objects {
	min-height: 400px;
}

.object {
	width: 100%;
	display: block;
  position: relative;
  border: 0px solid #fff;
	margin: 10px 0px 20px;
	padding: 1rem 1rem;
	min-height: 380px;
	border-radius: 0px !important;
	z-index: 99;
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.mix .object {
	min-height: 400px;
}
.object:before {
	position: absolute;
	top: 0;
	left:0;
	right:0;
	bottom:0;
	border: 2px solid rgba(31, 55, 69, 1);
	border-radius: 0px !important;
	content:'';
	opacity: 0.09;
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.object:hover:before {
	opacity: 0.3;
}

.lightup .object:before {
	opacity: 0.32;
}
.object-image {
	overflow: hidden;
	position: relative;
	display: block;
}

.object-image a {
	display: block;
}
a.object-image,
.object-image img {
	border-radius: 0px;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.object-image:hover img,
.object-image a:hover img {
	opacity: 0.9;
}

.object-image-border {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;

}
.object-section {
	display: block;
	padding: 15px 0rem 4rem;
}
.object-section .textbox-label {
	font-size: 1.1rem;
	display: block;
	position: relative;
	margin-left:1px;
	margin-bottom: 5px;
	letter-spacing: 3px;
}
.object-section .object-title {
	line-height: 1.2;
	font-weight: 400;
	font-size: 1.2rem;
}

.object-section .object-title a{
	color: #404040;
	position: relative;
}
.object-lead {
	display: block;
	max-width: 100%;
  height: 76.2px;
  font-size: 0.96rem;
	line-height: 1.9;
  /* Fallback for non-webkit */
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.object-section p {
	font-size: 0.86rem;
	line-height: 1.7;
}
.object-footer {
	position: absolute;
	left:2px;
	bottom: 0;
	width: calc(100% - 4px);
	padding: 0.5rem 1rem;
	text-align: left;
	border-top: 1px solid #eee;
}
.object-button {
	font-size: 0.86rem !important;
}

/* Detail */
.object-detail {
	padding: 0rem;
}
.object-detail-title-wrapper {
	position: relative;
	padding-top:0rem;
}
.object-detail-label {
	font-weight: 700;
}
.object-detail-title {
	line-height: 1.2;
	position: relative;
	font-size: 2rem;
}
.object-detail-title span {
	display: inline-block;
}
.object-detail-lead {
	padding-top: 0.7rem;
}
.object-detail-lead p {
	font-size: 1.125rem;
	font-weight: 600;
}
.object-detail-bar {
	border-radius: 10px;
	padding: 1rem 2rem 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.object-detail-bar h4 {
	font-size: 1.4rem;
	display: inline-block;
}	
.object-detail-button {
	margin-top: 10px;
}
.object-detail-link i {
	margin-left: 5px;
}

.object-detail-info {
	display: block;
	padding: 0.5rem 1rem 1rem 2rem;
	border-left: 2px solid #eee;
	font-size: 1rem;
}
.object-detail-info dt {
	margin-top: 10px;
	margin-bottom:0;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	opacity: 0.3;
}
.object-detail-info dd .label {
	margin: 5px 5px 0 0;
	font-size: 0.86rem;
	border-radius: 0;
}
.object-detail-description {
	display: block;
}
.object-buttons {
	border-top: 1px solid #e5e5e5;
}
.object-buttons .button {
	border-radius: 0 !important;
	height: 100px;
	overflow: hidden;
	padding: 2.7rem 2rem; 
	font-size: 0.86rem;
	box-shadow: none !important;
	background: #fff;
	border:0;
}
.object-buttons .button i {
	top: 42px
}
.object-buttons .button.lefty {
	border-right: 1px solid #e5e5e5 !important;
}
.object-buttons .button.lefty i {
	left: 2rem;
}

.object-buttons .button.righty {
	border-left: 1px solid #e5e5e5;
}
.object-buttons .button.righty i {
	right: 2rem;
}
.object-buttons .button .icon-icons {
	position: relative;
	top: 2px;
}
.object-buttons .button.disabled.secondary, 
.object-buttons .button[disabled].secondary {
	opacity: 1;
}
.object-buttons .button.disabled {
	background: #fff;
	color: rgba(14, 10, 44, 0.29);
	opacity: 1;
}
.object-buttons .button.disabled i {
	opacity: 0.2;
}
	
	@media (max-width: 1440px) {
		.mix .object {
			min-height: 380px;
		}
	}
	@media (max-width: 1024px) {
		.object-buttons .button {
			padding: 2.4rem 2rem; 
			font-size: 0.76rem;
			height: 88px;
			}
		.object-buttons .button i {
			top: 34px;	
		}
		.object-buttons .button.lefty i {
			left: 1rem;
		}	
		.object-buttons .button.righty i {
			right: 1rem;
		}	
	}
	@media (max-width: 970px) {
		.mix .object {
			min-height: 340px;
		}
		.object-section {
			display: block;
			padding: 15px 0rem 4rem;
		}
		.object-lead {
			display: block;
			max-width: 100%;
		  height: 71.2px;
		  font-size: 0.86rem;
			line-height: 1.6;
		  /* Fallback for non-webkit */
		  -webkit-line-clamp: 3;
		  -webkit-box-orient: vertical;
		  overflow: hidden;
		  text-overflow: ellipsis;
		}
		.object-detail-info {
			display: block;
			padding: 0.5rem 1rem 1rem 1.5rem;
			border-left: 2px solid #eee;
			font-size: 0.96rem;
		}
		.object-detail-info dd .label {
			font-size: 0.76rem;
		}
	}

	@media (max-width: 640px) {
		.mix .object {
			min-height: 380px;
		}
		.object-detail-info {
			display: block;
			padding: 0.5rem 1rem 1rem 0rem;
			border-left: 0px solid #eee;
			font-size: 0.96rem;
		}
		.object-detail-info dd .label {
			font-size: 0.96rem;
		}
		.object-detail-bar {
			border-radius: 10px;
			padding: 1rem 1rem 1rem 1rem;
			display: flex;
			align-items: center;
			justify-content: space-between;
			margin-top: 2rem;
			flex-direction: column;
		}
	}

/*
-------------------------------
 PRODUCTS (overview)
-------------------------------
*/
.product {
	width: 100%;
	display: block;
  position: relative;
  border: 0px solid #fff;
	margin: 0px 0px 30px;
	padding: 1rem 1rem;
	min-height: 400px;
	border-radius: 0px !important;
	background: #fff;
	z-index: 99;
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.product:before {
	position: absolute;
	top: 0;
	left:0;
	right:0;
	bottom:0;
	border: 1px solid #04131f;
	content:'';
	opacity: 0.08;
	border-radius: 0px !important;
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.product:hover:before {
	opacity: 0.3;
}
.product-image {
	overflow: hidden;
	position: relative;
	display: block;
}
.product-image a {
	display: block;
}
a.product-image,
.product-image img {
	border-radius: 0px;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.product-image:hover img,
.product-image a:hover img {
	opacity: 0.9;
}
.product-image-border {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
}
.product-label {
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 99;
	border-radius: 1000px;
	width: 64px;
	height: 64px;
	padding-top: 1.2rem;
	font-size: 1rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0px;
	text-align: center;
	color: #fff;
}
.product-section {
	display: block;
	padding: 15px 0rem 3rem;
}
.product-section .product-title {
	line-height: 1.2;
	font-weight: 700;
	font-size: 1.2rem;
}
.product-section .product-title a{
	color: #404040;
	position: relative;
}
.product-section p {
	font-size: 0.96rem;
	line-height: 1.9;
}
.product-price-old {
	display: inline-block;
	font-size: 0.96rem;
	text-decoration: line-through;
	margin-right: 10px;
	color: #404040;
}
.product-price-new {
	display: inline-block;
	font-size: 1.4rem;
	font-family: 'Roboto';
	font-weight: 700;
}

.product-footer {
	position: absolute;
	left:1px;
	bottom: 0;
	width: calc(100% - 2px);
	padding: 1rem;
	text-align: right;
	border-top: 1px solid #eee;
}

/* Product detail */
.product-detail {
	padding-top: 1rem;	
}
.product-detail-section {
	display: block;
	padding: 0rem 0rem 2rem;
}

.product-detail-section .product-detail-title {
	line-height: 1.2;
	font-weight: 700;
	font-size: 1.8rem;
}
.product-detail-section hr {
	max-width: 100%;
	margin: 10px 0 10px;
	border-width: 1px;
	border-color: #eee;
}

.product-detail-section .product-title a{
	color: #404040;
	position: relative;
}
.product-detail-section p {
	font-size: 0.96rem;
	line-height: 1.9;
}
.product-detail-price {
	
}
.product-detail-price-old {
	display: block;
	font-size: 1.2rem;
	text-decoration: line-through;
	margin-right: 20px;
}
.product-detail-price-new {
	display: block;
	font-size: 2rem;
	font-family: 'Roboto';
	font-weight: 700;
}

.product-detail-order {
	display: block;
	padding-top: 1rem;
}
.product-detail-order-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.product-detail-order input {
	height: 45px;
}

.product-detail-footer {
	position: absolute;
	left:0;
	bottom: 0;
	width: 100%;
	padding: 1rem;
	text-align: center;
}

/* Images */
.product-detail-label {
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 99;
	border-radius: 1000px;
	width: 64px;
	height: 64px;
	padding-top: 1.2rem;
	font-size: 1rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0px;
	text-align: center;
	color: #fff;
}

.product-detail .product-slides {
	border: 1px solid rgba(4, 19, 31, 0.1);
	border-radius: 0px;
	background: #fff;
}
.product-slides-nav {
	margin: -1px 0;
	border: 1px solid rgba(4, 19, 31, 0.1);
	border-radius: 0px;
	padding: 0.5rem;
	background: #fff;
}
.product-slides-nav .slick-slide {
	border-radius: 0px;
	padding: 5px;

}
.product-slides-nav .slick-current {
	
}

	@media (max-width: 1440px) {
		.product {
			padding: 1rem 1rem;
			min-height: 320px;
		}
		.product-section {
			display: block;
			padding: 15px 0rem 3rem;
		}
		.product-section .product-title {
			font-size: 1rem;
		}
		.product-footer {
			padding: 0.5rem 1rem;
		}
	}
	@media (max-width: 970px) {
		.product-detail-section {
			display: block;
			padding: 2rem 0rem 3rem;
		}
	}
	@media (max-width: 640px) {
		.product-detail-section {
			display: block;
			padding: 2rem 0rem 0rem;
		}
	}


/* Foto Overzicht
------------------------------- */
.photo .caption {
	font-size: 0.8rem;
	line-height: 1.1;
	color: #888 !important;
	text-align: center;
	width: 100%;
	display: block;
	font-style: italic;
	padding-top: 0px;
}

.photo {
	display: inline-block;
	margin: 0px 0 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	width: 50%;
}
.box-wrapper.case .photo {
	border-bottom: 0px solid #d90024;
}
.photo.left {
	float: left;
	margin-right: 30px;
}
.photo.right {
	float: right;
	margin-left: 50px;
}
/* Round */
.photo a.round {
	border-radius: 100%;
	overflow: hidden;
}
.photo img {
	border-radius: 10px;
}

/* Sizes */
.photo-25 {
	width: 25%;
}
.photo-33 {
	width: 31.5%;
}
.photo-50 {
	width: 50%;
}
.photo-75 {
	width: 75%;
}
.photo-100 {
	width: 100%;
	margin-left: 0 !important;
}

	@media (max-width: 500px) {
		.photo {
			width: 33%;
		}
	}

.photo a {
	overflow: hidden;
	
	display: block;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.photo a img {
	border-radius: 10px;
	margin:0px 0px 0px 0px;
	border: 0px;
	padding: 0px;
	display: block;
  	max-width: 100%;
  	opacity: 1;
  	filter: alpha(opacity=100);
  	z-index: 7;
}

.photo a:hover img {
	padding: 0px;
	border: 0px solid #ddd;
}
.photo a:hover img.grayscale {
	-webkit-filter: grayscale(0%) !important;
	filter: none !important;
}

.photo a:after {
	position: absolute;
	top: 50%;
	left:50%;
	margin-top: 0px;
	margin-left: 0px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100px;
	text-align: center;
	font-family: 'Font Awesome 5 Pro';
	content: '\f067';
	background: #362782;
	color: #fff;
	z-index: 99;
	opacity: 0;
	transform: translateX(-50%) translateY(-50%);
	font-size: 1.4rem;
	-webkit-transition: opacity 0.3s ease-out;  /* Saf3.2+, Chrome */
	-moz-transition: opacity 0.3s ease-out;  /* FF4+ */
	-ms-transition: opacity 0.3s ease-out;  /* IE10? */
	-o-transition: opacity 0.3s ease-out;  /* Opera 10.5+ */
	transition: opacity 0.3s ease-out;
}

	@media (max-width: 970px) {
		.photo a:after {
			width: 40px;
			height: 40px;
			line-height: 40px;
		}
	}


.photo a.round:after {
		border-radius: 100%;
}
.photo a:hover:after {
	opacity: 1;
}
.photo a.item-more:after {
	background: rgba(0, 163, 230, 0.9);
}
.photo.right {
	float: right;
	margin: 20px 0px 20px 40px;
}
.photo-wide {
	float: left;
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	overflow:hidden;
	position: relative;
}
.photo-wide img {
	margin:0px 0px 0px 0px;
	border: 0px;
	padding: 0px;
	display: block;
  	max-width: 100%;
  	opacity: 1;
  	filter: alpha(opacity=100);
}
.photo-slides {
	/* box-shadow: 0 40px 100px -20px rgba(0, 0, 10, 0.2), 0 30px 70px -30px rgba(0, 0, 0, 0.4); */
}
.photo-slides a.gallery-item {
	margin-bottom: 0em;
}
.gallery {
	padding-top: 30px;
}
.gallery .gallery-item {
	margin-bottom: 20px;
}
.photo-gallery {
	display: block;
	margin: 30px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
/* .photo-gallery:before {
	position: absolute;
	bottom: -60px;
	left: -100px;
	width: 260px;
	height: 260px;
	content: '';
	background:  url('../images/icon.svg') no-repeat center left;
	background-size: contain;
	z-index: -1;
	opacity: 0.1;
} */

.float-right .photo-gallery:before {
	left: auto;
	right: -100px
}
.large-6 .photo-gallery {
	margin-top:0;	
}

.photo-gallery.with-padding {
	margin: 0;
	padding: 2rem 3rem;
}

	@media (max-width: 1024px) {
		.photo-gallery.with-padding {
			padding: 2rem 1rem 2rem 0;
		}
	}
	@media (max-width: 970px) {
		.large-6 .photo-gallery:before,
		.large-6 .photo-gallery:after {
		  display: none;
		}
	}
	@media (max-width: 640px) {
		.large-6 .photo-gallery {
			margin-top:20px;	
		}
	}
	
.photo-gallery img {
	border-radius: 0px;
	margin:0px 0px 0px 0px;
	border: 0px;
	padding: 0px;
	display: block;
  	max-width: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

	/* box-shadow: 0 40px 100px -20px rgba(0, 0, 10, 0.2), 0 30px 70px -30px rgba(0, 0, 0, 0.4); */
}
.photo-gallery a,
a.gallery-item {
	display: block;
	position: relative;
	margin-bottom: 30px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.photo-gallery img {
	border-radius: 10px;
}
.photo-gallery a img,
.photo-slides img  {
	margin-bottom: 10px;
}

/* Round */
.photo-gallery a.round {
	border-radius: 100%;
	overflow: hidden;
}

/* Objects */
.object-detail .photo-gallery {
	margin: 0;
}

/* Gallery Bar */
.gallery-slides .gallery-item {
	margin: 0;
}
.gallery-slides .gallery-item:before {
	display: none;
}
.gallery-slides .gallery-item img {
	border-radius: 100 !important;
	margin: 0;
	opacity: 0.8;
		-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.gallery-slides .gallery-item:hover img {
	opacity: 1;
}

/* Products */
.product-detail .photo-gallery {
	margin-top:0;
	text-align: center;
}
.product-detail .photo-gallery img {
	margin:0 auto;
}
.product-detail .photo-gallery a, .product-detail a.gallery-item {
	margin-bottom: 0;
	border:0;
}

.photo-gallery a:after {
	position: absolute;
	top: 50%;
	left:50%;
	margin-top: 0px;
	margin-left: 0px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100px;
	text-align: center;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: '\f067';
	background: #362782;
	color: #fff;
	font-size: 1.4rem;
	z-index: 9;
	opacity: 0;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: opacity 0.3s ease-out;  /* Saf3.2+, Chrome */
	-moz-transition: opacity 0.3s ease-out;  /* FF4+ */
	-ms-transition: opacity 0.3s ease-out;  /* IE10? */
	-o-transition: opacity 0.3s ease-out;  /* Opera 10.5+ */
	transition: opacity 0.3s ease-out;
}
	@media (max-width: 970px) {
		.photo-gallery a:after {
			width: 40px;
			height: 40px;
			line-height: 40px;
		}
		.photo-gallery img {
		
		}
	}

.photo-gallery a.round:after {
	border-radius: 100%;
}

.photo-gallery a:hover:after {
	opacity: .8;
}

.photo-gallery a:hover img {
	padding: 0px;
}
.photo-gallery:hover img.grayscale {
	-webkit-filter: grayscale(0%) !important;
	filter: none !important;
}
.collapse.photo-gallery a,
.collapse.photo-gallery a.gallery-item,
.collapse.photo-gallery img {
	border-radius: 0 !important;
	margin-bottom: 0px;
}
.collapse.photo-gallery {
	margin-top: 0;
}


/*
---------------------------
IMAGE BANNERS
---------------------------
*/

.imagebox {
	float: left;
	width: 100%;
	display: block;
  position: relative;
  border: 0px solid #fff;
	min-height: 260px;
	margin-bottom: 20px;
	position: relative;
	z-index: 98 !important;
	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		
		
}
.imagebox.with-shadow {
	/* box-shadow: 0 40px 100px -20px rgba(0, 0, 10, 0.2), 0 30px 70px -30px rgba(0, 0, 0, 0.4); */
}
a.imagebox:hover {
	z-index: 99 !important;
}
.collapse .imagebox {
	margin-bottom: 0;
}

a.imagebox {
	cursor: pointer;
}

.imagebox .imagebox-image {
	position: absolute;
	top: 0px;
	left:0px;
	bottom: 0px;
	right: 0px;
	z-index: 2;
	backface-visibility: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.imagebox .imagebox-image:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background:#000;
	content: '';
	-webkit-transition: opacity 0.6s ease-in-out;
	-moz-transition: opacity 0.6s ease-in-out;
	-ms-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}

.imagebox .imagebox-image.bright:after {
	opacity: 0;
}
a.imagebox:hover .imagebox-image:after {
	opacity: 0;
}
.imagebox .imagebox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0.08;
	z-index: 3;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
a.imagebox:hover .imagebox-overlay {
	opacity: 0;
}

/* Shade */
.imagebox .image-shade-top,
.imagebox .image-shade-bottom {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 3;
	opacity: 0.6;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.imagebox .image-shade-bottom {
	background: rgb(24,7,31);
	background: linear-gradient(0deg, rgba(24,7,31,1) 0%, rgba(24,7,31,0) 80%);
}

.imagebox .imagebox-overlay
a.imagebox:hover .image-shade-top,
a.imagebox:hover .image-shade-bottom {
	opacity: 0;
}

.imagebox,
.imagebox .imagebox-image,
.imagebox .imagebox-image:after,
.imagebox .imagebox-overlay,
.imagebox .image-shade-top,
.imagebox .image-shade-bottom {
	border-radius: 10px !important;
}

/* Label */
.imagebox-label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 13px;
	text-align: center;
	padding: 0.3rem 1rem;
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	z-index: 98;
	
}

.imagebox-icon {
	position: absolute;
	top: 1rem;
	left: 0rem;
	width: 70px;
	height: 70px;
	font-size: 1.4rem;
	text-align: center;
	padding: 2rem;
	border-radius: 0px;
	z-index: 98;
}
.imagebox-icon.icon-small i:before{
	font-size: 2.4rem;
}
.imagebox-icon.icon-medium i:before{
	font-size: 3.6rem;
}
.imagebox-icon.icon-large i:before{
	font-size: 5.2rem;
}

.imagebox-icon i {
	position: absolute;
	left:50%;
	bottom: 50%;
	transform: translateX(-50%) translateY(50%);
}

.imagebox .imagebox-description {
	position: absolute;
	top: 0;
	left:0;
	bottom: 0px;
	right: 0px;
	width: 100%;
	z-index: 4;
	border-radius: 0;
	overflow: hidden;
	
}
.imagebox:hover .imagebox-description {
	opacity: 1;
}
.imagebox .imagebox-description .imagebox-title-wrap {
	position: absolute;
	top: 0;
	left:0rem;
	width: 100%;
	padding: 1rem 2.5rem 0rem 1rem;
}
.imagebox-description.text-center .imagebox-title-wrap {
	text-align: center;
	padding: 0rem 2rem 0rem 1rem;
}

/* Top */
.imagebox .imagebox-description .imagebox-title-wrap.top {
	top: 0;
	left:0rem;
	padding: 1rem 2rem 2rem 2rem;
	transform: translateX(0) translateY(0%);
}

/* Bottom */
.imagebox .imagebox-description .imagebox-title-wrap.bottom {
	top: auto;
	bottom:0;
	left:0rem;
	padding: 1.5rem 1rem 1rem 1.5rem;
	transform: translateX(0) translateY(0%);
	background: transparent;
	border-radius: 0 0 10px 10px;
	/* -webkit-backdrop-filter: blur(20px); */
	-webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.side-content .imagebox .imagebox-description .imagebox-title-wrap.bottom {
	padding-left: 1rem;
}

.imagebox:hover .imagebox-description .imagebox-title-wrap.bottom {
	background: #362782;
}


.imagebox .imagebox-description .imagebox-category {
	display: block;
	font-size: 0.76rem;
	line-height: 1;
	font-weight: 600;
	padding: 0em 0em 0 0;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #fff;
}
.imagebox .imagebox-description .imagebox-category i {
	position: relative;
	top: 2px;
	font-size: 1rem;
}
.imagebox .imagebox-description .imagebox-title {
	position: relative;

	display: block;
	/* font-family: 'atten-new', sans-serif !important; */
	font-size: 22px;
	font-weight: 600;
	
	/* text-transform: uppercase;
	letter-spacing: 2px; */
	line-height: 1.1;
	color: #fff;
	margin: 0;
	padding: 0em 0 5px;
	max-width: 94%;
		/* transform: translateX(0) translateY(30px); */
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.side-content .imagebox .imagebox-description .imagebox-title {
	font-size: 20px;
	font-weight: 600;
}

a.imagebox:hover .imagebox-description .imagebox-title {
	transform: translateX(0) translateY(0px);
}
.imagebox .imagebox-description .imagebox-title-wrap p {
	font-family: 'diavlo';
	padding: 0;
	margin:0;
	line-height: 1.6;
	font-size: 1rem;
	font-weight: 400;
}

a.imagebox .imagebox-description .imagebox-title-wrap .shape {
	-webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1)
}
a.imagebox:hover .imagebox-description .imagebox-title-wrap .shape {
	visibility: hidden;
	opacity:0;
}

.imagebox .imagebox-description p {
	margin-top: 1rem;
	color: #fff;
	-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.imagebox .imagebox-description.visible p {
	visibility: visible;
	opacity:1;
}
[data-whatinput='mouse'] a.imagebox:hover .imagebox-description p {
	visibility: visible;
	opacity:1;
}

.imagebox .imagebox-button {
	position: absolute;
	bottom: 0rem;
	right:0%;
	width: 100%;
	text-align: right;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	padding: 1rem 1.5rem 0.76rem;
	visibility: visible;
	opacity: 0.4;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.imagebox .imagebox-button i {
	position: relative;
	top: 1px;
}
.imagebox:hover .imagebox-button {
	visibility: visible;
	opacity: 1;
}

/* Centered */
.imagebox .imagebox-description.text-center .imagebox-title-wrap {
	width: 100%;
	max-width: 100%;
	text-align: center !important;
	padding: 6rem 2rem 3rem 2rem;
}

/* With Logo */
.with-logo .imagebox-icon {
	top: auto;
	top: -5.4rem;
	left: -17px;
	box-shadow: none;
	width: 180px;
	height:180px;
}
.imagebox.with-logo {
	border-bottom: 0px solid #362782;
}
.imagebox.with-logo .imagebox-description .imagebox-title small {
	margin-left:0.6rem;	
	font-weight: 700;
}
	
/* Imagobox Heights */
.blocks-small .imagebox {
	min-height: 200px;
}
.blocks-medium .imagebox {
	min-height: 300px;
}
.blocks-large .imagebox {
	min-height: 400px;
}
.blocks-huge .imagebox {
	min-height: 500px;
}
	
	@media (max-width: 1460px) {
		.imagebox .imagebox-description .imagebox-title {
			font-size: 22px;
			line-height: 1.1;
			color: #fff;
			margin: 0;
			padding: 0em 0 5px;
			max-width: 90%;	
		}
	}
	@media (max-width: 1130px) {
		.blocks-small .imagebox {
			min-height: 160px;
		}
		.blocks-medium .imagebox {
			min-height: 220px;
		}
		.blocks-large .imagebox {
			min-height: 400px;
		}
		.blocks-huge .imagebox {
			min-height: 500px;
		}
		.imagebox-icon {
			position: absolute;
			top: 0rem;
			left: 0rem;
		}
		.imagebox .imagebox-overlay
		a.imagebox:hover .image-shade-top,
		a.imagebox:hover .image-shade-bottom {
			opacity: .6;
		}

		.imagebox .imagebox-description .imagebox-title-wrap.bottom {
			top: auto;
			bottom:0;
			left:0rem;
			padding: 1rem 1rem 1rem 1rem;
			transform: translateX(0) translateY(0%);
		}
		.imagebox:hover .imagebox-description .imagebox-title-wrap.bottom {
			background: transparent;
		}
		.imagebox .imagebox-description .imagebox-title {
			font-size: 1.250rem;
			max-width: 100%;	

		}
		
		.imagebox .imagebox-description .imagebox-title-wrap p {
			line-height: 1.6;
			font-size: 0.86rem;
		}
	}
	@media (max-width: 970px) {
		.imagebox-icon i:before{
			margin-left:0;
		}
		.imagebox-icon.icon-small i:before{
			font-size: 2rem;
		}
		.imagebox-icon.icon-medium i:before{
			font-size: 3.2rem;
		}
		.imagebox-icon.icon-large i:before{
			font-size: 4.7rem;
		}
		
		.imagebox .imagebox-description .imagebox-title-wrap.bottom  {
			padding: 1rem 1.5rem 0.76rem 1rem;
		}
		.imagebox .imagebox-description .imagebox-title {
			font-size: 1.4rem;
		}
		
		
		.blocks-small .imagebox {
			min-height: 160px;
		}
		.blocks-medium .imagebox {
			min-height: 220px;
		}
		.blocks-large .imagebox {
			min-height: 320px;
		}
		.blocks-huge .imagebox {
			min-height: 320px;
		}
	}
	@media (max-width: 640px) {
		.imagebox {
			margin-bottom: 10px;
		}
		.imagebox .imagebox-description .imagebox-title-wrap.bottom  {
			padding: 1rem 1rem 0.76rem 1rem;
		}
		.imagebox .imagebox-description .imagebox-title {
			font-size: 1.125rem;
			max-width: 100%;	
		}
		.imagebox .imagebox-description p  {
			display: none;
		}
		.imagebox .imagebox-button {
			visibility: visible;
			opacity: 1;	
			font-size: 1rem;
			padding: 1rem 1rem 1rem;
		}	
	}
	
	
	@media (max-width: 440px) {
		
		.blocks-small .imagebox {
			min-height: 120px;
		}
		.blocks-medium .imagebox {
			min-height: 220px;
		}
		.blocks-large .imagebox {
			min-height: 300px;
		}
		.blocks-huge .imagebox {
			min-height: 240px;
		}
		.imagebox .imagebox-description .imagebox-title {
		
		

		}
	}
	@media (max-width: 370px) {
		.imagebox .imagebox-description .imagebox-title {
			font-size: 1.1rem;
		}
	}
/* List */
.imagebox-list ul {
	list-style: none;
	margin:0;
	margin-top: 1rem;
}
.imagebox-list ul li {
	color:#fff;
	font-size: 1.3rem;
}
.imagebox-list ul li i {
	color:#362782;
}

/* Zijbalk */

#sticky {
	left: 0 !important;
}
.side-content {
	margin-top: 20px;
	padding-right: 2rem;
	padding-left: 0;
	padding-bottom: 1rem;
}
.side-content #sidebar {
	width: 100%;
	display: block;
	padding: 0rem  0 2em;
	margin-top: 0px;
	z-index: 88;
}
.side-content .page-title {
	font-size: 1.4em;
	padding-left: 1em;
	padding-bottom: 10px;
}

#sidebar .sticky {
	width: 100%;
}

	@media (max-width: 970px) {
		.side-content  {
			margin-top: 20px;
			padding: 0 1rem 0em;
		}
		.side-content #sidebar {
			margin-top: 0px;
		}
	}


	@media (max-width: 540px) {
		.side-content  {
			padding: 2rem 1rem 0em;
		}
	}
.side-content .text-wrapper {
	padding: 1.5rem 1.5rem;
	border-radius: 15px 5px;
	background: #f5f5f5;
	margin-bottom: 20px;
	border: 0px solid rgba(4, 19, 31, 0.1)
}
.side-content	.text-wrapper .indent {
	padding-right: 0rem;
}
.side-content .text-wrapper .text-wrapper-title {
	font-size: 1.4rem;
	position: relative;
	font-weight: 700;
	padding-right: 0;
}
.side-content .text-wrapper-title:before {
	display: none;	
}

.side-content .text-wrapper .text-wrapper-title.sub {
	font-size: 1rem !important;
}
.side-content .text-wrapper .text-wrapper-lead p {
	font-size: 0.86rem;
	line-height: 1.6;
	font-weight: 700;
}
.side-content .text-wrapper .text-wrapper-content p {
	line-height: 1.6;
	font-size: .86rem;
}
.side-content .text-wrapper .text-wrapper-content p strong {
	color: #362782;
}
.side-content .text-wrapper .button {
	
}

/*
---------------------------
SUB NAVIGATION
---------------------------
*/

.mobile-subnav-button {
	display: none;
	float: left;
	margin-left: 1rem;
	margin-bottom: 1rem;
}
.mobile-subnav-button i {
	top: 11px;
	left: 0.8rem;	
	right: auto;
	color: #727272 !important;
	display: none;
}
#mobile-subs {
	display: none;
}

	@media  (max-width: 970px) {
		.mobile-subnav-button {
			display: inline-block;
		}
		#mobile-subs {
			position: absolute;
			top: 46px;
			left: 1rem;
			width: 90%;
			background: transparent;
			z-index: 999;
			border-radius: 0px;
			padding: 0rem 0rem 0;
		}
		#mobile-subs.expanded {
			display: block;
		}
	}

.subnav {
	position: relative;
	border: 2px solid rgba(0, 0, 0, 0.05);
	border-radius: 15px 5px 15px 15px;
	padding: 1.5rem 1rem;
	margin:0rem 0 30px;
	background-color: #fff !important;
}
#mobile-subs .subnav {
	border: 0;
	margin-bottom: 0;
}

.subnav .subnav-headline {
	font-size: 1.125rem;
	position: relative;
	margin: 0 0 10px;
	font-weight: 700;
	color: #362782;
}

.subnav .subnav-headline a {
	color: #362782;
}
.subnav ul {
	padding: 0px 0px;
	margin: 0px;
	list-style: none;
}
.subnav ul li {
	border-bottom: 0px solid rgba(0, 0, 0, 0.12);
	padding: 0px 0 0px 0;
	margin: 0px 0 0px 0;
	border-bottom: 1px solid rgba(29, 31, 42, 0.103);
}
.subnav ul li:last-child {
	border:0 !important;
}
.subnav ul li a:not(.button) {
	font-family: 'diavlo';
	padding-left: 0;
	color: #004A99;
	font-weight: 700;
	display: block;
	padding: 0.8375em 1em 0.8375em 1rem;
  font-size: 1rem;
  letter-spacing: 0px;
	position: relative;
	line-height: 1.1;
}
.subnav ul li a:not(.button):hover {
	color: #362782;
}
.subnav ul li a:before {
	position: absolute;
	left: 0px;
	-webkit-transform: translate(2px, 0);
  transform: translate(2px, 0);
	top:14px;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
  speak: none;
  font-style: normal;

	
  font-variant: normal;
  text-transform: none;
  line-height: 1;
	content: '\f0d9';
	font-size: 14px;
	margin-right: 0px;
	color: #004A99;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	 opacity: 0.4;
}
.subnav ul li a:hover:before {
	-webkit-transform: translate(0px, 0);
  transform: translate(0px, 0);
	color: #362782;
	opacity: 1;
}
.subnav ul li.item-breadcrumb a:before {
	color: #362782;
}

.subnav ul li.item-breadcrumb a:not(.button) {
	color: #362782;
	font-weight: 700;
}
.subnav ul li.invisible {
	visibility: visible;
	display: block;
}

	@media  (max-width: 970px) {
		.subnav ul li a:not(.button) {
			padding-left:0 !important;
			font-size: 1.1rem !important;
		}
		.subnav ul li a:before {
			left: auto;
			top: 17px;
			right: 0rem;
			content: '\e93c';
		}
	}
	@media  (max-width: 640px) {
		.subnav {
			padding-left: 1rem !important;
		}
		.subnav ul li a:before {
			left: auto;
			top: 17px;
			right: 0rem;
			content: '\e93c';
		}
	}

/* Tweede niveau */
.subnav ul li ul {
	margin: 0;
	padding: 0;
	margin-top: 0px;
	padding-left: 0px;
	padding-bottom: 20px;
}
.subnav ul li ul li {
	border: 0px solid #eeedec;
}
.subnav ul li ul li > a:not(.button) {
  font-weight: 400 !important;
	color: rgba(255, 255, 255, 0.6) !important;
	font-size: 15px !important;
	padding: 0.3em 0rem 0.3em 20px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.subnav ul li ul li > a:not(.button):hover {
	color: rgba(255, 255, 255, 1) !important;
	background: none !important;
}
.subnav ul li ul li a:before {
	display:none;
}
.subnav ul li ul li > a:not(.button):hover:before {
	color: #fff !important;
}
.subnav ul li ul li.item-breadcrumb > a:not(.button),
.subnav ul li ul li.item-breadcrumb > a:not(.button):hover {
	background: none !important;
	color: rgba(255, 255, 255, 1) !important;
}
.subnav ul li ul li.item-leaf > a:not(.button) {
	font-weight: 700 !important;
}

/* Derde niveau */
.subnav ul li ul ul {
	margin: 0;
	padding: 0;
	margin-top: 0px;
	padding-left: 15px;
	padding-bottom: 10px;
}
.subnav ul li ul ul li {
	border: 0px solid #eeedec;
}

.subnav ul li ul ul li > a:not(.button) {
    font-weight: 400 !important;
	color: rgba(78, 78, 81, 1) !important;
	font-size: 14px !important;
	padding: 0.3em 0rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.subnav ul li ul ul li > a:hover {
	background: none !important;
	color: #22257a !important;
}

.subnav ul li ul li > a:hover {
	background: none !important;
	color: #22257a !important;
}

.subnav ul li ul ul li a:before {
	top: 5px;
	color: rgba(78, 78, 81, 1) !important;
}
.subnav ul li ul ul li.item-breadcrumb > a, .subnav ul li ul li.item-breadcrumb > a:hover {
	background: none !important;
	color: #22257a !important;
}

/* Blogs */ 
.blogs ul li {
	border-bottom: 0px solid rgba(0, 0, 0, 0.08);
	padding: 0px 0 0px 0;
	margin: 0px 0 0px 0; 
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.blogs ul li:last-child {
	border:0 !important;
}
.blogs ul li a {
	padding-left: 0;
	color: rgba(4, 19, 31, 1);
	font-weight: 400;
	display: block;
	padding: 1.1em 1em 0.9375em 0rem;
  font-size: 0.96rem !important;
  letter-spacing: 0px;

	position: relative;
	line-height: 1.1;
}
.blogs ul li a:hover {
	color: #5caa28;
}
.blogs ul li a .blog-title {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #004A99;
}
.blogs ul li a .blog-date {
	display: block;
	padding: 6px 0 0;
	font-size: 0.86rem;
	color: rgba(0, 0, 0, 0.4);
}

/*
---------------------------
SUBNAVIGATIE BALK
---------------------------
*/

.whatsub {
	width: 100%;
	clear:both;
	display: block;
	z-index: 3;
	padding: 0rem 0em 0rem;
	height:70px;
	position: relative;
	margin-top: -70px;
	background: rgba(29, 29, 29, 0.9);
	text-align: center;

}

.whatsub:after {
	position: absolute;
	left:0;
	bottom: 0px;
	width: 100%;
	height: 1px;
	content: '';
	z-index: 1;
	background: rgba(0, 0, 0, 1);

	opacity: 0;
}

.whatsub ul {

	height: 70px;
	display: inline-block;
	margin: 0 auto;
	padding: 0 0rem;
	text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.whatsub ul li {
	display: inline-block;
	margin: 0;
	text-align: center;
	position: relative;
	padding: 0em 1em;

}
.whatsub ul li:last-child {
	border:0 ;
}
.whatsub ul li a {
	position: relative;
	height: 56px;
	line-height: 70px;
	font-weight: 700;
	display: block;
	padding: 0rem 0.5rem 0rem 0.1rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);

	text-transform: uppercase;
	letter-spacing: 2px;
}
.whatsub ul li a:hover {
	color: #fff;
}

.whatsub ul li a:before {
	content: "";
  position: absolute;
  width: 0;
  height: 1px;
  
  bottom: 4px;
	border-radius: 0px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
/*
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
*/
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.whatsub ul li a:hover:before,
.whatsub ul li.item-breadcrumb a:before {
	visibility: visible;
 width: 99.7%;
}

.whatsub ul li a:after {
	position: absolute;
  right: -6px;
  bottom: 2px;
  content:'';
  width: 1.5px;
  height: 0px;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform:  rotate(45deg); /* Chrome, Safari, Opera */
  transform:  rotate(45deg);

}
.whatsub ul li a:hover:after,
.whatsub ul li.item-breadcrumb a:after {
	 opacity: 1;
	 height: 18px;
}

	@media  (max-width: 970px) {
		.whatsub {
			margin-top: -50px;
			height:50px;
				text-align: left;
		}
		.whatsub ul {
			height: 50px;
			text-align: left;
		}
		.whatsub ul li a {
			text-align: center;
			height:40px;
			line-height: 50px;
			font-size: 0.66rem;
			letter-spacing: 1px;
		}
	}
	@media  (max-width: 767px) {
		.whatsub {
			display:none;
		}
	}


/* Breadcrumbs */
#breadcrumbs {
	width: 100%;
	height: 50px;
	
	z-index: 99;
}
.breadcrumbs-wrapper {
	margin-top: 0px;
  background: none;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1rem 0 1rem 0rem;
}
#page-content .breadcrumbs-wrapper {
	position: relative;
	margin-top: -20px;

	border-top: 0;
	
}

.breadcrumbs {
  display: block;
  padding: 0 0;
  overflow: hidden;
  margin-left: 1.5rem !important;
  list-style: none;
  border-style: solid;
  border-width: 0px;
  background: none;
  border-color: rgba(0,0,0,0.04);
  border-radius: 0px;
  text-align: right !important;
	
}
.breadcrumbs > * a {
	color: #004A99;
	font-weight: 600;
	text-transform: none;
	font-size: 0.76rem;
	-webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.breadcrumbs > * a:hover {
	color: #004A99;
	text-decoration: none;
}
.breadcrumbs li:not(:last-child):after {
	color: #362782;
	content: "\f054";
	margin: 0 .75rem;
	position: relative;
	top: 1px;
	opacity: 1;
	font-size: 0.66rem;
	font-family: 'Font Awesome 5 Pro' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

}

.breadcrumbs {
	margin-bottom: 0;
}


	@media (max-width: 970px) {
		.breadcrumbs {
			display: block;
			padding: 0 0;
			overflow: hidden;
			margin-left: .5rem !important;
		}
	}
	@media (max-width: 767px) {
		.breadcrumbs {
	
		}
	}
	@media (max-width: 500px) {
		.breadcrumbs {
			display: none;
		}
		.breadcrumbs-wrapper {
			padding-left: 0em;
			display: none;
		}
	}


/*
PRICING TABLES
---------------------------
*/
.pricing-table {
  border: solid 1px rgba(4, 19, 31, 0.08); 
  padding: 1rem 0.6rem;
  padding-bottom: 7rem;
  position: relative;
  border-radius: 5px;
  background-color: rgba(4, 19, 31, 0.04) !important;
}
.medium-up-3 .pricing-table {
	padding: 1rem 1rem;	
	padding-bottom: 7rem;
}
.pricing-table.highlight {
/* 	transform: scale(1.05); */
}

.pricing-table li {
	border-bottom: solid 1px rgba(255, 255, 255, 0.36);
	font-size: 0.86rem;
	padding: 0.675rem 1rem;
	
	
	line-height: 1.4;
}
.pricing-table li.last-item,
.pricing-table li:last-child {
  border-bottom: 0 !important; 
}

.pricing-table .icon {
	display: block;
	font-size: 4.5rem;
	text-align: center;
	padding: 0.4rem 1rem;
}

.pricing-table .icon i {
	position: relative;
	top:5px;
}
.pricing-table .icon i:before{
	font-size: 3.6rem;
}

.pricing-table .title-wrap {
	padding-bottom: 1.5rem;
}
.pricing-table .title {
	line-height: 1.2;
	font-size: 1.875rem;
	font-weight: 300 !important;
  border-bottom: 0 !important; 
  margin-bottom: 0rem;
  color: #362782
  
}
.pricing-table .title small {
	display: block;
	padding-top: 15px;
	font-weight: 300 !important;
	font-size: 1.4rem; 
	color: #004A99;
}
.pricing-table .price {
  background-color: rgba(0, 0, 0, 0.1);  
  font-size: 1.45rem;
  border-bottom: 0;
  font-weight: 400;
}
.pricing-table .price-info {
	font-size: 1rem;
	font-weight: 400;
	color: #004A99;
}
.pricing-table .description {
 	padding: 1.4rem 0.5rem 0;
  font-size: 0.86rem;
}
.pricing-table .description p {
 	line-height: 1.4;
}


.pricing-table .between {
	padding-top: 1rem;
	padding-bottom: 0rem;
}
.pricing-table .between p {
	line-height: 1.4;
}
.pricing-table .between p strong {
	font-size: 1.1rem !important;
}

.pricing-table .pricing-button {
	position: absolute !important;
	width: 100%;
	bottom:0;
	left:0;
  padding: 2rem 1rem 2rem;
}
.pricing-table .button {
  margin: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}


.pricing-table.bg-white li,
.pricing-table.bg-light li { 
	position: relative;
	border-bottom: solid 1px rgba(0, 0, 0, 0.08);
}
.pricing-table li.text-left {
	padding-left: 2.1rem;
	color: #004A99 !important;
	font-size: 14px;
	font-weight: 400;
}
.pricing-table.bg-white li.text-left i {
	position: absolute;
	top: 10px;
	left:5px;
	font-size: 1.2rem;
}

.pricing-table.bg-white .price,
.pricing-table.bg-light .price {
    background-color: rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08); 
}

.pricing-table.highlight {
	border-color: #004A99;
	border-width: 3px;
/* 	transform: scale(1.04) */
box-shadow: 0px 0px 51px rgba(0, 0, 0, 0.14)
}

.pricing-table-badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-75%);
	width: calc(100% + 7px);
	height: 40px;
	line-height: 40px;
	padding: 0 1rem;
	text-align: center;
	color: #fff;
	border-radius: 5px 5px 0 0 ;
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

	@media  (max-width: 970px) {
		.pricing-table .title small {
			display: block;
			padding-top: 5px;
			font-size: 1.2rem; 
			color: #000;
		}
		
	}



.pricebox {
	width: 100%;;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1rem 1rem 1rem;
	border: 1px solid #eee;
	margin-bottom: 5px;
	border-radius: 5px;
	-webkit-transition: border 0.2s ease-in-out;
	-moz-transition: border 0.2s ease-in-out;
	-ms-transition: border 0.2s ease-in-out;
	transition: border 0.2s ease-in-out;
}
a.pricebox:hover {
	border-color: #004A99;
}

.pricebox .pricebox-title {
	position: relative;
	font-size: 1rem;
	font-weight: 700 !important;
	line-height: 1;
	margin:0;
}
a.pricebox .pricebox-title {
	color: #004A99;
}
.pricebox .pricebox-title .label {
	position: absolute;
	top: 0;
	left: 100%;
	padding: 3px 10px;
	color: #fff;
	margin-left: 10px;
	line-height: 1;
	font-size: 0.66rem
}
.pricebox .pricebox-price {
	display: block;
	font-size: 1rem;
	font-weight: 700 !important;
	margin:0;
	line-height: 1;
	color: #362782;
}

/* Sitemap */

.sitemap {
	margin-top: 40px;
	padding-left: 0px;

}
.sitemap ul {
	list-style: none;
}
.sitemap ul {
	margin-left: 0px;
	font-family: 'diavlo';
}
.sitemap ul ul {
	margin-left: 0px;
	padding: 4px 0;
	padding-left: 15px;
	border-left: 2px solid #f2f2f2;
}
.sitemap ul ul ul{
	margin: 4px 0;
	padding-left: 15px;
	border-left: 2px solid #f2f2f2;
}
.centered .sitemap ul ul ul{
	border: 0;
}


.sitemap li a {
	font-weight: 700;

	
	font-size: 16px;
	padding: 0px 0px 0px 0px;
}
.sitemap li ul li a {

	font-size: 16px;
	padding: 0px 0px 0px 0px;
	font-weight: 700;

}
.sitemap li li li a {
	font-weight: 700;
	color: #004A99 !important;
	font-size: 15px;
	padding: 0px 0px 0px 0px;
	text-transform: none;
	letter-spacing: -1px;
}
.sitemap li li li li a {
	font-weight: 700;
	font-size: 15px ;
	color: rgba(24, 7, 31, 0.4) !important;
}
.sitemap li li li a:hover,
.sitemap li li li li a:hover {
	color: #362782 !important;
}


.sitemap li {
	margin: 0;
	padding: 1px 0 1px;
}
.sitemap li:last-child {
	border: 0;
}

.sitemap li a.actief {

}
.sitemap .invisible {
	display: none;
}

/*
---------------------------
FOOTER  
---------------------------
*/

#footer-wrapper {
	position: relative;
	z-index:3;
	margin-top: 0px;
	padding: 3rem 0 1rem 0;
	border-radius: 0px 0px 0px 0px;
	overflow: hidden;
}

#footer-wrapper:before {
	position: absolute;
	bottom: -30px;
	left:50px;
	width: 1100px;
	height: 106%;
	background:  url('../images/icon-white.svg') no-repeat center right;
	background-size: contain;
	content: '';
	opacity:0.03
}

.footer-content {
	padding: 2rem 2rem 2rem 0rem;
}
.footer-content.first {
	position: relative;
	padding-left: 0rem;
}

.follow-title {
	display: block;
}
	@media  (max-width: 1130px) {
		.footer-content.first {
			position: relative;
			padding-left: 1rem;
		}
		
	}
	
	@media  (max-width: 970px) {
		
		.footer-content {
			padding-left:0rem;
			padding-right: 0rem;
		}
		.footer-content.first {
			position: relative;
			padding-left: 0rem;
		}
		
	}
	@media  (max-width: 640px) {
		#footer-wrapper {
			padding-top: 0;
			border-radius: 0px 0px 0px 0px;
		}
		#footer-wrapper:before {
			display: none;	
		}
		
		.footer-content {
			padding-left:0rem;
			padding-bottom: 0rem;
		}
		.footer-content.first {
			padding-right: 1rem;
			padding-left:0rem;
			padding-bottom: 0;
		}
	}
	@media  (max-width: 400px) {
		.footer-content {
			padding-left:0rem;
			padding-right: 0rem;
		
		}
		
	}

.footer-content.first .footer-title {
	
}
.footer-content img {
	margin-bottom: 25px;
}
.footer-content .footer-title {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 15px;
	color: #ffffff;
}
.footer-lead {

}

.footer-content p {
	line-height: 1.9;
	font-size: 0.96rem;
	color: rgba(255, 255, 255, 1);
}
.footer-content p a {
	color: #fff;
	text-decoration: underline;
}
.footer-content p a:hover {
	color: #362782;
}

[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-extralight) .footer-content p a:hover {
	color:rgba(255,255,255,0.7);
}
.footer-content p strong {
	margin-right: 5px;
	font-size: 12px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase
}

.footer-content img {
	max-width: 90%;
}

/* List items */
.footer-content ul {
	list-style: none;
	padding:0;
	margin:0;
	
}
.footer-content ul li {
	padding:0;
}
.footer-content ul li a{
	position: relative;
	padding-left: 0rem;
	font-size: 0.96rem;
	padding: .2rem 0;
	display: inline-block;
}
.footer-list ul li a {
	color: rgba(255, 255, 255, 1);
}
.footer-list ul li a:hover {
	color: #362782 !important;
}
[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-extralight) .footer-content ul li a {
	color: rgba(255, 255, 255, 1) !important;
}
[class*=" bg-"]:not(.bg-white):not(.bg-light):not(.bg-extralight) .footer-content ul li a:hover {
	color: rgba(255, 255, 255, 0.7) !important;
}

.socialist {
	top: -6px;
	position: relative;
}
.socialist li a {
	padding: .54rem 0 !important;
	padding-left: 40px !important;
	
}
.socialist  li a:after {
	display: none;	
}
.socialist li a i {
	position: absolute;
	top: 6px;
	left: -2px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
		
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.socialist a:hover i {
	
}
.socialist li.phone {
	display: none;
}

/* Bottom */
.copyright {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #004A99;
	font-size: 0.86rem;
	padding-left: 0rem !important;
	padding-top: 1px;
}



.footer-links {
	display: block;
	padding-top: 0rem;
	padding-left:0rem !important;
}
.footer-links a {
	display: inline-block;
	margin: 0 15px 0 0px;
	font-size: 0.86rem;
	position: relative;

}
.footer-links span {
	display: inline-block;
	font-size: 0.86rem;
	margin: 0 0px 0 15px;
}	
.footer-links a:hover {

}

.footer-bottom {
	background: #fff;
	padding: 2rem 0 2rem;
	margin-top: 0rem;
}
	@media  (max-width: 1130px) {
		.copyright {
			
		}
	}
	@media  (max-width: 970px) {
		.social {
			border-top: 1px solid rgba(238, 238, 238, 0.35);
		}
		.social .footer-title {
			text-align: center;
			display: none;
		}
		.socialist {
			display:inline-block;
			width: 100%;
			text-align: center;
		}
		.socialist  li {
			display: inline-block;	
			padding: 0 1rem;
		}
		.socialist li a {
			font-size: 0.86rem !important;
		}
		.socialist li a span {
			padding-right: 1rem;
		}
		.socialist  li a i {
			position: absolute;
			top: 4px;
			left:0;
			width: 32px;
			height: 32px;
			line-height: 32px;
			text-align: center;
		
			color: #fff;
		}
		
	}
	@media  (max-width: 640px) {
		.social {
			border-top: 0px;
		}
		.social .footer-title {
			text-align: left;
			display: block;
		}
		.socialist li {
			text-align: left !important;
			display: block;
		}
		.socialist li a {
			
		}
		.socialist li a span {
		
		}
		.copyright {
			padding-left:0rem !important;
		}
		.copyright a {
			display: block;
		}
		.footer-links {
			padding-top:10px;
			text-align: left !important;
		}
		.footer-links a {
			margin:0 10px 0 0;
		}
		.footer-logos {
			text-align: center;
		}
		.footer-bottom {
			background: #fff;
			padding: 2rem 0 1rem;
			margin-top: 0rem;
		}
		
	}
	@media  (max-width: 330px) {
		.footer-links a {
			font-size: 11px;
			margin:0 15px 0 0;
		}
	}

/* Add Noise */
.addnoise {
	float: right;
	width: 100px;
	height: 50px;
	color: #a2aaae !important;
	font-style: italic;
	font-size: 11px;
	margin-top: -0.6rem;
	background:  url('../images/addnoise.svg') no-repeat top;
	background-size: contain;
	opacity: 0.2;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.addnoise:hover  {
	opacity: 1;
}

	@media  (max-width: 970px) {
		.addnoise {
			position: relative;
			margin: auto;
			margin-top: 20px !important
		}
	}


/*
---------------------------
TOOLTIPS
---------------------------
*/

.has-tip {
	border:0;
	font-weight: normal;
	position: relative;
	display: inline-block;
	cursor: pointer;

}



/*
---------------------------
SLIDE OUT BOX
---------------------------
*/

#slidebox {
	width:320px;
	min-height:150px;
	padding:1.5rem 3rem 1rem 2rem;
	background-color:rgba(255, 255, 255, 0.88);
	position:fixed;
	bottom:180px;
	right: -1rem;
	-webkit-transform: translate(120%, 0);
	        transform: translate(120%, 0);

	border-radius: 10px 0 0 10px;
	z-index: 99;
	box-shadow: 0px 0px 29px rgba(0, 0, 0, 0.15);

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

#slidebox.slidebox-bg {

	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;
}


.white-popup #slidebox {
	width:100%;
	position: relative;
	bottom:auto;
	right:auto;
	padding:2rem 3rem;
	-webkit-transform: translate(0, 0);
	        transform: translate(0, 0);
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.white-popup #slidebox.slidebox-bg {
	padding-right: 25%;
}

#slidebox a.close{
	width:36px;
	height:36px;
	position:absolute;
	top: 0px;
	left: 0px;
	text-align: center;
	border-radius: 100px;
	color: rgba(4, 19, 31, 0.18);
	font-size: 1.1em;
	font-weight: 800;
	line-height: 34px;

	opacity: 1;
}
#slidebox a.close:hover{
	color: #04131f
}



#slidebox .button {
	margin-top: 0px;
}

#slidebox .slidebox-title {
  font-size: 1.4rem;
}
#slidebox .slidebox-lead p {
  font-size: 0.86rem;
}
#slidebox .searchbox {
	position: relative;
	top: auto;
	right: auto;
}
#slidebox  .searchbox .search-input {
	width: 100%;
	border: 1px solid #c3cddb;
	background-color: rgba(255, 255, 255, 0.66);
	border-radius: 5px;
	padding-left: 1.5rem;
	font-size: 0.86rem;
	margin: 0;
	box-shadow: none !important;
}
#slidebox .searchbox .search-input:focus {
	border-color: rgba(0, 59, 118, 1);
}
#slidebox .searchbox .search-button {
	position: absolute;
	top:0px;
	right:0px;
	padding: 0 1rem;
	height: 100%;
	font-size: 1.2rem;
	opacity: 1;
	background: #c3cddb;
	border-radius: 0 5px 5px 0;
	color: #fff;
}
#slidebox .searchbox .search-button:hover {
	opacity: 1;
	background-color: #b5b9c4;
}
#slidebox .searchbox .search-input:focus + .search-button {
	background-color: rgba(0, 59, 118, 1);
}
#slidebox .search-tags {
	padding-top: 1rem;
	display: block;
}
#slidebox .tags-label {
	display: block;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}
#slidebox .search-tags a {
	font-size: 0.86rem;
}



.mm-opened #slidebox {
	opacity: 0;
	visibility: hidden;
	display: none;
}

	@media (max-width: 640px) {
		#slidebox {
			display: none;
			bottom:200px;
		}
		#slidebox .searchbox {
			display:block;
		}
		.white-popup #slidebox {
			width:100%;
			position: relative;
			bottom:auto;
			right:auto;
			min-height:120px;
			padding:1rem 1rem;
			-webkit-transform: translate(0, 0);
			        transform: translate(0, 0);
			box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
		}

		.white-popup #slidebox.slidebox-bg {
			padding-right: 5%;
		}

	}

/*
---------------------------
FLOATING ARROW ANIMATIONS
---------------------------
*/

.floating-arrow-wrapper {
	position: relative;
	z-index: 9999 !important;
	height: 0px;
}

.going-down {
	display: none;
    position: absolute;
    bottom: 0px;
    right: 1rem;
		margin-left: 0px;
    height: 80px;
    width: 80px;
    background: transparent;
    text-align: center;
    z-index: 9999 !important;
    border: 0px solid rgba(255, 255, 255, 0);
    border-radius: 0px;
    outline: 0;
    font-size: 2.4rem;
    
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.going-down i {
    color: #ffffff;
    position: absolute;
    top:10px;
    left:20px;
    text-shadow: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out
}

@media (max-width: 970px) {
	.floating-arrow-wrapper {
		display: none;
	}
}

@media (max-width: 600px) {
    
		.page-front-no  .floating-arrow-wrapper {
				display: none;
			}
		.going-down {
			bottom:0px;
			height: 50px;
			width: 60px;
		}
		.going-down i {
	    color: #004A99;
	    position: absolute;
	    top:10px;
	    left:18px;
	    font-size: 1.6rem;
		}
}


.floating-arrow {
    -webkit-animation-name: floating-arrow;
    animation-name: floating-arrow;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes floating-arrow {
    from {
        -webkit-transform: translate(0%, 0);
        transform: translate(0%, 0)
    }

    65% {
        -webkit-transform: translate(0%, 15px);
        transform: translate(0%, 15px)
    }

    to {
        -webkit-transform: translate(0%, 0);
        transform: translate(0%, 0)
    }
}

@keyframes floating-arrow {
    from {
        -webkit-transform: translate(0%, 0);
        transform: translate(0%, 0)
    }

    65% {
        -webkit-transform: translate(0%, 15px);
        transform: translate(0%, 15px)
    }

    to {
        -webkit-transform: translate(0%, 0);
        transform: translate(0%, 0)
    }
}

/* Override styles when printing */
@media print{
	*, *:before, *:after{
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important
	}
	@page{
		margin: 2cm
	}
	body{
		margin: 0;
		color: #000;
		background-color: #fff;
		font-size: 10pt
	}
	header,footer,aside,nav,form,iframe,.clearer,#topbar,a[href]:after,#head-slider,.header-placeholder,#topbar,.head-slider-container,#breadcrumbs,.gallery.photo-gallery .slick-slider,.side-content,.button,.flex-video,.responsive-embed,.section-c2a,.imagebox,.footer-bottom{
		display:none
	}
	a{
		text-decoration:none !important
	}
	.print-only{
		display:block;
		position: relative;
		margin: 0 0 0 0.5cm;
		width: 160px;
		height: 120px;
	}
	#page-content{
		width: 100%; 
		margin: 0; 
		float: none;
	}
	.photo-100 {
		width:100% !important
	}
	.text-wrapper-title, .accordion-title{
		font-size:14pt !important
	}
	.text-wrapper p,.text-wrapper-lead,.text-wrapper-lead p,.text-wrapper-content,.text-wrapper-content p,.text-wrapper blockquote p strong,.pricebox .pricebox-title.title-small,.pricebox .pricebox-price,.text-wrapper-content ul li{
		font-size:10pt !important;
	}
	.text-wrapper blockquote{
		border:1px solid #ddd !important;
		border-radius:5px;
		padding:0em 1rem 0 1rem
	}
	.text-wrapper blockquote p{
		margin:1rem 4rem;
		text-align:center;
		font-size:12pt !important
	}
	.text-wrapper-content ul,.text-wrapper-listing ul{
		page-break-inside:avoid;
		page-break-after:avoid;
		break-inside:avoid;
		margin-top:0;
		top:0  
	}
	.text-wrapper-listing ul li i,.text-wrapper-listing ul li img{
		top:5px
	}
	.accordion .accordion-title,.accordion .accordion-content{
		box-decoration-break:clone;
		-webkit-box-decoration-break:clone;
	}
	.accordion .accordion-content{
		display:block !important
	}
	:last-child:not(.is-active)>.accordion-title{
		border-radius:0;
		border-bottom:none
	}
	.row>.columns:not(.side-content){
		width:100%
	}
	a.imagebox{
		background:inherit !important
	}
	.wow.fadeIn{
		visibility:visible !important;
		animation:none
	}
	a.addmedia {
		background-image: url(https://addsite.nl/addbeheer/themes/addsite/images/iconen/16x16/ico_doc_new.png) !important;
		background-repeat: no-repeat !important;
		background-position: 0 50% !important;
		padding: 3px 0 3px 20px;
		margin: 0 0;
		-webkit-print-color-adjust: exact
	}
	a.addmedia.ico_doc,a.addmedia.ico_docx {
		background-image: url(https://addsite.nl/addbeheer/themes/addsite/images/iconen/16x16/ico_doc_new.png) !important;
		-webkit-print-color-adjust: exact
	}
	a.addmedia.ico_xls,a.addmedia.ico_xlsx {
		background-image: url(https://addsite.nl/addbeheer/themes/addsite/images/iconen/16x16/ico_xls_new.png) !important;
		-webkit-print-color-adjust: exact
	}
	a.addmedia.ico_pdf {
		background-image: url(https://addsite.nl/addbeheer/themes/addsite/images/iconen/16x16/ico_pdf_new.png) !important;
		-webkit-print-color-adjust: exact
	}
}

/* Vacatures */

.wrapper{
	color: #0a0a0a;
	line-height: 1.7;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}
.vacatures .wrapper{
	margin:0 0 2rem;
    background: none;
	position: relative;
    display: block;
    padding:0;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	list-style-position: outside;
}
.vacatures ul{
	margin:0;
}
.vacatures ul li{
	font-size: 0.96rem;
    line-height:1.7;
}
.vacatures .vacature-title{
	font-size: 1rem;
    color: #004A99;
	font-weight: 700 !important;	
	position: relative;
    display: block;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e6e6e6;
    line-height: 1;
}
.vacature-content{
	margin:2rem 0;
}
.vacatures ul li:not(last-child){
	padding: 0 1rem 1.5rem 0;
    margin-left: 2.4rem;
}
.vacatures ul li:last-child{
	padding: 0 1rem 0 0;
}
.vacatures ul li:after{
	position: relative;
    left: 6px;
    -webkit-transform: translate(2px, 0);
    transform: translate(2px, 0);
    top: 0;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: '\f0da';
    font-size: 14px;
    margin-right: 0px;
    color: #004A99;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0.4;
	/* content:"\00BB";
	margin-left: 5px;
	color:#004a99 */
}
.vacatures ul li:hover:after{
	left:8px;
}
.vacatures ul li a{
	color: rgba(24, 7, 31, 0.7);
}
.vacature-link{
	color:#004a99
}
.vacature-link:hover{
	text-decoration:underline;
}