/*
==  THEME DETAILS  ============================================================
   	Theme Name: Total Outdoor Vechtdal
   	Theme URI: https://www.totaloutdoor.nl/
    Description: Stylesheet voor Total Outdoor Vechtdal
    Version: 1.0
  	Author: Kracht Internet Marketing
	Author URI: https://www.krachtinternetmarketing.nl

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

/*---------------------------------------------- 
	1.1 Basics
------------------------------------------------*/
	:root {
		--white: #FFF;
		--black: #000;
        --red: #E0221C;
        --green: #61CE70;
        --orange: #FF9F43;
        --pink: #D8207C;
        --grey: #D6D6D6;
        --light-grey: #e2e2e2;
	}

	html {
  		font-size: 20px;
	}

	body {
        font-family: "source-sans-3", sans-serif;
        font-size: 0.9rem;
	  	line-height: 1.75rem;
		font-weight: 400;
		color: var(--black);
		background: var(--white);
		-webkit-font-smoothing: antialiased;
  		-moz-osx-font-smoothing: grayscale;
	}

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

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

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

	button:focus ,
	:focus {
		outline: 0 !important;
	}
	
	h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
        font-family: "veneer", sans-serif;
        color: var(--dark-blue);
		font-weight: 400;
        text-transform: uppercase;
		line-height: 1.5;
        letter-spacing: 0.3px;
		margin: 0;
		padding: 0;
	}

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

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

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

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

    .ff-veneer {
       font-family: "veneer-two", sans-serif;   
    }

	.fw-bold , strong {
		font-weight: 700 !important;
	}

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

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

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

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

    .rounded {
        border-radius: 5px;   
    }

    .container-fluid {
        max-width: 1700px;
    }

	@media (min-width: 1200px) {
		.container {
			max-width: 1150px;
		}
		figure.scale-image {
			overflow: hidden;
			position: relative;
			display: block;
			cursor: pointer;
		}
		figure.scale-image img {
			transition: transform 0.4s linear;
		}
		figure.scale-image:hover img ,
        .item-paginablok:hover figure.scale-image img {
			transform: scale(1.05);
		}
	}

	@media (min-width: 1360px) {
		.container {
			max-width: 1260px;
		}	
	}

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

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

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

    @media all and (max-width: 767px) {
         body {
            font-size: 0.95rem
        }
    	h1, .h1 {
            font-size: 2.25rem;
        }
        h2, .h2 {
            font-size: 2rem;
        }
        h3, .h3 {
            font-size: 1.5rem;
        }
        h4, .h4 {
            font-size: 1.25rem;
        }
	}

