/* Global *********** */
* {
  padding: 0;
  margin: 0;
}

.container {
  padding-left: 40px;
  padding-right: 40px;
}

.row {
  margin-left: -40px;
  margin-right: -40px;
}

div[class*="col-md-"] {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (min-width: 992px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .row {
    margin-left: -30px;
    margin-right: -30px;
  }
  
  div[class*="col-md-"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}

html,
body {
  height: 100%;

  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

@media screen and (min-width: 992px) {
  html,
  body {
    font-size: 18px;
    line-height: 24px;
  }
}

body {
  background-color: #ffffff;
  
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

body.show-menu {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 20px 0 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

p {
  padding: 0;
  margin: 20px 0 0;
}

p:first-child {
  margin-top: 0;
}

ol,
ul {
  padding: 0;
  margin: 20px 0 0;
}

ol:first-child,
ul:first-child {
  margin-top: 0;
}

.hidden {
  display: none !important;
}

.button {
  padding: 10px 8px 22px;

  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  background: rgba(255, 255, 255, .10);
  border-radius: 11px;

  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .button {
    bottom: 40px;
  }
}

.button::before {
  content: '»';

  display: block;
  transform: rotate(90deg);

  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%;)
}


input:focus,
textarea:focus{
  outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cecece;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #cecece;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #cecece;
}
:-moz-placeholder { /* Firefox 18- */
  color: #cecece;
}

input[type="submit"],
.button-cta {
  min-height: 50px;
  padding: 14px 20px;
  display: inline-block;

  background-color: #fbb315;
  border-radius: 50px;
  border: 0;
  
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: #002031;
  text-decoration: none;
}

input[type="submit"]:hover,
.button-cta:hover {
  color: #ffffff;
}

@media screen and (min-width: 992px) {
  input[type="submit"],
  .button-cta {
    font-size: 18px;
  }
}

.starred::before,
.starred::after {
  content: '★';

  font-size: 10px;
  display: inline-block;
}

.starred::before {
  margin-right: 10px;
}

.starred::after {
  margin-left: 10px;
}

.form-item {
  margin-top: 20px;
}

.form-item:first-child {
  margin-top: 0;
}

.form-actions {
  margin-top: 30px;
  text-align: right;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  padding: 14px 20px;

  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 10px;

  transition: all .3s ease-in-out;
}

label {
  text-align: left;
  display: block;

  font-size: 13px;
  line-height: 15px;
  font-style: italic;

  transition: all .3s ease-in-out;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  height: 50px;
}

textarea {
  height: 239px;
}

.error input,
.error textarea {
  border: 2px solid #df3c3c;
}

.error label {
  color: #df3c3c;
}

.form-select {
  margin: 20px 0 60px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .form-select {
    display: none;
  }
}

.form-select select {
  width: 100%;
  height: 50px;
  padding: 14px 40px 14px 20px;

  background-color: #FBB315;
  border: 0;
  border-radius: 50px;

  -webkit-appearance: none;
  appearance: none;
}

.form-select::before {
  content: ' ';

  position: absolute;
  top: 50%;
  right: 18px;
  transform: translteY(-50%);

  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #002031 transparent transparent transparent;
  
}

.form-radios {
  padding: 30px 0 35px;
  display: none;
}

@media screen and (min-width: 768px) {
  .form-radios {
    display: block;
  }
}

.form-radios .form-item {
  display: inline-block;
  margin-top: 0;
  
  position: relative;
}

.form-radios input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.form-radios label {
  display: inline-block;
  margin: 0 15px;

  font-size: 18px;
  line-height: 24px;
  font-style: normal;

  position: relative;
}

.form-radios label::before {
  content: ' ';

  width: 0;
  height: 1px;

  position: absolute;
  bottom: -6px;
  left: 50%;

  transition: all .3s ease-out;
  background-color: #fbb315;
}

.form-radius label:hover {
  color: #fbb315;
}

.form-radios :checked + label {
  color: #fbb315;
}

.form-radios :checked + label::before {
  width: 100%;
  left: 0;
}

.form-message div {
  width: 100%;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .form-message div {
    width: 50%;
  }
}

.success img {
  margin-top: 50px;
  width: auto;
}

.success h3 {
  font-size: 24px;
  line-height: 24px;
  color: #18e7c8;
}

form .col-md-6 + .col-md-6 {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  form .col-md-6 + .col-md-6 {
    padding-top: 0;
  } 
}

/* Header *********** */
header {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;

  transition: all .3s ease-in-out;

  background: rgba(0, 0, 0, 0);
}

header.sticky {
  background: rgba(0, 0, 0, .2);
}

header .logo {
  display: block;
  margin: 20px 0 0 20px;
  float: left;
}

@media screen and (min-width: 992px) {
  header .logo {
    margin-left: 60px;
  }
}

header nav {
  width: 100%;
  height: 100vh;

  position: fixed;
  top: 0;
  left: 100%;
  z-index: 5;

  background-color: #fbb315;

  transition: all .3s ease-in-out;
}

@media screen and (min-width: 768px) {
  header nav {
    width: auto;
    height: auto;
    float: right;
    display: block;
    margin: 20px 20px 0 0;
    position: static;
    background: transparent none;
  }
}

@media screen and (min-width: 992px) {
  header nav {
    display: block;
    margin-right: 60px;
  }
}

header ul {
  width: 100%;
  margin: 0;
  padding: 0;

  list-style-type: none;

  position: absolute;
  top: 50%;

  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  header ul {
    width: auto;
    position: static;
    transform: none;
  }
}

header li {
  padding: 0 18px;
}

@media screen and (min-width: 768px) {
  header li {
    display: block;
    float: left;
  }
}

header li a {
  display: block;

  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  color: #002031;
  text-decoration: none;
  text-align: center;

  position: relative;
}

@media screen and (min-width: 768px) {
  header li a {
    font-size: 16px;
    font-weight: normal;
    line-height: 19px;
    color: #ffffff;
    text-decoration: none;
    text-align: left;
  
    position: relative;
  }
}

header li a::before {
  content: ' ';

  width: 0;
  height: 1px;
  display: none;

  position: absolute;
  bottom: -6px;
  left: 50%;

  transition: all .3s ease-out;
  background-color: #fbb315;
}

@media screen and (min-width: 768px) {
  header li a::before {
    display: block;
  }
}

header li a:hover {
  color: #ffffff;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  header li a:hover {
    color: #fbb315;
  }
}

header li a:hover::before {
  width: 100%;
  left: 0;
}

header li a.active {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  header li a.active {
    color: #fbb315;
  }
}

.show-menu header nav {
  left: 0;
}

.show-menu header ul {
  
}

.mobile-menu {
  width: 18px;
  height: 16px;
  display: block;

  position: absolute;
  top: 20px;
  right: 20px;

  cursor: pointer;
}

.mobile-menu::before,
.mobile-menu::after {
  content: ' ';

  width: 16px;
  height: 2px;

  background: #ffffff;
  border-radius: 2px;

  position: absolute;
  left: 0;
}

.mobile-menu::before {
  top: 0;
}

.mobile-menu::after {
  bottom: 0;
}

.mobile-menu span {
  width: 14px;
  height: 2px;

  background: #ffffff;
  border-radius: 2px;

  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.nav-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

@media screen and (min-width: 768px) {
  .nav-logo {
    display: none;  
  }
}

nav .close {
  width: 22px;
  height: 22px;
  display: block;

  position: absolute;
  top: 20px;
  right: 20px;

  opacity: 1;

  background: transparent url('../img/close.png') no-repeat center center;
}

@media screen and (min-width: 768px) {
  nav .close {
    display: none;  
  }
}



/* Content *********** */
main {
  position: relative;
}

section {
  width: 100vw;
  height: 100vh;
  display: block;

  position: relative;

  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;

}

#duikschool-hasselt {
  background-image: url('../img/section-1.png');
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
  #duikschool-hasselt {
    background-image: url('../img/section-1@2x.png');
  }
}

#leren-duiken {
  background-image: url('../img/section-2.png');
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
  #leren-duiken {
    background-image: url('../img/section-2@2x.png');
  }
}

