jelmer.jpg@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

@font-face {
    font-family: site;
    src: url(ubuntu.ttf);
}

@font-face {
    font-family: elegant;
    src: url(GreatVibes.ttf);
}

a {
  text-decoration: none;
}

.hidden {
  display: none;
}

img {
	user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

html, body
{
   opacity: o;
   font-family: site;
   letter-spacing: normal;
   font-size: 11pt;
   scroll-behavior: smooth;
   color: #555;
   overflow-x: hidden;
}

#prevent {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
}

#play {
	position: absolute;
	top: 67vh;
	left: calc(50% - 25px);
	width: 50px;
	height: 50px;
	border: 2px solid #fff;
	color: #fff;
	line-height: 40px;
	font-size: 40px;
	z-index: 10;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
  transition: 0.5s;
}

#play::after {
	position: absolute;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 25px solid #fff;
	height: 0px;
	display: block;
	content: '';
	margin: 9px 0 0 17px;
  transition: 0.5s;
}


#progressBar {
	position: fixed;
	top: 58px;
	width: 0px;
	height: 5px;
	background: #04723C;
	z-index: 3;
	left: 0;
  transition: 1s;
}

#maintenance {
	position: relative;
	margin: 100px auto;
	width: 300px;
	padding: 50px;
	color: #0D7642;
	border: 2px solid #0D7642;
	border-radius: 10px;
  font-weight: bold;
}

h1, h2 {
  color: #fff;
  font-weight: bold;
  width: 100%;
  transition: 0.5s;
}

h1 {
  font-size: 32pt;
}

h2 {
  font-size: 22pt;
}

h4 {
  font-size: 16pt;
  font-weight: bold;
}

h5 {
  font-size: 14pt;
  font-weight: bold;
}

h6 {
  font-size: 12pt;
  font-weight: bold;
}

#page-container {
  position: relative;
  float: left;
  overflow-x: hidden;
}

.container {
  position: relative;
  margin: 0 auto;
  min-width: 250px;
  height: 100%;
}

#tm1, #tm2, #tm3 {
  transform: scale(0);
}

#slider {
  position:relative;
  float:left:
  transition: 1s;
  background: #000;
}

.slidecontainer {
	position: relative;
	float: left;
	height: 100vh;
	width: 100vw;
}

.slider {
  position: relative;
  float: left;
  width: 100vw;
  height: 100vh;
  background-size: cover !important;
  transition: 1s;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

#dmenuContainer {
	position: fixed;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-around;
	height: 65px;
	flex-wrap: wrap;
	align-content: space-evenly;
  width: calc(100vw - 200px);
  right: 0;
}

#dmenuContainer.start {
  position: absolute;
	height: 100vh;
  width: 100vw;
}

#dmenuContainer.startup {
	opacity: 0;
	animation: textAnimation3 0.5s ease-in-out 7.5s forwards;
	overflow: hidden;
	width: 0px;
}

.schuin {
	position: relative;
	float: left;
	color: #fff;
	transform-origin: 100% 100%;
	width: 15vw;
	text-align: center;
	font-size: 14pt;
	cursor: pointer;
	padding-top: 65px;
	height: 0px;
  border-bottom: 0px solid #fff;
  transition: color 0.5s linear 2s, border-width 0.5s linear 2s;
}

.schuin.act {
	color: orangered;
	border-bottom: 3px solid #fff;
}

.start .schuin, .men-out .schuin {
	border: 1px solid #fff;
	padding-top: 15vw;
  background: rgba(255,255,255,0.4);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:unset;
}

.start .schuin span {
  top: calc(15vw / 2 - 14pt);
}

.schuin span {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	text-align: center;
}

#slide0 {
  transition: 1s;
}

.shadow {
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  transition:0.5s;
  animation: textAnimation5 0.5s ease-in-out 7s forwards;
}

.text {
  transform:scale(0);
  opacity:0;
  transition:1s;
  z-index=3;
}

#slide0 .text {
  transform:scale(1);
  opacity:1;
}

