/*
==  THEME DETAILS  ============================================================
   	Theme Name: A.G.S.R. Gyas
	Theme URI: https://gyas.nl/
    Description: Stylesheet voor A.G.S.R. Gyas
    Version: 1.0
   	Author: Kracht Internet Marketing
	Author URI: https://www.krachtinternetmarketing.nl

===============================================================================
*/

/*---------------------------------------------- 
	1.1 Basics
------------------------------------------------*/
	:root {
		--black: #000;
		--white: #FFF;
		--orange: #ED8B00;
		--light-orange: #F9DCB3;
		--dark-grey: #666666;
		--grey: #AEAEAE;
		--light-grey: #F0F0F0;
		--red: #DD2222;
		--green: #2EB82E;
	}

	html {
  		font-size: 20px;
	}

	body {
		font-family: "Roboto", sans-serif;
		font-size: 1rem;
	  	line-height: 1.75rem;
		font-weight: 400;
		color: var(--black);
		background: var(--light-grey);
		-webkit-font-smoothing: antialiased;
  		-moz-osx-font-smoothing: grayscale;
	}

	a, a:hover, .btn, .btn:hover , .transition {
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		text-decoration:none;	
	}
	
	p , figure , blockquote , ul {
		margin: 0 !important;
	}

	a {
		color: var(--orange);
	}

	a:hover {
		color: var(--black);
	}

	button:focus ,
	:focus {
		outline: 0 !important;
	}
	
	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
		font-family: "Roboto Slab", serif;
		font-weight: 700;
		line-height: 1.25;
		margin: 0;
		padding: 0;
	}

	h1, .h1 {
		font-size: 2rem;
	}

	h2, .h2 {
		font-size: 1.7rem;
	}

	h3, .h3 {
		font-size: 1.5rem;
	}
	
	h4, .h4 {
		font-size: 1.2rem;
	}

	.fs-xxl {
		font-size: 2.25rem;
		line-height: 1.35;
	}

	.fs-xl {
		font-size: 1.75rem;	
	}

	.fs-lg {
		font-size: 1.1rem;	
	}

	.fs-md {
		font-size: 0.9rem;
	}

	.fs-sm {
		font-size: 0.8rem;
	}

	.ff-roboto-slab {
		font-family: "Roboto Slab", serif;
	}

	.box-shadow {
		-webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
		box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
	}

	.bg-cover {
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.z-index-1 {
		position: relative;
		z-index: 8;
	}

	.list-inline-item:not(:last-child) {
		margin-right: 0.25rem;
	}

	hr {
		margin-bottom: 1.25rem;
		opacity: 1;
		border-top: 1px solid var(--grey);
	}

	.max-width {
		width: 100%;
		margin: 0 auto;
	}

	.overlay-multiply::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: var(--black);
		opacity: 0.3;
		mix-blend-mode: multiply;
	}

	@media (min-width : 1200px) {
		figure.scale-image {
			overflow: hidden;
			position: relative;
			display: block;
			cursor: pointer;
		}
		figure.scale-image img  {
			-webkit-transition: all 0.3s linear;
			transition: all 0.3s linear;
			-ms-transition: all 0.3s linear;
			-webkit-transform: scale3d(1, 1, 1);
			-ms-transform: scale3d(1, 1, 1);
			transform: scale3d(1, 1, 1);
		}
		figure.scale-image:hover img ,
		.item-overzicht:hover figure.scale-image img {
			-webkit-transform: scale3d(1.05, 1.05, 1);
			-ms-transform: scale3d(1.05, 1.05, 1);
			transform: scale3d(1.05, 1.05, 1);
		}
	}

	@media (min-width: 1250px) {
		.container {
			max-width: 1230px;
		}	
	}

	@media (min-width: 1350px) {
		.container {
			max-width: 1330px;
		}	
	}

	@media (min-width: 1450px) {
		.container {
			max-width: 1430px;
		}	
	}

	@media (min-width: 1500px) {
		.max-width {
			max-width: 95% !important;
		}
	}

	@media (min-width: 1700px) {
		.max-width {
			max-width: 1600px !important;
		}
	}

	@media all and (max-width: 1500px) {
    	html {
			font-size: 18px;
		}
	}

	@media all and (max-width: 1350px) {
    	html {
			font-size: 16px;
		}
	}

	@media all and (max-width: 992px) {
    	html {
			font-size: 15px;
		}
	}

	@media all and (max-width: 550px) {
    	html {
			font-size: 14px;
		}
		.fs-xxl {
			font-size: 2rem;
		}
	}