#onze-opleidingen {
  background-image: url('../img/section-3.png');
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
  #onze-opleidingen {
    background-image: url('../img/section-3@2x.png');
  }
}

#wat-heb-ik-nodig {
  background-image: url('../img/section-4.png');
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
  #wat-heb-ik-nodig {
    background-image: url('../img/section-4@2x.png');
  }
}

#contacteer-ons {
  height: auto;
  padding: 60px 0;

  background-color: #04202D;
  background-image: none;
}

#contacteer-ons .content {
  position: static;
  transform: none;
}

@media screen and (min-width: 768px) {
  #contacteer-ons {
    height: 100vh;
    padding: 0;
    background-image: url('../img/section-5.png');
  }

  #contacteer-ons .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
}

@media (min-width: 768px), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
  #contacteer-ons {
    background-image: url('../img/section-5@2x.png');
  }
}


.section-navigation {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 10px;
  z-index: 1;
}

.section-navigation .links {
  position: absolute;
  top: 50%;
  left: 0;

  transform: translateY(-50%);
}

@media screen and (min-width: 992px) {
  .section-navigation {
    left: 32px;
  }
}

.section-navigation a {
  width: 6px;
  height: 6px;
  margin-top: 5px;
  display: block;

  background: rgba(255, 255, 255, 0);
  border: 1px solid #ffffff;  
  border-radius: 50%;

  transition: all .3s ease-in-out;
  cursor: default;
}

.section-navigation a:first-child {
  margin-top: 0;
}

.section-navigation a.active {
  background: rgba(255, 255, 255, 1);
}

section img {
  max-width: 190px;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 992px) {
  section img { 
    max-width: 290px;
  }
}

section h1,
section h2,
section p {
  color: #ffffff;
}

.section-intro p {
  font-weight: 500;
}

section h1 {
  margin-top: 50px;

  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
}