#pageTitle {
	position: absolute;
	margin: 20vh auto;
	width: 565px;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
  z-index:2;
  color:#fff;
  overflow: hidden;
  opacity:1;
  animation: textAnimation5 0.5s ease-in-out 7s forwards;
}

@keyframes textAnimation {
  0%    { opacity: 0; }
  40%   { opacity: 1; }
  60%   { opacity: 1; }
  100%  { opacity: 0; }
}

@keyframes textAnimation2 {
  0%    { opacity: 0; position:relative; }
  100%  { opacity: 1; margin-top: 0px; position:relative; }
}

@keyframes textAnimation3 {
  0%    { opacity: 0; width:0px; }
  75%   { width: 100vw; }
  100%  { width: 100vw; opacity: 1; }
}

@keyframes textAnimation4 {
  0%    { color: #fff; }
  80%  { color: orangered; }
  85%  { color: #fff; }
  100%  { color: orangered; }
}

@keyframes textAnimation5 {
  0%    { opacity: 1; }
  100%  { opacity: 0; }
}

@keyframes textAnimation6 {
  0%    { opacity: 0; }
  100%  { opacity: 1; }
}

#tline1, #tline2, #tline0 {
	position: relative;
	float: left;
	width: 100%;
	font-size: 3.35em;
}

#tline1 {
  opacity:0;
  animation: textAnimation6 2s ease-in-out 4s forwards;
}

#tline2 {
  position:absolute;
  font-size:2.4em;
  margin-top: 500px;
  opacity:0;
  animation: textAnimation2 1s ease-in-out 3s forwards, textAnimation4 1s linear 6s forwards;
}

#tline0 {
  animation: textAnimation 3s ease-in-out forwards;
  color:orangered;
}

#vgContainer {
	position: fixed;
	bottom: 90px;
  right: -100vw;
	width: 96vw;
	display: flex;
	justify-content: center;
  padding: 25px 10px 25px 10px;
  opacity: 1;
  transition: 0.5s;
  border-top: 1px solid #fff;
  z-index: 10;
}

#mcc-container {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	padding: 50px;
	height: 65vh;
	overflow-y: scroll;
}

#mcC {
	position: relative;
	float: left;
	width: 100%;
}

.progress {
	position: relative;
	float: left;
	width: 130px;
	height: 100px;
	border-radius: 12%;
	background: #fff;
  background-size:cover !important;
  background-position: center center;
  opacity:0;
  transition: 1s;
  cursor:pointer;
}

.prLine {
	position: relative;
	width: 100px;
	height: 25px;
	border-bottom: 3px solid #fff;
	margin: 23px 15px auto 15px;
	opacity: 0;
	transition: 1s;
	color: #fff;
	font-size: 20px;
	text-align: center;
}

.sl-cont {
	position: absolute;
	top: 33vh;
	left: 50vw;
	width: auto;
	z-index: 3;
	transition: 0.5s;
	color: #fff;
	font-size: 22pt;
  cursor:pointer;
}

#mainContent, #contactText {
	position: fixed;
	width: 100vw;
	top: 63px;
	height: calc(100vh - 144px);
	background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
	padding: 50px 10vw 20px 10vw;
	font-size: 14pt;
	margin-left: 200vw;
	transition: 0.5s;
	box-sizing: border-box;
	z-index: 12;
}

#contactText {
	left: 2vw;
	width: 96vw;
	height: calc(100vh - 326px);
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
	margin-left: 100vw;
	color: #fff;
	border-radius: 10px;
	top: 75px;
  transition-delay: 1s;
}

#mainContent h3 {
  color: #04723C;
  margin: 0 0 20px 0;
}

#close {
	position: absolute;
	top: 20px;
	right: 50px;
	font-size: 22pt;
	cursor: pointer;
  color: red;
}

#container {
  position: relative;
  float: left;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x:hidden;
  scroll-behavior: smooth;
}

@supports (-moz-appearance:none) {
  #container {
    scroll-behavior: unset;
  }
}

