@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

:root {
    --main-yellow-color: #FFC107;
    --main-dark-color: #000;
    --main-light-color: #fff;
    --main-light-grey-color: #f3f3f3;
    --hero-vp: calc(var(--vh, 1vh) * 100);
}
/* =======================================================
*
* 	Template Style
*	Edit this section
*
* ======================================================= */
html {
    scroll-behavior: smooth;
}
body {
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #7f7f7f;
  background: #fff;
  height: 100%;
  position: relative;
}

a {
  color: var(--main-yellow-color);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: var(--main-yellow-color);
  outline: none;
}

p {
  margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6, figure {
  color: #000;
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 30px 0;
}

::-webkit-selection {
  color: #fff;
  background: var(--main-yellow-color);
}

::-moz-selection {
  color: #fff;
  background: var(--main-yellow-color);
}

::selection {
  color: #fff;
  background: var(--main-yellow-color);
}

.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn.btn-md {
  padding: 10px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background: var(--main-yellow-color);
  color: #fff;
  border: 2px solid var(--main-yellow-color);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--main-dark-color) !important;
  border-color: var(--main-dark-color) !important;
    color: var(--main-light-color);
}
.btn-primary.btn-outline {
  background: transparent;
  color: var(--main-yellow-color);
  border: 2px solid var(--main-yellow-color);
}
.btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
  background: var(--main-yellow-color);
  color: #fff;
}

.btn-success {
  background: #5cb85c;
  color: #fff;
  border: 2px solid #5cb85c;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background: #4cae4c !important;
  border-color: #4cae4c !important;
}
.btn-success.btn-outline {
  background: transparent;
  color: #5cb85c;
  border: 2px solid #5cb85c;
}
.btn-success.btn-outline:hover, .btn-success.btn-outline:focus, .btn-success.btn-outline:active {
  background: #5cb85c;
  color: #fff;
}

.btn-info {
  background: var(--main-yellow-color);
  color: #fff;
  border: 2px solid var(--main-yellow-color);
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important;
}
.btn-info.btn-outline {
  background: transparent;
  color: var(--main-yellow-color);
  border: 2px solid var(--main-yellow-color);
}
.btn-info.btn-outline:hover, .btn-info.btn-outline:focus, .btn-info.btn-outline:active {
  background: var(--main-yellow-color);
  color: #fff;
}

.btn-warning {
  background: #f0ad4e;
  color: #fff;
  border: 2px solid #f0ad4e;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  background: #eea236 !important;
  border-color: #eea236 !important;
}
.btn-warning.btn-outline {
  background: transparent;
  color: #f0ad4e;
  border: 2px solid #f0ad4e;
}
.btn-warning.btn-outline:hover, .btn-warning.btn-outline:focus, .btn-warning.btn-outline:active {
  background: #f0ad4e;
  color: #fff;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
  border: 2px solid #d9534f;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background: #d43f3a !important;
  border-color: #d43f3a !important;
}
.btn-danger.btn-outline {
  background: transparent;
  color: #d9534f;
  border: 2px solid #d9534f;
}
.btn-danger.btn-outline:hover, .btn-danger.btn-outline:focus, .btn-danger.btn-outline:active {
  background: #d9534f;
  color: #fff;
}

.btn-outline {
  background: none;
  border: 2px solid gray;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  box-shadow: none;
}

.btn.with-arrow {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.with-arrow i {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn.with-arrow:hover {
  padding-right: 50px;
}
.btn.with-arrow:hover i {
  color: #fff;
  right: 18px;
  visibility: visible;
  opacity: 1;
}

.form-control {
  box-shadow: none;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  height: 54px;
  font-size: 18px;
  font-weight: 300;
}
.form-control:active, .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--main-yellow-color);
}

