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

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

section {
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
}
section .section-title {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: 2rem;
}
section .section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  background: #00a62d;
  border-radius: 8px;
}

/* 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%;
}

:where(section, footer) .section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1250px;
}

body {
  /* Responsive media query code for max width 640px */
}
body header {
  z-index: 5;
  width: 100%;
  position: fixed;
  background: #00a62d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
body header .navbar {
  display: flex;
  padding: 20px;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  max-width: 1250px;
}
body header .navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}
body header .navbar .nav-logo .logo-text {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
body header .navbar .nav-logo img {
  height: 60px;
  width: auto;
}
body header .navbar .nav-menu {
  gap: 10px;
  display: flex;
  align-items: center;
}
body header .navbar .nav-menu .nav-item .nav-link {
  padding: 10px 18px;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  transition: 0.3s ease;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
body header .navbar .nav-menu .nav-item .nav-link:hover {
  background: #fff;
  color: #00a62d;
}
body header .navbar .nav-menu .nav-item .nav-button {
  position: relative;
  padding: 10px 18px;
  background: #fff;
  font-size: 1rem;
  color: #00a62d;
  border-radius: 30px;
  transition: all 0.3s ease;
}
body header .navbar .nav-menu .nav-item .nav-button:hover {
  background: #edeeee;
}
@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 header .navbar :is(#menu-open-button, #menu-close-button) {
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body header .navbar #menu-open-button {
    color: #fff;
  }
  body header .navbar .nav-logo .logo-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
  }
  body header .navbar .nav-menu {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    transition: left 0.2s ease;
  }
  body header .navbar .nav-menu #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }
  body header .navbar .nav-menu .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  body header .navbar .nav-menu .nav-item.last-item {
    position: absolute;
    bottom: 50px;
    width: 100%;
  }
  body header .navbar .nav-menu .nav-item.last-item .nav-button {
    width: 60%;
    text-align: center;
    background: #00a62d;
    color: #fff;
    border: 1px solid #00a62d;
  }
  body header .navbar .nav-menu .nav-item.last-item .nav-button:hover {
    background: #fff;
    color: #00a62d;
  }
  body header .navbar .nav-menu .nav-item .nav-link {
    display: block;
    margin-top: 17px;
    padding: 10px 22px;
    color: #000;
    font-size: 1.1rem;
  }
}
body .hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #00a62d;
}
body .hero .section-content {
  display: flex;
  padding-top: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}
