/*-------------
		General
	-------------*/

* {
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  background-color: white;
  overflow: overlay;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html,
body {
  height: 100vh;
  width: 100vw;
  background-color: #1b1b1b;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  -ms-overflow-style: none;
  font-weight: 400;
}

::-webkit-scrollbar {
  width: 2px;
  height: 7px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}

.is-visible {
  display: block;
  animation: fadeIn 0.7s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.is-hidden {
  animation: fadeOut 0.3s;
  opacity: 0;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-------------
	  Sticky Header
    -------------*/

ul,
nav {
  list-style: none;
}

.navbar {
  background-size: auto;
  background-color: #1b1b1b;
  height: 80px;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  justify-content: space-between;
  color: #fff;
}

.logo img {
  height: 80%;
  margin-top: 7px;
  margin-bottom: 7px;
  margin-left: 11px;
}

nav ul {
  float: right;
  margin-right: 60px;
  padding-left: 0px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  line-height: 20px;
  margin-top: 0.7rem;
  margin: 0 2px;
}

nav ul li a {
  color: #f2f2f2;
  font-weight: 500;
  font-size: 20px;
  padding: 7px 13px;
  border-radius: 3px;
}

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 95px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

.ul1 {
  margin-right: 15px;
}

#check {
  display: none;
}

.sticky {
  position: sticky;
  top: 0;
  width: 100%;
}

.sticky + .section-201 {
  padding-top: 102px;
}

.sticky1 {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky1 + body {
  padding-top: 102px;
}

@media (max-width: 1100px) {
  label.logo {
    font-size: 27px;
    height: 81px;
    width: 257px;
  }
  nav ul li a {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .checkbtn {
    display: block;
    margin-right: 40px;
  }
  .ul1 {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(27, 27, 27, 0.85);
    top: 0px;
    left: 100%;
    text-align: center;
    transition: all 0.5s;
    margin-top: 0.5em;
  }
  .ul1 {
    margin-top: 0rem;
    margin-right: 0;
  }
  li {
    position: relative;
    top: 35%;
  }
  nav ul li {
    display: block;
    max-height: 100%;
  }
  nav ul li a {
    font-size: 28px;
  }
  #check:checked ~ ul {
    left: 0px;
  }
  #check::after {
    left: 100%;
  }
}

.center {
  flex-grow: 1;
  justify-content: right;
}

.navbar-content {
  max-width: 100%;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  z-index: 100000;
}

.menu1 {
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 20px 40px;
  text-decoration: none;
  position: relative;
  margin: 10px 0px 10px 0px;
  border-radius: 15px;
  display: inline-block;
  transition: 0.3s;
}

.anav {
  padding: 0;
}

.menu1:hover {
  opacity: 1;
  background: red;
  color: white;
  border-radius: 15px;
}

.navbar-content a:after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: calc(0.7em * 1.2);
  right: calc(0.7em * 1.2);
  height: 3px;
  background: transparent;
  transition: transform 0.8s cubic-bezier(1, 0, 0.37, 1) 0.2s,
    right 0.2s cubic-bezier(0.04, 0.48, 0, 1) 0.6s,
    left 0.4s cubic-bezier(0.04, 0.48, 0, 1) 0.6s;
  transform-origin: left;
}

.container {
  display: inline-block;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: White;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 2px;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

/*-------------
	  Section Landing
    -------------*/

.sectionhome {
  position: relative;
  background-color: #1b1b1b;
}

.landingimg {
  width: 100%;
  height: 80vh;
}

.mySlides {
  height: 100%;
  width: 100%;
}

.carouselimg {
  height: 100%;
  width: 100%;
  background-image: url("../img/RijschoolTim-bord.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  opacity: 55%;
}

.carouselimg1 {
  height: 100%;
  width: 100%;
  background-image: url("../img/RijschoolTim-auto.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
  opacity: 55%;
}

.carouselimg2 {
  height: 100%;
  width: 100%;
  background-image: url("../img/auto-rijschooltim.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  opacity: 55%;
}

.landingpagebackground {
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
}

.header {
  width: 100vw;
  position: absolute;
  text-align: center;
  top: 0px;
  left: 0;
  display: flex;
  justify-content: center;
  opacity: 1;
  opacity: var(--headerOpacity);
  transform: scale(var(--headerScale));
}

.landing-title {
  position: absolute;
  top: 0;
  display: flex;
}

.title {
  color: white;
  line-height: 1.2;
  display: block;
  font-size: 70px;
  text-align: center;
}

.spanred {
  color: red;
}

.landing-subtitle {
  position: absolute;
}

.subtitle {
  color: white;
  line-height: 1.2;
  display: block;
  font-size: 25px;
}

.buttonaanmelden {
  margin-top: 380px;
  font-size: 17px;
  background-color: red;
  padding: 15px 40px;
  border-radius: 15px;
  color: white;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.buttonaanmelden:hover {
  background-color: white;
  color: #1b1b1b;
}

/*-------------
	  Responsive
    -------------*/
@media (min-width: 1801px) {
  .landing-title {
    right: 10vw;
    margin-top: 300px;
  }
  .landing-subtitle {
    right: 10vw;
    margin-top: 420px;
  }
  .buttonaanmelden {
    right: 10vw;
    margin-top: 480px;
    position: absolute;
  }
}

@media (min-width: 1501px) and (max-width: 1800px) {
  .landing-title {
    right: 10vw;
    margin-top: 170px;
  }
  .landing-subtitle {
    right: 10vw;
    margin-top: 290px;
  }
  .buttonaanmelden {
    right: 10vw;
    margin-top: 350px;
    position: absolute;
  }
}

@media (min-width: 1301px) and (max-width: 1500px) {
  .landing-title {
    right: 10vw;
    margin-top: 300px;
  }
  .landing-subtitle {
    right: 10vw;
    margin-top: 420px;
  }
  .buttonaanmelden {
    right: 10vw;
    margin-top: 480px;
    position: absolute;
  }
}

@media (min-width: 601px) and (max-width: 1300px) {
  .landing-title {
    right: 5vw;
    margin-top: 175px;
  }
  .landingimg {
    height: 700px;
  }
  .title {
    font-size: 55px;
  }
  .landing-subtitle {
    right: 5vw;
    margin-top: 280px;
  }
  .subtitle {
    font-size: 25px;
  }
  .buttonaanmelden {
    right: 5vw;
    margin-top: 350px;
    position: absolute;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 70%;
    margin-top: 11px;
    margin-bottom: 11px;
  }
  .landing-title {
    font-size: 40px;
    margin-top: 200px;
  }
  .landingimg {
    height: 600px;
  }
  .title {
    font-size: 40px;
  }
  .landing-subtitle {
    margin-top: 280px;
  }
  .subtitle {
    font-size: 25px;
  }
  .buttonaanmelden {
    margin-top: 375px;
  }
}

@media (max-height: 785px) {
  .logo img {
    height: 70%;
    margin-top: 11px;
    margin-bottom: 11px;
  }
  .landing-title {
    font-size: 40px;
    margin-top: 150px;
  }
  .landingimg {
    height: 70vh;
  }
  .title {
    font-size: 40px;
  }
  .landing-subtitle {
    margin-top: 230px;
  }
  .subtitle {
    font-size: 25px;
  }
  .buttonaanmelden {
    margin-top: 325px;
  }
}

@media (max-height: 600px) {
  .landing-title {
    font-size: 40px;
    margin-top: 50px;
  }
  .landingimg {
    height: 60vh;
  }
  .landing-subtitle {
    margin-top: 125px;
  }
  .buttonaanmelden {
    margin-top: 200px;
  }
}

/*-------------
Section fullpage 
  -------------*/

.fullpage {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}

/*-------------
Section informatie 
    -------------*/
.sectioninformation {
  height: auto;
  width: 100vw;
  color: #1b1b1b;
  box-sizing: border-box;
  background-color: white;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: left;
  max-width: 1500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-top: 110px;
  padding-bottom: 110px;
}

.informatietitle {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 45px;
  text-transform: none;
  font-size: 40px;
}

.informatietitle1 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 45px;
  text-transform: none;
  font-size: 40px;
}

.welkom {
  float: left;
  width: 48%;
}

.naaraanmelden {
  font-size: 17px;
  background-color: #1b1b1b;
  padding: 15px 40px;
  border-radius: 15px;
  color: white;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-style: none;
  margin-top: 40px;
}

.naaraanmelden1 {
  font-size: 17px;
  background-color: #1b1b1b;
  padding: 15px 40px;
  border-radius: 15px;
  color: white;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-style: none;
  margin-top: 40px;
  visibility: hidden;
}

.naaraanmelden:hover {
  background-color: red;
  color: white;
}

.voordelen {
  float: right;
  width: 48%;
}

.contentblock {
  display: flex;
}

.flex-child-row1 {
  height: auto;
}

.flex-child-row1:first-child {
  margin-right: 20px;
}

.voordeelicon1 {
  border-radius: 20px;
  border: 2px solid red;
  padding: 10px 23px 10px 23px;
}

.contentright-row1 {
  padding: 20px 0px;
}

.flex-child-row2 {
  height: 88px;
  margin-top: 25px;
  height: auto;
}

.flex-child-row2:first-child {
  margin-right: 20px;
}

.contentright-row2 {
  padding: 30px 0px;
}

.voordeelicon2 {
  border-radius: 20px;
  border: 2px solid red;
  padding: 10px 14.5px 10px 14.5px;
}

.flex-child-row3 {
  height: 88px;
  margin-top: 45px;
  height: auto;
}

@media (max-width: 1425px) {
  .flex-child-row3 {
    height: 88px;
    margin-top: 15px;
    height: auto;
  }
}

.flex-child-row3:first-child {
  margin-right: 20px;
}

.contentright-row3 {
  padding: 30px 0px;
}

.voordeelicon3 {
  border-radius: 20px;
  border: 2px solid red;
  padding: 16px 14.5px 16px 14.5px;
}

.flex-child-row4 {
  height: 88px;
  margin-top: 25px;
  height: auto;
}

.flex-child-row4:first-child {
  margin-right: 20px;
}

.contentright-row4 {
  padding: 10px 0px;
}

.voordeelicon4 {
  border-radius: 20px;
  border: 2px solid red;
  padding: 16px 20px 16px 20px;
}

@media (max-width: 1316px) {
  .contentright-row3 {
    padding: 20px 0px;
  }
}

@media (max-width: 1208px) {
  .contentright-row1 {
    padding: 10px 0px;
  }
}

@media (max-width: 1102px) {
  .contentright-row4 {
    padding: 0px 0px;
  }
}

@media (max-width: 926px) {
  .welkom {
    width: 100%;
  }
  .voordelen {
    width: 100%;
  }
  .content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .contentright-row1 {
    padding: 20px 0px;
  }
  .contentright-row2 {
    padding: 30px 0px;
  }
  .contentright-row3 {
    padding: 30px 0px;
  }
  .contentright-row4 {
    padding: 20px 0px;
  }
  .voordelen {
    margin-top: 10px;
  }
  .informatietitle1 {
    display: none;
  }
}

@media (max-width: 1068px) {
  .naaraanmelden {
    display: none;
  }
  .naaraanmelden1 {
    visibility: visible;
  }
}

@media (max-width: 673px) {
  .contentright-row3 {
    padding: 20px 0px;
  }
}

@media (max-width: 770px) {
  .contentright-row4 {
    padding: 10px 0px;
  }
}

@media (max-width: 614px) {
  .contentright-row1 {
    padding: 10px 0px;
  }
}

@media (max-width: 564px) {
  .contentright-row4 {
    padding: 0px 0px;
  }
}

@media (max-width: 474px) {
  .contentright-row1 {
    padding: 0px;
  }
}

@media (max-width: 433px) {
  .contentright-row3 {
    padding: 10px 0px;
  }
}

@media (max-width: 420px) {
  .contentright-row2 {
    padding: 20px 0px;
  }
}

@media (max-width: 315px) {
  .contentright-row3 {
    padding: 0px;
  }
}

@media (max-width: 280px) {
  .contentright-row2 {
    padding: 10px;
  }
}

@media (max-width: 273px) {
  .contentright-row2 {
    padding: 0px;
  }
}

/*-------------
Section animatie 
  -------------*/
.section-animatie {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100vw;
}

.abc {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 1050px;
}

.abc1 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: none;
  font-size: 2rem;
  width: 500px;
  height: 48px;
  margin: 0px;
  margin-left: 20px;
}

.abc span {
  font-size: 40px;
}

.abc1 span {
  font-size: 40px;
}

.abc .message {
  background-color: red;
  color: white;
  display: block;
  font-weight: 900;
  overflow: hidden;
  position: absolute;
  padding-left: 0.5rem;
  top: 0.2rem;
  left: 300px;
  animation: openclose 10s ease-in-out infinite;
}

.abc1 .message {
  background-color: red;
  color: white;
  display: block;
  font-weight: 900;
  overflow: hidden;
  position: absolute;
  padding-top: 0.2rem;
  padding-left: 0.5rem;
  animation: openclose 10s ease-in-out infinite;
}

.word1,
.word2,
.word3 {
  font-family: "Poppins", sans-serif;
}

@keyframes openclose {
  0% {
    top: 0rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 400px;
  }
  30% {
    top: 0rem;
    width: 400px;
  }
  33% {
    top: 0rem;
    width: 0;
  }
  35% {
    top: 0rem;
    width: 0;
  }
  35% {
    top: -4.5rem;
  }
  48% {
    top: -4.5rem;
    width: 750px;
  }
  62% {
    top: -4.5rem;
    width: 750px;
  }
  66% {
    top: -4.5rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -9rem;
    width: 550px;
  }
  95% {
    top: -9rem;
    width: 550px;
  }
  98% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}

@keyframes openclose1 {
  0% {
    top: 0rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 270px;
  }
  30% {
    top: 0rem;
    width: 270px;
  }
  33% {
    top: 0rem;
    width: 0;
  }
  35% {
    top: 0rem;
    width: 0;
  }
  35% {
    top: -3rem;
  }
  48% {
    top: -3rem;
    width: 500px;
  }
  62% {
    top: -3rem;
    width: 500px;
  }
  66% {
    top: -3rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -6rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -6rem;
    width: 380px;
  }
  95% {
    top: -6rem;
    width: 380px;
  }
  98% {
    top: -6rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}

@keyframes openclose2 {
  0% {
    top: -0.2rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 270px;
  }
  30% {
    top: -0.2rem;
    width: 270px;
  }
  33% {
    top: -0.2rem;
    width: 0;
  }
  35% {
    top: -0.2rem;
    width: 0;
  }
  35% {
    top: -3.2rem;
  }
  48% {
    top: -3.2rem;
    width: 500px;
  }
  62% {
    top: -3.2rem;
    width: 500px;
  }
  66% {
    top: -3.2rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -6.2rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -6.2rem;
    width: 380px;
  }
  95% {
    top: -6.2rem;
    width: 380px;
  }
  98% {
    top: -6.2rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}

@keyframes openclose3 {
  0% {
    top: -0.2rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 180px;
  }
  30% {
    top: -0.2rem;
    width: 180px;
  }
  33% {
    top: -0.2rem;
    width: 0;
  }
  35% {
    top: -0.2rem;
    width: 0;
  }
  35% {
    top: -1.7rem;
  }
  48% {
    top: -1.7rem;
    width: 270px;
  }
  62% {
    top: -1.7rem;
    width: 270px;
  }
  66% {
    top: -1.7rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -3.3rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -3.3rem;
    width: 200px;
  }
  95% {
    top: -3.3rem;
    width: 200px;
  }
  98% {
    top: -3.3rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}

@media (max-width: 1200px) {
  .abc {
    font-size: 2rem;
    width: 750px;
    height: 45px;
    margin: 0px;
  }
  .abc span {
    font-size: 2rem;
  }
  .abc .message {
    left: 240px;
    animation: openclose1 10s ease-in-out infinite;
  }
}

@media (max-width: 770px) {
  .abc {
    display: none;
  }
  .abc1 {
    display: inline-block;
  }
  .abc1 .message {
    left: 0px;
    animation: openclose2 10s ease-in-out infinite;
    width: 400px;
  }
}

@media (max-width: 540px) {
  .abc {
    display: none;
  }
  .abc1 {
    display: inline-block;
    height: 24px;
    width: 300px;
    font-size: 1rem;
  }
  .abc1 span {
    font-size: 1rem;
  }
  .abc1 .message {
    font-size: 1rem;
    left: 0px;
    animation: openclose3 10s ease-in-out infinite;
  }
}

@media (max-width: 340px) {
  .abc {
    display: none;
  }
  .abc1 {
    display: inline-block;
    height: 24px;
    width: 270px;
    margin-left: 0;
  }
  .abc1 span {
    font-size: 1rem;
  }
  .abc1 .message {
    font-size: 1rem;
    left: 0px;
    animation: openclose3 10s ease-in-out infinite;
  }
}

/*-------------
Section prices 
    -------------*/
.sectionprices {
  height: auto;
  color: #1b1b1b;
  box-sizing: border-box;
  background-color: white;
  width: 100%;
}

.pricecontainer {
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 110px;
  padding-bottom: 110px;
  padding-left: 2vw;
  padding-right: 2vw;
}

.pricetitle {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 45px;
  text-transform: none;
  font-size: 40px;
}

.columns {
  float: left;
  width: 20%;
  padding: 8px;
}

.price {
  list-style-type: none;
  border: 1px solid #eee;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price2 {
  list-style-type: none;
  border: 1px solid #eee;
  margin: 0;
  margin-left: 10px;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.price3 {
  list-style-type: none;
  border: 1px solid #eee;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.white {
  background-color: white;
}

.price2:hover {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.price2 .header1 {
  background-color: #1b1b1b;
  color: white;
  font-size: 25px;
}

.price:hover {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.price .header1 {
  background-color: #1b1b1b;
  color: white;
  font-size: 25px;
}

.price3:hover {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.price3 .header1 {
  background-color: #1b1b1b;
  color: white;
  font-size: 25px;
}

.nodecoration {
  text-decoration: none;
  color: #1b1b1b;
}

.price li {
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.price .grey {
  background-color: #eee;
  font-size: 20px;
}

.price3 li {
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.price3 .grey {
  background-color: #eee;
  font-size: 20px;
}

.price2 li {
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
  font-size: 15px;
}

.price2 .grey {
  background-color: #eee;
  font-size: 18px;
}

.display {
  display: none;
}

.button {
  background-color: red;
  border: none;
  color: white;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
}

.button2 {
  background-color: red;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  position: absolute;
  top: 59%;
  left: 24vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.button3 {
  background-color: red;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  position: absolute;
  right: 24vw;
  top: 59%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media (max-width: 1350px) {
  .button2 {
    left: 23em;
  }
  .button3 {
    right: 23em;
  }
}

@media (max-width: 1330px) {
  .button2 {
    left: 22vw;
  }
  .button3 {
    right: 22vw;
  }
}

@media (max-width: 1300px) {
  .button2 {
    left: 21vw;
  }
  .button3 {
    right: 21vw;
  }
}

@media (max-width: 1270px) {
  .button2 {
    left: 20vw;
  }
  .button3 {
    right: 20vw;
  }
}

@media (max-width: 1230px) {
  .button2 {
    left: 18vw;
  }
  .button3 {
    right: 18vw;
  }
}

@media (max-width: 1150px) {
  .button2 {
    left: 16vw;
  }
  .button3 {
    right: 16vw;
  }
}

@media (max-width: 1120px) {
  .button2 {
    left: 14vw;
  }
  .button3 {
    right: 14vw;
  }
}

@media (max-width: 1090px) {
  .button2 {
    left: 13vw;
  }
  .button3 {
    right: 13vw;
  }
}

@media (max-width: 1050px) {
  .button2 {
    left: 12vw;
  }
  .button3 {
    right: 12vw;
  }
}

@media (max-width: 1024px) {
  .button2 {
    left: 10vw;
  }
  .button3 {
    right: 10vw;
  }
}

@media (max-width: 540px) {
  .button2 {
    left: 7vw;
  }
  .button3 {
    right: 7vw;
  }
}

@media (max-width: 430px) {
  .button2 {
    left: 5vw;
  }
  .button3 {
    right: 5vw;
  }
  .columns1 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media (max-width: 375px) {
  .button2 {
    left: 2vw;
  }
  .button3 {
    right: 2vw;
  }
}

.button3:hover,
.button2:hover {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.display-container {
  position: relative;
  width: 100%;
}

.display-container1 {
  position: relative;
  width: 100%;
}

.display-container1 {
  display: none;
}

@media (max-width: 1300px) {
  .columns {
    width: 33%;
  }
  .price2 {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 830px) {
  .columns {
    width: 50%;
  }
}

@media (max-width: 1300px) {
  .display-container {
    display: none;
  }
  .display-container1 {
    display: inline-block;
  }
}

.pricecontainer1 {
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 110px;
  padding-bottom: 110px;
  padding-left: 2vw;
  padding-right: 2vw;
}

@media (max-width: 1444px) {
  .pricecontainer1 {
    max-width: 1000px;
  }
}

.pricetitle1 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 45px;
  text-transform: none;
  font-size: 40px;
}

.columns1 {
  float: left;
  width: 100%;
  padding: 8px;
  display: none;
  padding-left: 10vw;
  padding-right: 10vw;
}

.price1 {
  list-style-type: none;
  border: 1px solid #eee;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price1 .header1 {
  background-color: #1b1b1b;
  color: white;
  font-size: 25px;
}

.nodecoration1 {
  text-decoration: none;
  color: #1b1b1b;
}

.price1 li {
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.price1 .grey1 {
  background-color: #eee;
  font-size: 20px;
}

.button1 {
  background-color: red;
  border: none;
  color: white;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
}

/*-------------
Section aanmelden 
      form
    -------------*/
.sectionaanmelden {
  height: auto;
  color: white;
  box-sizing: border-box;
  width: 100vw;
}

.aanmeldeninput {
  display: flex;
  flex-direction: column;
  align-items: left;
  max-width: 1500px;
  background-color: #1b1b1b;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-top: 110px;
  padding-bottom: 110px;
}

.Whatsappaanmelden {
  font-size: 17px;
  background-color: #25d366;
  padding: 15px 40px;
  border-radius: 15px;
  color: white;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-style: none;
  margin-bottom: 40px;
}

.emailaanmelden {
  font-size: 17px;
  background-color: #4285f4;
  padding: 15px 40px;
  border-radius: 15px;
  color: white;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-style: none;
  margin-left: 40px;
}

.aanmeldenformtitle {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 45px;
  text-transform: none;
  font-size: 45px;
}

.aanmeldenfname {
  float: left;
  width: 48%;
}

.aanmeldenlname {
  float: right;
  width: 48%;
}

.aanmeldenemail {
  float: left;
  width: 48%;
}

.aanmeldenphone {
  float: right;
  width: 48%;
}

.aanmeldenmessage {
  float: left;
  margin-top: 40px;
  width: 100%;
}

.aanmeldenleeftijd {
  float: left;
  width: 48%;
}

.aanmeldenpakketkeuze {
  float: right;
  width: 48%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid gray;
  color: #c0c0c0;
  font-size: 18px;
  margin-bottom: 16px;
  align-items: stretch;
}

.form-control option {
  color: #c0c0c0;
}

.form-control optgroup {
  color: white;
  background-color: #1b1b1b;
}

form .submit {
  font-size: 13px;
  margin-top: 40px;
  background-color: white;
  padding: 18px 28.8px;
  border-radius: 15px;
  color: #1b1b1b;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
}

form .submit:hover {
  background-color: red;
  color: white;
}
@media (max-width: 800px) {
  .aanmeldeninput {
    border-radius: 0 0 0 0;
    width: 100vw;
  }
}

@media (max-width: 663px) {
  .emailaanmelden {
    margin-left: 20px;
  }
}

@media (max-width: 643px) {
  .emailaanmelden {
    margin-left: 10px;
  }
}

@media (max-width: 633px) {
  .emailaanmelden {
    margin-left: 0px;
    margin-bottom: 40px;
  }
  .Whatsappaanmelden {
    margin-bottom: 20px;
  }
}

@media (max-width: 1120px) {
  .aanmeldenfname {
    width: 100%;
  }
  .aanmeldenlname {
    width: 100%;
  }
  .aanmeldenemail {
    width: 100%;
  }
  .aanmeldenphone {
    width: 100%;
  }
  .aanmeldenleeftijd {
    width: 100%;
  }
  .aanmeldenpakketkeuze {
    width: 100%;
  }
  .aanmeldeninput {
    margin-right: 0vw;
    margin-left: 0vw;
  }
}

/*-------------
Floating menu
    -------------*/

.menu {
  box-sizing: border-box;
  font-size: 20px;
  text-align: right;
  position: fixed;
  bottom: 85px;
  right: 90px;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

.menu-open-button {
  background: red;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  color: white;
  text-align: center;
  line-height: 60px;
  transform: translate3d(0, 0, 0);
  transition: transform ease-out 200ms;
}

.menu-open-button img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
}

.menu-item {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  position: absolute;
  color: white;
  text-align: center;
  line-height: 60px;
  transform: translate3d(0, 0, 0);
  transition: transform ease-out 200ms;
}

.menu-open {
  display: none;
}

.whatsapp {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 40px;
  height: 45px;
  width: 45px;
  transition: transform 200ms;
}

.mail {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 40px;
  height: 40px;
  width: 40px;
  transition: transform 200ms;
}

.phone {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 40px;
  height: 50px;
  width: 50px;
  transition: transform 200ms;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  transition: transform 200ms;
}

.hamburger-1,
.hamburger-2,
.hamburger-3 {
  visibility: hidden;
}

.menu-open:checked + .menu-open-button .hamburger-1 {
  visibility: visible;
  transform: translate3d(0, 0, 0) rotate(45deg);
}
.menu-open:checked + .menu-open-button .hamburger-2 {
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}
.menu-open:checked + .menu-open-button .hamburger-3 {
  visibility: visible;
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.menu-open:checked + .menu-open-button img {
  display: none;
}

.phone:hover {
  transform: scale(1.2);
}

.whatsapp:hover {
  transform: scale(1.2);
}
.mail:hover {
  transform: scale(1.2);
}

.menu-item:nth-child(3) {
  transition-duration: 180ms;
}
.menu-item:nth-child(4) {
  transition-duration: 180ms;
}
.menu-item:nth-child(5) {
  transition-duration: 180ms;
}
.menu-item:nth-child(6) {
  transition-duration: 180ms;
}

.menu-open-button {
  z-index: 2;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 400ms;
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  cursor: pointer;
}

.headset-1 {
  color: white;
  position: absolute;
  top: 0;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0;
  margin: auto;
  line-height: 55px;
  font-size: 38px;
  font-family: "Roboto";
  font-weight: 300;
  animation: headset-1-out 0.3s;
  transition: all 0.3s;
  height: 32px;
  width: 32px;
}

.headset-2 {
  position: absolute;
  top: 0;
  display: block;
  bottom: 0;
  left: 0;
  display: block;
  right: 0;
  padding: 0;
  opacity: 0;
  margin: auto;
  line-height: 65px;
  transform: rotateZ(-70deg);
  transition: all 0.3s;
  animation: headset-2-out 0.3s;
  width: 32px;
  height: 32px;
}

.menu-open-button:hover {
  transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.menu-open-button:hover .headset-1 {
  animation: headset-1-in 0.15s linear;
  animation-fill-mode: forwards;
}
.menu-open-button:hover .headset-2 {
  animation: headset-2-in 0.2s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}

.menu-open:checked + .menu-open-button {
  transition-timing-function: linear;
  transition-duration: 200ms;
  transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.menu-open:checked ~ .menu-item {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menu-open:checked ~ .menu-item:nth-child(3) {
  transition-duration: 190ms;
  transform: translate3d(-90px, 0, 0);
}
.menu-open:checked ~ .menu-item:nth-child(4) {
  transition-duration: 290ms;
  transform: translate3d(-180px, 0, 0);
}
.menu-open:checked ~ .menu-item:nth-child(5) {
  transition-duration: 390ms;
  transform: translate3d(-270px, 0, 0);
}

@keyframes headset-2-in {
  from {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}

@keyframes headset-2-out {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
}

@keyframes headset-1-in {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(180deg);
  }
}

@keyframes headset-1-out {
  from {
    opacity: 0;
    transform: rotateZ(180deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}

@media (max-width: 800px) {
  .menu-open:checked ~ .menu-item:nth-child(3) {
    transition-duration: 190ms;
    transform: translate3d(-70px, 0, 0);
  }
  .menu-open:checked ~ .menu-item:nth-child(4) {
    transition-duration: 290ms;
    transform: translate3d(-140px, 0, 0);
  }
  .menu-open:checked ~ .menu-item:nth-child(5) {
    transition-duration: 390ms;
    transform: translate3d(-210px, 0, 0);
  }
}

/*-------------
  Section footer
    -------------*/
.sectionfooter {
  height: auto;
  width: 100%;
  background-color: #1b1b1b;
  color: #c0c0c0;
}

.footer-fullblock {
  padding-bottom: 50px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
  flex-direction: column;
  align-items: left;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.footer-toppace {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}

.footer-line {
  width: 100%;
  border-top-style: solid;
  border-top-color: gray;
  border-top-width: 5px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}

.div-403-004 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
}

.footer-row {
  padding-top: 36px;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: 1.5px;
}

.footer-block {
  width: auto;
  padding: 25px;
  padding-top: 0;
}

.footer-text {
  font-weight: 500;
  padding-top: 10px;
}

.footer-text1 {
  font-weight: 500;
}

.footer-text a {
  text-decoration: none;
  color: #c0c0c0;
}

.footerimg {
  height: 60px;
}

.div-406-002 {
  width: auto;
  padding-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  align-items: flex-end;
  text-align: right;
  flex-direction: column;
  display: flex;
  padding-bottom: 0px;
  margin-right: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  line-height: auto;
  font-weight: 500;
}

@media (max-width: 1114px) {
  .footer-block {
    width: 33%;
    padding: 0;
  }
}

@media (max-width: 750px) {
  .footer-block {
    width: 50%;
    padding: 0;
  }
}

@media (max-width: 645px) {
  .footer-block {
    width: 100%;
    flex-direction: column;
    display: flex;
    padding: 0;
  }
}

.alert {
  position: fixed;
  border-radius: 5px;
  box-sizing: border-box;
  color: white;
  font-size: 1em;
  margin: 0 auto;
  margin: 1vw;
  padding: 1em;
  padding-right: 35px;
  width: 98vw;
  z-index: 100;
  animation: fadeIn 0.7s;
}

.alert-success {
  background-color: red;
}

.close {
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.close:hover {
  color: #1b1b1b;
}

@media (min-width: 1114px) {
  .actie {
    bottom: 0px;
  }
}

@media (max-width: 1114px) {
  .actie {
    top: 80px;
  }
  .close {
    right: 3%;
    padding: 0;
  }
}