.page {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  animation: fadein linear 0.5s forwards;
  box-sizing: border-box;
  background: #000;
  overflow: hidden;
}

.text {
  position:absolute;
  bottom: 100px;
  left: 20px;
  font-size: 22pt;
  color: #fff;
  z-index: 2;
  width: 20vw;
}

#try {
  position: absolute;
  right: 0;
  z-index: 2;
  padding: 20px;
  margin: 20px;
}

#slogan {
	position: absolute;
	width: 100%;
	min-width: 270px;
	height: calc(100vh - 65px);
	margin-top: 65px;
	font-weight: bold;
	font-size: 16pt;
	color: #04723C;
	z-index: 2;
	left: 0;
	overflow: hidden;
	background: rgba(0,0,0,0.4);
	padding: 5vh 20px 5vh 20px;
  border-top: 15vh solid rgba(0,0,0,0);
  border-bottom: 15vh solid rgba(0,0,0,0);
	transition: 0.5s;
	backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-sizing:border-box;
  overflow:hidden;
}

#topmenu {
  position: fixed;
  width: 0px;
  height: 0px;
  top: 0;
  right: 0;
  padding: 0 0 0 30px;
  z-index: 4;
  background: #fff;
  transition: 0.5s;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  transform: scale(0);
}

#topmenu #tm-container {
  height: auto;
}

#mbutton, #mbutton2 {
  position: fixed;
  top: 15px;
  right: 20px;
  color: #fff;
  font-weight: bold;
  z-index: 5;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display:none;
}

.show {
	width: 100vw !important;
	min-height: 100vh !important;
	opacity: 1 !important;
	transform: scale(1) !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.int {
  position: relative !important;
  box-sizing: border-box;
  height: auto !important;
  padding: 0 !important;
}

.showIn {
  display: block !important;
}

.line, .line2 {
  position: absolute;
  width: 100%;
  border-top: 3px solid #fff;
  transition: 0.5s;
}

#line1.close {
  top: 5px;
  left: 0;
}

#line2.close {
  top: 15px;
  left: 0;
}

#line3.close {
  top: 25px;
  left: 0;
}

.on #line1 {
  opacity: 0 !important;
}

.on #line2 {
  transform: rotate(45deg) !important;
  margin-top: 5px;
}

.on #line3 {
  transform: rotate(-45deg) !important;
  margin-top: -5px;
}

#textbaloon {
  position: fixed;
  top: 18px;
  right: 70px;
  font-size: 14pt;
  font-weight: bold;
  color: #fff;
  z-index: 4;
  transition: 0.5s;
}

#tm-container, #menu-4 {
	position: relative;
	box-sizing: border-box;
	background-size: cover;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
  min-height: 100vh;
}

#art-container {
	position: relative;
	float: left;
	width: 100%;
}

#row-1, #row-2 {
  position: relative;
  float: left;
}

.tm-item, .tm2-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  box-sizing: border-box;
  padding: 5px;
  display: flex;
  cursor: pointer;
  padding:20px;
  transition: padding 0.3s cubic-bezier(.47,1.64,.41,.8) 1s, width 1s cubic-bezier(.47,1.64,.41,.8) 1s, transform 0.5s cubic-bezier(.47,1.64,.41,.8) 2s;
  text-align:center;
  z-index: 2;
  transform: scale(0.4);
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
}

.tm2-item {
  background: unset !important;
}

.tm2-item::before {
  content: '';
  position: absolute;
  background-color: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideIn {
  width: 0px;
  height: 0px;
}

.slideOut {
  transform:scale(1) !important;
}

.text-sl {
	position: relative;
	width: 40vw;
	color: #fff;
	font-size: 14pt;
	text-align: justify;
	text-justify: inter-character;
	overflow: hidden;
	margin-top: 25vh;
	z-index: 5;
	height: max-content;
}

.tm-item span, .tm2-item span {
	display: block;
	width: 70%;
	text-align: center;
	font-weight: bold;
	transition: 0.5s;
	color: #fff;
	margin-top: -100vh;
	font-size: 26pt;
	z-index: 2;
	width: auto;
	padding: 70px;
	height: max-content;
	border-bottom: 1px solid #fff;
}

.tit-out {
  margin-top: 53px !important;
  transition: margin 1s cubic-bezier(.47,1.64,.41,.8) 2s !important;
  display: none !important;
}

act

#tm2 {
  background: url(images/slid4.png) no-repeat bottom right;
  background-size: 100% auto;
}

