#main-nav {
  z-index: 99;
}
#main-nav .menu > ul > li {
  display: inline-block;
  line-height: 75px;
  margin-left: 1.5rem;
}
#main-nav .menu > ul > li > a {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}
#main-nav .menu > ul > li > a:hover {
  color: #FF1E56 !important;
}
#main-nav .menu > ul > li > a.active {
  color: #FF1E56 !important;
}
#main-nav .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  margin-top: 1.5rem;
  opacity: 0;
  visibility: hidden;
}
#main-nav .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}
#main-nav .menu > ul > li .sub-menu > ul > li a {
  transition: all 0.3s ease;
}
#main-nav .menu > ul > li .sub-menu > ul > li a .title {
  transition: all 0.3s ease;
}
#main-nav .menu > ul > li .sub-menu > ul > li a:hover {
  background-color: #FFE8EE;
}
#main-nav .menu > ul > li .sub-menu > ul > li a:hover .title {
  color: #FF1E56;
}
#main-nav .menu > ul > li .sub-menu > ul > li a > svg {
  width: 2.5rem;
  flex-shrink: 0;
}
#main-nav .menu > ul > li .sub-menu > ul > li a > svg path {
  fill: #FF1E56;
}
#main-nav .menu > ul > li .sub-menu.mega-menu {
  max-width: 450px;
  min-width: 450px;
}
#main-nav .menu > ul > li.menu-item-has-children:hover .sub-menu {
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}
#main-nav .main-cta a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#main-nav .main-cta a svg path {
  transition: all 0.3s ease;
}
#main-nav .main-cta a:hover {
  color: #FF1E56;
  box-shadow: 0 0 0 #FF1E56;
}
#main-nav .main-cta a:hover svg path {
  fill: #FF1E56;
}

@media (max-width: 1535px) {
  #main-nav {
    z-index: 99;
  }
  #main-nav .menu > ul > li {
    display: inline-block;
    line-height: 75px;
    margin-left: 1.5rem;
  }
  #main-nav .menu > ul > li > a {
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
  }
  #main-nav .menu > ul > li > a:hover {
    color: #FF1E56;
  }
  #main-nav .menu > ul > li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #FFFFFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    margin-top: 1.5rem;
    opacity: 0;
    visibility: hidden;
  }
  #main-nav .menu > ul > li .sub-menu > ul > li {
    line-height: 1;
  }
  #main-nav .menu > ul > li .sub-menu > ul > li a {
    transition: all 0.3s ease;
  }
  #main-nav .menu > ul > li .sub-menu > ul > li a .title {
    transition: all 0.3s ease;
  }
  #main-nav .menu > ul > li .sub-menu > ul > li a:hover {
    background-color: #FFE8EE;
  }
  #main-nav .menu > ul > li .sub-menu > ul > li a:hover .title {
    color: #FF1E56;
  }
  #main-nav .menu > ul > li .sub-menu.mega-menu {
    max-width: 450px;
    min-width: 450px;
  }
  #main-nav .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
  #main-nav .main-cta a {
    box-shadow: 5px 6px 0 #FF1E56;
    transition: all 0.3s ease;
  }
  #main-nav .main-cta a svg path {
    transition: all 0.3s ease;
  }
  #main-nav .main-cta a:hover {
    color: #FF1E56;
    box-shadow: 0 0 0 #FF1E56;
  }
  #main-nav .main-cta a:hover svg path {
    fill: #FF1E56;
  }
}
@media (max-width: 1023px) {
  #main-nav .mobile-menu-trigger {
    display: flex;
    align-items: center;
  }
  #main-nav .mobile-menu-trigger > div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #main-nav .mobile-menu-trigger > div > span {
    display: block;
    height: 2px;
    background-color: #FF1E56;
    width: 20px;
    position: relative;
    margin-top: 5px;
  }
  #main-nav .mobile-menu-trigger > div > span::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF1E56;
    top: -6px;
  }
  #main-nav .menu {
    position: fixed;
    width: 100%;
    background-color: #FFFFFF;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
    padding-bottom: 5rem;
    transform: translate(-100%);
    transition: all 0.5s ease;
  }
  #main-nav .menu.active {
    transform: translate(0%);
  }
  #main-nav .menu > ul {
    padding: 1.5rem;
  }
  #main-nav .menu > ul > li {
    display: block;
    line-height: 1;
    margin-left: 0;
    margin-bottom: 0.75rem;
  }
  #main-nav .menu > ul > li > a {
    display: block;
    padding: 1.5rem 1.5rem;
    background-color: #E2E8F0;
    border-radius: 4px;
    color: #111827;
  }
  #main-nav .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding-top: 75px;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  #main-nav .menu > ul > li .sub-menu.active {
    display: block;
  }
  #main-nav .menu > ul > li .sub-menu.mega-menu {
    max-width: none;
    min-width: none;
    width: 100%;
  }
  #main-nav .menu .mobile-menu-head {
    display: flex;
    height: 75px;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 501;
    position: sticky;
    background-color: #FFFFFF;
    top: 0;
  }
  #main-nav .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF1E56;
    border-radius: 4px;
    display: none;
  }
  #main-nav .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111827;
    border-radius: 4px;
  }
  #main-nav .menu .mobile-menu-head.active .go-back {
    display: flex;
  }
  #main-nav .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
