:root {
    --white: #FFFFFF;
    --white2: #FCFCFC;
    --white3: #F8F8F8;
    --orange: #EF7D00;
    --maroon: #BD2B0B;
    --grey: #9D9D9C;
    --black: #000000;
    --font-poppins: 'Poppins', 'Arial', sans-serif;
    --font-roboto: 'Roboto', 'Arial', sans-serif;
    --font-tmo: 'TMO_Custom_Iconen_Font', 'Arial', sans-serif;
    --font-awesome: 'Font Awesome 5 Free', 'Arial', sans-serif;
}

@media only screen and (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {

        max-width: 1352px;

	}
}

body {
	font-family: var(--font-poppins);
	font-size: 16px;
	font-size: 1rem;
	color: var(--grey);
    overflow-x: hidden;
}

section {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
    margin-bottom: 3rem;
}

main section:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    section {
       margin-bottom: 64px;
        margin-bottom: 4rem; 
    }
}

@media only screen and (min-width: 1200px) {
    section {
       margin-bottom: 124px;
        margin-bottom: 7.75rem; 
    }
}

.page {
	position: relative;
	min-height: 1080px;
	min-height: 67.5rem;
}

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

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

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

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

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

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

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

.theme-orange h1.title, .theme-orange h2.title {
	color: var(--orange) !important;
}

.theme-maroon h1.title, .theme-maroon h2.title {
	color: var(--maroon) !important;
}


.tmo-icon {
	font-family: "TMO_Custom_Iconen_Font", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    text-transform: none;
    speak: none;
    line-height: 1;
}

.tmo-long-arrow-left::before {
    content: '\21';
}

.tmo-medium-arrow-left::before {
    content: '\22';
}

.tmo-short-arrow-left::before {
    content: '\23';
}

.tmo-angle-left::before {
    content: '\24';
}

.tmo-angle-down::before {
    content: '\25';
}

.tmo-angle-up::before {
    content: '\26';
}

.tmo-angle-right::before {
    content: '\27';
}

.tmo-long-arrow-right::before {
    content: '\2a';
}

.tmo-medium-arrow-right::before {
    content: '\29';
}

.tmo-short-arrow-right::before {
    content: '\28';
}

.tmo-search::before {
    content: '\2b';
}

.tmo-shop::before {
    content: '\2c';
}

.social-media a {
    font-size: 32px;
    font-size: 2rem;
    color: var(--white) !important;
    background-color: var(--orange);
    height: 50px;
    height: 3.125rem;
    width: 50px;
    width: 3.125rem;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    text-decoration: none !important;
    -webkit-transition: 350ms -webkit-transform ease;
    transition: 350ms -webkit-transform ease;
    -o-transition: 350ms transform ease;
    transition: 350ms transform ease;
    transition: 350ms transform ease, 350ms -webkit-transform ease;
}

.social-media a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
        transform: scale(1.1);
}

.social-media a:not(:last-child) {
    margin-right: 16px;
    margin-right: 1rem;
}

.social-media span {
    display: block;
    text-align: center;
    font-family: var(--font-roboto);
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc(30 / 20);
    letter-spacing: 3px;
    letter-spacing: 0.188rem;
    color: var(--orange);
    text-transform: uppercase;
}

.social-media i {
    vertical-align: middle;
}

@media only screen and (min-width: 768px) {
    .offset-md-n1 {
        margin-left: -8.3333333333%;
    }

    .offset-md-n2 {
        margin-left: -16.6666666667%;
    }

    .offset-md-n3 {
        margin-left: -25%;
    }

    .offset-md-n4 {
        margin-left: -33.3333333333%;
    }
}

.mt-n4 {
    margin-top: -1.5rem;
}

@media only screen and (min-width: 768px) {
    .bg-md-transparent {
        background-color: transparent !important;
    }
}

@media only screen and (max-width: 767px) {
    h1.title{
        font-size: 2rem !important;
    }
}

.pop-up{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top:0px;
    z-index: 100;
    display: none;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.pop-up.active{
    display: flex;
}
.pop-up .inner-popup{
    z-index: 2;
    margin: 30px;
    width: 100%;
    max-height: 80vh;
    min-width: 300px;
    max-width: 700px;
    background-color: white;
    position: relative;
}
.pop-up .inner-popup img{
    width: 100%;
}

.pop-up .inner-popup .close-btn{
    position: absolute;
    width: 40px;
    background-color: #EF7D00;
    color:#FFF;
    height: 40px;
    border-radius: 50%;
    top:-20px; right: -20px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    font-size: 23px;
}

.textblock__image,
.col.offset-md-n2.textblock-content-container.bg-white {
    border-radius: 10px;
    overflow: hidden;
}

& .fancybox-content {
    height: 100% !important;
    max-height: 9999px !important;
}

#wat-maakt-ons-bijzonder {

    & iframe {
        width: 100%;
        max-width: 600px;
    }
}