#tm1 {
  background: url(images/slid3.png) no-repeat bottom right;
  background-size: auto 100%;
}

#tm3 {
  background: url(images/slid5.png) no-repeat bottom right;
  background-size: auto 100%;
}

#tm4 {
  background: url(images/ct.jpg) no-repeat top center;
  background-size: auto 100%;
}

#tm5 {
  background: url(images/rouw.jpg) no-repeat top center;
  background-size: auto 100%;
}

#tm7 {
  background: url(images/ervaringen.jpg) no-repeat center center;
  background-size: 100% 100%;
}

#social {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  float: left;
  width: 100%;
  height: 30px;
  justify-content: center;
  margin-top: 8px;
}

#social a {
  background-size: 20px 20px;
}

.social {
  position: relative;
  float: left;
  display: block;
  width: 30px;
  height: 30px;
}

.facebook { background: url(images/facebook.svg) no-repeat 0 0; }
#footer .facebook { background: url(images/facebook2.svg) no-repeat 0 0; }
.twitter { background: url(images/twitter.svg) no-repeat 0 0; }
#footer .twitter { background: url(images/twitter2.svg) no-repeat 0 0; }
.linkedin { background: url(images/linkedin.svg) no-repeat 0 0; }
.website { background: url(images/globe.svg) no-repeat 0 0; }
#footer .youtube { background: url(images/youtube.svg) no-repeat 0 0; background-size: 23px 23px; }

#socialmedia {
	position: relative;
	height: 100px;
	width: 100%;
}

#socialmedia a {
  position: relative;
  float: left;
  width: 100%;
  padding-left: 30px;
  color: #fff;
  font-size: 12pt;
}

#socialmedia a:hover {
  text-decoration: none;
}

#share span {
	padding: 0 10px 0 0px;
}

#share a {
  margin-right: 10px;
}

#share {
  position: relative;
  float: left;
  color: #04723C;
  margin: 30px 0 0 0;
  font-size: 12pt;
  font-weight: bold;
}

#share span {
  position: relative;
  float: left;
  padding: 3px 10px 0 0px;
}

#page-title {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 10;
}

#pt-inner {
	position: relative;
	float: left;
	margin: 0 auto;
	max-width: 1050px;
	min-width: 450px;
	transition: 0.5s;
	background-size: auto calc(100% - 7px);
	height: 70px;
}

#logo {
  position: relative;
  float: left;
  width: auto;
  height: 100%;
  margin-left:12px;
}

.logo-line {
  display: block;
  width: 100%;
  position:relative;
  height: 50%;
}

#logo1 {
	font-size: 30pt;
	color: orangered;
	font-weight: bold;
	letter-spacing: 0px;
	padding-left: 3px;
	margin-bottom: 2px;
}

#logo2 {
	color: #fff;
	font-weight: bold;
	font-size: 24pt;
}

.st2 {
	color: orangered;
}

.up {
  background: #fff !important;
  width: 100vw !important;
  box-sizing: border-box;
}

.up #pt-inner {
  margin: 5px;
  padding: 10px;
  overflow: hidden;
  background-size: contain;
}

.up h1, .up h2 {
  width: auto;
  position: relative;
  float: left;
  color: rgba(67, 72, 91, 1);
  transition: 0.5s;
}

.up h1 {
  font-size: 14pt;
  padding: 0 10px 5px 100px;
}

.up h2 {
  font-size: 12pt;
  padding: 2pt 0 0 0;
}