@keyframes slideLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.cta-banner__btn a {
  box-shadow: 5px 6px 0 #BA1B43;
  transition: all 0.3s ease;
}
.cta-banner__btn a svg path {
  transition: all 0.3s ease;
}
.cta-banner__btn a:hover {
  color: #FF1E56;
  box-shadow: 0 0 0 #BA1B43;
}
.cta-banner__btn a:hover svg path {
  fill: #FF1E56;
}

footer .second-row {
  justify-items: center;
}
footer form {
  position: relative !important;
}

#calendly-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  visibility: hidden;
}
#calendly-popup .calendly-popup-container {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  z-index: 5000;
  width: 500px;
  transition: top 0.5s ease;
}
#calendly-popup .calendly-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 4999;
}
#calendly-popup.active {
  visibility: visible;
}
#calendly-popup.active .calendly-popup-container {
  top: 50%;
  transition: top 0.5s ease;
}

#home_hero .home_hero__hand {
  transform: rotate(-15deg);
}
@media (max-width: 1023px) {
  #home_hero .home_hero__hand {
    left: 5%;
    bottom: -4rem !important;
  }
}
@media (max-width: 639px) {
  #home_hero .home_hero__hand {
    display: flex;
    justify-content: center;
    bottom: 0rem !important;
    width: 100%;
    left: -5%;
  }
}
#home_hero .swiper-logo .jsSwiperLogo {
  width: 700px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1535px) {
  #home_hero .swiper-logo .jsSwiperLogo {
    width: 600px;
  }
}
@media (max-width: 1023px) {
  #home_hero .swiper-logo .jsSwiperLogo {
    width: 1000px;
  }
}
#home_hero .swiper-logo .jsSwiperLogo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  height: 100%;
  width: 100px;
  z-index: 10;
}
#home_hero .swiper-logo .jsSwiperLogo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
  width: 100px;
  z-index: 10;
}
#home_hero .swiper-logo .jsSwiperLogo .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
#home_hero .swiper-logo .jsSwiperLogo .swiper-slide {
  width: auto;
}
#home_hero .swiper-logo .jsSwiperLogo .swiper-slide img {
  display: block;
}
#home_hero .swiper-logo .jsSwiperLogo .swiper-slide img[src$=".jpg"], #home_hero .swiper-logo .jsSwiperLogo .swiper-slide img[src$=".png"] {
  mix-blend-mode: multiply;
}

@keyframes handshake {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#home_services #home_services__top .card {
  transition: all 0.2s ease;
}
#home_services #home_services__top .card h3 {
  transition: all 0.2s ease;
}
#home_services #home_services__top .card p {
  transition: all 0.2s ease;
}
#home_services #home_services__top .card .icon {
  height: 45px !important;
  width: auto !important;
}
#home_services #home_services__top .card .icon svg {
  height: 45px !important;
  width: auto !important;
}
#home_services #home_services__top .card .icon svg path {
  transition: all 0.2s ease;
  fill: #FF1E56;
}
#home_services #home_services__top .card .arrow {
  transition: all 0.2s ease;
}
#home_services #home_services__top .card .arrow svg path {
  transition: all 0.2s ease;
}
#home_services #home_services__top .card.active {
  background: #FF1E56;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
#home_services #home_services__top .card.active h3 {
  color: #FFFFFF;
}
#home_services #home_services__top .card.active p {
  color: #FFFFFF;
}
#home_services #home_services__top .card.active .icon svg path {
  fill: #FFFFFF;
}
#home_services #home_services__top .card.active .arrow {
  background: #FFFFFF;
}
#home_services #home_services__top .card.active .arrow svg path {
  fill: #FF1E56;
}
#home_services #home_services__top .card:hover {
  background: #FF1E56;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
#home_services #home_services__top .card:hover h3 {
  color: #FFFFFF;
}
#home_services #home_services__top .card:hover p {
  color: #FFFFFF;
}
#home_services #home_services__top .card:hover .icon svg path {
  fill: #FFFFFF;
}
#home_services #home_services__top .card:hover .arrow {
  background: #FFFFFF;
}
#home_services #home_services__top .card:hover .arrow svg path {
  fill: #FF1E56;
}
#home_services #home_services__sub .card .icon {
  height: 35px !important;
  width: auto !important;
}
#home_services #home_services__sub .card .icon svg {
  height: 35px !important;
  width: auto !important;
}