/* Buttons -------------------------------------- */
	.btn {
		font-size: 0.9rem;
        font-weight: 400;
		line-height: 1rem;
		padding: 1rem 1.75rem;
		border-radius: 5px;
		border: none;
	}

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

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

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

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

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

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

    .link-primary {
        font-weight: 700;
        color: var(--black) !important;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .link-primary-secondary {

    }

    .link-primary i {
        color: var(--pink);
    }

    .link-primary:hover {
        color: var(--red) !important;
    }

    .link-primary:focus {
        color: inherit !important;
    }

	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.75rem !important;
	}

    .content-block h2 ,
	.content-block h3 {
		margin-bottom: 1rem;
	}

    .content-block ul {
        padding-left: 1rem;
    }

    .content-block ul li::marker {
        color: var(--red);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*---------------------------------------------- 
	1.4 Spacing
------------------------------------------------*/
    .py-100 {
        padding: 5rem 0;
    }

    .pt-100 {
        padding-top: 5rem;
    }

    .pb-100 {
        padding-bottom: 5rem;
    }

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

/*---------------------------------------------- 
	1.5 Text Mark
------------------------------------------------*/
    .text-mark {
        padding: 0.25rem 0.75rem;
        line-height: 1.5;
        border-radius: 5px;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }

/*---------------------------------------------- 
	1.6 Torn Edge
------------------------------------------------*/
    .torn-edge-section::after ,
    .torn-edge-hero::after {
        content: "";
        background-position: center bottom;
        background-size: 100% auto;
        background-repeat: no-repeat;
        width: 100%;
        position: absolute;
        left: 0;
        z-index: 8;
    }

    .torn-edge-section::after {
        background-image: url("../images/torn-edge-2.png");
        aspect-ratio: 3500 / 126;
        top: 100%;
    }

     .bg-white.torn-edge-section::after {
        background-image: url("../images/torn-edge-1-white.png");
    }

    .torn-edge-hero::after {
        background-image: url("../images/torn-edge-hero.png");
        aspect-ratio: 3500 / 150;
        bottom: 0;
    }

    .torn-edge-section.bg-light-grey:has(+ .bg-light-grey)::after {
        display: none;
    }

/* Background -------------------------------------- */	
     .torn-edge-bg {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 40%;
        background: var(--black);
    }

    .torn-edge-bg::before,
    .torn-edge-bg::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        background-position: center bottom;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    .torn-edge-bg::before {
        bottom: 100%;
        aspect-ratio: 3500 / 150;
        background-image: url("../images/torn-edge-1-black.png");
    }
 
    .torn-edge-bg::after {
        top: 100%;
        aspect-ratio: 3500 / 95;
        background-image: url("../images/torn-edge-2-black.png");
    }

/*---------------------------------------------- 
	1.7 Item Activiteit
------------------------------------------------*/
    .item-activiteit__badge {
        font-size: 0.7rem;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        line-height: 1;
        position: absolute;
        top: 1.5rem;   
        right: -2.25rem;  
        z-index: 2;
        width: 10rem;
        padding: 0.5rem 0;
        color: var(--white);
        transform: rotate(45deg);
        box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
        pointer-events: none;
    }

    .item-activiteit__badge--populair {
        background: var(--pink);
    }

    .module-activiteiten .item-activiteit__content {
        padding: 2rem 1.5rem;
        background-image: url("../images/torn-sidebar.png");
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        min-height: 14rem;
    }

/*---------------------------------------------- 
	1.8 Item Blog
------------------------------------------------*/
    .item-blog__content {
        padding: 2rem 1.5rem;
        background-image: url("../images/torn-sidebar.png");
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        min-height: 10rem;
    }

/*---------------------------------------------- 
	1.9 Item Paginablok
------------------------------------------------*/
    .item-paginablok__content {
        padding: 1rem;
        position: absolute;
        inset: 0;
        background: var(--black);
        background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

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

/*---------------------------------------------- 
	1.10 Sidebar
------------------------------------------------*/
    .sidebar {
        padding: 3rem 2.5rem;
        background-image: url("../images/torn-sidebar.png");
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        min-height: 21.75rem;
    }

    .sidebar ul li i {
        font-size: 1.75rem;
        color: var(--white);
    }

    .sidebar ul li + li {
        margin-top: 1rem;
    }

    .sidebar .link-primary {
        color: var(--white) !important;
    }

/*---------------------------------------------- 
	1.11 Social Media
------------------------------------------------*/
	.social-media li a {
		font-size: 1.75rem !important;
	    color: var(--white);
	}

	.social-media li.list-inline-item:not(:last-child) {
		margin-right: 0.1rem !important;
	}

	.social-media li a:hover {
        color: var(--black);
	}

/*---------------------------------------------- 
	1.12 FAQ Manager
------------------------------------------------*/
    .faqm-overview .accordion .accordion-button .accordion-button__title ,
    .faqm-overview .accordion .accordion-item .accordion-body {
        font-size: 0.9rem !important;
    }

    .accordion-button__arrow i {
        color: var(--red);
    }

/*---------------------------------------------- 
	1.13 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: inherit !important;
		font-weight: 700 !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: inherit !important;
		font-weight: 400;
		padding: 10px 20px !important;
		background: var(--white) !important;
		height: 2.75rem;
        color: var(--black) !important;
		border: none !important;
		width: 100% !important;
		border-radius: 5px !important;
	}

    .gform_wrapper input.datepicker {
        max-width: 300px !important;
    }

    .gform_wrapper.gravity-theme .ginput_container_time {
        min-width: 6rem !important;
        max-width: inherit !important;
    }

    .gform_wrapper.gravity-theme .gfield_time_hour label.hour_label, 
    .gform_wrapper.gravity-theme .gfield_time_minute label.minute_label {
        display: none !important;
    }

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

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

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

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

	.gform_wrapper.gravity-theme .gfield_radio {
		display: flex;
		align-items: center;
	}

	.gform_wrapper.gravity-theme .gfield_radio .gchoice + .gchoice {
		margin-left: 0.75rem;
	}

	.gform_wrapper.gravity-theme .gfield_checkbox label, 
	.gform_wrapper.gravity-theme .gfield_radio label {
		font-size: 0.8rem !important;
	}

	.gform_wrapper.gravity-theme .gform_fields {
		grid-row-gap: 1rem !important;
	}

	.gform_required_legend {
		display: none !important;
	}

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

	.gform_wrapper .gfield_checkbox label {
		font-size: 0.5rem !important;
		padding-left: 0.25rem;
	}

	.gform_wrapper ::placeholder {
		color: var(--black);
        opacity: 0.3;
	}

/*---------------------------------------------- 
	1.14 Whatsapp 
------------------------------------------------*/
	.whatsapp {
		position: fixed;
		z-index: 998;
		right: 1rem;
		bottom: 1rem;
		text-decoration: none !important;
	}	

	.whatsapp i {
		background: #25D366;
		color: #FFF;
		display: block;
		text-align: center;
		height: 2.5rem;
		width: 2.5rem;
		font-size: 1.4rem;
		line-height: 2.5rem;
		border-radius: 100%;
	}

	.fade-in-bottom {
		-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	   	animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	}

	@-webkit-keyframes fade-in-bottom {
	  0% {
		-webkit-transform: translateY(50px);
				transform: translateY(50px);
		opacity: 0;
	  }
	  100% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	  }
	}
	@keyframes fade-in-bottom {
	  0% {
		-webkit-transform: translateY(50px);
				transform: translateY(50px);
		opacity: 0;
	  }
	  100% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		opacity: 1;
	  }
	}

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

    .header::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        aspect-ratio: 3500 / 100;
        background-image: url("../images/torn-edge-header.png");
        background-position: center top;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    .header__brand {
        max-width: 9rem;
    }

    .header__button {
        font-weight: 700;
        border-radius: 50px;
    }

    @media all and (max-width: 576px) {
        .header__brand {
            max-width: 100% !important;
        }
    }

