@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  font-family: "League Spartan", sans-serif;
  color: #000000;
  background: url(../img/Background-blauw.png) repeat, #75C9D0;
  background-size: auto;
  position: relative;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(185, 83%, 72%, 0.6);
  pointer-events: none;
  z-index: -1;
}

.custom-container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  color: rgb(228.9473684211, 173.9473684211, 116.0526315789);
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

ol li {
  list-style-type: disc;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.non-clickable {
  pointer-events: none;
  cursor: default;
}

.burger-trigger {
  position: relative;
  height: 18px;
  width: 20px;
  z-index: 15;
  cursor: pointer;
}
.burger-trigger span {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #EDC79F;
  transition-duration: 0.3s;
  border-radius: 999px;
}
.burger-trigger span:first-child {
  top: 0px;
}
.burger-trigger span.center {
  top: calc(50% - 1px);
}
.burger-trigger span:last-child {
  bottom: 0px;
}
.burger-trigger.burger-active {
  display: none;
}
.burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 8.5px;
}
.burger-trigger.burger-active span.center {
  opacity: 0;
}
.burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 7.5px;
}

strong {
  color: #EDC79F;
}

.fa {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
}

.button-container {
  margin-top: 32px;
}

.theme-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000000;
  padding: 16px 32px;
  border: 2px solid #542777;
  transition: 0.2s ease-in-out;
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.theme-button:hover {
  color: #fff0dc;
  will-change: transform;
}
.theme-button__primary {
  background-color: #EDC79F;
  color: #000000;
  border: 2px solid #542777;
  box-shadow: 4px 4px 0 0 #542777;
}
.theme-button__primary::after {
  content: "";
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-button__primary:hover::after {
  transform: translate(0, 0) rotate(0deg);
}
.theme-button__primary:hover {
  background: transparent;
  color: #000000;
  border: 2px solid #FFFFFF;
}
.theme-button__secondary {
  background: #FFFFFF;
  color: #542777;
  border: 2px solid #542777;
  box-shadow: 4px 4px 0 0 #542777;
}
.theme-button__secondary::after {
  content: "";
  background-color: #FFFFFF;
  display: block;
  height: 100%;
  width: 100%;
  color: #000000;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-button__secondary:hover::after {
  transform: translate(0, 0) rotate(0deg);
}
.theme-button__secondary:hover {
  border: 2px solid #FFFFFF;
  color: #542777;
  will-change: transform;
}

.theme-wrapper {
  padding: 50px 0;
}

.theme-offcanvas {
  display: none;
}

.theme-loader {
  display: flex;
  justify-content: center;
  width: 100%;
}
.theme-loader button.wpgb-button.wpgb-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  outline: none !important;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.1s ease-in-out;
}
.theme-loader button.wpgb-button.wpgb-load-more::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f110" !important;
  font-size: 28px;
  animation: spin 1.5s linear infinite;
  color: #EDC79F;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .theme-button {
    padding: 8px 16px;
  }
  .burger-trigger {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .theme-wrapper {
    padding: 25px 0;
  }
}
/*/ Blocks /*/
.theme-header-logo {
  display: flex;
  justify-content: center;
}

.theme-comingsoon {
  padding: 25px 0px;
}
.theme-comingsoon .col-md-6 {
  padding: 0;
}
.theme-comingsoon-wrapper {
  padding: 70px 44px;
  background: #FFFFFF;
  box-shadow: 12px 12px 0 0 #E06198;
}
.theme-comingsoon-wrapper-header {
  color: #542777;
  font-size: 36px;
  font-weight: 900;
}
.theme-comingsoon-wrapper-content {
  font-family: "Poppins", sans-serif;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
}
.theme-comingsoon-wrapper-dots {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}
.theme-comingsoon-wrapper-dots span {
  width: 27px;
  height: 26px;
  background-color: #E06198;
  border-radius: 50%;
  animation: blink 1.5s infinite alternate;
}
.theme-comingsoon-wrapper .buttons {
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 576px) {
  .theme-comingsoon {
    padding-top: 0;
  }
  .theme-comingsoon .col-12 {
    padding: 0px 15px;
  }
  .theme-comingsoon-wrapper {
    padding: 44px 44px;
  }
  .theme-comingsoon-wrapper-header {
    font-size: 28px;
  }
  .theme-comingsoon-wrapper-content {
    font-size: 16px;
  }
  .theme-comingsoon-wrapper-dots {
    margin-bottom: 32px;
  }
  .theme-comingsoon-wrapper-dots span {
    width: 20px;
    height: 20px;
  }
  .theme-comingsoon-wrapper .buttons {
    flex-direction: column;
  }
}
#image-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  z-index: 9999;
  --trail-length: 4;
}
#image-trail .trail-img {
  position: absolute;
  width: 40px;
  height: 40px;
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: opacity 0.6s ease-out;
  overflow: visible;
}
#image-trail .trail-img.visible {
  opacity: 1;
}
#image-trail .trail-img:nth-child(1).visible {
  opacity: 1;
}
#image-trail .trail-img:nth-child(2).visible {
  opacity: 0.85;
}
#image-trail .trail-img:nth-child(3).visible {
  opacity: 0.7;
}
#image-trail .trail-img:nth-child(4).visible {
  opacity: 0.55;
}
#image-trail .trail-img:nth-child(5).visible {
  opacity: 0.4;
}
#image-trail .trail-img:nth-child(6).visible {
  opacity: 0.25;
}
#image-trail .trail-img:nth-child(7).visible {
  opacity: 0.1;
  opacity: 0.1;
}
#image-trail .trail-img:nth-child(8).visible {
  opacity: -0.05;
  opacity: 0.1;
}
#image-trail .trail-img:nth-child(9).visible {
  opacity: -0.2;
  opacity: 0.1;
}
#image-trail .trail-img:nth-child(10).visible {
  opacity: -0.35;
  opacity: 0.1;
}

@media screen and (max-width: 768px) {
  #image-trail {
    display: none;
    visibility: hidden;
  }
}
.theme-footer {
  color: #000000;
}
.theme-footer .footer-content {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.theme-footer a {
  color: #000000;
  text-decoration: underline;
}

@media screen and (max-width: 576px) {
  .theme-footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}/*# sourceMappingURL=style.css.map */