#home_reviews {
  overflow-x: hidden;
}
#home_reviews #home_reviews__slider .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
#home_reviews #home_reviews__slider .swiper .swiper-slide {
  height: auto !important;
}
#home_reviews #home_reviews__slider .swiper .swiper-slide .foto {
  width: 60px;
  height: 60px;
}
#home_reviews #home_reviews__slider .swiper .swiper-slide .foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
#home_reviews #home_reviews__slider .swiper .swiper-slide .bedrijfslogo img {
  width: 100px;
}
#home_reviews .swiper-button-prev::after,
#home_reviews .swiper-button-next::after {
  display: none;
}
#home_reviews .swiper-button-next,
#home_reviews .swiper-button-prev {
  position: unset;
  top: unset;
  width: unset;
  height: unset;
  margin-top: unset;
  z-index: unset;
  cursor: pointer;
  display: unset;
  align-items: unset;
  justify-content: unset;
  color: unset;
}

#home_over-ons_tekst-foto-links .img-wrapper {
  width: 100%;
  height: 600px;
  border-radius: 4px;
}
#home_over-ons_tekst-foto-links .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#home_over-ons_tekst-foto-links .home_over-ons__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#home_over-ons_tekst-foto-links .home_over-ons__btn a svg path {
  transition: all 0.3s ease;
}
#home_over-ons_tekst-foto-links .home_over-ons__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#home_over-ons_tekst-foto-links .home_over-ons__btn a:hover svg path {
  fill: #FFFFFF;
}

#home_faq .accordion .accordion_item:last-child {
  margin-bottom: 0;
}
#home_faq .accordion .accordion_item .accordion_header {
  position: relative;
  cursor: pointer;
}
#home_faq .accordion .accordion_item .accordion_header .arrow-accordion {
  transition: all 0.3s ease;
}
#home_faq .accordion .accordion_item .accordion_header.active .accordion-icon::before,
#home_faq .accordion .accordion_item .accordion_header.active .accordion-icon::after {
  transform: rotate(360deg);
  background-color: #FF1E56;
}
#home_faq .accordion .accordion_item .accordion_item_body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
#home_faq .accordion .accordion_item .accordion_item_body p {
  font-size: 1.0625rem;
  color: #374151;
}
#home_faq .accordion .accordion_item .accordion_item_body ul {
  margin-top: 0.875rem;
}
#home_faq .accordion .accordion_item .accordion_item_body ul li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}
#home_faq .accordion .accordion_item .accordion-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home_faq .accordion .accordion_item .accordion-icon::before, #home_faq .accordion .accordion_item .accordion-icon::after {
  position: absolute;
  content: "";
  right: 0;
  height: 2px;
  width: 20px;
  background-color: #000000;
  transform-origin: center;
  transition: 0.3s ease transform;
}
#home_faq .accordion .accordion_item .accordion-icon::before {
  transform: rotate(90deg);
}
#home_faq .image {
  width: 100%;
  height: 575px !important;
}
@media (max-width: 639px) {
  #home_faq .image {
    height: 350px !important;
  }
}
#home_faq .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

#project_hero {
  position: relative;
}
#project_hero .project_hero__bg {
  width: 100%;
  height: 100%;
}
#project_hero .project_hero__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#project_hero .content {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#project_hero .card-hero {
  margin-right: 3rem;
}
#project_hero .card-hero .icon {
  height: 35px !important;
  width: auto !important;
}
#project_hero .card-hero .icon svg {
  height: 35px !important;
  width: auto !important;
}
#project_hero .card-hero .icon svg path {
  transition: all 0.2s ease;
  fill: #FF1E56;
}
@media (max-width: 1279px) {
  #project_hero .welke-diensten-klant {
    left: 50%;
    transform: translateX(-50%);
  }
}

#project_inleiding .resultaten-item {
  margin-bottom: 1.5rem;
}
#project_inleiding .resultaten-item:last-child {
  margin-bottom: 0;
}
#project_inleiding .resultaten-item svg {
  width: 2.5rem;
}
#project_inleiding .resultaten-item svg path {
  fill: #FF1E56;
}
#project_inleiding .resultaten__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#project_inleiding .resultaten__btn a svg path {
  transition: all 0.3s ease;
}
#project_inleiding .resultaten__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#project_inleiding .resultaten__btn a:hover svg path {
  fill: #FFFFFF;
}