/*---------------------------------------------- 
	2.2 Navigation 
------------------------------------------------*/
    .navigation__menu li a {
		font-size: 1rem;
		line-height: 1;
		font-weight: 700;
		color: var(--black);
		padding: 0.25rem 0.75rem;
        overflow: hidden;
        position: relative;
        z-index: 0;
	}

    .navigation__menu li a::before {
        content: "";
        position: absolute;
        inset: 0;               
        background: var(--red);
        border-radius: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
        z-index: -1;
    }

    .navigation__menu li a:hover::before ,
    .navigation__menu li.current_page_item a::before ,
    .navigation__menu li.current-menu-parent > a::before,
    .navigation__menu li.current_page_ancestor > a::before,
    .navigation__menu li.active > a::before,
    .navigation__menu li.dropdown:hover > a::before {
        transform: scaleY(1);
    }
    
    .navigation__menu li a:hover ,
    .navigation__menu li.current_page_item a ,
    .navigation__menu li.current-menu-parent > a ,
    .navigation__menu li.current_page_ancestor > a ,
    .navigation__menu li.active > a ,
    .navigation__menu li.dropdown:hover > a {
        color: var(--white);
    }

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

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

    .navigation__menu .dropdown-menu  li a::before {
        content: none !important;
    }

	.navigation__menu .dropdown-menu li a {
		font-size: 0.85rem;
		font-weight: 500;
		color: var(--dark-blue) !important;
   	 	line-height: 1;
    	padding: 0.75rem;
		margin: 0;
		text-shadow: none !important;
		text-align: left;
		border: none;
		background: none;
	}

	.navigation__menu .dropdown-menu li + li {
		margin: 0;
		border-top: 0.5px solid var(--light-blue);
	}

	.navigation__menu .dropdown-menu li a:hover ,
	.navigation__menu .dropdown-menu li.current-menu-item a {
		color: var(--white) !important;
        background: 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 !important;
		font-size: 1.1rem;
		text-align: center;
		line-height: 2.5rem;
		height: 2.5rem;
		width: 2.5rem;
		background: var(--red) !important;
		color: var(--white) !important;	
		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: 0.9rem;
		font-weight: 600;
		color: var(--white);
		text-align: left !important;
	}

	.navigation-mobile .current-menu-item a {
		color: var(--white);
	}

	.navigation-mobile .cd-dropdown {
		background: var(--red);
		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.25px;
    	border-bottom-width: 0;
    	border-left-width: 0;
    	border-right-width: 0;
    	border-color: var(--white);
    	border-style: solid;
	}

	.navigation-mobile .cd-dropdown-content li:last-of-type > a, 
	.navigation-mobile .cd-dropdown-content ul li:last-of-type > a {
		border-bottom-width: 0.25px;;
	}
	
	.navigation-mobile .cd-dropdown-content .go-back a {
		color: var(--black);
		background: var(--white);
	}

	.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 {
		background: var(--white) !important;
	}

	.navigation-mobile .cd-dropdown .cd-close::after, 
	.navigation-mobile .cd-dropdown .cd-close::before {
		background: var(--white) !important;
	}

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

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

    .navigation-mobile__links {
		position: absolute;
		bottom: 1.5rem;
		left: 1.5rem;
	}