body .hero .section-content .hero-details {
  width: 100%;
  display: flex;
  flex-direction: column;
}
body .hero .section-content .hero-details h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}
body .hero .section-content .hero-details h2 {
  font-size: 1.25rem;
  color: #edeeee;
  font-weight: 700;
  margin-bottom: 20px;
}
body .hero .section-content .hero-details p {
  font-size: 1rem;
  color: #e2e5e7;
  margin-bottom: 30px;
  max-width: 590px;
}
body .hero .section-content .hero-details .hero-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  background: #fff;
  color: #00a62d;
  border: 1px solid #fff;
}
body .hero .section-content .hero-details .hero-button:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
body .hero .section-content .hero-image {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .hero .section-content .hero-image img {
  width: 390px;
  border-radius: 50%;
}
body .testimonials {
  padding: 50px 0 100px;
  background: #fff;
  flex-direction: column;
}
body .testimonials .section-title {
  color: #00a62d;
}
body .testimonials .section-title::after {
  background: #00a62d;
}
body .testimonials .section-content {
  max-width: 1450px;
}
body .testimonials .slider-wrapper {
  overflow: hidden;
  margin: 0 60px 50px;
}
body .testimonials .slider-wrapper .testimonial {
  user-select: none;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
body .testimonials .slider-wrapper .testimonial .user-image {
  width: 180px;
  height: 180px;
  margin-bottom: 50px;
  object-fit: cover;
  border-radius: 50%;
}
body .testimonials .slider-wrapper .testimonial .name {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #000;
}
body .testimonials .slider-wrapper .testimonial .feedback {
  line-height: 25px;
  color: #f8f9fa;
}
body .testimonials .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: #f8f9fa;
}
body .testimonials .swiper-slide-button {
  color: #f8f9fa;
  margin-top: -50px;
  transition: 0.3s ease;
}
body .contact {
  padding: 50px 0 100px;
  background: #00a62d;
}
body .contact .section-title {
  color: #fff;
}
body .contact .section-title::after {
  background: #fff;
}
body .contact .section-content {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}
body .contact .section-content .contact-info-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body .contact .section-content .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  align-items: center;
}
body .contact .section-content .contact-info-list .contact-info p,
body .contact .section-content .contact-info-list .contact-info span {
  color: #fff;
  font-size: 1.1rem;
}
body .contact .section-content .contact-form {
  max-width: 50%;
}
body .contact .section-content .contact-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 16px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #6c757d;
}
body .contact .section-content .contact-form .form-input:focus {
  border-color: #4cc22e;
}
body .contact .section-content .contact-form textarea.form-input {
  height: 100px;
  padding: 12px;
  resize: vertical;
}
body .contact .section-content .contact-form .submit-button {
  padding: 10px 28px;
  outline: none;
  margin-top: 10px;
  border: 1px solid #fff;
  border-radius: 30px;
  background: #fff;
  color: #00a62d;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s ease;
}
body .contact .section-content .contact-form .submit-button:hover {
  color: #fff;
  background: transparent;
}
body .footer {
  padding: 20px 0;
  background: #fff;
}
body .footer .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .footer .section-content .copyright-text,
body .footer .section-content .social-link,
body .footer .section-content .policy-link {
  color: #00a62d;
  transition: 0.2s ease;
}
@media screen and (max-width: 900px) {
  body .hero .section-content {
    text-align: center;
    gap: 50px;
    padding: 30px 20px 20px;
    justify-content: center;
    flex-direction: column-reverse;
  }
  body .hero .section-content .hero-details {
    align-items: center;
  }
  body .hero .section-content .hero-details .hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    background: #fff;
    color: #00a62d;
    border: 1px solid #fff;
  }
  body .hero .section-content .hero-details .hero-button:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
  body .hero .section-content .hero-image img {
    width: 300px;
  }
  body .testimonials .section-content .slider-container .slider-wrapper .swiper-slide-button,
  body .testimonials .section-afdelingen .slider-container .slider-wrapper .swiper-slide-button {
    color: #000;
  }
  body .testimonials .section-content .slider-container .slider-wrapper .swiper-pagination .swiper-pagination-bullet,
  body .testimonials .section-afdelingen .slider-container .slider-wrapper .swiper-pagination .swiper-pagination-bullet {
    background: #000;
  }
  body .contact .contact-form {
    max-width: 100%;
  }
  body .contact .contact-form .submit-button {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  body .testimonials .slider-wrapper,
  body .section-afdelingen .slider-wrapper {
    margin: 0 0 30px;
  }
  body .testimonials .swiper-slide-button,
  body .section-afdelingen .swiper-slide-button {
    display: none;
  }
}
@media screen and (max-width: 470px) {
  body .hero .section-content {
    padding: 50px 20px 20px;
  }
  body .hero .section-content .hero-image img {
    width: 220px;
  }
  body .contact .section-content .contact-info-list {
    display: none;
  }
  body .contact .section-content .contact-form {
    max-width: 100%;
  }
}
body .info {
  background: url("../../../../assets/images/site/Politie-004.jpg") no-repeat center;
  padding: 150px 20px 100px;
}
body .info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
body .info .section-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 4;
}
body .info .section-content .btn-template {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 25px;
  font-size: 1.1rem;
  border-radius: 30px;
  background: #00a62d;
  color: #fff;
  border: 1px solid #00a62d;
  margin: 0 auto 20px;
  cursor: pointer;
}
body .info .section-content .btn-template:hover {
  background: transparent;
  color: #00a62d;
  border: 1px solid #00a62d;
}
body .info .section-content .section-title {
  font-size: 3rem;
  margin-bottom: 10px;
  padding: 60px 0 50px;
}
body .info .section-content .section-title::after {
  background: #fff;
}
body .info .section-content .section-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 710px) {
  body .info .section-content .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    padding: 60px 0 50px;
  }
  body .info .section-content .section-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 370px) {
  body .info .section-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    padding: 60px 0 50px;
  }
  body .info .section-content .section-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
  }
}
body .more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 120px;
}
body .more .section-content {
  max-width: 1250px;
  display: flex;
  align-items: center;
  gap: 120px;
}
body .more .section-content .content {
  margin-top: 30px;
}
body .more .section-content .content .section-subtitle {
  font-size: 2rem;
  color: #00a62d;
  font-weight: 900;
  margin-bottom: 20px;
}
body .more .section-content .content p {
  font-size: 1rem;
  line-height: 28px;
  color: #343a40;
}
body .more .section-content .content .tags {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
body .more .section-content .content .tags p {
  padding: 5px 15px;
  background: #00a62d;
  border-radius: 30px;
  font-size: 0.875rem;
  color: #fff;
}
body .more .section-content .content .content-img {
  width: 450px;
}
body .more .section-content .content .content-img img {
  border: 3px solid #4cc22e;
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
body .more .section-content .content .content-img img.left {
  transform: rotate(-3deg);
}
body .more .section-content .content .content-img img.right {
  transform: rotate(3deg);
}
@media screen and (max-width: 980px) {
  body .more {
    gap: 60px;
  }
  body .more .section-content {
    flex-direction: column;
    gap: 20px;
  }
  body .more .section-content.reverse {
    flex-direction: column-reverse;
  }
  body .more .section-content .content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  body .more .section-content .content .content-img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 690px) {
  body .more {
    gap: 40px;
  }
  body .more .section-content {
    padding: 0;
  }
  body .more .section-content .content .content-img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}
body .more .section-afdelingen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1700px;
  width: 100%;
}
body .more .section-afdelingen .section-sub {
  font-size: 2rem;
  color: #00a62d;
  font-weight: 900;
  margin-bottom: 20px;
}
body .more .section-afdelingen .section-sub::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  background: #00a62d;
  border-radius: 8px;
}
body .more .section-afdelingen .sub-text {
  font-size: 1rem;
  line-height: 28px;
  color: #343a40;
  max-width: 700px;
  text-align: center;
  margin-bottom: 50px;
}
body .more .section-afdelingen .slider-container {
  width: 100%;
  position: relative;
}
body .more .section-afdelingen .slider-container .slider-wrapper {
  overflow: hidden;
  margin: 0 20px 50px;
}
body .more .section-afdelingen .slider-container .slider-wrapper .testimonial {
  position: relative;
  user-select: none;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  gap: 5px;
  height: fit-content;
  z-index: 3;
  overflow: hidden;
}
body .more .section-afdelingen .slider-container .slider-wrapper .testimonial.red {
  border: 5px solid #dc3545;
}
body .more .section-afdelingen .slider-container .slider-wrapper .testimonial.red::before {
  content: "GESLOTEN";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: fit-content;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 5px;
  color: #fff;
  transform: translate(-50%, -50%) rotate(-25deg);
  z-index: 2;
  background: #dc3545;
}
body .more .section-afdelingen .slider-container .slider-wrapper .testimonial.green {
  border: 5px solid #28a745;
}
body .more .section-afdelingen .slider-container .slider-wrapper .testimonial .user-image {
  width: 140px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
body .more .section-afdelingen .slider-container .slider-wrapper .testimonial .name {
  font-size: 1rem;
  color: #000;
}
body .more .section-afdelingen .slider-container .slider-wrapper .testimonial .feedback {
  margin-top: 10px;
  line-height: 25px;
  color: #000;
}
body .more .section-afdelingen .slider-container .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: #000;
}
body .more .section-afdelingen .slider-container .swiper-slide-button {
  color: #000;
  margin-top: -50px;
  transition: 0.3s ease;
}
@media screen and (max-width: 690px) {
  body .more .section-afdelingen {
    margin-top: 50px;
  }
}

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