#project_web-browser .browser-img {
  border-radius: 0 0 4px 4px;
}
#project_web-browser .browser-img img {
  border-radius: 0 0 4px 4px;
}
#project_web-browser .web-browser__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#project_web-browser .web-browser__btn a svg path {
  transition: all 0.3s ease;
}
#project_web-browser .web-browser__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#project_web-browser .web-browser__btn a:hover svg path {
  fill: #FFFFFF;
}

#project_statistics .statistics__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#project_statistics .statistics__btn a svg path {
  transition: all 0.3s ease;
}
#project_statistics .statistics__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#project_statistics .statistics__btn a:hover svg path {
  fill: #FFFFFF;
}

#project_review .project_review__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#project_review .project_review__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#project_review .profielfoto {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
#project_review .profielfoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

#project_tekst-foto-rechts .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
#project_tekst-foto-rechts .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

#project_tekst-foto-links .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
#project_tekst-foto-links .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#project_tekst-foto-links .web-browser__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#project_tekst-foto-links .web-browser__btn a svg path {
  transition: all 0.3s ease;
}
#project_tekst-foto-links .web-browser__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#project_tekst-foto-links .web-browser__btn a:hover svg path {
  fill: #FFFFFF;
}

#project_diensten-5 .uitgelicht .icon {
  height: 45px !important;
  width: auto !important;
}
#project_diensten-5 .uitgelicht .icon svg {
  height: 45px !important;
  width: auto !important;
}
#project_diensten-5 .uitgelicht .icon svg path {
  fill: #FF1E56;
}
#project_diensten-5 .uitgelicht .arrow {
  transition: background-color 0.2s ease;
}
#project_diensten-5 .uitgelicht .arrow svg path {
  transition: all 0.2s ease;
}
#project_diensten-5 .uitgelicht:hover .arrow {
  background-color: #FFFFFF;
}
#project_diensten-5 .uitgelicht:hover .arrow svg path {
  fill: #000000;
}
#project_diensten-5 .card .icon {
  height: 35px !important;
  width: auto !important;
}
#project_diensten-5 .card .icon svg {
  height: 35px !important;
  width: auto !important;
}

#project_diensten-2 .uitgelicht .icon {
  height: 45px !important;
  width: auto !important;
}
#project_diensten-2 .uitgelicht .icon svg {
  height: 45px !important;
  width: auto !important;
}
#project_diensten-2 .uitgelicht .icon svg path {
  fill: #FF1E56;
}
#project_diensten-2 .uitgelicht .arrow {
  transition: background-color 0.2s ease;
}
#project_diensten-2 .uitgelicht .arrow svg path {
  transition: all 0.2s ease;
}
#project_diensten-2 .uitgelicht:hover .arrow {
  background-color: #FFFFFF;
}
#project_diensten-2 .uitgelicht:hover .arrow svg path {
  fill: #000000;
}
#project_diensten-2 .card .icon {
  height: 35px !important;
  width: auto !important;
}
#project_diensten-2 .card .icon svg {
  height: 35px !important;
  width: auto !important;
}

#project_diensten-1 .uitgelicht .icon {
  height: 45px !important;
  width: auto !important;
}
#project_diensten-1 .uitgelicht .icon svg {
  height: 45px !important;
  width: auto !important;
}
#project_diensten-1 .uitgelicht .icon svg path {
  fill: #FF1E56;
}
#project_diensten-1 .uitgelicht .arrow {
  transition: background-color 0.2s ease;
}
#project_diensten-1 .uitgelicht .arrow svg path {
  transition: all 0.2s ease;
}
#project_diensten-1 .uitgelicht:hover .arrow {
  background-color: #FFFFFF;
}
#project_diensten-1 .uitgelicht:hover .arrow svg path {
  fill: #000000;
}
#project_diensten-1 .card .icon {
  height: 35px !important;
  width: auto !important;
}
#project_diensten-1 .card .icon svg {
  height: 35px !important;
  width: auto !important;
}

#over-ons_hero .img-wrapper {
  height: 450px;
}
@media (max-width: 1279px) {
  #over-ons_hero .img-wrapper {
    height: 100%;
  }
}
#over-ons_hero .img-wrapper .img-1 {
  height: 450px;
  border-radius: 4px;
}
#over-ons_hero .img-wrapper .img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#over-ons_hero .img-wrapper .img-2 {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
@media (max-width: 1279px) {
  #over-ons_hero .img-wrapper .img-2 {
    height: 300px;
  }
}
@media (max-width: 639px) {
  #over-ons_hero .img-wrapper .img-2 {
    height: 200px;
  }
}
#over-ons_hero .img-wrapper .img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#over-ons_hero .img-wrapper .img-3 {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
@media (max-width: 1279px) {
  #over-ons_hero .img-wrapper .img-3 {
    height: 300px;
  }
}
@media (max-width: 639px) {
  #over-ons_hero .img-wrapper .img-3 {
    height: 200px;
  }
}
#over-ons_hero .img-wrapper .img-3 img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 4px;
}
#over-ons_hero .img-wrapper .img-4 {
  height: 450px;
  border-radius: 4px;
}
#over-ons_hero .img-wrapper .img-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