.dark {
  border-color: #43485B;
  color: #43485B !important;
}

.on .line, .on .line2 {
  border-color: #555;
}

#slice-2 {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.tile, .tile2 {
  position: relative;
  float: left;
  width: calc(43% - 20px);
  height: auto;
  font-size: 18pt;
  font-weight: bold;
  cursor: pointer;
  margin: 0 10px 0 10px;
  background-color: #fff !important;
}

.tile span, .tile2 span {
  position: relative;
  float: left;
  text-align: center;
  color: #43485B;
  background: #fff;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 14pt;
}

.img {
  position: relative;
  float: left;
  width: 100%;
  padding-top: 100%;
  background-size: 100% auto !important;
}

#who {
  background: url(../images/jelmer.jpg) no-repeat top left;
}

#price {
  background: url(images/tarieven.jpg) no-repeat top left;
}

#workshop, #contact {
  width: calc(86% - 40px);
}

#workshop .img, #contact .img {
  padding-top: calc(100% / 2);
}

#workshop-container, #contact-container {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
}

#workshop-container li {
  text-decoration: none;
  color: #fff;
  font-size: 12pt;
  cursor: pointer;
  list-style: none;
  background-color: transparent !important;
  width: 100%;
  display: block;
  line-height: 20pt;
}

#contact-container {
  width: 100%;
}

#contact-left, #contact-right {
  position: relative;
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
  color: #fff;
  font-size: 12pt;
  height: 100%;
}

#contact-right {

}

#for {
	background: url(images/familie.jpg) no-repeat top center;
	background-size: auto 100%;
}

#ws2 {
	background: url(../images/veiligheid.jpg) no-repeat top center;
	background-size: auto 100% !important;
}

.transp {
  color: transparent !important;
}

#menu-3, #menu-2 {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  overflow: hidden;
  display:flex;
  align-items: center;
  justify-content: center;
}

#menu-4 {
  transition: 0.5s;
  height: 100%;
}

#menu-3 .brown {
	background-image: url(../images/klanten.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto !important;
}

.in {
  opacity: 0;
  transform: scale(0) !important;
}

.hide {
  display: none;
}

#art-head {
  position: relative;
  left: 0;
  right: 0;
  margin: 0;
  margin-bottom: 30px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  background-position: top center;
  background-color: #777;
  overflow: hidden;
  max-height: 600px;
}

#art li {
	list-style: disc;
	margin-left: 15px;
}

#banner-image, #banner-ws-image {
	position: relative;
	display: block;
	height: auto;
	width: 100%;
}

#banner-ws-image {
  width: 50%;
  float: left;
  align-self: center;
  justify: center;
  min-height: 200px;
}

#ws-description {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
}

#ws-head {
  display: flex;
  position: relative;
  float: left;
  width: 100%;
  max-height: 300px;
  min-height: 200px;
  overflow: hidden;
  background: #DDEDC7;
}

#wi {
  position: relative;
  float: left;
  width: 50%;
  padding: 20px;
  font-size: 16pt;
  font-weight: bold;
  background: #9CBF6D;
  color: #fff;
  text-align: center;
}

#wt {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10%;
  color: #CDA168;
  font-size: 14pt;
}

#art, #art-p {
	position: relative;
	float: left;
	width: 100%;
	padding: 5%;
	background: #fff;
	margin: -30px 0 0 0;
}

#art h3, #art-p h3 {
  margin: 20px 0 20px 0;
  font-size: 16pt;
  color: #CDA168;
  font-weight: bold;
}

.inh {
  background: #fff;
  max-width: 1030px;
  box-shadow: 0px 0px 10px #ccc;
}

.m3-item {
  position: relative;
  width: 70%;
  height: 23vh;
  font-size: 18pt;
  font-weight: bold;
  text-align: center;
  color: #CDA168;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m3-item p {
  cursor: pointer;
}

#wijze {
  margin: 0 auto;
}

#wie {
  float: left;
}

#wil {
  float: right;
}