/*---------------------------------------------- 
	3.1 Frontpage Hero
------------------------------------------------*/
    .frontpage-hero {
        height: 45rem;
        overflow: hidden;
        position: relative;
    }

    .frontpage-hero__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .frontpage-hero__video-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.12);
        width: 100vw;
        height: 56.25vw;    
        min-height: 45rem;
        min-width: calc(45rem * 1.7778);  /* = 80rem */
    }

    .frontpage-hero__video-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .frontpage-hero__content {
        position: absolute;
        inset: 0;
    }

    .frontpage-hero__title span {
        font-size: 3.25rem;
    }

    @media all and (max-width: 1950px) {
        .frontpage-hero {
            height: 40rem;
        }
        .frontpage-hero__video-wrap {
            min-height: 40rem;
            min-width: calc(40rem * 1.7778);
        }
    }  

    @media all and (max-width: 1500px) {
        .frontpage-hero,
        .frontpage-hero__video {
            height: 35rem;
        }
        .frontpage-hero__video-wrap {
            min-height: 35rem;
            min-width: calc(35rem * 1.7778);
        }
	}

    @media all and (max-width: 992px) {
        .frontpage-hero,
        .frontpage-hero__video {
            height: 25rem;
        }
        .frontpage-hero__video-wrap {
            min-height: 25rem;
            min-width: calc(25rem * 1.7778);
            transform: translate(-50%, -50%) scale(1.4);
        }
	}

     @media all and (max-width: 767px) {
        .frontpage-hero__title span {
            font-size: 2.5rem;
        }
    }

/*---------------------------------------------- 
	3.2 Frontpage Intro
------------------------------------------------*/    
    .frontpage-intro h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }    