#over-ons_sticky-n-text .sticky-n-text__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#over-ons_sticky-n-text .sticky-n-text__btn a svg path {
  transition: all 0.3s ease;
}
#over-ons_sticky-n-text .sticky-n-text__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#over-ons_sticky-n-text .sticky-n-text__btn a:hover svg path {
  fill: #FFFFFF;
}
#over-ons_sticky-n-text p {
  font-size: 1.125rem;
  color: #1F2937;
}

#over-ons_big-text .over-ons_big-text__img-1 {
  max-height: 100%;
  border-radius: 4px;
}
@media (max-width: 1023px) {
  #over-ons_big-text .over-ons_big-text__img-1 {
    height: 450px;
    width: 100%;
  }
}
#over-ons_big-text .over-ons_big-text__img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

#over-ons_team .card .over-ons__img {
  width: 100%;
  height: 350px;
  border-radius: 4px;
}
@media (max-width: 1279px) {
  #over-ons_team .card .over-ons__img {
    height: 275px;
  }
}
#over-ons_team .card .over-ons__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#over-ons_team .card .social a {
  margin-right: 0.25rem;
}
#over-ons_team .card .social a:last-child {
  margin-right: 0;
}
#over-ons_team .card .social a i {
  transition: color 0.2s ease;
}
#over-ons_team .card .social a i:hover {
  color: #FF1E56;
}

#contact_hero {
  background: linear-gradient(180deg, #111827 86%, #f3f4f6 86%);
}
#contact_hero .info-card {
  margin-bottom: 1.5rem;
}
#contact_hero .info-card:last-child {
  margin-bottom: 0;
}
#contact_hero .info-card .info-card__img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
}
#contact_hero .info-card .info-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#contact_hero .contact_form form {
  border-radius: 25px 100px 25px 25px;
  background-color: #FFF;
  padding: 3rem;
}
@media (max-width: 639px) {
  #contact_hero .contact_form form {
    padding: 1.5rem;
  }
}
#contact_hero .contact_form form .form__wrapper .input-wrapper {
  position: relative;
  height: 65px;
  background: #FFF;
}
#contact_hero .contact_form form .form__wrapper .input-wrapper .form-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  background: none;
  z-index: 6;
  padding: 1.125rem 1rem 0 1rem;
  color: #111827;
  font-weight: 600;
  font-size: 16px;
  border: solid #D6D3D1 1px;
  border-radius: 4px;
}
@media (max-width: 639px) {
  #contact_hero .contact_form form .form__wrapper .input-wrapper .form-input {
    font-size: 15px;
  }
}
#contact_hero .contact_form form .form__wrapper .input-wrapper .form-input:focus {
  border: 1px solid #FF1E56;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
#contact_hero .contact_form form .form__wrapper .input-wrapper .form-input:focus + .form-label {
  top: 12px;
  font-size: 12px;
  color: #FF1E56;
}
#contact_hero .contact_form form .form__wrapper .input-wrapper .form-input:not(:placeholder-shown).form-input:not(:focus) + .form-label {
  top: 12px;
  font-size: 12px;
  color: #FF1E56;
}
#contact_hero .contact_form form .form__wrapper .input-wrapper .form-label {
  position: absolute;
  left: 16px;
  top: 20px;
  z-index: 5;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 600;
  color: #9CA3AF;
}
@media (max-width: 639px) {
  #contact_hero .contact_form form .form__wrapper .input-wrapper .form-label {
    font-size: 15px;
    top: 22px;
  }
}
#contact_hero .contact_form form .form__wrapper .input-wrapper .form-label span {
  color: #e12d39;
}
#contact_hero .contact_form form .form__wrapper .form-textarea {
  position: relative;
}
#contact_hero .contact_form form .form__wrapper .form-textarea textarea {
  width: 100%;
  outline: none;
  background: #FFF;
  z-index: 6;
  padding: 2.5rem 1rem 0 1rem;
  font-size: 16px;
  color: #111827;
  font-weight: 600;
  border: solid #D6D3D1 1px;
  border-radius: 4px;
}
@media (max-width: 639px) {
  #contact_hero .contact_form form .form__wrapper .form-textarea textarea {
    font-size: 15px;
  }
}
#contact_hero .contact_form form .form__wrapper .form-textarea textarea:focus {
  border: 1px solid #FF1E56;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