/* Buttons -------------------------------------- */
	.btn-primary, 
	.btn-primary:active {
		color: var(--white);
		background: var(--orange);
		border: none;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		border-radius: 50px;
	}

	.btn-primary:hover {
		color: var(--white);
		background: var(--black);
	}

	.btn-secondary {
		color: var(--white);
		background: var(--black);
		border: none;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		border-radius: 50px;
	}

	.btn-secondary:hover {
		color: var(--white);
		background: var(--orange);
	}

	.btn-tertairy {
		color: var(--white);
		background: none;
		border: 1px solid var(--white);
		border-radius: 0;
	}

	.btn-tertairy:hover {
		color: var(--black);
		background: var(--white);
		border: 1px solid var(--white);
	}

	.btn {
		font-size: 1rem;
		font-weight: 700;
		line-height: 1;
		padding: 1rem 2rem;
	}

	button:focus ,
	.btn:focus {
		outline: 0 !important;
		box-shadow: none !important;
	}

/*---------------------------------------------- 
	1.2 Content Block 
------------------------------------------------*/
	.content-block p + p ,
	.content-block p + h2 ,
	.content-block p + h3 ,
	.content-block p + h4 ,
	.content-block p + h5 ,
	.content-block p + ul ,
	.content-block h3 + ul ,
	.content-block h4 + ul ,
	.content-block ul + p ,
	.content-block ul + h3 {
		margin-top: 1.5rem !important;
	}

	.content-block h1 {
		margin-bottom: 1.75rem;
	}

	.content-block h3 {
		margin-bottom: 1rem;
		color: var(--orange);
	}

	.content-block ul {
		list-style: none;
	  	padding: 0;
	}
	
	.content-block li {
  		position: relative;
		padding-left: 30px;
	}

	.content-block ul li:before {
		font-family: "Font Awesome 6 Pro";
		content: "\f105";
		font-weight: 900;
		color: var(--orange);
		position: absolute;
    	left: 0;
	}

	.content-block img.aligncenter {
		margin: 0 auto;
		 display: block;
	}

	.content-block .embed-responsive {
		margin: 2.5rem 0;
	}

/*---------------------------------------------- 
	1.3 Colors 
------------------------------------------------*/
	.bg-black {
		background: var(--black) !important;
	}

	.bg-white {
		background: var(--white) !important;
	}

	.bg-orange {
		background: var(--orange) !important;
	}

	.bg-darkgrey {
		background: var(--dark-grey) !important;
	}

	.bg-grey {
		background: var(--grey) !important;
	}

	.bg-light-grey {
		background: var(--light-grey) !important;
	}

	.text-black {
		color: var(--black) !important;
	}

	.text-white {
		color: var(--white) !important;
	}

	.text-orange {
		color: var(--orange) !important;
	}

	.text-light-orange {
		color: var(--light-orange) !important;
	}

	.text-dark-grey {
		color: var(--dark-grey) !important;
	}

	.text-grey {
		color: var(--grey) !important;
	}

	.text-light-grey {
		color: var(--light-grey) !important;
	}

/*---------------------------------------------- 
	1.4 Spacing 
------------------------------------------------*/
	.py-110 {
		padding: 5.5rem 0;
	}

	.py-80 {
		padding: 4rem 0;
	}

	.mt-70 {
		margin-top: 3.5rem;
	}

	.py-70 {
		padding: 3.5rem 0;
	}

	.pb-70 {
		padding-bottom: 3.5rem;
	}

	.pb-50 {
		padding-bottom: 2.5rem;
	}

	.mt-40 {
		margin-top: 2rem;
	}

	.mb-40 {
		margin-bottom: 2rem;
	}

	.ms-40 {
		margin-left: 2rem;
	}

/*---------------------------------------------- 
	1.5 Social Media
------------------------------------------------*/
	.social-media li a {
		font-size: 1.1rem;
		line-height: 2.75rem !important;
		text-align: center;
		color: var(--black) !important;
		background: var(--white) !important;
		width: 2.75rem;
		height: 2.75rem;
		display: block;
		-webkit-border-radius: 100%;
		-moz-border-radius: 100%;
		border-radius: 100%;
	}
	
	.social-media li.list-inline-item:not(:last-child) {
		margin-right: 0.5rem !important;
	}

	footer .social-media li a {
		color: var(--black) !important;
		background: var(--white) !important;
	}

	footer .social-media li a:hover {
		color: var(--white) !important;
		background: var(--black) !important;
	}
	