.fh5co-social {
  padding: 0;
  margin: 0;
}
.fh5co-social li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.fh5co-social li a {
  font-size: 30px;
  color: #fff;
  margin: 0 10px 0 0;
  padding: 2px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
.fh5co-social li a:hover {
  color: var(--main-yellow-color);
}
.fh5co-social li a:hover, .fh5co-social li a:active, .fh5co-social li a:focus {
  outline: none;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

.row-bottom-padded-lg {
  padding-bottom: 7em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-lg {
    padding-bottom: 1em;
  }
}

.row-bottom-padded-md {
  padding-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-md {
    padding-bottom: 1em;
  }
}

.row-bottom-padded-sm {
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-sm {
    padding-bottom: 1em;
  }
}

#fh5co-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 9999;
    background: #fff;
}
@media screen and (max-width: 990px) {
  #fh5co-header {
    margin: 0px 0 0 0;
  }
}
#fh5co-header .header-inner {
    display: flex;
    justify-content: space-between; /* logo links, nav rechts */
    align-items: center; /* verticaal centreren */
    height: 80px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    border-radius: 7px;
}

#fh5co-header img {
    margin-top: 5px;
    height: 80px;
}

#fh5co-header nav {
  padding: 0;
}
@media screen and (max-width: 990px) {
  #fh5co-header nav {
    display: none;
  }
}
#fh5co-header nav ul {
  padding: 0;
  margin: 0 -0px 0 0;
  line-height: 0;
}
#fh5co-header nav ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
#fh5co-header nav ul li a {
  color: var(--main-dark-color);
  font-size: 18px;
  padding: 10px;
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#fh5co-header nav ul li a i {
  line-height: 0;
  font-size: 20px;
  position: relative;
  top: 3px;
}
#fh5co-header nav ul li a:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 7px;
  left: 10px;
  right: 10px;
  background-color: var(--main-yellow-color);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#fh5co-header nav ul li a:hover {
  text-decoration: none;
  color: var(--main-yellow-color);
}
#fh5co-header nav ul li a:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
#fh5co-header nav ul li a:active, #fh5co-header nav ul li a:focus {
  outline: none;
  text-decoration: none;
}
#fh5co-header nav ul li.cta {
  margin-left: 20px;
}
#fh5co-header nav ul li.cta a {
  padding-left: 16px !important;
  padding-right: 16px !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  border: 2px solid var(--main-yellow-color);
  color: var(--main-yellow-color)    ;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
#fh5co-header nav ul li.cta a:hover {
  color: var(--main-light-color);
  background: var(--main-yellow-color);
}
#fh5co-header nav ul li.cta a:hover:after {
  display: none;
}
#fh5co-header nav ul li.active a {
  text-decoration: none;
  color: var(--main-dark-color);
}
#fh5co-header nav ul li.active a:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

#fh5co-page-hero {
    margin-top: 90px;
    height: 200px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
}

@media screen and (min-width: 1300px) {
    #fh5co-page-hero {
        margin-top: 90px;
        height: 200px;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position-y: -370px;
    }
}

@media screen and (min-width: 1500px) {
    #fh5co-page-hero {
        margin-top: 90px;
        height: 200px;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position-y: -450px;
}
}

#fh5co-hero {
    height: var(--hero-vp);
}
#fh5co-hero .btn {
  font-size: 24px;
}
#fh5co-hero .btn.btn-primary {
  padding: 14px 30px !important;
}
#fh5co-hero .flexslider {
  border: none;
  z-index: 1;
  margin-bottom: 0;
}
#fh5co-hero .flexslider .slides {
  position: relative;
  overflow: hidden;
}
#fh5co-hero .flexslider .slides li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
    height: var(--hero-vp);
}
#fh5co-hero .flexslider .flex-control-nav {
  bottom: 40px;
  z-index: 1000;
}
#fh5co-hero .flexslider .flex-control-nav li a {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
#fh5co-hero .flexslider .flex-control-nav li a.flex-active {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
}
#fh5co-hero .flexslider .flex-direction-nav {
  display: none;
}
#fh5co-hero .flexslider .slider-text {
    display: flex;
    align-items: end; /* vervangt table + vertical-align: middle */
    padding-bottom: 50px;
    justify-content: center;
    height: var(--hero-vp);
}
#fh5co-hero .flexslider .slider-text > .slider-text-inner {
    text-align: center;
}
#fh5co-hero .flexslider .slider-text > .slider-text-inner h2 {
  font-size: 70px;
  font-weight: 400;
  color: var(--main-light-color);
}
@media screen and (max-width: 768px) {
  #fh5co-hero .flexslider .slider-text > .slider-text-inner h2 {
    font-size: 40px;
  }
}
#fh5co-hero .flexslider .slider-text > .slider-text-inner .fh5co-lead {
  font-size: 20px;
  color: #fff;
}
#fh5co-hero .flexslider .slider-text > .slider-text-inner .fh5co-lead .icon-heart {
  color: #d9534f;
}

