/* Imports */
/* @import url('https://fonts.googleapis.com/css?family=Almarai&display=swap'); */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/* @import url('https://fonts.googleapis.com/css?family=Roboto'); */

/*
 * Variables
 */
:root {
  --primary-color: #2a2d7b;
  --primary-color-contrast: #fff;
  --primary-color-shade: #2a2d7b;
  --primary-color-tint: #bec0dc;

  --secondary-color: #f2871e;
  --secondary-color-contrast: #0F0F0F;
  --secondary-color-shade: #f2871e;
  --secondary-color-tint: #fca44e;

  --tertiary-color: #3ae0d3;
  --tertiary-color-contrast: #0F0F0F;
  --tertiary-color-shade: #3ae0d3;
  --tertiary-color-tint: #26c6ba;

  --background-color: #2a2d7b;
  --text-color: white;
  --link-text-color: white;
}

/*
 * Essentials
 */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
  background-color: var(--background-color);
}

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: 'Open Sans', sans-serif;
  font-weight: 700;
  padding-top: 10px;
  /* font-weight: 400; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
}

.my-env h1,
.my-env h2,
.my-env h3,
.my-env h4,
.my-env h5,
.my-env h6 {
  color: #0F0F0F;
}

/* h1, .my-env h1 {
  font-size: 40px;
}

h3, .my-env h3 {
  font-size: 1.65rem;
} */