@media screen and (min-width: 992px) {
  section h1 {
    font-size: 42px;
    line-height: 52px;
  }
}

section h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
}

@media screen and (min-width: 992px) {
  section h2 {
    font-size: 42px;
    line-height: 50px;
  }
}

section a {
  color: #ffb000;
  text-decoration: underline;
}

section a:hover {
  color: #ffb000;
  text-decoration: none;
}

section .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);

  text-align: center;
}

section .button-cta {
  margin-top: 45px;
}

/* Footer *********** */
footer {
  padding: 0 0 60px;
}

footer .container {
  max-width: 1440px;
}

footer .row > div {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  footer .row > div {
    margin-top: 60px;
  } 
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  footer .row > div {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

footer .col-md-2 {
  text-align: center;
}

footer img {
  max-width: 140px;
  width: 100%;
  height: auto;
}

footer .footer-logo {
  display: none;
}

footer .footer-logo ~ .footer-logo {
  display: block;
}

@media screen and (min-width: 768px) {
  footer .footer-logo {
    display: block;
  }
  
  footer .footer-logo ~ .footer-logo {
    display: none;
  } 
}

footer h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: #0f0f0f;
}

footer p {
  color: #002033;
}

footer a {
  color: #00b8c8;
  text-decoration: underline;
}

body footer .event-header .event-main-date {
  color: #00B8C8;
}

body footer .event-header .event-title {
  color: #0F0F0F;
  font-weight: 400;
}

.activities main {
  min-height: 100vh;
  padding-top: 110px;

  background-color: #002031;
}

.calendar {
  padding-bottom: 98px;
}

.calendar-navigation {
  margin: 0 -5px 20px;
}

.calendar-navigation > * {
  margin-top: 10px;
}

.calendar-button {
  min-height: 40px;
  margin: 10px 5px 0;
  padding: 11px 25px 10px 25px;
  display: inline-block;

  border: 2px solid #FBB315;
  border-radius: 100px;

  font-weight: 500;
  font-size: 16px;
  color: #FBB315;

  transition: all .3s ease-in-out;
}

.calendar-button:hover {
  background-color: #FBB315;
  color: #ffffff;
  text-decoration: none;
}

.calendar-select-wrap {
  display: inline-block;
  margin: 10px 5px 0;
  position: relative;
}

.calendar-select-wrap::before {
  content: ' ';

  width: 0;
  height: 0;

  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #FBB315 transparent transparent transparent;

  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  
  transform: translateY(-50%);
}

input#calendar-datepicker {
  background: #FFFFFF;
  border-radius: 100px;

  font-family: Rubik-Regular;
  font-size: 16px;
  color: #002031;
}

.print {
  float: right;
  margin: 10px 5px 0;

  color: #FBB315;
  line-height: 50px;
  text-decoration: underline;
}

.print:hover {
  color: #FBB315;
  text-decoration: none;
}

.event {
  padding: 32px 30px 25px;

  background: #ffffff;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .20), 0 2px 6px 0 rgba(0, 0, 0, .30), 0 0 2px 0 rgba(0, 0, 0, .50);
}

.event + .event {
  margin-top: 10px;
}

.event-header {
  cursor: pointer;
}

.event-header .event-main-date {
  font-weight: 500;
  font-size: 18px;
  color: #002031;
  line-height: 24px;
}

.event-header .event-title {
  margin-top: 10px;

  font-weight: 500;
  font-size: 24px;
  color: #02B5C5;
  line-height: 26px;
}

.event-content {
  padding: 15px 0 0;
  margin: 12px 0 0;

  border-top: 1px solid #eeeeee;
}

.event-content span {
  display: inline-block;
}

.event-content .label {
  width: 132px;

  font-style: italic;
  font-size: 18px;
  color: #AEB9BF;
  line-height: 22px;

  position: absolute;
  top: 0;
  left: 0;
}

.event-content .value {
  font-size: 18px;
  color: #002031;
  line-height: 24px;
}

.event-date,
.event-location,
.event-summary {
  padding-left: 132px;
  position: relative;
}

.event-location:not(:empty),
.event-summary:not(:empty) {
  margin-top: 18px;
}

footer .event {
  padding: 15px 0;
  
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  border-bottom: 1px solid #EBEBEB;
}

footer .event + .event {
  margin-top: 0;
}

footer .event .event-header {
  cursor: default;
}

footer .event .event-main-date,
footer .event .event-title {
  margin: 0;

  font-size: 16px;
  line-height: 24px;
}

.events-limited {
  margin-bottom: 20px;
}

.events-limited + a {
  display: inline-block;
  padding: 13px 18px 15px;

  border: 1px solid #02B5C5;
  border-radius: 100px;

  font-size: 18px;
  color: #02B5C5;
  text-decoration: none;

  transition: all .3s ease-in-out;
}

.events-limited + a:hover {
  background-color: #02B5C5;
  color: #ffffff;
}

@media (hover) {
  a span {
    display: none;
  }
  a:hover span {
    display: inline-block;
  }
}
.g-recaptcha > div {
  margin: 0 0 15px auto;
}