#contact_hero .contact_form form .form__wrapper .form-textarea textarea:focus ~ .textarea-label, #contact_hero .contact_form form .form__wrapper .form-textarea textarea:not(:placeholder-shown) ~ .textarea-label {
  top: 16px;
  font-size: 12px;
  color: #FF1E56;
}
#contact_hero .contact_form form .form__wrapper .form-textarea .textarea-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 5;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 600;
  color: #9CA3AF;
}
@media (max-width: 639px) {
  #contact_hero .contact_form form .form__wrapper .form-textarea .textarea-label {
    font-size: 15px;
  }
}
#contact_hero .contact_form form .form__wrapper .form-textarea .textarea-label span {
  color: #e12d39;
}
#contact_hero .contact_form form .form__wrapper .privacy-check {
  display: flex;
}
#contact_hero .contact_form form .form__wrapper .privacy-check input[type=checkbox] {
  display: none;
}
#contact_hero .contact_form form .form__wrapper .privacy-check label {
  position: relative;
  padding-left: 2rem;
  color: #6B7280;
}
#contact_hero .contact_form form .form__wrapper .privacy-check label::before {
  content: "";
  background: url("/assets/img/icons/vinkje-icon.svg");
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.2rem;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.4s ease;
}
#contact_hero .contact_form form .form__wrapper .privacy-check label::after {
  content: "";
  border: 1px solid #CBD2D9;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.2rem;
}
#contact_hero .contact_form form .form__wrapper .privacy-check input[type=checkbox]:checked + label::before {
  transform: scale(1);
}
#contact_hero .contact_form form .form__wrapper .privacy-check a {
  color: #1C1917;
  text-decoration: underline;
  transition: all 0.2s ease;
}
#contact_hero .contact_form form .form__wrapper .privacy-check a:hover {
  color: #FF1E56;
}
#contact_hero .contact_form form .form__wrapper .g-recaptcha {
  margin-top: 1rem;
}
#contact_hero .contact_form .btn-container button {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#contact_hero .contact_form .btn-container button svg path {
  transition: all 0.3s ease;
}
#contact_hero .contact_form .btn-container button:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#contact_hero .contact_form .btn-container button:hover svg path {
  fill: #FFFFFF;
}

#contact_faq .accordion .accordion_item:last-child {
  margin-bottom: 0;
}
#contact_faq .accordion .accordion_item .accordion_header {
  position: relative;
  cursor: pointer;
}
#contact_faq .accordion .accordion_item .accordion_header .arrow-accordion {
  transition: all 0.3s ease;
}
#contact_faq .accordion .accordion_item .accordion_header.active .accordion-icon::before,
#contact_faq .accordion .accordion_item .accordion_header.active .accordion-icon::after {
  transform: rotate(360deg);
  background-color: #FF1E56;
}
#contact_faq .accordion .accordion_item .accordion_item_body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
#contact_faq .accordion .accordion_item .accordion_item_body p {
  font-size: 1.0625rem;
  color: #374151;
}
#contact_faq .accordion .accordion_item .accordion_item_body ul {
  margin-top: 0.875rem;
}
#contact_faq .accordion .accordion_item .accordion_item_body ul li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}
#contact_faq .accordion .accordion_item .accordion-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact_faq .accordion .accordion_item .accordion-icon::before, #contact_faq .accordion .accordion_item .accordion-icon::after {
  position: absolute;
  content: "";
  right: 0;
  height: 2px;
  width: 20px;
  background-color: #000000;
  transform-origin: center;
  transition: 0.3s ease transform;
}
#contact_faq .accordion .accordion_item .accordion-icon::before {
  transform: rotate(90deg);
}

#dienst_hero {
  background: linear-gradient(180deg, #111827 83%, #f3f4f6 83%);
}
#dienst_hero .dienst_hero__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#dienst_hero .dienst_hero__btn a svg path {
  transition: all 0.3s ease;
}
#dienst_hero .dienst_hero__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#dienst_hero .dienst_hero__btn a:hover svg path {
  fill: #FFFFFF;
}
#dienst_hero form .form__wrapper .input-wrapper {
  position: relative;
  height: 65px;
  background: #FFF;
  border-radius: 4px;
}
#dienst_hero form .form__wrapper .input-wrapper .form-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  background: none;
  z-index: 6;
  padding: 1.125rem 1rem 0 1rem;
  color: #111827;
  font-weight: 600;
  font-size: 16px;
  border: solid #D6D3D1 1px;
  border-radius: 4px;
}
@media (max-width: 639px) {
  #dienst_hero form .form__wrapper .input-wrapper .form-input {
    font-size: 15px;
  }
}
#dienst_hero form .form__wrapper .input-wrapper .form-input:focus {
  border: 1px solid #FF1E56;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