#fh5co-hero .flex-control-nav {
    display: none;
}

#fh5co-services-section, #fh5co-work-section, #fh5co-testimony-section,
#fh5co-blog-section, .main-section {
  padding: 7em 0;
}
@media screen and (max-width: 768px) {
  #fh5co-services-section, #fh5co-work-section, #fh5co-testimony-section,
  #fh5co-blog-section, .main-section {
    padding: 7em 0;
  }
}

#fh5co-services-section .services {
  position: relative;
}

#fh5co-services-section .fh5co-heading h3 {
    color: var(--main-yellow-color);
}

#fh5co-services-section .services .desc {
    text-align: center;
}

#fh5co-services-section .services .desc .btn {
    margin-bottom: 20px;
}

#fh5co-services-section .services .desc img {
    margin-bottom: 20px;
    width: 300px;
    border-radius: 8px;
}

#fh5co-services-section .services .desc h3 {
  font-size: 20px;
  font-weight: 700;
    color: var(--main-yellow-color);
}

.fh5co-services {
  margin-top: 4em;
}

#fh5co-club {

    background: var(--main-light-grey-color);
}

#fh5co-club .video-container-row {
    display: flex;
    align-items: start;
}

#fh5co-club iframe {
    width: 300px;
    height: 200px;
}

@media screen and (max-width: 768px) {

    #fh5co-club {
        text-align: center;
    }

    #fh5co-club .club-element {
        margin-top: 10px;
    }

    #fh5co-club .video-container-row {
        display: inline;
    }
}

#fh5co-membership .fh5co-heading h3 {
    color: var(--main-yellow-color);
}

#fh5co-membership .membership-element h3 {
    font-weight: bold;
    color: var(--main-yellow-color);
}

#fh5co-membership .video-container-row {
    display: flex;
    align-items: center;
}

#fh5co-membership .photo-carousel {
    width: 400px;
}

#fh5co-membership .photo-carousel img {
    border-radius: 5px;
}

@media screen and (max-width: 768px) {

    #fh5co-membership {
        text-align: center;
    }

    #fh5co-membership .membership-element {
        margin-top: 10px;
    }

    #fh5co-membership .video-container-row {
        display: inline;
    }

    #fh5co-membership .photo-carousel {
        text-align: center;
        width: 100%;
    }
}


#fh5co-gallery .item-grid {
  width: 100%;
  float: left;
  position: relative;
  background: #fff;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 2px;
}
#fh5co-gallery .item-grid .image {
  height: 150px;
  overflow: hidden;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center center;
}
#fh5co-gallery .item-grid .v-align {

}
#fh5co-gallery .item-grid .v-align h3 {
  font-weight: 700;
  font-size: 20px;
}
#fh5co-gallery .item-grid .v-align h5 {
  color: rgba(0, 0, 0, 0.3);
}
#fh5co-gallery .item-grid:hover, #fh5co-work-section .item-grid:focus {
  text-decoration: none;
  -webkit-box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  top: -2px;
}

@media screen and (max-width: 480px) {
    #fh5co-gallery .item-grid-container {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.fh5co-gallery-viewer {
    padding: 7em 0;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px; /* pas aan naar gewenste hoogte */
}

/* Zorg dat de afbeeldingen niet groter worden dan de container */
.splide__slide img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover; /* of 'contain' als je volledige afbeelding zichtbaar wil */
    border-radius: 8px; /* optioneel voor afgeronde hoeken */
}

/* Voeg spacing toe tussen slides */
.splide__track {
    padding: 0 2rem; /* optioneel: ruimte voor pijlen */
}

.thumbnails {
    display: flex;
    margin: 1rem auto 0;
    padding: 0;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 70px;
    overflow: hidden;
    list-style: none;
    margin: 0 0.2rem;
    cursor: pointer;
    border-radius: 4px; /* optioneel */
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* zorgt ervoor dat img de container volledig vult */
    display: block;
    opacity: 0.4;
}