/*---------------------------------------------- 
	1.6 Item Overzicht 
------------------------------------------------*/
	.item-overzicht__wrapper {
		padding: 1.5rem;
	}

	.item-overzicht__title {
		line-height: 2rem;
	}

	@media all and (max-width: 1350px) {
		.item-overzicht__title {
			font-size: 1.1rem;	
		}
	}

/*---------------------------------------------- 
	1.7 Item Klanten
------------------------------------------------*/
	.item-partner img {
		max-height: 4rem;
		opacity: 0.2;
		filter: grayscale(100%);
	}

/*---------------------------------------------- 
	1.8 Item Agenda
------------------------------------------------*/
	.item-agenda--uitgelicht .item-agenda__overlay {
		position: absolute;
		left: 1.5rem;
		bottom: 2rem;
		z-index: 9;
	}

	.item-agenda--uitgelicht .item-agenda__date {
		border: 1px solid var(--white);
		text-align: center;
		height: 4rem;
		width: 4rem;
	}

	.item-agenda--uitgelicht .item-agenda__date-month {
		line-height: 1.4rem;
	}

	.item-agenda--normal {
		padding: 1.5rem 1.25rem;
	}

	.item-agenda--normal .item-agenda__date i {
		font-size: 1.1rem;
		line-height: 2.25rem;
		color: var(--orange);
		border: 1px solid var(--orange);
		text-align: center;
		height: 2.25rem;
		width: 2.25rem;	
	}

	@media all and (max-width: 1200px) {
		.item-agenda__title {
			font-size: 1rem;
		}
	}

	@media all and (max-width: 992px) {
		.item-agenda--first figure img {
			height: 25rem;
			object-fit: cover;
		}
	}

/*---------------------------------------------- 
	1.9 Item Statistieken
------------------------------------------------*/
	.item-statistieken {
		padding: 2.5rem 0;
	}

	.item-statistieken__value {
		font-size: 2.5rem;
	}	

	.item-statistieken__title {
		font-size: 1.5rem;
	}

	.item-statistieken + .item-statistieken::before {
		content: "";
		width: 1px;
		height: 4.25rem;
		background: var(--grey);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto 0;
	}

	@media all and (max-width: 992px) {
		.item-statistieken__value {
			font-size: 2rem;
			line-height: 1;
		}	
		.item-statistieken__title {
			font-size: 1.2rem;
		}
	}

	@media all and (max-width: 767px) {
		.item-statistieken + .item-statistieken::before {
			width: 7rem;
			height: 1px;
			left: 0;
			right: 0;
			margin: 0 auto;
		}
	}

/*---------------------------------------------- 
	1.10 Swiper 
------------------------------------------------*/
	.swiper-nieuws { 
		overflow: visible; 
	}

/*---------------------------------------------- 
	1.11 Isotope Filter
------------------------------------------------*/
	.isotope-filter li {
		margin: 0.75rem 0;
	}

	.isotope-filter li.active .btn-primary {
		background: var(--black) !important;
	}

	.isotope-filter li.list-inline-item:not(:last-child) {
		margin-right: 0.5rem;
	}

/*---------------------------------------------- 
	1.12 Gravity Form
------------------------------------------------*/
	.gform_wrapper ,
	body .gform_wrapper .top_label div.ginput_container, 
	.gform_wrapper ul.gform_fields li.gfield ,
	.gform_wrapper li.hidden_label input {
		padding: 0 !important;
		margin: 0 !important;
		width: 100% !important;
	}

	.gform_wrapper.gravity-theme .gfield_label {
		font-size: 0.85rem !important;
		font-weight: 500 !important;
		margin: 0 0 0.5rem 0 !important;
	}

	.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) ,
	.gform_wrapper textarea ,
    .gform_wrapper select {
		font-size: 0.75rem;
		font-weight: 400;
		padding: 10px 15px !important;
		background: var(--white) !important;
		height: 3.25rem;
		border-radius: 0;
        color: var(--black) !important;
		border: none;
		width: 100% !important;
	}

	.gform_wrapper.gravity-theme .gfield textarea.small {
		height: 11.5rem !important;
	}

	.gform_wrapper.gravity-theme .gform_footer {
		margin: 1rem 0 0 0 !important;
		padding: 0 !important;
		justify-content: flex-end;
	}

	.gform_wrapper.gravity-theme .gform_footer .btn {
		margin: 0 !important;	
	}

	.gform_confirmation_message {
		margin-top: 1rem !important;
	}

	.gform_wrapper .field_description_below .gfield_description {
		font-size: 0.7rem !important;
		color: var(--black);
		padding: 0 !important;
		border: none !important;
	}

	.gform_wrapper.gravity-theme .gform_fields {
		grid-row-gap: 25px !important;
	}

	.gform_required_legend {
		display: none !important;
	}

	.gform_wrapper .gform_validation_errors>h2 {
		font-size: 14px !important;
		margin: 0 !important;
	}