a,
.my-env a {
  color: var(--link-text-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(--text-color);
  text-decoration: none;
}


/*
 * Bootstrap overwrites
 */

.btn,
.my-env .btn {
  border-radius: 20px !important;
  text-transform: none;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary,
.my-env .btn-secondary {
  background-color: var(--primary-color);
  border: 0;
  color: var(--primary-color-contrast);
}

.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:focus,
.btn-secondary:hover,
.my-env .btn-secondary:hover {
  background-color: var(--primary-color-tint);
  color: var(--primary-color-contrast);
}

.btn-primary,
.my-env .btn-primary {
  background-color: var(--secondary-color-tint);
  border: 0;
  color: var(--secondary-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(--secondary-color);
  color: var(--secondary-color-contrast);
}

.btn-tertiary,
.my-env .btn-tertiary {
  background-color: var(--tertiary-color);
  border: 0;
  color: var(--tertiary-color-contrast);
}

.btn-tertiary:active,
.btn-tertiary:not(:disabled):not(.disabled):active,
.btn-tertiary:focus,
.btn-tertiary:hover,
.my-env .btn-tertiary:hover {
  background-color: var(--tertiary-color-tint);
  color: var(--tertiary-color-contrast);
}

.btn-dark-blue,
.my-env .btn-dark-blue {
  background-color: #011243;
  border: 0;
  color: #ffffff;
}

.btn-dark-blue:active,
.btn-dark-blue:not(:disabled):not(.disabled):active,
.btn-dark-blue:focus,
.btn-dark-blue:hover,
.my-env .btn-dark-blue:hover {
  background-color: #4b6195;
  color: #ffffff;
}

/*
 * 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;
}

/* 
 * Basics
 */


.navbar-dark .navbar-toggler {
  border-color: var(--primary-color-contrast);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data: image/svg+xml;charset=utf8,<svg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(255,255,255, 100)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24' /></svg>");
}

.navbar-collapse {
  padding: 0.5rem;
  background-color: white;
  margin-right: -16px;
  margin-left: -16px;
}

.navbar-dark .navbar-nav .nav-link{
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary-color-tint);
}

.mt-navbar {
  margin-top: 4rem !important;
}

.foys-footer {
  background: var(--primary-color-tint);
  color: var(--primary-color-contrast);
  max-width: none;
}

.foys-footer a {
  color: var(--primary-color-contrast);
}

/* 
 * 👇 INSERT CUSTOM CSS FOR ALL SCREEN SIZES BELOW 👇
 */

.website-header-name {
  display: none;
}

.red {
  background-color: var(--primary-color);
  color: var(--primary-color-contrast);
}

.red a,
.red h1,
.red h2,
.red h3,
.red h4,
.red h5,
.red h6 {
  color: var(--primary-color-contrast);
}

/* news items */


.news-item.border,
.calendar-event.border {
  border: 0 !important;
}

.news-image-container {
  width: 100%;
}

.news-item-image-div {
  min-height: 150px;
}

.news-content-container {
  width: 100%;
}

.news-body {
  color: #0F0F0F;
}

.news-item-image-div {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  transition: all 1s;
}

.news-item-image-div:hover {
  transform: scale(0.9);
}

.news-title {
  padding-top: 0.5rem;
  color: #0F0F0F;
}

.news-title a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  text-decoration: none;
  color: #0F0F0F;
}

.news-title a:hover {
  color: var(--primary-color);
}

.news-date {
  font-size: 0.8rem;
  color: #0F0F0F;
}

.news-short-description {
  color: #0f0f0f;
}

.news-short-description-content {
  display: none;
  text-align: justify !important;
  font-size: 14px;
  color: #0F0F0F;
}

.news-read-more {
  color: #0F0F0F;
  margin-top: 1rem;
  text-align: left;
}

.news-read-more a {
  color: #0F0F0F;
  font-size: 1rem;
}

.news-read-more a:hover {
  color: var(--primary-color);
  font-size: 1rem;
}

.news-body img {
  max-width: 100%;
  height: auto;
}

/* end news items */

.calendar-event-date,
.calendar-event-time {
  display: inline;
  font-family: 'Open Sans', sans-serif;
  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;
}

.website-calendar-events .lead {
  display: none;
}

.big-date-block {
  background-color: var(--primary-color);
  color: #E0E0E0;
  text-align: center;
  text-transform: uppercase;
  padding: 0.5rem;
}

.big-date-day,
.big-date-month {
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 0;
}

/* Home images */
.home-image-block {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.home-image-block a {
  text-decoration: none;
  color: var(--primary-color);
}

.home-image-block a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.home-image-category {
  background-color: var(--primary-color-tint);
  color: var(--primary-color);
  font-weight: 600;
  font-family: 'open sans', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.home-image-block img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: solid 1px var(--primary-color-tint);
}
.home-image-block a:hover img {
  width: 100%;
  height: 170px;
}
/* End home image */

.link a {
  color: #ffffff;
  text-decoration: none;
}

.link a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.link2 a {
  color: #ffffff;
  text-decoration: none;
}

.link2 a:hover {
  color: #bebebe;
  text-decoration: none;
}

.link3 a {
  color: #0F0F0F;
  text-decoration: none;
}

.link3 a:hover {
  color: #000000;
  text-decoration: underline;
}

.link4 a {
  color: #ffffff;
  text-decoration: none;
}

.link4 a:hover {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.primary-titel {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary-color);
  font-size: 36px; 
  font-weight: 800;
  padding-top: 10px;
  /* font-weight: 400; */
}

.primary-titel a {
  color: var(--primary-color);
   text-decoration: none;
}

.black-titel {
  font-family: 'Open Sans', sans-serif;
  color: #0F0F0F;
  font-size: 36px;
  font-weight: 800;
  padding-top: 10px;
  /* font-weight: 400; */
}

.black-titel a {
  color: #0F0F0F;
  text-decoration: none;
}

.black-subtitel {
  font-family: 'Open Sans', sans-serif;
  color: #0F0F0F;
  font-size: 24px;
  font-weight: 600;
  padding-top: 10px;
  /* font-weight: 400; */
}

.black-subtitel a {
  color: #0F0F0F;
  text-decoration: none;
}

.tabel-titel {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary-color);
  background-color: #f2871e;
  font-size: 24px;
  font-weight: 700;
  padding-top: 10px;
  /* font-weight: 400; */
}

.tabel-titel a {
  color: var(--primary-color);
  text-decoration: none;
}

.text-black {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #0F0F0F;
}
.text-black a {
  color: #0F0F0F;
  text-decoration: none;
}

.content-center {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

.rounded-corners {
  border-radius: 10px;
  border: solid 5px #1d8c83;
}

.rounded-corners-sub {
  border-radius: 10px;
  border: solid 5px #4b6195;
}

.rounded-corners-sub-2 {
  border-radius: 10px;
  border: solid 5px #d37b24;
}

.border-wit {
  border: solid 2px #fff;
}

.scheidingslijn-wit {
  border: none;
  height: 2px;
  background-color: white;
  width: 100%;
  margin: 1rem 0;
}

.volledige-rij {
  margin-right: -16px;
  margin-left: -16px;
}

.spnsr-logo-image {
  max-width: 300px;
  max-height: 200px;
}

.website-sponsors-list .lead {
  display: none;
}

.website-sponsors-list {
  >* {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lslide {
    height: 100px;
  }

  .lslide>* {
    overflow: hidden;
    height: 100%;

    a {
      display: flex;
      height: 100%;
      justify-content: center;

      img {
        display: block;
        height: 100%;
        object-fit: contain;
      }
    }
  }
}

/*
 * DESKTOP
 */
@media all and (min-width: 992px) {
  /* BASICS */


  /*
   * 👇 CUSTOM CSS FOR DESKTOP ONLY 👇
   */
  .website-header {
    background-color: var(--primary-color);
    position: sticky;
    opacity: 1;
    border-bottom: solid 8px #fff;
    height: 80px;
    z-index: 100;
  }
  
  .website-header .btn-primary {
    width: 150px;
  }
  
  .website-header-logo {
    max-height: 120px;
    margin-top: 50px;
  }
  
  .page-home-image {
    display: block;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  .page-home-image h2 {
    color: #FFFFFF;
    margin-top: 50px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(48px, 10vw, 60px);
  }
  
  .page-home-image h3 {
    color: #FFFFFF;
    margin-top: 0px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(48px, 10vw, 60px);
  }

  .page-top-image {
    display: block;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .page-top-image h2 {
    color: #FFFFFF;
    margin-top: 75px;
    text-align: left;
    font-weight: 700;
    font-size: clamp(48px, 10vw, 60px);
  }
  .page-top-image h3 {
    color: #FFFFFF;
    margin-top: 0px;
    text-align: left;
    font-weight: 500;
    font-size: clamp(24px, 5vw, 30px);
  }

  .page-banner-image {
    display: block;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .afbeelding-boven-lap {
    margin-top: -40px;
  }

  .boven-lap {
    margin-top: -40px;
  }

  .boven-lap-lg {
    margin-top: -80px;
  }

  .boven-lap-xlg {
    margin-top: -140px;
  }

  .onder-lap-lg {
    margin-bottom: -80px;
  }

  .news-item-image-div {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    transition: all 1s;
  }


  .navbar {
    padding: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: none;
    border-radius: 0 !important;
  }

  .navbar .nav-item .dropdown-large {
    padding: 20px;
  }

  .navbar .nav-item .nav-link {
    font-size: 0.9rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }

  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }

  .navbar-collapse {
    justify-content: center;
    text-align: center;
    background-color: transparent;
  }

  .navbar-brand {
    padding-top: 0;
    margin-top: 10px;
  }

  .navbar .nav-item .dropdown-large {
    min-width: 480px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 100% !important;
  }

  /* end navbar */

}

/* 
 * MOBILE AND TABLETS
 */
@media all and (max-width: 992px) {

  /* BASICS */
  .website-header {
    background-color: var(--primary-color);
    position: sticky;
    opacity: 1;
    border-bottom: solid 8px #fff;
    height: 80px;
    z-index: 100;
  }
  
  .website-header .btn-primary {
    width: 150px;
  }
  
  .website-header-logo {
    max-height: 80px;
    margin-top: 0px;
  }

  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    border-color: var(--primary-color);
    cursor: pointer;
    margin-top: -25px;
  }
  .navbar-dark .navbar-nav .nav-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
  }
  
  .navbar-dark .navbar-nav .nav-link:focus,
  .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color-tint);
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /*
   * 👇 CUSTOM CSS FOR MOBILE AND TABLETS 👇
   */
  
  .page-home-image {
    display: block;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  .page-home-image h2 {
    color: #FFFFFF;
    margin-top: 50px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 30px);
  }
  
  .page-home-image h3 {
    color: #FFFFFF;
    margin-top: 0px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 30px);
  }

  .page-top-image {
    display: block;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .page-top-image h2 {
    color: #FFFFFF;
    margin-top: 125px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 30px);
  }
  .page-top-image h3 {
    color: #FFFFFF;
    margin-top: 0px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(24px, 5vw, 30px);
  }
  
  .page-banner-image {
    display: block;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .afbeelding-boven-lap {
    margin-top: -35px;
  }
}