.thumbnail.is-active img {
    opacity: 1;
}

@media (max-width: 768px) {
    .fh5co-gallery-viewer {
        padding: 7em 0; /* was 7em */
    }

    /* Maak de slide lager op mobiel */
    #image-carousel .splide__slide {
        height: 45vh;        /* of bv. 280px */
        min-height: 200px;   /* vang hele kleine schermen op */
    }

    /* Minder horizontale padding in de track (indirect ook compacter) */
    #image-carousel .splide__track {
        padding: 0 .5rem;    /* was 0 2rem */
    }

    /* Haal extra marge weg tussen carousel en thumbnails */
    #image-carousel {
        margin-bottom: .5rem;   /* forceer kleine gap */
    }

    /* Thumbnails dichter tegen de carousel */
    #thumbnails.thumbnails {
        margin: .5rem auto 0;   /* was 1rem auto 0 */
    }
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay-content {
    position: relative;
}

.overlay iframe {
    border: none;
    max-width: 90vw;
    max-height: 90vh;
}

#closeOverlay {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.hidden {
    display: none;
}

#fh5co-calendar .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 24px;   /* verticale spacing tussen rijen */
    /* desnoods ook: column-gap: 24px;  // voor horizontale gap i.p.v. col-padding */
}

/* laat de card de kolomhoogte vullen */
#fh5co-calendar .row > [class*="col-"] {
    display: flex;   /* zodat child (card) kan stretchen */
}

/* Container oogt als een klein "chip / input" en blijft inline */
.copy-field {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: baseline;
    max-width: 100%;
    margin: 0 .25rem;              /* subtiele ruimte rond het blokje */
    padding: 2px 2px 2px 10px;     /* links wat ademruimte voor de tekst */
    background: #fff;
    border: 1px solid #dadce0;     /* Google lichtgrijs */
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(60,64,67,.1);
}

/* Zorgt voor ellipsis bij lange links */
.copy-field .copy-text {
    max-width: 40ch;               /* toon ~40 karakters; pas aan naar wens */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font: 500 12.5px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    color: #202124;
    user-select: all;              /* makkelijk selecteren */
}

/* Compacte icon-knop in Google-stijl */
.copy-field .copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    background: #f1f3f4;           /* Google grijs */
    color: #1f1f1f;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

.copy-field .copy-btn:hover    { background: #e8eaed; }
.copy-field .copy-btn:active   { transform: translateY(1px); background: #e0e3e7; }
.copy-field .copy-btn:focus-visible {
    box-shadow: 0 0 0 2px #e8f0fe; /* focusring in Google-blauw */
    border-color: #aecbfa;
}

/* Optionele "gekopieerd" staat (als je de class gebruikt, zie JS-optie) */
.copy-field .copy-btn.is-copied {
    background: #e6f4ea;           /* groen tintje */
    border-color: #a8dab5;
    color: #137333;
}


.event-card {
    background-color: var(--main-light-color);
    border: 1px solid var(--main-dark-color);
    border-radius: 8px;
    padding: 1.75rem;
    color: var(--main-dark-color);
    display: flex;
    flex-direction: column;
    height: 100%; /* vult volledige hoogte van de parent */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;

}

/* New: header row for date/time + icons */
.event-card .event-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
}

/* Group date/time nicely */
.event-card .event-when {
    display: grid;
    gap: 0.35rem;
}

/* Icon buttons */
.event-card .event-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.event-card .calendar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    color: var(--main-dark-color);
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.event-card .calendar-icon:hover {
    transform: translateY(-1px);
    background: rgba(0,0,0,0.10);
    color: var(--main-yellow-color);
    opacity: 0.95;
}

.event-card .event-date {
    font-size: 11pt;
    font-weight: 700;
    color: var(--main-yellow-color);
}

.event-card .event-time {
    font-size: 11pt;
    font-weight: 600;
    margin-top: 0.35rem;
    color: #333;
}

.event-card .event-name {
    font-size: 14pt; /* groter en vetter */
    font-weight: 700;
    margin: 1.2rem 0 0.6rem 0;
    color: var(--main-dark-color);
}

.event-card .event-location {
    font-size: 11pt;
    margin-bottom: 1rem;
    color: #555;
}

.event-card .event-description {
    font-size: 12pt;
    line-height: 1.6;
    color: #444;
    flex-grow: 1; /* vult resterende ruimte */
}

#fh5co-privacy {
    padding-top: 7em;
}