/*---------------------------------------------- 
	2.1 Header 
------------------------------------------------*/
	.header {
		padding: 1.75rem 0;
	}

/*---------------------------------------------- 
	2.2 Navigation 
------------------------------------------------*/
	.navigation__menu li a {
		font-size: 0.8rem;
		line-height: 1;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--black);
		padding: 1rem 0;
	}

	.navigation__menu li + li {
		margin-left: 1.25rem;
	}

	.navigation__menu li a:hover ,
	.navigation__menu li.active a {
		color: var(--orange);
	}

/* Dropdown Menu -------------------------------------- */	
	.navigation__menu .dropdown-menu {
		background: var(--orange);
		padding: 0.75rem 0;
		border: none;	
		margin: 0;
		border-radius: 0;
		-webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
		-moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
		box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
	}

	.navigation__menu .dropdown-menu li a {
		font-size: 0.8rem;
		font-weight: 500;
		text-transform: uppercase;
		color: var(--white) !important;
   	 	line-height: 1;
    	padding: 0.75rem 1rem;
		margin: 0;
		text-align: left;
		border: none;
		background: none;
		display: inline-block;
	}

	.navigation__menu .dropdown-menu li + li {
		margin: 0;
	}

	.navigation__menu .dropdown-menu li a:hover ,
	.navigation__menu .dropdown-menu li.current-menu-item a {
		color: var(--black) !important;
	}

	.navigation__menu .dropdown:hover>.dropdown-menu {
		display: block;
	}

	.navigation__menu .dropdown>.dropdown-toggle:active {
		pointer-events: none;
	}

/*---------------------------------------------- 
	2.3 Navigation Mobile
------------------------------------------------*/
	.navigation--mobile .cd-dropdown-trigger {
		display: inline-block;
    	position: relative;
    	padding: 0;
		font-size: 1.75rem;
		background: none;
		color: var(--black) !important;	
		text-align: center;
		margin: 0;
		z-index: 99;
		border-radius: 0;
		border: none;
	}

	 .navigation--mobile .cd-dropdown-trigger i {
		margin: 0;	
	}
	
	.navigation--mobile .cd-dropdown-content a {
		font-size: 1rem;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--white);
		text-align: left !important;
	}

	.navigation--mobile .current_page_item a {
		color: var(--black);
	}

	.navigation--mobile .cd-dropdown {
		background: var(--orange);
		z-index: 999;
	}
	
	.navigation--mobile .cd-dropdown-wrapper {
		height: auto;
		margin: 0 !important;
	}
	
	.navigation--mobile ul {
		padding-left: 0;
	}
	
	.navigation--mobile .cd-dropdown-content a, 
	.navigation--mobile .cd-dropdown-content ul a {
		border-top-width: 0.5px;
    	border-bottom-width: 0;
    	border-left-width: 0;
    	border-right-width: 0;
    	border-color: var(--white);
    	border-style: solid;
	}
	
	.navigation--mobile .cd-dropdown-content .go-back a {
		color: var(--black);
	}

	.navigation--mobile .cd-secondary-dropdown > a,
	.navigation--mobile .cd-secondary-dropdown > .go-back a {
  		display: none !important;
		background: var(--white);
	}

	.navigation--mobile .has-children > a::before, 
	.navigation--mobile .has-children > a::after, 
	.navigation--mobile .cd-dropdown .cd-close::after, 
	.navigation--mobile .cd-dropdown .cd-close::before {
		background: var(--black) !important;
	}

	.navigation--mobile .go-back a::before, 
	.navigation--mobile .go-back a::after {
		background: var(--black) !important;	
	}

	.navigation--mobile .cd-secondary-dropdown > .go-back a + a {
		display: block !important;
	}

	.navigation__button {
		position: absolute;
		bottom: 1.5rem;
		left: 1rem;
		right: 1rem;
	}

	.navigation__button .btn {
		background: var(--white);
		color: var(--black);
	}