.small {
  display: none;
}

.small span {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 40%;
  font-size: 16pt;
  color: #fff;
  font-weight: bold;
  text-shadow: -1px 0 1px #43485B, 0 1px 1px #43485B, -1px -1px 1px #43485B, 1px 1px 1px #43485B, 1px 0 1px #43485B, 1px 1px 1px #43485B;
}

.brown {
  background: #CDA168;
}

.blue {
  background-color: #81C3DB;
}

.grey {
  background-color: #888;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 80px;
  background: #444;
  width: 100%;
  line-height: 80px;
  font-size: 12pt;
  color: #fff;
  overflow: hidden;
  z-index:12;
}

#footer .container {
  padding-left: 30px;
}

#mbutton, #textbaloon {
  display: none;
}

#menu-3 #for {
  background-size: auto 100% !important;
}

#mailform {
	position: relative;
	float: left;
  width: 100%;
	max-width: 500px;
  margin: 30px 0 0 0;
}

input, textarea {
	position: relative;
	float: left;
	width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid #CDA168;
  margin: 10px 0 0 0;
  color: #555;
}

.hidden {
  display: none;
}

#privacy {
  cursor:pointer;
}

.hidden {
  display: none;
}

#priv + label span {
  display: block;
  position: relative;
  float: left;
  border: 1px solid #444;
  width: 25px !important;
  height: 25px !important;
  margin: 10px 5px 5px 0;
}

#priv:checked + label span {
  background: url(images/check.png) no-repeat !important;
  background-size: cover !important;
}

#statement {
	position: relative;
	float: right;
	display: block;
	width: 445px;
	margin: 7px 0 0 0;
  color: #555;
}

#statement a {
  color: #FF7878;
  text-decoration: none;
}

button {
  position: relative;
  float: left;
  margin: 10px 0 0 0;
  background: #CDA168;
  color: #fff;
  border: 1px solid #CDA168;
  width: 100%;
  height: 50px;
  font-size: 14pt;
}

#reply {
	display: block;
	position: relative;
	float: left;
	border: 1px solid #CDA168;
	width: 100%;
	text-align: center;
	padding: 30px 0 30px 0;
	color: #CDA168;
	font-size: 14pt;
}

#contact-container {
	width: 100%;
	color: #fff;
	font-size: 12pt;
	height: 60%;
	overflow: hidden;
  columns: 50% 2;
}

#page-footer {
	position: relative;
	float: left;
	width: 100%;
	height: 100px;
	background: #777;
  color: #fff;
  padding: 5px 20px 20px 20px;
}

#page-footer .container {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  height: auto;
}

#footer a, #page-footer a {
  color: #fff;
  text-decoration: none;
}

/* socials */

.so {
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: relative;
  float: left;
  display: block;
  width: 100%;
  height: 100%;
  background-size: 20px 20px !important;
  background-color: transparent !important;
}

#tw {
  background-image: url(images/twitter2.svg);
}

#fb {
  background-image: url(images/facebook2.svg);
}

#li {
  background-image: url(images/linkedin2.svg);
}

#pi {
  background-image: url(images/pinterest2.svg);
}

#ig {
  background-image: url(images/instagram2.svg);
}

#tt {
  background-image: url(images/tiktok2.svg);
}

#tg {
  background-image: url(images/telegram2.svg);
}

#socials-container {
  position: fixed;
  left: 20px;
  height: 40px;
  z-index:100;
  top: 70px;
}

#socials-container a, #socials-container-footer a {
	position: relative;
	float: left;
	display: block;
	margin: 10px 0 10px 3px;
  height:40px !important;
  width: 40px;
  overflow: visible;
}

#socials-container-footer {
	position: relative;
	float: left;
	width: 100%;
	height: 40px;
  display: flex;
  justify-content: center;
}

#contact {
  cursor: auto;
}

#menu-2 {
  overflow: visible;
}