.wrap-testimony {
  position: relative;
  width: 100%;
}
.wrap-testimony .testimony-slide {
  text-align: center;
  overflow: hidden;
}
.wrap-testimony .testimony-slide span {
  font-size: 18px;
}
.wrap-testimony .testimony-slide span a.twitter {
  color: var(--main-yellow-color);
  font-weight: 300;
}
.wrap-testimony .testimony-slide figure {
  margin-bottom: 20px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.wrap-testimony .testimony-slide figure img {
  width: 120px;
  height: 120px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.wrap-testimony .testimony-slide blockquote {
  border: none;
  margin: 0 auto;
  width: 72%;
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .wrap-testimony .testimony-slide blockquote {
    width: 100%;
  }
}
.wrap-testimony .testimony-slide blockquote p {
  font-size: 20px;
  line-height: 1.6em;
  color: #1a1a1a;
}
.wrap-testimony .testimony-slide.active {
  display: block;
}

.owl-carousel .owl-controls .owl-dot {
  margin-top: 30px;
}
.owl-carousel .owl-controls .owl-dot span {
  background: #e6e6e6;
}
.owl-carousel .owl-controls .owl-dot span:hover, .owl-carousel .owl-controls .owl-dot span:focus {
  background: #cccccc;
}
.owl-carousel .owl-controls .owl-dot:hover span, .owl-carousel .owl-controls .owl-dot:focus span {
  background: #cccccc;
}
.owl-carousel .owl-controls .owl-dot.active span {
  background: transparent;
  border: 2px solid var(--main-yellow-color);
}

#fh5co-blog-section .item-grid {
  width: 100%;
  float: left;
  position: relative;
  background: #fff;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 2px;
}
#fh5co-blog-section .item-grid .image {
  height: 400px;
  overflow: hidden;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center center;
}
#fh5co-blog-section .item-grid .v-align {
  padding: 30px;
}
#fh5co-blog-section .item-grid .v-align h3 {
  font-weight: 700;
  font-size: 20px;
}
#fh5co-blog-section .item-grid .v-align h5 {
  color: rgba(0, 0, 0, 0.3);
}
#fh5co-blog-section .item-grid .v-align p {
  color: gray;
}
#fh5co-blog-section .item-grid:hover, #fh5co-blog-section .item-grid:focus {
  text-decoration: none;
  -webkit-box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  top: -2px;
}

.item-block {
  margin-bottom: 7em;
  float: left;
}
.item-block .icon {
  display: block;
  margin-bottom: 30px;
}
.item-block .icon img {
  max-width: inherit;
  height: 90px;
  margin: 0 auto;
}
.item-block h3 {
  font-size: 20px;
  font-weight: 700;
}
.item-block p:last-child {
  margin-bottom: 0;
}

.fh5co-heading {
  margin-bottom: 30px;
}
.fh5co-heading h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.googleplus-color {
  color: #dc4e41;
}

.facebook-color {
  color: #3b5998;
}

.twitter-color {
  color: #55acee;
}

.fh5co-about,
.fh5co-team,
.fh5co-contact,
.fh5co-gallery,
.fh5co-calendar {
  padding: 4em 0;
}
@media screen and (max-width: 768px) {
  .fh5co-about,
  .fh5co-team,
  .fh5co-contact {
    padding: 3em 0 10px 0;
  }
}

.contact-info {
  margin-bottom: 4em;
  padding: 0;
}
.contact-info li {
  list-style: none;
  margin: 0 0 20px 0;
  position: relative;
  padding-left: 40px;
}
.contact-info li i {
  position: absolute;
  top: .3em;
  left: 0;
  font-size: 22px;
  color: var(--main-yellow-color);
}
.contact-info li a {
  color: var(--main-yellow-color);
}

#map {
  height: 500px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #map {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  #map {
    height: 200px;
  }
}