/*---------------------------------------------- 
	3.1 Frontpage Video
------------------------------------------------*/
	.hero::before {
		content: "";
		height: 58%;
		width: 100%;
		background: var(--white);
		display: block;
		position: absolute;
		top: 0;
	}

	.hero--video {
		height: 40rem;
	}

	.hero__title {
		color: rgba(255, 255, 255, 0.7);
	}

	.hero__subtitle strong {
		font-weight: 700;
		color: var(--orange);
	}

	.hero__video-wrapper {
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		overflow: hidden;
	}

	.hero__video-wrapper video {
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: 1;
  	}

	.title-single {
		padding-bottom: 1.75rem;
	}

	@media all and (max-width: 1200px) {
		.hero--video {
			height: 35rem;
		}
	}

	@media all and (max-width: 767px) {
		.hero--video {
			height: 25rem;
		}
	}

	@media all and (max-width: 550px) {
		.hero__title {
			font-size: 1.75rem !important;
		}
	}

/*---------------------------------------------- 
	3.2 Frontpage Blokken
------------------------------------------------*/
	.item-blok {
		padding: 2rem 2.25rem;
	}

	.item-blok img {
		height: 6rem !important;
	}

	@media (min-width: 1200px) {
		.item-blok:hover {
			transform: translateY(-5px);
		}
	}

/*---------------------------------------------- 
	3.3 Frontpage Geschiedenis
------------------------------------------------*/
	.frontpage-geschiedenis__overlay {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 4rem 3rem;
		width: 100%;
	}


	@media all and (max-width: 767px) {
		.frontpage-geschiedenis figure img {
			height: 25rem;
			object-fit: cover;
		}	
		.frontpage-geschiedenis__overlay {
			padding: 3rem 2rem;	
		}
	}

/*---------------------------------------------- 
	4.1 Page Modules
------------------------------------------------*/
	#page-modules .module + .module ,
	.title-single + #page-modules .module {
		padding-top: 0 !important;
	}	

	#page-modules .module + .module-vertrouwingspersoon ,
	#page-modules .module-vaarverbod + .module-statistieken {
		padding-top: 3.5rem !important;
	}

	#page-modules .module + .module-vaarverbod {
		padding: 5.5rem 0 !important;
	}

	#page-modules .module-vaarverbod:last-child {
		margin-bottom: 3.5rem !important;
	}

	@media all and (max-width: 992px) {
		.module-content--columns .col {
			flex: 0 0 auto;
			width: 100%;
		}
	}

/*---------------------------------------------- 
	4.2 Module Vertrouwingspersoon
------------------------------------------------*/
	.module-vertrouwingspersoon::after {
		content: "";
		background: var(--white);
		position: absolute;
		bottom: 0;
		top: 0;
		margin: auto 0;
		width: 100%;
		height: 10rem;
	}

	.module-vertrouwingspersoon__wrapper {
		padding: 2rem 1.5rem;
	}

	.module-vertrouwingspersoon__wrapper .btn:hover {
		background: var(--white);
		color: var(--black);
	}

/*---------------------------------------------- 
	4.3 Module Vaarverbod
------------------------------------------------*/
	.module-vaarverbod__wrapper {
		padding: 1.65rem 3.5rem;
		background-color: rgba(255, 255, 255, 0.9);
	}

	.module-vaarverbod__wrapper::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 1.5rem;
	}

	.module-vaarverbod__wrapper--open::before {
		background: var(--green);
	}

	.module-vaarverbod__wrapper--closed::before {
		background: var(--red);
	}

	@media all and (max-width: 992px) {
		.module-vaarverbod {
			padding: 4.5rem 0;
		}
		.module-vaarverbod__wrapper {
			padding: 1.65rem 2.5rem;
		}
		.module-vaarverbod__wrapper::before {
			width: 1.25rem;	
		}
		.module-vaarverbod__wrapper span.h3 {
			line-height: 1.5;
		}
	}

