* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Maven Pro", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 50px 20px;
}

/* Stylings for whole site */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  transition: all 0.3s ease;
}

button,
.material-symbols-outlined {
  cursor: pointer;
  background: none;
  border: none;
}

img {
  width: 100%;
}

h2.title-header {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* END Stylings for whole site */
body {
  position: relative;
  width: 100%;
  height: fit-content;
  overflow-y: auto;
  /* Navbar styling */
}
body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #293133;
  opacity: 0.9;
  transition: 0.3s ease;
  z-index: 5;
}
body header .navbar {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
}
body header .navbar .nav-logo .logo-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 150px;
}
body header .navbar .nav-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body header .navbar .nav-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  height: 1px;
  width: 100%;
  backdrop-filter: blur(5px);
  background: rgb(255, 255, 255);
  z-index: -1;
}
body header .navbar .nav-menu .section {
  display: flex;
  flex-direction: row;
}
body header .navbar .nav-menu .section .nav-link {
  padding: 10px 18px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 1rem;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
body header .navbar .nav-menu .section .nav-link.pm {
  gap: 5px;
}
body header .navbar .nav-menu .section .nav-link.pm .material-symbols-outlined {
  font-size: 1rem;
}
body header .navbar .nav-menu .section .nav-link.pm p {
  font-size: 0.875rem;
}
body header .navbar .nav-menu .section .nav-link:hover {
  color: #B29784;
}
body header .navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}
body .hero-section {
  height: 90vh;
}
body .hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.1);
  z-index: -1;
}
body .hero-section .middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
body .hero-section .middle h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #e9e9e9;
  margin-bottom: 30px;
}
body .hero-section .middle p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 30px;
}
body .hero-section .middle a {
  position: relative;
  padding: 10px 20px;
  background: #B29784;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 1rem;
  transition: 0.3s ease;
  outline: 2px solid #B29784;
  outline-offset: 3px;
}
body .hero-section .middle a:hover {
  outline: 2px solid #293133;
  background: #293133;
}
body .hero-section .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #343a40;
  padding: 8px;
  overflow-x: auto;
}
body .hero-section .bottom::-webkit-scrollbar {
  display: none;
}
body .hero-section .bottom div {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
body .hero-section .bottom div span {
  color: #B29784;
  font-weight: 700;
  margin-right: 3px;
  cursor: default;
}
body .hero-section .bottom div p {
  color: #fff;
  font-size: 0.875rem;
}
body .arr-section {
  height: fit-content;
  background: #e3e4e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .arr-section .box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  width: fit-content;
  border: 1px solid #6c757d;
  border-radius: 1rem;
  margin-top: 15px;
  overflow: hidden;
}
body .arr-section .box .track {
  display: flex;
  gap: 10px;
  width: 300%;
  max-width: 380px;
  animation: slideTrack 9s infinite;
}
body .arr-section .box .track img {
  flex: 0 0 100%;
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 1rem;
}
@keyframes slideTrack {
  0% {
    transform: translateX(0%);
  }
  30% {
    transform: translateX(0%);
  }
  33.33% {
    transform: translateX(-33.333%);
  }
  63.33% {
    transform: translateX(-33.333%);
  }
  66.66% {
    transform: translateX(-66.666%);
  }
  96.66% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(0%);
  }
}
body .arr-section .box .box-img {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 380px;
  height: 100%;
  overflow: hidden;
}
body .arr-section .box .box-img img {
  width: 100%;
  max-width: 380px;
  object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 1000px) {
  body .arr-section .box .box-img {
    width: 250px;
  }
}
@media screen and (max-width: 800px) {
  body .arr-section .box .box-img {
    width: 200px;
  }
}
body .arr-section .box .box-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  width: 550px;
  height: 100%;
}
body .arr-section .box .box-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #293133;
  margin-bottom: 10px;
}
body .arr-section .box .box-text p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  text-align: left;
}
body .arr-section .box .box-text p a {
  text-decoration: underline;
}
body .arr-section .box .box-text a.box-button {
  margin-top: 35px;
  padding: 10px 20px;
  background: #B29784;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 1rem;
  transition: 0.3s ease;
  outline: 2px solid #B29784;
  outline-offset: 3px;
  text-align: center;
}
body .arr-section .box .box-text a.box-button:hover {
  outline: 2px solid #293133;
  background: #293133;
}
body .contact-section {
  background: #B29784;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #293133;
  margin-bottom: 10px;
}
body .contact-section a.box-button {
  margin-top: 15px;
  padding: 10px 40px;
  background: #293133;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1rem;
  transition: 0.3s ease;
  outline: 2px solid #293133;
  outline-offset: 3px;
  text-align: center;
}
body .contact-section a.box-button:hover {
  outline: 2px solid #6c757d;
  background: #6c757d;
}
body section.contact {
  height: fit-content;
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 110px 20px 0px;
}
body section.contact .punten {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}
body section.contact .punten::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
body section.contact .punten div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
body section.contact .punten div .material-symbols-outlined {
  font-size: 2rem;
  color: #fff;
  background: #B29784;
  border-radius: 100px;
}
body section.contact .punten div p {
  font-size: 1.25rem;
  font-weight: 700;
  color: #293133;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  body section.contact .punten div .material-symbols-outlined {
    font-size: 1.25rem;
    padding: 3px;
  }
  body section.contact .punten div p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 810px) {
  body section.contact .punten div {
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  body section.contact .punten div .material-symbols-outlined {
    font-size: 1.25rem;
    padding: 3px;
  }
  body section.contact .punten div p {
    font-size: 0.875rem;
    text-align: center;
  }
}
@media screen and (max-width: 710px) {
  body section.contact .punten {
    justify-content: center;
    gap: 13px;
    padding-bottom: 10px;
  }
  body section.contact .punten div {
    width: 48%;
  }
}
body section.contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #293133;
  margin-bottom: 10px;
}
body section.contact .texts {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 0px 0px 20px 0px;
}
body section.contact .texts .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  margin-top: 15px;
}
body section.contact .texts .text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #293133;
}
body section.contact .texts .text:first-child {
  width: 66.6666666667%;
}
body section.contact .texts .text:first-child p {
  font-size: 1rem;
  color: #343a40;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  body section.contact .texts .text:first-child p {
    font-size: 0.875rem;
  }
}
body section.contact .texts .text:last-child {
  width: 33.3333333333%;
}
body section.contact .texts .text:last-child p {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
body section.contact .texts .text:last-child p span {
  text-align: left;
}
body section.contact .texts .text:last-child p a {
  color: #B29784;
}
body section.contact .texts .text:last-child p a:hover {
  color: #000;
}
@media screen and (max-width: 1000px) {
  body section.contact .texts .text:last-child p {
    font-size: 0.875rem;
  }
}
body section.contact .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  background: #B29784;
}
body section.contact .form .form-groups {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}
body section.contact .form .form-groups .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
body section.contact .form .form-groups .form-group h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
body section.contact .form .form-groups .form-group .input {
  width: 100%;
}
body section.contact .form .form-groups .form-group .input.row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
body section.contact .form .form-groups .form-group .input input,
body section.contact .form .form-groups .form-group .input select {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
}
body section.contact .form .input.ta {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
}
body section.contact .form .input.ta label {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
body section.contact .form .input.ta textarea {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  height: 150px;
}
body section.contact .form button {
  margin-top: 15px;
  padding: 12px 20px;
  background: #293133;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 1rem;
  transition: 0.3s ease;
}
body section.contact .form button:hover {
  background: #000;
}
body section.contact .promo {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  margin-top: 20px;
}
body section.contact .promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
body section.contact .promo p {
  font-size: 2rem;
  font-weight: 500;
  color: #293133;
}
body section.contact .promo a {
  padding: 10px 20px;
  background: #B29784;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.2rem;
  transition: 0.3s ease;
  outline: 2px solid #B29784;
  outline-offset: 3px;
  margin-right: 5px;
}
body section.contact .promo a:hover {
  outline: 2px solid #293133;
  background: #293133;
}
@media screen and (max-width: 1000px) {
  body section.contact .promo {
    height: 80px;
    margin-top: 10px;
  }
  body section.contact .promo p {
    font-size: 1.25rem;
    font-weight: 500;
    color: #293133;
  }
  body section.contact .promo a {
    padding: 8px 15px;
    border-radius: 0.15rem;
  }
}
body section.contact .promoimg {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0px;
  margin: 0px 0px 20px 0px;
  height: 270px;
  gap: 15px;
}
body section.contact .promoimg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
body section.contact .promoimg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
body section.contact .promoimg img {
  width: calc(25% - 10px);
  border-radius: 0.5rem;
}
@media screen and (max-width: 1000px) {
  body section.contact .promoimg {
    padding: 10px 0px;
    margin: 0px 0px 20px 0px;
    height: 210px;
    gap: 15px;
  }
  body section.contact .promoimg img {
    width: calc(25% - 10px);
    border-radius: 0.5rem;
  }
}
body .footer {
  background: #293133;
  color: #fff;
  height: fit-content;
  width: 100%;
  padding: 25px 0px;
}
body .footer p.ft {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f8f9fa;
  text-align: center;
  margin-top: 20px;
}
body .footer .inner-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 850px;
  margin: 0 auto;
}
body .footer .inner-footer .sectie:nth-child(1) {
  align-items: center;
  text-align: center;
}
body .footer .inner-footer .sectie:nth-child(1) h3 {
  width: 112px;
  text-align: left;
}
body .footer .inner-footer .sectie {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 350px;
  width: 100%;
  text-align: left;
}
body .footer .inner-footer .sectie h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
}
body .footer .inner-footer .sectie p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f8f9fa;
  text-align: left;
}
body .footer .inner-footer .sectie ul.footer-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}
body .footer .inner-footer .sectie ul.footer-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f8f9fa;
  text-align: left;
}
body .footer .inner-footer .sectie ul.footer-list li a {
  color: #f8f9fa;
  transition: 0.3s ease;
}
body .footer .inner-footer .sectie ul.footer-list li a:hover {
  color: #B29784;
}
body .footer .inner-footer .sectie .text {
  margin-top: 10px;
}
body .footer .inner-footer .sectie .seperator {
  margin: 10px 0px;
}
body .footer .inner-footer .sectie .seperator p {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
body .footer .inner-footer .sectie .seperator p span {
  text-align: left;
}
body .footer .inner-footer .sectie .seperator p a {
  color: #f8f9fa;
}
body .footer .inner-footer .sectie .seperator p a:hover {
  color: #B29784;
}
/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
  body.show-mobile-menu {
    overflow: hidden;
  }
  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
  }
  body.show-mobile-menu header .navbar .nav-menu {
    left: 0;
  }
  body.show-mobile-menu header .navbar .nav-menu::before {
    display: none;
  }
  body.show-mobile-menu header .navbar .nav-menu div.section:first-child {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 15px 0px;
  }
  body.show-mobile-menu header .navbar .nav-menu div.section:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgb(0, 0, 0);
    z-index: -1;
  }
  body.show-mobile-menu header .navbar .nav-menu div.section:first-child .nav-item {
    display: flex;
    align-items: center;
  }
  body.show-mobile-menu header .navbar .nav-menu div.section:first-child .nav-item .nav-link {
    margin: 0px;
    justify-content: left;
    color: #000;
  }
  body.show-mobile-menu header .navbar .nav-menu div.section:last-child {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  body.show-mobile-menu header .navbar .nav-menu div.section:last-child .nav-item .nav-link {
    justify-content: center;
    color: #000;
  }
  body header .navbar {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  body header .navbar .nav-logo img.logo-img {
    width: 60px;
    height: 60px;
  }
  body header .navbar :is(#menu-open-button, #menu-close-button) {
    font-size: 1.25rem;
    display: block;
  }
  body header .navbar :is(#menu-open-button, #menu-close-button):hover {
    color: #343a40 !important;
  }
  body header .navbar #menu-open-button {
    color: #fff;
  }
  body header .navbar #menu-open-button:hover {
    color: #f8f9fa !important;
  }
  .navbar .nav-menu #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }
  .navbar .nav-menu {
    display: block;
    background: #fff;
    position: fixed !important;
    top: 0;
    left: -700px;
    height: 100%;
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    transition: left 0.2s ease;
  }
  .navbar .nav-menu .nav-link {
    display: block;
    margin-top: 17px;
    padding: 10px 22px;
    color: #343a40;
    font-size: 1.1rem;
  }
  section.hero-section .bottom {
    overflow-x: auto;
  }
}
@media screen and (max-width: 500px) {
  body header .navbar .nav-logo img.logo-img {
    width: 50px;
    height: 50px;
  }
  body section.hero-section .middle h1 {
    font-size: 2.3rem;
  }
  body section.hero-section .middle p {
    font-size: 1rem;
  }
  body section.hero-section .middle a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 400px) {
  body header .navbar .nav-logo img.logo-img {
    width: 40px;
    height: 40px;
  }
}

/*# sourceMappingURL=styles.css.map */
