@font-face {
  font-family: "Roggenkamp";
  src: url('../fonts/Rogge_N.ttf');
  font-weight: normal;
  font-style: normal;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /*border: 0.1px solid Blue;*/
}

body,
html {
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  height: 100%;
  width: 100%;
}

body {
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.7;
  background-color: #fff;
}

iframe {
  border: 8px solid rgba(113, 155, 102, 0.75);
  border: 8px solid #719b66BF;
  width: 100%;
  margin-top: 20px;
}

.bottomFrame {
  margin-top: 60px;
}

a {
  color: #2f2f2f;
  text-decoration: none;
  transition: ease .6s;
  -webkit-transition: ease .6s;
  -moz-transition: ease .6s;
  -o-transition: ease .6s;
  -ms-transition: ease .6s;
}

h1 {
  font-family: 'Roggenkamp';
  font-size: 70px;
}

h2 {
  font-family: "Roggenkamp";
  font-size: 40px;
  color: #c2202f;
}

h3 {
  font-family: 'Roggenkamp';
  color: #c2202f;
  margin-top: 40px;
  margin-bottom: 0;
}

/*----------- panel ----------*/
.content-wrap {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  width: 100%;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
}

.content::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
  transition: opacity 0.4s, transform 0s 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

/*----- background ------*/
.grey-bg {
  background: #e4bcc04D;
  padding: 120px 0;
  display: block;
}

.white-bg {
  background: rgba(113, 155, 102, 0.75);
  background: #719b66BF;
  padding: 120px 0;
  display: block;
  color: #fff;
}

/*----------------------------------------- 1) Header --------------------------------------------------*/
.header {
  width: 100%;
  z-index: 9999;
}

.for-sticky {
  position: fixed;
  z-index: -1;
  width: 1000%;
  z-index: 1;
  top: 0;
  right: 0;
  border-right: 400px solid #f1dedf;
  border-bottom: 7.5em solid transparent;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*--------Menu -----------*/
.menu-button {
  width: 42px;
  height: 20px;
  position: fixed;
  right: 0;
  margin-top: 40px;
  margin-right: 40px;
  z-index: 1000;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}

.menu-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #719b66;
  border-radius: 9px;
  opacity: 1;
  left: 0;
}

.menu-button span:nth-child(1) {
  top: 0px;
}

.menu-button span:nth-child(2) {
  top: 10px;
}

.menu-button span:nth-child(3) {
  top: 20px;
}

.menu-button:hover {
  opacity: 0.6;
}

.menu-wrap {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  background-color: #f7ebec;
  opacity: 0.95;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.menu-wrap a {
  width: 380px;
  padding: 10px 10px 10px 40px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 25px;
  color: #2f2f2f;
  display: block;
  transition: 0.3s;
  font-family: 'Roggenkamp';
  letter-spacing: 0.03em;
  opacity: 1;
}

.menu-wrap a:hover {
  color: #c2202f;
}

.menu-wrap .close-button {
  position: absolute;
  width: 80px;
  top: 10px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  transition: 0.3s;
}

.menu-wrap .close-button:hover {
  cursor: pointer;
}

.current {
  color: yellow !important;
}

/*----------------------------------------- 6) Home --------------------------------------------------*/
#home {
  background: url('../media/home_pic.jpg');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  width: 100%;
  display: block;
  background-position: 50% 25%;
  position: relative;
}

.wrap-hero-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  color: #f7ebec;
  position: absolute;
  text-align: center;
  min-width: 300px;
  left: 50%;
  top: 15%;
  padding: 65px;
  /*background: rgba(255, 255, 255, 0.8);*/
  /*outline: 4px double #f7ebec;*/
  /*outline-offset: 8px;*/
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.edition {
  background-color: #719b66;
  height: 10%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  opacity: 0.9;
  display: flex;
  align-items: center;
}

.edition h2 {
  color: white;
  right: 40px;
  opacity: 1;
  position: absolute;
  margin: 0;
}

.more-box {
  width: 5%;
  height: 100%;
  border-bottom: 400px solid #f1dedf;
  border-right: 7em solid transparent;
  position: relative;
}

/*mouse*/
.arrow-ellipse {
  position: absolute;
  display: block;
  height: 60px;
  width: 60px;
  left: 45px;
  bottom: -415px;
  transform: translate(-50%, -50%);
}

.arrow-ellipse .arrow {
  transform: rotate(45deg);
  border-width: 0 4px 4px 0;
  border-color: #719b66;
  border-style: solid;
  position: relative;
  width: 60%;
  height: 60%;
  margin-left: auto;
  margin-right: auto;
}

.arrow-ellipse span {
  font-family: "Roboto";
  font-size: 25px;
  color: #719b66;
}

.arrow-ellipse .arrow:hover {
  opacity: 0.6;
}