#dienst_hero form .form__wrapper .input-wrapper .form-input:focus + .form-label {
  top: 12px;
  font-size: 12px;
  color: #FF1E56;
}
#dienst_hero form .form__wrapper .input-wrapper .form-input:not(:placeholder-shown).form-input:not(:focus) + .form-label {
  top: 12px;
  font-size: 12px;
  color: #FF1E56;
}
#dienst_hero form .form__wrapper .input-wrapper .form-label {
  position: absolute;
  left: 16px;
  top: 20px;
  z-index: 5;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 600;
  color: #9CA3AF;
}
@media (max-width: 639px) {
  #dienst_hero form .form__wrapper .input-wrapper .form-label {
    font-size: 15px;
    top: 22px;
  }
}
#dienst_hero form .form__wrapper .input-wrapper .form-label span {
  color: #e12d39;
}
#dienst_hero form .form__wrapper .form-textarea {
  position: relative;
}
#dienst_hero form .form__wrapper .form-textarea textarea {
  width: 100%;
  outline: none;
  background: #FFF;
  z-index: 6;
  padding: 2.5rem 1rem 0 1rem;
  font-size: 16px;
  color: #111827;
  font-weight: 600;
  border: solid #D6D3D1 1px;
  border-radius: 4px;
}
@media (max-width: 639px) {
  #dienst_hero form .form__wrapper .form-textarea textarea {
    font-size: 15px;
  }
}
#dienst_hero form .form__wrapper .form-textarea textarea:focus {
  border: 1px solid #FF1E56;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
#dienst_hero form .form__wrapper .form-textarea textarea:focus ~ .textarea-label, #dienst_hero form .form__wrapper .form-textarea textarea:not(:placeholder-shown) ~ .textarea-label {
  top: 16px;
  font-size: 12px;
  color: #FF1E56;
}
#dienst_hero form .form__wrapper .form-textarea .textarea-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 5;
  transition: all 0.2s ease;
  font-size: 16px;
  font-weight: 600;
  color: #9CA3AF;
}
@media (max-width: 639px) {
  #dienst_hero form .form__wrapper .form-textarea .textarea-label {
    font-size: 15px;
  }
}
#dienst_hero form .form__wrapper .form-textarea .textarea-label span {
  color: #e12d39;
}
#dienst_hero form .form__wrapper .privacy-check {
  display: flex;
}
#dienst_hero form .form__wrapper .privacy-check input[type=checkbox] {
  display: none;
}
#dienst_hero form .form__wrapper .privacy-check label {
  position: relative;
  padding-left: 2rem;
  color: #FFF;
  cursor: pointer;
}
#dienst_hero form .form__wrapper .privacy-check label::before {
  content: "";
  background: url("/assets/img/icons/vinkje-icon-roze-achtergrond.svg");
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.2rem;
  cursor: pointer;
  z-index: 30;
  transform: scale(0);
  transition: all 0.4s ease;
}
#dienst_hero form .form__wrapper .privacy-check label::after {
  content: "";
  background: #FFF;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
}
#dienst_hero form .form__wrapper .privacy-check input[type=checkbox]:checked + label::before {
  transform: scale(1);
}
#dienst_hero form .form__wrapper .privacy-check a {
  color: #FFF;
  text-decoration: underline;
  transition: all 0.2s ease;
}
#dienst_hero form .form__wrapper .privacy-check a:hover {
  color: #FF1E56;
}
#dienst_hero form .form__wrapper .g-recaptcha {
  margin-top: 1rem;
}
#dienst_hero .btn-container button {
  box-shadow: 5px 6px 0 #111827;
  transition: all 0.3s ease;
}
#dienst_hero .btn-container button svg path {
  transition: all 0.3s ease;
}
#dienst_hero .btn-container button:hover {
  background-color: #111827;
  color: #FFFFFF;
  box-shadow: 0 0 0 #111827;
}
#dienst_hero .btn-container button:hover svg path {
  fill: #FFFFFF;
}

#diensten_features a.card {
  transition: all 0.2s ease;
}
#diensten_features a.card h3 {
  transition: all 0.2s ease;
}
#diensten_features a.card p {
  transition: all 0.2s ease;
}
#diensten_features a.card .icon {
  height: 45px !important;
  width: auto !important;
}
#diensten_features a.card .icon svg {
  height: 45px !important;
  width: auto !important;
}
#diensten_features a.card .icon svg path {
  transition: all 0.2s ease;
  fill: #FF1E56;
}
#diensten_features a.card .arrow {
  transition: all 0.2s ease;
}
#diensten_features a.card .arrow svg path {
  transition: all 0.2s ease;
}
#diensten_features a.card.active {
  background: #FF1E56;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
