/* -- Font modifiers --------------------------*/
h1, .h1,
h2, .h2,
h3, .h3 {
  font-family: "rochester-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.8;
  margin-bottom: 1.25rem;
}

.h4, h4,
.h5, h5,
.h6, h6 {
  line-height: 1;
}

p {
  line-height: 1.75;
}

p a:not([class]) {
  color: inherit;
  text-decoration: none;
}

.h1, h1 {
  font-size: calc(2.5rem + 3vw);
  text-wrap: balance;
}

.h2, h2 {
  font-size: calc(2rem + 2vw);
  text-wrap: balance;
}

.h3, h3 {
  font-size: calc(1.75rem + 1vw);
  text-wrap: balance;
}

.h4, h4 {
  font-size: calc(1.25rem + 1.5vw);
  text-wrap: balance;
}

.h5, h5 {
  font-size: 1.5rem;
  text-wrap: balance;
}

.h6, h6 {
  font-size: 1.125rem;
  text-wrap: balance;
}

@media all and (min-width: 1200px) {
  .h1, h1 {
    font-size: 4rem;
  }
  .h2, h2 {
    font-size: 3.5rem;
  }
  .h3, h3 {
    font-size: 2.5rem;
  }
  .h4, h4 {
    font-size: 2.125rem;
  }
}
/* -- Font families ----------------------------*/
.text-300 {
  font-family: "industry", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.text-400 {
  font-family: "industry", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.text-700 {
  font-family: "industry", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.text-800 {
  font-family: "industry", sans-serif;
  font-weight: 800;
  font-style: normal;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

body {
  font-family: "industry", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #0e2536;
  background: #f8f6f2;
  scroll-behavior: smooth;
}

.container, .container-fluid {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media all and (min-width: 1920px) {
  .container {
    max-width: 1440px;
  }
}
/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}

/* -- Buttons -------------------------------*/
.btn {
  border-radius: 3rem;
  padding: 0.65rem 1.65rem;
  font-weight: 700;
}

.btn--icon {
  padding: 0.74rem 1.65rem 0.65rem 1.65rem;
}

.btn--white {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn--white:hover {
  color: #0e2536;
  border-color: #dc8a8b;
  background: #dc8a8b;
}

.btn--primary {
  background: #dc8a8b;
  color: #ffffff;
}
.btn--primary:hover {
  color: #ffffff;
  background: #e29e9e;
}

.btn--secondary {
  background: #0e2536;
  color: #ffffff;
}
.btn--secondary:hover {
  color: #ffffff;
  background: #13334a;
}

/* -- Links ---------------------------------*/
.link--white {
  color: #ffffff;
}
.link--white:hover {
  color: #ffffff;
}

.link--primary {
  color: #dc8a8b;
}
.link--primary:hover {
  color: #e29e9e;
}

.link--secondary {
  color: #0e2536;
}
.link--secondary:hover {
  color: #13334a;
}

.link--tertiary {
  color: #606060;
}
.link--tertiary:hover {
  color: #6d6d6d;
}

.nav-pills {
  gap: 0.5rem;
}

.nav-pills .nav-link {
  background: #f8f6f2;
  border-radius: 3rem;
  color: #0e2536;
}
.nav-pills .nav-link.active {
  background: #dc8a8b;
  color: #ffffff;
  font-weight: 700;
}

/* -- Backgrounds ---------------------------*/
.bcg--white {
  background: #ffffff;
}

.bcg--base {
  background: #f8f6f2;
}

.bcg--primary {
  background: #dc8a8b;
}

.bcg--secondary {
  background: #0e2536;
}

.bcg--tertiary {
  background: #606060;
}

.bcg--tiles {
  height: 75px;
  background-image: url("../images/tiles-single.jpg");
  background-repeat: repeat-x;
  background-size: auto 100%;
}

@media all and (min-width: 992px) {
  .bcg--tiles {
    height: 110px;
  }
}
/* -- Colors --------------------------------*/
.clr--white {
  color: #fff;
}

.clr--base {
  color: #f8f6f2;
}

.clr--primary {
  color: #dc8a8b;
}

.clr--secondary {
  color: #0e2536;
}

.clr--tertiary {
  color: #606060;
}

/* -- Shapes ----------------------------*/
.container-background {
  position: relative;
}
.container-background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  width: calc(100% - 2.5rem);
  height: 100%;
  z-index: -1;  
}

.container-background--white:after {
  background: #fff;
}

.container-background--secondary:after {
  background: #0e2536;
}

/* -- Lists -----------------------------*/
ul:not([class]),
ol:not([class]) {
  padding-left: 1rem;
  margin: 0;
  line-height: 1.75;
}
ul:not([class]) li::marker,
ol:not([class]) li::marker {
  color: #dc8a8b;
}
ul:not([class]) li + li,
ol:not([class]) li + li {
  margin-top: 0.5rem;
}

/* -- Box -------------------------------*/
.box {
  padding: 2.5rem 1.75rem;
  height: 100%;
}

.box--centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media all and (min-width: 992px) {
  .box {
    padding: 3rem 16.6666%;
  }
}
@media all and (min-width: 1200px) {
  .box {
    padding: 4rem 16.6666%;
  }
}
@media all and (min-width: 992px) {
  .box {
    padding: 5rem 16.6666%;
  }
}
/* -- Images --------------------------------*/
.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #00485D;
}

.hamburger-box {
  width: 24px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #00485D;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 6px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 12px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 6px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.4285714286px, -4px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  width: 100%;
  transform: translate3d(0, -12px, 0) rotate(-90deg);
}

/* -- Header --------------------*/
.header-top {
  display: flex;
  justify-content: center;
  height: 150px;
  background-image: url("../images/tiles-double.jpg");
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.logo-wrapper {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 170px;
  height: 100%;
  padding: 0 10px;
}
.logo-wrapper__logo {
  width: 150px;
  height: auto;
}
.logo-wrapper__label {
  position: absolute;
  left: calc(100% - 1.5rem);
  bottom: -3rem;
  width: 130px;
  z-index: 4;
  filter: drop-shadow(.5rem .125rem .35rem rgba(0,0,0,.15));
}

.header-video {
  position: relative;
  width: 100%;
  height: 480px;
  background: #606060;
  display: grid;
  place-items: center;
}

.header-video .btn-video,
.header-video .btn-images {
  position: relative;
  z-index: 2;
}

.header-video__video,
.header-video__image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}



.header-impressions {
  padding: 8rem 0 14rem 0;
  background: #0e2536;
}

@media all and (min-width: 992px) {
  .header-top {
    height: 220px;
  }
  .logo-wrapper {
    width: 240px;
  }
  .logo-wrapper__logo {
    width: 220px;
  }
  .logo-wrapper__label {
    width: 150px;
  }
  .header-video {
    height: 620px;
  }
}
@media all and (min-width: 1200px) {
  .header-video {
    height: 780px;
  }
}
@media all and (min-width: 1920px) {
  .header-video {
    height: 960px;
  }
}
/* -- Page-introduction ---------------*/
.page-introduction {
  position: relative;
  margin-top: -5rem;
  z-index: 3;
}

.date {
  display: flex;
  gap: 3rem;
  align-items: flex-end;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2rem;
  min-height: 220px;
}
.date__date {
  display: block;
  font-weight: 800;
  font-size: 1.75rem;
}
.date__time {
  display: block;
  font-weight: 300;
  font-size: 1.75rem;
}
.date__location {
  display: block;
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.date-left {
  text-align: right;
}
.date-right {
  position: relative;
}
.date-right:before {
  content: "";
  position: absolute;
  bottom: -1.75rem;
  left: -2.25rem;
  background-image: url(../images/date--prikker.png);
  width: 136px;
  height: 213px;
}
/* -- Page-charity --------------------*/
.page-charity {
  padding: 3rem 0;
}

.charity-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 2rem;
}

.charity-wrapper-base {
  margin-top: 1.5rem;
}

.charity {
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: 100%;
  background: #fff;
  aspect-ratio: 1/1;
  max-width: 200px;
  height: 100%;
  max-height: 200px;
}

/* -- Page-location -------------------*/
.page-location {
  padding: 3rem 0;
}

.page-location .btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: auto;
  height: auto;
}

.box__video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  z-index: 1;
}

/* -- Page-information ----------------*/
.page-information {
  padding: 3rem 0;
}

.information-blocks {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.information-blocks__block {
  max-width: 360px;
  text-align: center;
}
.information-blocks__block figure {
  display: grid;
  place-items: center;
  min-height: 190px;
}

/*-- Page-news -----------------------*/
.page-news {
  padding: 3rem 0;
  overflow: hidden;
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.news__nav {
  display: flex;
  gap: 12px
}

.swiper-button-disabled {
	opacity: 0.4;
}

.news-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25 ease;
}

.news-button:hover {
  background: #fff;
  color: #1f3243;
}

.newsSwiper {
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

.news-card {
  background: #fff;
  display: grid;
  grid-template-rows: min-content 1fr;
  height: 100%;
}

.news-card__image {
  aspect-ratio: 3 / 2;
}

.news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
}

.news-card__content p {
	line-height: 1.4;
}

/* -- Page-impressions ----------------*/
.page-impressions {
  padding: 3rem 0;
}

.single-impressions {
  position: relative;
  margin-top: -10rem;
  padding: 0 0 3rem 0;
}

.inner-container-bcg--white {
  position: relative;
}
.inner-container-bcg--white:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background: #ffffff;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  padding: 0 1.25rem;
  z-index: -1;
}

@media all and (min-width: 576px) {
  .inner-container-bcg--white:after {
    max-width: 540px;
  }
}
@media all and (min-width: 768px) {
  .inner-container-bcg--white:after {
    max-width: 720px;
  }
}
@media all and (min-width: 992px) {
  .inner-container-bcg--white:after {
    max-width: 960px;
  }
}
@media all and (min-width: 1200px) {
  .inner-container-bcg--white:after {
    max-width: 1140px;
  }
}
@media all and (min-width: 1400px) {
  .inner-container-bcg--white:after {
    max-width: 1320px;
  }
}
@media all and (min-width: 1920px) {
  .inner-container-bcg--white:after {
    max-width: 1440px;
  }
}
/* -- Page-sponsors -------------------*/
.page-sponsors {
  padding: 3rem 0;
}

.sponsor {
  background: #ffffff;
  padding: 1rem;
}
.sponsor__logo {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  opacity: .75;
  transition: all .5s;
}

.sponsor__logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

@media all and (min-width: 992px) {
  .page-introduction {
    margin-top: -6rem;
  }
  .charity-wrapper-top {
    display: flex;
    aspect-ratio: 1/1;
    place-items: center start;
  }
  .charity-wrapper-top--no-ratio {
    aspect-ratio: auto;
    margin: 1rem 0 2rem 0;
  }
  .charity {
    max-width: 220px;
    max-height: 220px;
  }
}
@media all and (min-width: 1200px) {
  .page-introduction {
    margin-top: -7rem;
  }
  .page-charity {
    padding: 4.5rem 0 3rem 0;
  }
  .charity {
    max-width: 280px;
    max-height: 280px;
  }
}
@media all and (min-width: 1920px) {
  .page-introduction {
    margin-top: -8rem;
  }
  .page-charity {
    padding: 6.5rem 0 5rem 0;
  }
}

.page-socialmedia {
  padding: 2rem 0 4rem 0;
}

.socials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.socialmedia__links {
  display: flex;
  gap: .5rem;
}

.socialmedia__links a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #fff;
  color: #0e2536;
  font-size: 1.5rem;
  border-radius: 100%;
  transition: all .5s;
  filter: drop-shadow(.25rem .025rem .15rem rgba(0,0,0,.05));
}

.socialmedia__links a:hover,
.socialmedia__links a:focus,
.socialmedia__links a:active {
  background: #dc8a8b;
  color: #fff;
}

/* -- Footer ----------------------------------*/
.footer {
  border-top: 2px solid rgba(112, 112, 112, 0.1);
  padding: 5rem 0 3rem 0;
}
.footer__brands {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0;
}
.footer__brands div:not(:first-child) {
  border-left: 1px solid rgba(112, 112, 112, 0.3);
  padding-left: 3rem;
}
.footer__text {
  opacity: 0.3;
}
.footer__text a {
  color: inherit;
}/*# sourceMappingURL=stylesheet.css.map */