/* ----------- text-pictures -------------*/
.head-pictures {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0px;
  font-family: "Roggenkamp", sans-serif;
  font-weight: 700;
}

/* ----------------- Meedoen--------------- */
#participate form {
  margin-top: 25px;
}

#participate .group {
  position: relative;
  margin-bottom: 65px;
}

#participate input,
#participate textarea {
  font-size: 13px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 13px;
}

#participate input:focus,
#participate textarea:focus {
  outline: none;
  border-bottom: none;
}

#participate label {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

#participate input:focus~label,
#participate input:valid~label,
#participate textarea:focus~label,
#participate textarea:valid~label {
  top: -25px;
  font-size: 12px;
  color: #fff;
}

#participate .bar {
  position: relative;
  display: block;
  width: 100%;
}

#participate .bar:before,
#participate .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #fff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

#participate .bar:before {
  left: 50%;
}

#participate .bar:after {
  right: 50%;
}

#participate input:focus~.bar:before,
#participate input:focus~.bar:after,
#participate textarea:focus~.bar:after,
#participate textarea:focus~.bar:before {
  width: 50%;
}

#participate .highlight {
  position: absolute;
  height: 60%;
  width: 100%;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

#participate input:focus~.highlight,
#participate textarea:focus~.highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

#participate input[type=submit] {
  border: 1px solid #fff !important;
  color: #fff;
  padding: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

#participate input[type=submit]:hover {
  background: #fff;
  color: #000;
}

@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #fff;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #fff;
  }

  to {
    width: 0;
    background: transparent;
  }
}

.group input[type="checkbox"] {
  opacity: 0;
}

.group label[for="checkbox_1"]::before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  border: 1px solid;
}

.group label[for="checkbox_1"]::after {
  content: "";
  display: inline-block;
  height: 6px;
  width: 9px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
}

.group label[for="checkbox_1"] {
  position: relative;
}

.group label[for="checkbox_1"]::before,
.group label[for="checkbox_1"]::after {
  position: absolute;
}

/*Outer-box*/
.group label[for="checkbox_1"]::before {
  top: 23px;
  left: -2px;
}

/*Checkmark*/
.group label[for="checkbox_1"]::after {
  top: 26px;
  left: 2px;
}

/*Hide the checkmark by default*/
.group input[type="checkbox"]+label[for="checkbox_1"]::after {
  content: none;
}

/*Unhide the checkmark on the checked state*/
.group input[type="checkbox"]:checked+label[for="checkbox_1"]::after {
  content: "";
}

.checkText {
  display: inline-block;
  margin-top: 20px;
  margin-left: 30px;
}

/* --------------Agenda & Locatie --------------*/
#calender iframe {
  margin-top: 30px;
}

#calender td, th {
  padding: 5px 10px;
  border: 3px solid #fff;
}

#calender th {
  background-color: rgba(113, 155, 102, 0.75);
  background-color: #719b66BF;
  color: #fff;
  text-transform: uppercase;
}

#calender td {
  font-size: 14px;
}

/*---------- Bestuur ----------*/
.profile-pics {
  margin: 0 auto;
  margin-top: 20px;
  border: 3px solid #f7ebec;
  width: 200px;
  height: 200px;
  border-radius: 12.5%;
}

.marin {
  background: url("../media/marin.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

.eline {
  background: url("../media/nieuw.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

.emiel {
  background: url("../media/emiel.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

.sarah {
  background: url("../media/sarah.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

.board-text {
  margin: 0 auto;
  margin-top: 20px;
  width: 200px;
}

#board h3 {
  color: #fff;
  margin: 0px;
}

/*---------Contact----------- */
#contact a {
  font-weight: 500;
}

.mail2 {
  color: #c2202f;
}

.mail2:hover {
  color: white;
}

.mail {
  background-color: #c2202f;
  display: inline-block;
  color: white;
  padding: 8px 0;
  ;
  font-size: 20px;
  margin-top: 40px;
  width: 100%;
  text-align: center;
  border: 2px solid #F0F0F0;
}

.mail:hover {
  text-decoration: none;
  background-color: #F0F0F0;
  border-color: #c2202f;
  color: #c2202f;
}

.facebook {
  background-color: #3b5998;
  display: inline-block;
  color: white;
  padding: 8px 0;
  font-size: 20px;
  margin-top: 40px;
  width: 100%;
  text-align: center;
  border: 2px solid #F0F0F0;
}

.facebook:hover {
  text-decoration: none;
  background-color: #F0F0F0;
  border-color: #3b5998;
  color: #3b5998;
}

.instagram {
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
  display: inline-block;
  color: white;
  padding: 8px 0;
  font-size: 20px;
  margin-top: 40px;
  width: 100%;
  text-align: center;
  border: 2px solid #F0F0F0;
}

.instagram:hover {
  text-decoration: none;
  background-color: #F0F0F0;
  border-color: #833ab4;
  color: #833ab4;
}