.fh5co-staff img {
  margin-bottom: 1.5em;
}
.fh5co-staff h3 {
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 20px;
}
.fh5co-staff h4 {
  margin: 0 0 20px 0;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}
.fh5co-staff .fh5co-social {
  text-align: center;
}
.fh5co-staff .fh5co-social a {
  color: #000;
}

.fh5co-cta {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 7em 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fh5co-cta {
    padding: 3em 0;
  }
}
.fh5co-cta .cta-overlay {
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute;
  z-index: 1;
}
.fh5co-cta .container {
  position: relative;
  z-index: 2;
}
.fh5co-cta p, .fh5co-cta h3 {
  color: #fff;
}
.fh5co-cta p:last-child {
  margin-bottom: 0;
}
.fh5co-cta .btn {
  color: #fff;
}

/**
    Directors
 */
#fh5co-directors {
    padding: 4em 0;
}
#fh5co-directors .director {

}
#fh5co-directors img {
    width: 230px;
    height: 268px;
    border-radius: 10px;
    margin-bottom: 10px;
}
#fh5co-directors h3 {
    font-weight: bold;
    margin-bottom: 10px;
}
#fh5co-directors h4 {
    color: var(--main-yellow-color);
}



/**
    FOOTER
 */


#fh5co-footer {
  padding: 7em 0;
  float: left;
  width: 100%;
  position: relative;
  background: #262626;
}
@media screen and (max-width: 768px) {
  #fh5co-footer {
    padding: 3em 0;
  }
}
#fh5co-footer h2, #fh5co-footer h3, #fh5co-footer h4 {
  color: #fff;
}
#fh5co-footer h3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
}
#fh5co-footer [class*="col"] {
  padding-bottom: 30px;
}
#fh5co-footer p {
    margin-bottom: 10px;
}
#fh5co-footer .btn {
  color: #fff;
}
#fh5co-footer .float {
  float: left;
  margin-right: 10%;
}
#fh5co-footer ul {
  padding: 0;
  margin: 0;
}
#fh5co-footer ul li {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
}
#fh5co-footer ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none !important;
}
#fh5co-footer ul li a:hover {
  color: var(--main-yellow-color);
}

.footer-info-row {
    padding-left: 15px;
}

#fh5co-footer .fh5co-social {
  float: left;
}

#fh5co-footer-federations img {
    height: 40px;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

#fh5co-footer-federations img:hover {
    filter: grayscale(0%);
    transition: filter 0.5s ease;
}

.instagram_post {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 500px; /* optional, for layout */
    margin: 20px auto;
}

.instagram_post .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.instagram_post .title .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.instagram_post .title span, .instagram_post .title span:hover{
    flex-grow: 1;
    font-weight: bold;
    color: var(--main-dark-color);
    text-underline: none;
}

.instagram_post .title .instagram-icon {
    width: 20px;
    height: 20px;
    margin-left: auto;
}

.instagram_post p {
    color: var(--main-dark-color);
    padding: 0px 20px 5px 20px;
}

.instagram_post > img {
    width: 100%;
    display: block;
    border-radius: 0 0 16px 16px;
}


.fh5co-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  clear: both;
  margin-top: 40px !important;
  padding: 40px 0 0 0;
}
.fh5co-copyright span {
  display: block;
}
@media screen and (max-width: 480px) {
  .fh5co-copyright {
    text-align: left !important;
  }
  .fh5co-copyright span {
    display: inline;
  }
}

#fh5co-page {
  position: relative;
  z-index: 2;
  background: #fff;
}

#fh5co-offcanvas, .fh5co-nav-toggle, #fh5co-page {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#fh5co-offcanvas, .fh5co-nav-toggle, #fh5co-page {
  position: relative;
}

#fh5co-page {
  z-index: 2;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.offcanvas-visible #fh5co-page {
  -moz-transform: translateX(-300px);
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  -o-transform: translateX(-300px);
  transform: translateX(-300px);
}