/*---------------------------------------------- 
	4.4 Module Veelgestelde Vragen
------------------------------------------------*/
	.module-veelgestelde-vragen .accordion ,
 	.module-veelgestelde-vragen .accordion-item ,
    .module-veelgestelde-vragen .accordion .accordion-button {
		border: none;
		box-shadow: none;
		border-radius: 0 !important;
	}

	.module-veelgestelde-vragen .accordion .accordion-button {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}

	.module-veelgestelde-vragen .accordion-item {
		background: none;
		border-bottom: 1px solid var(--orange);
	}

	.module-veelgestelde-vragen .accordion .accordion-button.collapsed ,
	.module-veelgestelde-vragen .accordion .accordion-button{
		background: none !important;
	}

    .module-veelgestelde-vragen .accordion .accordion-button .accordion-button__title {
		font-size: 1.1rem;
		color: var(--black);
		font-weight: 700;
		line-height: 1.5rem;
    }

	.module-veelgestelde-vragen .accordion .accordion-button .accordion-button__arrow i {
		color: var(--dark-grey);	
	}

	.module-veelgestelde-vragen .accordion .accordion-button::after {
		display: none;
	}

	 .module-veelgestelde-vragen .accordion .accordion-item .accordion-body {
        font-size: 0.8rem;
        background: none;
		padding: 0 1.25rem 1rem 1.25rem;
		border-radius: 0;
	}

	.module-veelgestelde-vragen .accordion .accordion-button:not(.collapsed) .accordion-button__arrow {
		-webkit-animation: rotate-90-cw 0.1s ease-in-out both;
		animation: rotate-90-cw 0.1s ease-in-out both;
	}

	.module-veelgestelde-vragen .accordion .accordion-button.collapsed .accordion-button__arrow {
		-webkit-animation: rotate-0-ccw 0.1s ease-in-out both;
		animation: rotate-0-ccw 0.1s ease-in-out both;
	}

	@-webkit-keyframes rotate-90-cw {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
		}
		100% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
		}
	}

	@keyframes rotate-90-cw {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
		}
		100% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
		}
	}

	@-webkit-keyframes rotate-0-ccw {
		0% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
		}
	}

	@keyframes rotate-0-ccw {
		0% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
		}
	}

	@media all and (max-width: 767px) {
		.module-veelgestelde-vragen .accordion .accordion-button span.title {
			font-size: 0.9rem;
		}
		.module-veelgestelde-vragen .accordion .accordion-button span.arrow {
			display: none;
		}
	}

/*---------------------------------------------- 
	4.5 Module Contact
------------------------------------------------*/
	.module-contact__wrapper {
		padding: 2rem 1.5rem;
	}

	.module-contact__column ul li ,
	.module-contact__column li a {
		line-height: 2rem;
		font-weight: 400;
		color: var(--black);
	}

	.module-contact__column ul li a:hover {
		color: var(--black) !important;
	}

	.module-contact__column ul + ul {
		margin-top: 1.25rem !important;
	}

	.module-contact__column + .module-contact__column {
		padding-left: 3.5rem;
	}

	.module-contact__map {
		width: 100%;
		height: 23rem;
	}

	@media all and (max-width: 1250px) {
		.module-contact__column + .module-contact__column {
			padding-left: 2.5rem;
		}	
	}

/*---------------------------------------------- 
	5. Footer 
------------------------------------------------*/
	.footer::before {
		content: "";
		height: 12.5rem;
		width: 100%;
		background: var(--white);
		display: block;
		position: absolute;
		bottom: 0;
	}

	.footer__wrapper {
		padding: 8rem 0 2rem 0;
	}

	.footer__watermark {
		position: absolute;
		right: 0;
		top: 0;
	}

	.footer__contact li ,
	.footer__contact li a ,
	.footer__menu li a {
		line-height: 2rem;
		font-weight: 400;
		color: var(--white);
	}

	.footer__menu li a {
		font-weight: 700;	
	}

	.footer__contact a:hover ,
	.footer__menu li a:hover {
		color: var(--black) !important;
	}

	.footer__column ul + ul {
		margin-top: 2rem !important;
	}

	.footer__quote {
		font-size: 1.5rem;
		line-height: 2.25rem;
	}

	.footer hr {
		border-color: var(--white);
		opacity: 0.3;
		margin: 3.5rem 0 1.5rem 0;
	}

	.footer__bottom-menu li a {
		font-size: 0.8rem;
		font-weight: 400;
		color: var(--light-orange);
		padding: 0;
		position: relative;
	}

	.footer__bottom-menu li:not(:last-child) a::after {
		content: "-";
		color: var(--light-orange) !important;
		padding: 0 0.9rem;
		display: inline-block;
	}

	footer .footer__bottom-menu li a:hover {
		color: var(--white);
	}

	@media all and (max-width: 1200px) {
		.footer__quote {
			font-size: 1rem;
			line-height: 1.75rem;
		}	
	}