/* 
Theme Name: webmix
Author: webmix
Author URI: https://www.webmix.nl
*/
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* Reset Stylesheet */
/* Box-sizing: make sure padding and border are included in element width */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Remove default padding and margin from body */
body, h1, h2, h3, h4, h5, h6, p, blockquote, figure, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}
/* Remove list styles on lists */
ul, ol {
  list-style: none;
}
/* Remove quotes from blockquote */
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
}
/* Remove default table spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Reset links */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove focus outlines but keep accessibility */
button, input, textarea, select {
  font: inherit;
  /* Inherit fonts */
  border: none;
  /* Remove borders */
  outline: none;
  background: none;
  padding: 0;
}
/* Normalize images and media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Set a base font size and smooth scrolling */
html {
  font-size: 100%;
  /* 16px default */
  line-height: 1.5;
  scroll-behavior: smooth;
}
/* Make body inherit base font-family */
body {
  font-family: sans-serif;
  /* Set your preferred default font-family */
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}
/* Remove focus outline for mouse users but keep it for keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}
#wpadminbar {
  display: none;
}
html {
  margin-top: 0 !important;
}
html, body {
  background: #16213D;
}
body, html {
  color: #fff;
  font-family: new-hero, sans-serif !important;
}
small {
  opacity: 0.8;
}
a {
  color: #fff;
}
a:hover {
  color: #e4b275;
}
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  z-index: 10;
  background: radial-gradient(ellipse at center, rgba(22, 33, 61, 0) 40%, #16213D 80%);
  background-size: 200% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.vignette::before {
  content: unset;
}
.vignette::after {
  content: unset;
}
@media (max-width: 768px) {
  .vignette {
    height: 80dvh;
    margin-top: 10dvh;
    background: radial-gradient(ellipse at center, rgba(22, 33, 61, 0) 60%, #16213D 70%);
    background-size: 500% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .vignette::before {
    content: "";
    width: 100%;
    height: 10dvh;
    background-color: #16213D;
    position: fixed;
    top: 0;
    left: 0;
  }
  .vignette::after {
    content: "";
    width: 100%;
    height: 10dvh;
    background-color: #16213D;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.fp-controlArrow {
  width: 100px;
  height: 100px;
  background: transparent !important;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.fp-controlArrow::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin: auto;
  transition: transform 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.fp-controlArrow.fp-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
  left: 50%;
}
.fp-controlArrow.fp-prev:hover::before {
  transform: translate(-50%, -50%) scale(1.1) rotate(-135deg);
}
.fp-controlArrow.fp-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.fp-controlArrow.fp-next:hover::before {
  transform: translate(-50%, -50%) scale(1.1) rotate(45deg);
}
@media (max-width: 768px) {
  .fp-controlArrow {
    width: 60px;
    height: 60px;
    top: 53.5%;
    transform: none !important;
  }
  .fp-controlArrow::before {
    width: 25px;
    height: 25px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .fp-controlArrow.fp-prev {
    left: 5px;
  }
  .fp-controlArrow.fp-next {
    right: 5px;
  }
}
.language-flags {
  list-style: none;
  padding: 0;
  margin: 0;
}
.language-flags li img {
  width: 24px;
  height: auto;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.language-flags li.active img {
  transform: scale(1.2);
  opacity: 1;
  border: 1px solid rgba(22, 33, 61, 0.5);
  border-radius: 4px;
}
.language-flags li:not(.active) {
  opacity: 0.6;
}
.language-flags li:hover {
  opacity: 1;
}
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger:hover {
  animation: wiggle 0.4s ease-in-out;
}
.hamburger:hover span {
  background-color: #e4b275;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.hamburger.open:hover span {
  background-color: #fd3838;
}
a.btn, button.btn {
  position: relative;
  background: transparent;
  border: none;
  width: fit-content;
  height: fit-content;
  color: #fff;
  font-weight: 700;
  font-size: inherit;
  text-transform: uppercase;
  padding: 0.25em 1em;
  font-family: inherit;
  transition: color 0.4s ease;
}
a.btn::after, a.btn::before, button.btn::after, button.btn::before {
  content: "";
  position: absolute;
  height: 1px;
  background: #fff;
  transition: width 0.4s cubic-bezier(0.36, 0.33, 0.11, 1.55);
  width: 0;
  right: 0;
  bottom: 0;
}
a.btn::before, button.btn::before {
  content: "";
  position: absolute;
  transform: rotate(65deg);
  transform-origin: right;
}
a.btn:hover, button.btn:hover {
  color: #e4b275;
  background: linear-gradient(90deg, #e0a660 0%, #e4b275 60%, #e8be8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.btn:hover::before, button.btn:hover::before {
  width: 1.5em;
}
a.btn:hover::after, button.btn:hover::after {
  width: 80%;
}
@media screen and (max-width: 768px) {
  a.btn::after, a.btn::before, button.btn::after, button.btn::before {
    content: none;
  }
}
input.gform_button {
  background: transparent !important;
  font-family: inherit !important;
  position: relative !important;
  border: none !important;
  width: fit-content !important;
  height: fit-content !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: inherit !important;
  text-transform: uppercase !important;
  padding: 0.25em 1em !important;
  padding-left: 0 !important;
  transition: color 0.4s ease !important;
}
input.gform_button::after, input.gform_button::before {
  content: "" !important;
  position: absolute !important;
  height: 1px !important;
  background: #fff !important;
  transition: width 0.4s cubic-bezier(0.36, 0.33, 0.11, 1.55) !important;
  width: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
input.gform_button::before {
  content: "" !important;
  position: absolute !important;
  transform: rotate(65deg) !important;
  transform-origin: right !important;
}
input.gform_button:hover {
  color: #e4b275 !important;
  background: linear-gradient(90deg, #e0a660 0%, #e4b275 60%, #e8be8a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
input.gform_button:hover::before {
  width: 1.5em !important;
}
input.gform_button:hover::after {
  width: 80% !important;
}
@media screen and (max-width: 768px) {
  input.gform_button::after, input.gform_button::before {
    content: none;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: fit-content;
  z-index: 1001;
  padding: 2rem 0;
}
header .main-header {
  position: relative;
  z-index: 2;
}
header .main-header .site-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .main-header .site-logo.open img {
  height: 60px;
}
header .main-header .site-logo img {
  height: 100px;
  filter: invert(99%) sepia(5%) saturate(1032%) hue-rotate(214deg) brightness(119%) contrast(100%);
  transition: height ease 0.3s;
}
@media screen and (max-width: 992px) {
  header {
    padding: 1rem 0;
  }
  header .main-header .site-logo img {
    height: 60px;
  }
  header .main-header .cta-wrapper .btn {
    padding-right: 0;
  }
  body:has(#menu.open) .main-header .site-logo img {
    height: 45px;
  }
}
footer {
  padding-top: 6rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background: #fd3838;
  transform: translateY(calc(100% - 5rem));
  transition: transform 0.4s ease;
  z-index: 1000;
  background: linear-gradient(to top, #16213d 0%, rgba(22, 33, 61, 0.8) 40%, transparent 100%);
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer {
    background: linear-gradient(to top, #16213D 0%, #16213D 90%, transparent 100%);
  }
}
footer .pre-foot {
  padding-bottom: 5rem;
  opacity: 1;
  transition: opacity ease 0.4s;
  position: relative;
  width: 100%;
}
footer .pre-foot span {
  position: absolute;
  width: fit-content;
  left: 50%;
  margin-top: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  footer .pre-foot {
    text-align: center;
  }
  footer .pre-foot:has(.btn.d-block) span {
    display: none;
  }
  footer .pre-foot span {
    width: 100%;
    margin-top: 1rem;
  }
  footer .pre-foot .btn {
    margin-top: 1rem;
  }
}
footer.show {
  transform: translateY(0);
}
footer.show .pre-foot {
  opacity: 0;
}
footer .logo {
  height: 100px;
  filter: invert(99%) sepia(5%) saturate(1032%) hue-rotate(214deg) brightness(119%) contrast(100%);
}
body:has(#menu.open) {
  overflow: hidden;
}
#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 33, 61, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
  z-index: 1;
}
#menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
#menu ul li {
  margin: clamp(0em, 1.5vw, 0.9em) 0;
}
#menu ul a, #menu ul button {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: #fff;
  text-decoration: none;
  transition: color 0.4s ease;
}
#menu ul a:hover, #menu ul a.active, #menu ul button:hover, #menu ul button.active {
  color: #e4b275;
  background: linear-gradient(90deg, #e0a660 0%, #e4b275 60%, #e8be8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#menu.open {
  transform: translateY(0);
  opacity: 1;
}
section .container {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
section .container h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
section .container .btn {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
section .container .btn:hover {
  text-shadow: unset;
}
section .container .content {
  padding: 1rem;
}
section .container .content h2 {
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
section .container .content p {
  display: block;
  padding: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
section .container .content.content-start {
  text-align: end;
  background: linear-gradient(to left, rgba(22, 33, 61, 0.4) 90%, transparent 100%);
}
section .container .content.content-start h2 {
  padding-right: 1rem;
}
section .container .content.content-end {
  text-align: start;
  background: linear-gradient(to right, rgba(22, 33, 61, 0.4) 90%, transparent 100%);
}
section .container .content.content-end h2 {
  padding-left: 1rem;
}
section .container .fp-bg {
  z-index: 1;
}
@media screen and (max-width: 768px) {
  section .container {
    height: fit-content;
    left: auto;
    transform: none;
    padding-top: 0rem;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -40%);
  }
  section .container .fp-bg {
    height: 80vh;
    margin-top: 10vh;
  }
  section .container .content {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.5) 90%, transparent 100%);
  }
  section .container .content h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  section .container .content p {
    padding: 0.5rem;
    font-size: 1rem;
  }
  section .container .content.content-start, section .container .content.content-end {
    text-align: center;
    border-left-width: 0px;
    border-right-width: 0px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    position: relative;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  }
  section .container .content.content-start::before, section .container .content.content-start::after, section .container .content.content-end::before, section .container .content.content-end::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    pointer-events: none;
  }
  section .container .content.content-start::before, section .container .content.content-end::before {
    top: 0;
    background: linear-gradient(to right, transparent, #fff 20%, #fff 80%, transparent);
  }
  section .container .content.content-start::after, section .container .content.content-end::after {
    bottom: 0;
    background: linear-gradient(to right, transparent, #fff 20%, #fff 80%, transparent);
  }
  section .container .content.content-start h2, section .container .content.content-end h2 {
    padding: 0;
  }
  section .container .content.content-start p, section .container .content.content-end p {
    background: none;
  }
}
.modal-backdrop {
  background: rgba(22, 33, 61, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1 !important;
}
.modal .modal-dialog .modal-content {
  background: none;
  border: none;
  color: #fff;
}
.modal .modal-dialog .modal-content .btn-close {
  position: relative;
  background: none;
  opacity: 1 !important;
}
.modal .modal-dialog .modal-content .btn-close::before, .modal .modal-dialog .modal-content .btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: background-color 0.4s ease;
}
.modal .modal-dialog .modal-content .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-dialog .modal-content .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-dialog .modal-content .btn-close:hover {
  animation: wiggle 0.4s ease-in-out;
}
.modal .modal-dialog .modal-content .btn-close:hover::before, .modal .modal-dialog .modal-content .btn-close:hover::after {
  background-color: #fd3838;
}
.modal .modal-dialog .modal-content .gform_wrapper {
  color: #fff;
}
.modal .modal-dialog .modal-content .gform_wrapper .gfield_label {
  color: inherit;
}
.modal .modal-dialog .modal-content .gform_wrapper .gfield_label .gfield_required {
  color: #e4b275;
}
.modal .modal-dialog .modal-content .gform_wrapper .gform-field-label {
  color: inherit;
}
.modal .modal-dialog .modal-content .gform_wrapper .gfield_description {
  color: inherit;
}
.contactform {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.contactform h2 {
  margin-bottom: 1.5rem;
}
.contactform .charleft {
  color: rgba(255, 255, 255, 0.502) !important;
}
.contactform .gform-field-label {
  color: rgba(255, 255, 255, 0.502) !important;
}
.contactform .gfield_label {
  color: #fff !important;
}
.contactform address > div {
  margin-bottom: 1.5rem;
}
.contactform address > span {
  display: block;
  margin-bottom: 1.5rem;
}