#contact-foot {
	position: fixed;
	bottom: 0;
	width: 100vw;
	left: 0;
	padding: 10px 50px 10px 10px;
  text-align: right;
  background: rgba(0,0,0,0.5);
  display: none;
}

#contactlink {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14pt;
}


@media screen and (max-width: 1400px) and (min-width: 970px) {

  .schuin {
    margin: 0 -50px 50px 0;
  }

  .tm-item span, .tm2-item span {
  	position: absolute;
  	left: 10px;
  	top: 5px;
    width: 270px;
    font-size: 18pt;
    height: 188px;
  }

}

@media screen and (max-width: 970px) and (min-width: 280px) {

  #pageTitle {
	   font-size: 6pt !important;
  }

  #slide0 .text {
  	font-size: 14pt;
  	width: calc(100vw - 60px);
  	padding: 20px;
  }

  #pageTitle {
  	font-size: 7pt !important;
  	width: 100vw !important;
  	text-align: center;
  	left: 0;
  	transform: unset;
  	top: 50px;
  }

  #tline1 {
  	font-size: 3.4em;
  }

  .slider {
    background-position: center center !important;
  }

  .prLine {
  	bottom: 130px;
  	position: absolute;
    border-bottom-width: 0px;
  }

  .prLine:nth-of-type(2) {
    left: 20px;
  }

  .prLine:nth-child(6) {
	   right: 20px;
  }

  .progress {
  	margin-left: 15px;
  	height: 70px;
  }

  .text-sl {
  	width: 100%;
  	padding: 0 20px 0 20px;
  	left: 0;
  }

  #mcc-container {
    padding: 0 !important;
    scrollbar-width: none;
  }

  #container {
    scrollbar-width: none;
  }

  #container::-webkit-scrollbar, #mcc-container::-webkit-scrollbar {
      display: none;
  }

  #footer .container {
  	padding-left: 10px;
  	font-size: 10pt;
  }

  #dmenuContainer {
  	width: 100vw;
  	right: 0;
  	top: 0;
  	height: 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content:center;
    transition: 0.5s;
    overflow:hidden;
  }

  .mopen {
    height: 100vh;
    transition: 0.5s;
    padding: 63px 10px 10px 10px;
  }

  .start  .schuin, .men-out .schuin {
  	transform: unset;
  	width: 65%;
  	margin: 5% 0 0 0;
  	height: 17%;
  }

  .start .schuin span, .men-out .schuin span {
    top: 44%;
  }

  #mbutton, #mbutton2 {
    display:block;
  }

  .tm-item span, .tm2-item span {
  	width: unset;
  	color: #fff;
  	font-size: 22pt;
  	width: auto;
    padding: 150px 10px 10px 10px;
    border-bottom: 0px solid #fff;
  }

  .text-sl {
  	margin-top: 170px;
  }

  .men-out {
    position: fixed !important;
    height: 100vh !important;
    transition: height 1s cubic-bezier(.47,1.64,.41,.8) !important;
    padding: 20px;
    background: rgba(0,0,0,0.4) !important;
  }

  .start .schuin, .men-out .schuin {
  	height: 13%;
  }

}

@media screen and (max-width: 400px) and (min-width: 0px) {

  .text-sl {
  	font-size: 12pt;
    margin-top: 130px;
  }

  .tm-item span, .tm2-item span {
  	padding: 90px 10px 10px 10px;
  }

  .start .schuin, .men-out .schuin {
  	height: 13%;
  }

  #tline1, #tline0 {
  	font-size: 2.9em;
  }

  .tm-item span, .tm2-item span {
  	width: 95%;
  	text-align: left;
    font-size: 15pt;
  }

    #logo {
  	margin-left: 10px;
  }

}


@media screen and (max-width: 280px) and (min-width: 0px) {

  #page-container {
    display: none;
  }

  #container::after {
  	content: 'Uw scherm is te klein voor deze website';
  	color: red;
  	margin: 30% auto;
  	position: absolute;
  	width: ;
  	text-align: center;
  	display: block;
  	width: 100%;
  }

}