#fh5co-offcanvas {
  display: none;
  height: 100%;
  right: 0;
  overflow-y: auto;
  position: fixed;
  z-index: 1;
  top: 0;
  width: 300px;
  background: black;
  padding: 30px;
}
@media screen and (max-width: 990px) {
  #fh5co-offcanvas {
    display: block;
  }
}
#fh5co-offcanvas ul {
  padding: 0;
  margin: 0;
}
#fh5co-offcanvas ul li {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
  line-height: 28px;
}
#fh5co-offcanvas ul li a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none !important;
}
#fh5co-offcanvas ul li a:hover {
  color: var(--main-yellow-color);
}
#fh5co-offcanvas ul li.active a {
  color: var(--main-yellow-color);
}
#fh5co-offcanvas ul li.cta {
  margin-left: 0;
  margin-top: 20px;
  display: block;
  float: left;
}
#fh5co-offcanvas ul li.cta a {
  padding-left: 16px !important;
  padding-right: 16px !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
#fh5co-offcanvas ul li.cta a:hover {
  background: #fff;
  text-decoration: none;
}
#fh5co-offcanvas ul li.cta a:hover:after {
  display: none;
}

.fh5co-nav-toggle {
  cursor: pointer;
  text-decoration: none;
}
.fh5co-nav-toggle.active i::before, .fh5co-nav-toggle.active i::after {
  background: #fff;
}
.fh5co-nav-toggle.dark.active i::before, .fh5co-nav-toggle.dark.active i::after {
  background: #fff;
}
.fh5co-nav-toggle:hover, .fh5co-nav-toggle:focus, .fh5co-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}
.fh5co-nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 30px;
  height: 2px;
  color: #fff;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #000;
  transition: all .2s ease-out;
}
.fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.fh5co-nav-toggle.dark i {
  position: relative;
  color: #000;
  background: #000;
  transition: all .2s ease-out;
}
.fh5co-nav-toggle.dark i::before, .fh5co-nav-toggle.dark i::after {
  background: #000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.fh5co-nav-toggle i::before {
  top: -7px;
}

.fh5co-nav-toggle i::after {
  bottom: -7px;
}

.fh5co-nav-toggle:hover i::before {
  top: -10px;
}

.fh5co-nav-toggle:hover i::after {
  bottom: -10px;
}

.fh5co-nav-toggle.active i {
  background: transparent;
}

.fh5co-nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.fh5co-nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.fh5co-nav-toggle {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 9999;
  display: block;
  margin: 0 auto;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 990px) {
  .fh5co-nav-toggle {
    display: block;
    top: 20px;
  }
}

#fh5co-pricing-section {
  padding: 7em 0;
  background: #fcfcfc;
}
@media screen and (max-width: 768px) {
  #fh5co-pricing-section {
    padding: 3em 0;
  }
}
#fh5co-pricing-section .pricing {
  display: block;
  float: left;
  margin-bottom: 30px;
}
#fh5co-pricing-section .price-box {
  text-align: center;
  padding: 30px;
  background: #fff;
  margin-bottom: 40px;
  position: relative;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.11);
  top: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#fh5co-pricing-section .price-box.popular .btn-select-plan {
  background: var(--main-yellow-color);
}
#fh5co-pricing-section .price-box.popular .price {
  color: var(--main-yellow-color);
}
#fh5co-pricing-section .price-box .btn-select-plan {
  padding: 10px 20px;
  background: var(--main-yellow-color);
  color: #fff;
}
#fh5co-pricing-section .price-box:hover, #fh5co-pricing-section .price-box:focus {
  -webkit-box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 14px 25px -2px rgba(0, 0, 0, 0.14);
  top: -2px;
}
#fh5co-pricing-section .pricing-plan {
  margin: 0 0 50px 0;
  padding: 0;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #888f94;
}
#fh5co-pricing-section .pricing-plan.pricing-plan-offer {
  margin-bottom: 24px;
}
#fh5co-pricing-section .pricing-plan span {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  color: #d5d8db;
}
#fh5co-pricing-section .price {
  font-size: 72px;
  color: #6d6d6d;
  line-height: 50px;
}
#fh5co-pricing-section .price .currency {
  font-size: 30px;
  top: -0.9em;
  padding-right: 10px;
}
#fh5co-pricing-section .price small {
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  color: #888f94;
}

.fh5co-light-grey-section {
  background: rgba(0, 0, 0, 0.03) !important;
}

.js .animate-box {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */
