/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/*
 * Variables
 */
:root {
  /* COLORS */

  --primary-color: #0071CE;
  --primary-color-contrast: #fff;
  --primary-color-shade: #004f90;
  --primary-color-tint: #4d9cdd;
  --background-color: white;
  --text-color: #0F0F0F;
  --link-text-color: #102142;

  --border-radius: 3rem;


  /* FONTS */
  --primary-font-family: 'Titillium Web', sans-serif;
  --secondary-font-family: 'Titillium Web', sans-serif;
}

/*
* Essentials
*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}

body {
  font-family: var(--secondary-font-family);
  font-weight: 400;
  font-size: 18px;
  background-color: var(--background-color);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6,
.my-env h1,
.my-env h2,
.my-env h3,
.my-env h4,
.my-env h5,
.my-env h6 {
  font-family: var(--primary-font-family);
  color: var(--primary-color);
  word-wrap: break-word;
  font-weight: 700;
  padding-top: 12px;
}

a,
.my-env a {
  color: var(--primary-color);
  text-decoration: none;
}


a:hover,
.my-env a:hover {
  text-decoration: underline;
  color: var(--link-text-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--primary-color);
  text-decoration: none;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-width: 1px;
  padding: 7px;
}

#my-env-calendar-occurence-enroll {
  display: none !important;
}

figure.float-left {
  margin-right: 2rem;
  max-width: 200px;
}

/*
* Bootstrap overwrites
*/
.btn {
  border-radius: var(--border-radius);
  font-family: var(--primary-font-family);
  text-decoration: none !important;
}

.btn-primary,
.my-env .btn-primary {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color-contrast);
  text-decoration: none !important;
}

.btn-outline-primary,
.my-env .btn-outline-primary {
  background-color: var(--primary-color-contrast);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.my-env .btn-primary:hover {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color-contrast);
}

.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:focus,
.btn-primary:hover,
.my-env .btn-primary:hover {
  background-color: var(--primary-color-contrast);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary,
.my-env .btn-secondary {
  background-color: var(--secondary-color-contrast);
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:focus,
.btn-secondary:hover,
.my-env .btn-secondary:hover {
  background-color: var(--secondary-color-tint);
  color: var(--secondary-color-contrast);
}

/*
* Bootstrap extensions
*/
.py-8 {
  padding-block: 5rem;
}

.pt-8 {
  padding-top: 5rem;
}

.pb-8 {
  padding-bottom: 5rem;
}

.my-8 {
  margin-block: 5rem;
}

.mt-8 {
  margin-top: 5rem;
}

.mb-8 {
  margin-bottom: 5rem;
}

.align-justify {
  text-align: justify;
}

/* 
* Backward compatibiltiy for bootstrap v5
*/
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.align-center {
  text-align: center;
}

.wrap-center {
  text-align: center;
}

*[data-block="layout"] {
  display: flex;
  gap: 20px;
}

/* 
* Basics
*/

/* NAVBAR SECTION */
.navigation-wrapper {
  max-width: unset !important;
  padding: 10px;
}


/* Main Navbar */
.main-navbar {
  background-color: #fff;
  display: block;
  max-width: 80rem;
  margin: 20px auto;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.main-navbar:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.main-navbar-container {
  flex-wrap: nowrap !important;
}

.main-navbar .navbar-brand img,
.main-navbar .navbar-brand figure {
  max-height: 60px;
  margin: 0;
}


.main-navbar .navbar-nav .nav-link {
  margin: 0 5px;
  color: var(--primary-color);
  font-weight: 500;
  font-family: var(--primary-font-family);
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link:focus {
  color: unset;
}

.main-navbar .navbar-nav .dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color-tint);
}

.main-navbar .btn {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.main-navbar .navbar-btn-container {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.main-navbar .simple-menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.main-navbar .simple-menu-list-item>* {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--primary-font-family);
}

.navbar-toggler {
  border: 0;
}

.navbar-hamburger {
  cursor: pointer;
}

.navbar-hamburger span {
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  display: block;
  margin: 5px auto;
}

.navbar-close-offcanvas {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.navbar-close-offcanvas:before,
.navbar-close-offcanvas:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: var(--primary-color);
}

.navbar-close-offcanvas:before {
  transform: rotate(45deg);
}

.navbar-close-offcanvas:after {
  transform: rotate(-45deg);
}

.footer-brand {
  max-height: 100px;
  max-width: 200px;
}

.content-center {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

#main-content {
  margin-right: 26px;
  margin-left: 26px;
  flex: 1;
  margin-top: 120px;
  margin-bottom: 50px;
}

#main-content>* {
  max-width: 1140px;
  margin: 0 auto;
}

#main-content img {
  max-width: 100%;
  height: 100%;
  border-radius: 1rem;
}

#main-content table {
  overflow-x: auto;
  /*display: block;*/
  display: cover;
}

#main-content table img {
  height: 100%;
  min-width: 100px;
}

.youtube-video-iframe {
  max-width: 650px;
  margin-left: 0;
}

.home-more-news-btn-containter {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* FOOTER */
.main-footer {
  max-width: unset !important;
}

.footer-stacked-waves {
  width: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.footer-content-wrapper {
  background-color: var(--primary-color);
  position: relative;
  font-size: 16px;
  border-top-right-radius: 10rem;
  padding-top: 100px;
}

.footer-content-wrapper:before {
  content: '';
  position: absolute;
  left: 0px;
  transform: rotate(180deg);
  top: -149px;
  fill: var(--primary-color);
  height: 150px;
  width: 150px;
  background: var(--primary-color);
  clip-path: path('M 0 0 L 150 0 L 150 150 Q 150 0, 0 0 Z');
}

.footer-content * {
  color: #fff;
}

.footer-content .footer-social-links svg {
  max-width: 2rem;
  fill: #fff;
}

.footer-content p {
  font-weight: 300;
}

.social-link-icons-container {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}


.social-link-icon img {
  max-width: 32px;
  max-height: 32px;
}

.footer-content .contact-wrapper svg {
  width: 18px;
  margin-right: 8px;
}

.footer-content .contact-wrapper p {
  margin-bottom: 0px;
}

.footer-content .contact-wrapper svg path {
  fill: #fff;
}

.footer-content ul {
  list-style: none;
  margin-inline: 0;
  padding-inline: 0;
}

.footer-content li {
  margin-bottom: 6px;
}

.footer-content li a:hover {
  color: inherit;
}

.bottom-footer {
  text-align: center;
}

.bottom-footer-small {
  text-align: center;
  font-size: .875em;
  margin-top: 1rem;
}

.bottom-footer p {
  margin-bottom: 0;
}

.foys-footer {
  display: none !important;
}

/* 
* 👇 INSERT CUSTOM CSS FOR ALL SCREEN SIZES BELOW 👇
*/
/* HEADER */
.header-container {
  width: 100%;
  height: 50rem;
  background-image: url('https://images.foys.io/foys/21450fe3-b83c-468d-a08c-93774fdfa97f/057af021-ef92-4d46-b132-6b9bbae55b30.jpg?w=1600');
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-wrap: wrap;
  display: flex;
  align-content: center;
}

.header-container:before {
  content: '';
  position: absolute;
  right: 0px;
  transform: rotate(90deg);
  bottom: 150px;
  fill: var(--primary-color);
  height: 150px;
  width: 150px;
  background: #fff;
  clip-path: path('M 0 0 L 150 0 L 150 150 Q 150 0, 0 0 Z');
}

.header-inner-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
}

.header-inner-container>* {
  max-width: 50%;
}

.header-container h1,
.header-container h2,
.header-container h3,
.header-container h4,
.header-container p {
  color: #fff !important;
}

.header-container-padding {
  height: 150px;
  background-color: #fff;
  width: 100vw;
  max-width: unset;
  position: absolute;
  bottom: 0;
  border-top-left-radius: 150px;
}

/* HOME WIDGET */
.home-info-club-container {
  margin-bottom: 4rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.home-info-club-container img {
  max-width: 300px;
}

/* HOME JOIN SECTION */
.home-join-container {
  background-color: var(--primary-color);
  max-width: unset !important;
  margin-left: -26px !important;
  margin-right: -26px !important;
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.home-join-inner-container {
  max-width: 1250px;
  margin: 0 auto;
}

.home-join-container h1,
.home-join-container h2,
.home-join-container h3,
.home-join-container h4 {
  color: #fff !important;
}

.home-join-image-container {
  position: relative;
  top: -40px;
}

.home-join-image-container figure {
  max-width: 450px;
  margin: 0 auto;
}

/*Kalender widget nieuw*/

.calendar-event-date,
.calendar-event-time {
  display: inline;
  font-family: var(--primary-font-family);
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  color: var(--primary-color);
}

.calendar-event-date:first-letter {
  text-transform: capitalize;
}

.calendar-event-time::before {
  content: "van ";
}

.calendar-event-title {
  font-size: 0.8rem;
}

.event-title {
  color: var(--primary-color-contrast);
}

.event-title a {
  color: var(--primary-color-contrast);
}

.event-title a:hover {
  color: var(--primary-color-contrast);
  text-decoration: underline;
}

.event-location {
  font-size: 1rem;
}

.event-start {
  font-size: 1rem;
}

.website-calendar-events .lead {
  display: none;
}

.big-date-block {
  background-color: var(--primary-color-contrast);
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  padding: 0.5rem
}

.big-date-day,
.big-date-month {
  font-size: 40px;
  line-height: 35px;
  margin-bottom: 0;
}

/* CALENDAR WIDGET oud
.calendar-event {
  margin-bottom: 3rem;
}

.calendar-event .big-date {
  min-width: 100px;
  font-weight: 600;
  font-family: var(--primary-font-family);
  font-size: 1.1em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-event .big-date .big-date-day {
  font-size: 1.5em;
}

.calendar-event .big-date .big-date-month {
  font-size: 1.05em;
  font-weight: normal;
}

.calendar-event .event-title {
  font-size: 1.8em;
}*/

/* CONTACT FORM WIDGET */
.website-contact-form row {
  margin: 0 !important;
}

.website-contact-form .form-check {
  padding: 0 !important;
}

.website-contact-form .form-group {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.form-check .form-check-input {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* NEWS ITEM WIDGET */
.news-item-image-div {
  height: 200px;
  background-position: center;
  background-size: cover;
}

.news-header-image-container {
  width: 100%;
  margin-bottom: 1rem;
}

.news-header-image-container img {
  border-radius: var(--border-radius);
  max-height: 500px;
}

.news-title a {
  font-family: var(--primary-font-family);
  color: var(--primary-color) !important;
  word-wrap: break-word;
  font-size: 1.375rem;
}

.news-date {
  font-size: 0.95em;
  color: var(--bs-gray-500);
}

.news-short-description-content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.website-news-item-details .news-short-description {
  font-weight: bold;
}

.news-read-more {
  margin-top: 10px;
}

.news-image-container {
  margin-bottom: 0.7rem;
}

/* GET APP BUTTON */
.get-app-btn {
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  gap: 0.5rem;
  transition: all 0.2s linear;
}

.get-app-btn:hover {
  text-decoration: none;
  background-color: #fff;
}

.get-app-btn:hover * {
  text-decoration: none;
  color: #000;
}

.get-app-btn.get-app-btn-apple svg path {
  fill: #fff;
}

.get-app-btn:hover.get-app-btn-apple svg path {
  fill: #000;
}

.get-app-btn-subtitle {
  font-size: 0.6rem;
}

.get-app-btn-store {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* STACKED WAVES */
.stacked-wave-top-container {
  max-width: none;
  overflow-x: hidden;
  margin-top: 60px;
}

@media all and (max-width: 1200px) {}

@media all and (max-width: 992px) {
  .main-navbar .dropdown-menu {
    border: 0;
  }

  .navbar-nav {
    overflow-y: scroll;
  }

  .main-navbar-container {
    justify-content: end;
  }

  .main-navbar .navbar-brand {
    margin-right: auto;
  }

  .main-navbar .simple-menu-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 0px;
    padding-left: 0px;
    margin-top: 2rem;
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .main-navbar {
    margin-left: 20px;
  }

  .simple-menu-list-dropdown-toggle {
    display: block;
    text-align: left;
  }

  .main-navbar .simple-menu-list-item>* {
    padding-top: 0px;
  }

  .main-navbar .btn {
    max-width: fit-content;
    margin-bottom: 1rem;
    margin-left: 20px;
  }

  .main-navbar .navbar-btn-container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px;
    margin-left: 20px;
  }

  .home-join-container {
    padding-bottom: 60px;
  }
}

@media all and (max-width: 768px) {

  /*
  * 👇 CUSTOM CSS FOR BELOW MEDIUM 👇
  */
  .header-image-container {
    height: 400px;
  }

  *[data-block="layout"] {
    flex-direction: column;
  }
}

@media all and (max-width: 576px) {
  /*
  * 👇 CUSTOM CSS FOR BELOW SMALL👇
  */

  .header-image-container {
    height: 300px;
  }

  .footer-content-wrapper {
    border-top-right-radius: 100px;
  }

  .footer-content-wrapper:before {
    top: -100px;
    height: 100px;
    width: 100px;
    clip-path: path('M 0 0 L 100 0 L 100 100 Q 100 0, 0 0 Z');
  }

  .header-container:before {
    content: '';
    position: absolute;
    right: 0px;
    transform: rotate(90deg);
    bottom: 100px;
    fill: var(--primary-color);
    height: 100px;
    width: 100px;
    background: #fff;
    clip-path: path('M 0 0 L 100 0 L 100 100 Q 100 0, 0 0 Z');
  }

  .header-inner-container>* {
    max-width: 100%;
  }

  .header-container-padding {
    height: 100px;
    border-top-left-radius: 100px;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}