#diensten_features a.card.active h3 {
  color: #FFFFFF;
}
#diensten_features a.card.active p {
  color: #FFFFFF;
}
#diensten_features a.card.active .icon svg path {
  fill: #FFFFFF;
}
#diensten_features a.card.active .arrow {
  background: #FFFFFF;
}
#diensten_features a.card.active .arrow svg path {
  fill: #FF1E56;
}
#diensten_features a.card:hover {
  background: #FF1E56;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
#diensten_features a.card:hover h3 {
  color: #FFFFFF;
}
#diensten_features a.card:hover p {
  color: #FFFFFF;
}
#diensten_features a.card:hover .icon svg path {
  fill: #FFFFFF;
}
#diensten_features a.card:hover .arrow {
  background: #FFFFFF;
}
#diensten_features a.card:hover .arrow svg path {
  fill: #FF1E56;
}
#diensten_features .card {
  transition: all 0.2s ease;
}
#diensten_features .card h3 {
  transition: all 0.2s ease;
}
#diensten_features .card p {
  transition: all 0.2s ease;
}
#diensten_features .card .icon {
  height: 45px !important;
  width: auto !important;
}
#diensten_features .card .icon svg {
  height: 45px !important;
  width: auto !important;
}
#diensten_features .card .icon svg path {
  transition: all 0.2s ease;
  fill: #FF1E56;
}
#diensten_features .card .arrow {
  transition: all 0.2s ease;
}
#diensten_features .card .arrow svg path {
  transition: all 0.2s ease;
}
#diensten_features .card.active {
  background: #FF1E56;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
#diensten_features .card.active h3 {
  color: #FFFFFF;
}
#diensten_features .card.active p {
  color: #FFFFFF;
}
#diensten_features .card.active .icon svg path {
  fill: #FFFFFF;
}
#diensten_features .card.active .arrow {
  background: #FFFFFF;
}
#diensten_features .card.active .arrow svg path {
  fill: #FF1E56;
}

#dienst_tekst-foto-links .img-wrapper,
#dienst_tekst-foto-rechts .img-wrapper {
  width: 100%;
  height: 600px;
  border-radius: 4px;
}
#dienst_tekst-foto-links .img-wrapper img,
#dienst_tekst-foto-rechts .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#dienst_tekst-foto-links .web-browser__btn a,
#dienst_tekst-foto-rechts .web-browser__btn a {
  box-shadow: 5px 6px 0 #FF1E56;
  transition: all 0.3s ease;
}
#dienst_tekst-foto-links .web-browser__btn a svg path,
#dienst_tekst-foto-rechts .web-browser__btn a svg path {
  transition: all 0.3s ease;
}
#dienst_tekst-foto-links .web-browser__btn a:hover,
#dienst_tekst-foto-rechts .web-browser__btn a:hover {
  background-color: #FF1E56;
  color: #FFFFFF;
  box-shadow: 0 0 0 #BA1B43;
}
#dienst_tekst-foto-links .web-browser__btn a:hover svg path,
#dienst_tekst-foto-rechts .web-browser__btn a:hover svg path {
  fill: #FFFFFF;
}

#diensten_projecten .card .img-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
}
#diensten_projecten .card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: all 0.3s ease;
}
#diensten_projecten .card:hover img {
  transform: scale(1.1);
}

#diensten_faq .accordion .accordion_item:last-child {
  margin-bottom: 0;
}
#diensten_faq .accordion .accordion_item .accordion_header {
  position: relative;
  cursor: pointer;
}
#diensten_faq .accordion .accordion_item .accordion_header .arrow-accordion {
  transition: all 0.3s ease;
}
#diensten_faq .accordion .accordion_item .accordion_header.active .accordion-icon::before,
#diensten_faq .accordion .accordion_item .accordion_header.active .accordion-icon::after {
  transform: rotate(360deg);
  background-color: #FF1E56;
}
#diensten_faq .accordion .accordion_item .accordion_item_body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
#diensten_faq .accordion .accordion_item .accordion_item_body p {
  font-size: 1.0625rem;
  color: #374151;
}
#diensten_faq .accordion .accordion_item .accordion_item_body ul {
  margin-top: 0.875rem;
}
#diensten_faq .accordion .accordion_item .accordion_item_body ul li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}
#diensten_faq .accordion .accordion_item .accordion-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#diensten_faq .accordion .accordion_item .accordion-icon::before, #diensten_faq .accordion .accordion_item .accordion-icon::after {
  position: absolute;
  content: "";
  right: 0;
  height: 2px;
  width: 20px;
  background-color: #000000;
  transform-origin: center;
  transition: 0.3s ease transform;
}
#diensten_faq .accordion .accordion_item .accordion-icon::before {
  transform: rotate(90deg);
}

#projecten_hero .card:hover img {
  transform: scale(1.1);
}
#projecten_hero .card .img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
#projecten_hero .card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#projecten_hero .card .overlay {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 25%, #111827 100%);
}

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