* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #efedea;
  overflow-x: hidden;
}

* {
  cursor: url("../res/Cursor.png") 24 24, auto !important;
}

.cursor {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 111;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.15s ease-out, background-color 0.1s linear;
  mix-blend-mode: difference;
  background-color: white;
  border: 2px solid white(255, 255, 255, 0.8);
}

.cursor.expand {
  animation: clickExpand 0.4s ease-out forwards;
  border-color: #000;
}

/* Keyframe includes translate3d to preserve position */
@keyframes clickExpand {
  0% {
    transform: translate3d(var(--x), var(--y), 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate3d(var(--x), var(--y), 0) scale(2.5);
    opacity: 0.6;
  }
  100% {
    transform: translate3d(var(--x), var(--y), 0) scale(1);
    opacity: 0.9;
  }
}
.reken-nav-container {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  display: none;
  z-index: 999;
}
.reken-nav-container .reken-nav-logo-container {
  margin-left: 1.5rem;
}
.reken-nav-container .reken-nav-logo-container img {
  height: 100%;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}
.reken-nav-container .reken-nav-links {
  width: 500px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.reken-nav-container .reken-nav-links li {
  list-style: none;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: light;
  font-family: "Poppins", sans-serif;
}
.reken-nav-container .reken-nav-links li a {
  color: #000;
  text-decoration: none;
}

.reken-nav-visible {
  display: flex;
  position: relative;
}

.pinned {
  position: fixed;
  top: 0px;
}

.link-primary {
  text-decoration: underline;
  font-weight: 500;
  color: black;
}

.hidden {
  opacity: 0;
}

.footer-section {
  height: -moz-fit-content;
  height: fit-content;
  width: 100dvw;
}

.footer-contact-div {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.footer-contact-div h1 {
  width: 100%;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 60px;
}
.footer-contact-div h3 {
  width: 100%;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  margin-top: 10px;
}

.footer-email-links {
  width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer-email-links a {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  color: black;
}

.footer-contact-form {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: #d9d9d9;
  padding: 15px 30px;
  width: 400px;
  font-size: 30px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: black;
  margin-top: 10px;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.footer-contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #424f5f;
  z-index: -1;
  transition: left 0.4s ease;
}

.footer-contact-form:hover::before {
  left: 0;
}

.footer-contact-form:hover {
  color: white;
}

.footer-links-div {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

.scroll-to-top {
  width: 50px;
  height: 50px;
  background-color: #424f5f;
  border-radius: 10rem;
  text-decoration: none;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px !important;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  background-color: #333;
}

.social-links-container {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  right: 20px;
  top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-links-container .link-box {
  width: 110px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  gap: 2px;
}
.social-links-container .link-box a {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: black;
  text-decoration: none;
}

.footer-bottom-links {
  width: 100%;
  position: absolute;
  height: 100px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-links img {
  align-self: flex-end;
  height: 300px;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 50%;
  height: 100%;
  border-bottom: 1px solid black;
}
.links a {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  text-decoration: none;
  color: black;
}

@media (max-width: 600px) {
  .reken-nav-container {
    position: unset;
    display: hidden;
  }
  .reken-nav-container ul li a {
    font-size: 14px;
  }
  .footer-section {
    overflow-x: hidden;
  }
  .footer-contact-div {
    height: auto;
    padding: 30px 20px;
  }
  .footer-contact-div h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .footer-contact-div h3 {
    font-size: 24px;
    margin-top: 15px;
  }
  .footer-email-links {
    width: 90%;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin: 20px 0;
  }
  .footer-email-links a {
    font-size: 14px;
  }
  .footer-contact-form {
    width: 90%;
    font-size: 20px;
    padding: 12px 20px;
  }
  .social-links-container {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px 20px; /* row gap, column gap */
    justify-content: center;
    width: 100%;
    margin: auto;
  }
  .social-links-container .link-box:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
  }
  .link-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social-links-container a {
    font-size: 16px !important;
    color: black;
    text-decoration: none;
    text-align: center;
  }
  .footer-svg {
    position: absolute;
    height: 400px;
    width: 100dvw;
  }
  .footer-bottom-links {
    position: relative;
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    height: -moz-max-content;
    height: max-content;
    align-items: center;
    justify-content: center;
  }
  .footer-bottom-links img {
    height: 200px;
    width: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    order: 1;
    align-self: auto;
  }
  .footer-bottom-links .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
    width: 100%;
    border: none;
  }
  .footer-bottom-links .links a {
    font-size: 16px;
    text-decoration: none;
  }
  .footer-bottom-links .links:first-of-type {
    order: 3;
    flex-direction: row;
  }
  .footer-bottom-links .links:last-of-type {
    order: 2;
  }
  .footer-bottom-links .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=global.css.map */