/*---------------------------------------------- 
	3.3 Frontpage Activiteiten
------------------------------------------------*/
    .frontpage-activiteiten__background {
        position: absolute;
        inset: 0;
        z-index: 0;  
        pointer-events: none;
    }

    .frontpage-activiteiten__background::before ,
    .frontpage-activiteiten__background::after {
        content: "";   
        position: absolute;
        left: 0;
        width: 100%;
    }

    .frontpage-activiteiten__background::after {
        background: var(--black);
        bottom: 0;
        height: 40%;
    }

    .frontpage-activiteiten__background::before {
        bottom: 40%;
        aspect-ratio: 3500 / 150;
        background-image: url("../images/torn-edge-1-black.png");
        background-position: center bottom;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

/*---------------------------------------------- 
	3.4 Frontpage Arrangementen
------------------------------------------------*/
    .frontpage-paginablokken::before ,
    .frontpage-paginablokken::after {
        content: "";    
        position: absolute;
        left: 0;
        width: 100%;
    }
         
    .frontpage-paginablokken::before {
        background: var(--black);
        top: 0;
        height: 45%;
    }

    .frontpage-paginablokken::after {
        top: 45%;
        aspect-ratio: 3500 / 95;
        background-image: url("../images/torn-edge-2-black.png");
        background-position: center top;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

/*---------------------------------------------- 
	4.1 Hero
------------------------------------------------*/
    .hero__item {
        height: 35rem;
        padding-bottom: 8rem;
    }

    .hero__title span {
        font-size: 3.25rem;
    }

    @media all and (max-width: 1200px) {
    	 .hero__item {
            height: 30rem;
            padding-bottom: 4rem;
		}
	}

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

/*---------------------------------------------- 
	5.1 Page Modules
------------------------------------------------*/
    .module-reviews + .module-faq {
        padding-top: 3rem !important;
    }

    @media all and (max-width: 992px) {
		.module-content--columns .col {
			flex: 0 0 auto;
			width: 100%;
		}
	}
   
/*---------------------------------------------- 
	4.2 Modulare Paginablokken
------------------------------------------------*/
    .module-paginablokken::before ,
    .module-paginablokken::after {
        content: "";    
        position: absolute;
        left: 0;
        width: 100%;
    }
         
    .module-paginablokken::before {
        background: var(--black);
        top: 0;
        height: 45%;
    }

    .module-paginablokken::after {
        top: 45%;
        aspect-ratio: 3500 / 95;
        background-image: url("../images/torn-edge-2-black.png");
        background-position: center bottom;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

/*---------------------------------------------- 
	5.1 Single Activiteit
------------------------------------------------*/
    .single-activiteit--sidebar__price {
        position: absolute;
        top: -0.5rem;
        right: 0;
    }

     .single-activiteit--sidebar ul {
		list-style: none;
	  	padding: 0;
	}
	
	  .single-activiteit--sidebar ul li {
  		position: relative;
		padding-left: 1.5rem;
        line-height: 2rem;
	}

	  .single-activiteit--sidebar li:before {
         font-family: "Font Awesome 7 Pro";
		 content: "\f2f7";
         font-size: 1rem;
		 position: absolute;
    	 left: 0;
	}

    .single-activiteit--sidebar ul li + li {
        margin-top: 0 !important;
    }

    .single-activiteit--sidebar + .single-activiteit--sidebar {
        margin-top: 1.5rem;
    }

/*---------------------------------------------- 
	7.2 Footer 
------------------------------------------------*/
	.footer {
		padding: 1.5rem 0 4rem 0;
        margin-top: 8rem;
	}

    .footer::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 100%;
        width: 100%;
        aspect-ratio: 3500 / 135;
        background-image: url("../images/torn-edge-footer.png");
        background-position: center bottom;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    .footer__contactgegevens li ,
    .footer__contactgegevens li a ,
    .footer__menu li a {
        line-height: 1.75rem;
        color: var(--white);
    }

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

    .footer__contactgegevens + .footer__contactgegevens {
        margin-top: 1.75rem;
    }

    @media all and (max-width: 992px) {
        .footer {
            margin-top: 5rem;
	    }    
    }

/*---------------------------------------------- 
	7.2 Footer Bottom
------------------------------------------------*/
    .footer-bottom ul li ,
    .footer-bottom ul li a ,
    .footer-bottom span , 
    .footer-bottom span a {
        font-size: 0.8rem;
        color: var(--black);
    }

    .footer-bottom ul li a:hover ,
    .footer-bottom span a:hover {
        color: var(--red);    
    }
