@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Road+Rage&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Road+Rage&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Road+Rage&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Mono+One&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, p, a {
  margin: 0;
  padding: 0;
}

div, h1, h2, h3, h4, h5, h6, p, a, span, button {
  transition: ease 1s;
}
@media (max-width: 992px) {
  div, h1, h2, h3, h4, h5, h6, p, a, span, button {
    transition: ease 1s;
  }
}
@media (max-width: 786px) {
  div, h1, h2, h3, h4, h5, h6, p, a, span, button {
    transition: ease 1s;
  }
}
@media (max-width: 687px) {
  div, h1, h2, h3, h4, h5, h6, p, a, span, button {
    transition: ease 1s;
  }
}
@media (max-width: 576px) {
  div, h1, h2, h3, h4, h5, h6, p, a, span, button {
    transition: ease 1s;
  }
}
@media (max-width: 499px) {
  div, h1, h2, h3, h4, h5, h6, p, a, span, button {
    transition: ease 1s;
  }
}
@media (max-width: 399px) {
  div, h1, h2, h3, h4, h5, h6, p, a, span, button {
    transition: ease 1s;
  }
}

.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  padding: 14px 32px;
  transition: all 0.5s ease;
  transform: translateY(0);
  border-radius: 50px;
}
.btn:hover {
  transform: translateY(-10px);
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #6C98FE 0%, #3C5B98 100%);
  border-radius: 50px;
  color: #fff;
  width: fit-content;
  border: 1px solid transparent;
  transition: ease 0.5s;
}
.btn-primary:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  transition: ease 0.5s;
}

.btn-primary-outline {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  position: relative;
  border: 2px solid transparent; /* Transparent border to use background */
  border-radius: 50px;
  padding: 14px 32px; /* Adjust as needed */
  background-image: linear-gradient(white, white), linear-gradient(90deg, #6C98FE 0%, #3C5B98 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: ease 0.5s;
}

.btn-primary-outline .gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #6C98FE 0%, #3C5B98 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #6C98FE 0%, #3C5B98 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn-secondary {
  background: linear-gradient(90deg, #013256 0%, #002FBA 100%);
  border-radius: 50px;
  color: #fff;
  width: fit-content;
  border: 1px solid transparent;
}

.btn-secondary-outline {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  position: relative;
  border: 2px solid transparent; /* Transparent border to use background */
  border-radius: 50px;
  padding: 14px 32px; /* Adjust as needed */
  background-image: linear-gradient(#6C98FE, #6C98FE), linear-gradient(90deg, #013256 0%, #002FBA 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn-secondary-outline .gradient-text {
  display: inline-block;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn-white-outline {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
}
.btn-white-outline:hover {
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  border-radius: 50px;
}

#contact-form {
  max-width: 420px;
  background: #fff;
  padding: 40px;
  border-radius: 25px;
}
@media (max-width: 576px) {
  #contact-form {
    padding: 40px 20px;
  }
}
#contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact-form .wpcf7-form p:first-of-type {
  font-size: 26px;
  font-family: "Rubik Mono One", monospace;
  text-align: center;
  color: #6598FE;
  line-height: 1;
}
@media (max-width: 992px) {
  #contact-form .wpcf7-form p:first-of-type {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  #contact-form .wpcf7-form p:first-of-type {
    font-size: 16px;
  }
}
#contact-form .wpcf7-form input, #contact-form .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #6598FE;
  border-radius: 25px;
  padding-left: 20px;
  height: 50px;
  background-color: #FFF4F4;
}
#contact-form .wpcf7-form br {
  display: none;
}
#contact-form .wpcf7-form .wpcf7-submit {
  font-family: "Rubik Mono One", monospace;
  background-color: transparent;
  padding: 0;
  transform: translateY(0);
  transition: ease 0.3s;
}
#contact-form .wpcf7-form .wpcf7-submit:hover {
  cursor: pointer;
  transition: ease 0.3s;
  transform: translateY(-10px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

header {
  width: 100%;
  height: 127px;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  position: relative;
}
@media (max-width: 768px) {
  header {
    padding: 0 32px;
  }
}
header .logo {
  display: block;
  z-index: 20;
}
header .logo img {
  width: 148px;
}
header .mobile-header {
  display: none;
}
header .mobile-header .hamburger {
  cursor: pointer;
}
header .mobile-header .hamburger input {
  display: none;
}
header .mobile-header .hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .mobile-header .hamburger svg .line {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .mobile-header .hamburger svg .line.line-top-bottom {
  stroke-dasharray: 12 63;
}
header .mobile-header .hamburger input:checked + svg {
  transform: rotate(-45deg);
}
header .mobile-header .hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
header .mobile-header .mobile-menu-container {
  position: absolute;
  background: #fff;
  z-index: 99999;
  width: 100%;
  transform: translateY(-150%);
  right: 0;
  padding: 0 64px 64px 64px;
  gap: 16px;
  transition: transform 1s ease-in-out;
}
@media (max-width: 576px) {
  header .mobile-header .mobile-menu-container {
    padding: 0 32px 32px;
  }
}
header .mobile-header .mobile-menu-container.show-menu {
  transform: translateY(20%);
}
header .mobile-header .mobile-menu-container .nav-menu #menu-main-menu {
  gap: 16px;
}
header .mobile-header .mobile-menu-container .nav-menu #menu-main-menu .menu-item {
  text-align: right;
}
header .mobile-header .mobile-menu-container .nav-menu #menu-main-menu .menu-item a {
  font-size: 18px;
  font-weight: 600;
}
header .mobile-header .mobile-menu-container .btn-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
header .desktop-header {
  display: none;
  width: fit-content;
  gap: 30px;
}
header .desktop-header .btn-container {
  gap: 16px;
  display: flex;
}
header .desktop-header .nav-menu {
  width: 100%;
  display: flex;
  align-items: center;
}
header .desktop-header .nav-menu .menu-item {
  list-style: none;
}
header .desktop-header .nav-menu #menu-main-menu-1 {
  gap: 32px;
  display: flex;
  width: 100%;
}
header .desktop-header .nav-menu #menu-main-menu-1 a {
  font-family: "Quicksand";
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

footer {
  background-color: #F1F1F1;
}
@media (max-width: 687px) {
  footer {
    padding: 40px;
  }
}
@media (max-width: 576px) {
  footer {
    padding: 10px;
  }
}
footer .left-container,
footer .right-container {
  width: 40%;
}
@media (max-width: 992px) {
  footer .left-container,
  footer .right-container {
    width: 100%;
  }
}
footer .top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 80px 0;
}
@media (max-width: 992px) {
  footer .top-container {
    flex-direction: column;
    padding: 40px 0;
    gap: 40px;
  }
}
footer .top-container .left-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
footer .top-container .left-container a {
  width: 150px;
}
footer .top-container .left-container .bottom-content .footer-nav .footer-menu {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 576px) {
  footer .top-container .left-container .bottom-content .footer-nav .footer-menu {
    flex-direction: column;
  }
}
footer .top-container .left-container .bottom-content .footer-nav .footer-menu li {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  transform: translateY(0px);
  transition: transform 0.3s ease;
}
footer .top-container .left-container .bottom-content .footer-nav .footer-menu li:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
footer .top-container .right-container {
  display: flex;
  justify-content: right;
}
footer .top-container .right-container #sign-up-form {
  padding: 30px;
  background-color: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
}
footer .top-container .right-container #sign-up-form form {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .top-container .right-container #sign-up-form form .form-text {
  font-size: 21px;
  font-weight: 600;
}
footer .top-container .right-container #sign-up-form form p {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-direction: row;
  width: 100%;
}
footer .top-container .right-container #sign-up-form form input {
  width: 100%;
  border: 1px solid #6598FE;
  border-radius: 25px;
  padding-left: 20px;
  height: 50px;
  background-color: #FFF4F4;
}
footer .top-container .right-container #sign-up-form form br {
  display: none;
}
footer .top-container .right-container #sign-up-form form .wpcf7-submit {
  font-family: "Rubik Mono One", monospace;
  background-color: transparent;
  padding: 0;
  transform: translateY(0);
  transition: ease 0.3s;
  min-width: 100%;
}
footer .top-container .right-container #sign-up-form form .wpcf7-submit:hover {
  cursor: pointer;
  transition: ease 0.3s;
  transform: translateY(-10px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}
footer .bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid #000;
}
@media (max-width: 992px) {
  footer .bottom-container {
    flex-direction: column;
    gap: 40px;
  }
}
footer .bottom-container .left-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
footer .bottom-container .left-container .footer-bottom-nav .footer-bottom-menu {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 576px) {
  footer .bottom-container .left-container .footer-bottom-nav .footer-bottom-menu {
    flex-direction: column;
  }
}
footer .bottom-container .left-container .footer-bottom-nav .footer-bottom-menu li {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  transform: translateY(0px);
  transition: transform 0.3s ease;
}
footer .bottom-container .left-container .footer-bottom-nav .footer-bottom-menu li:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
footer .bottom-container .right-container .copyright {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .bottom-container .right-container .copyright strong {
  transform: translateX(0);
  transition: ease 0.3s;
}
footer .bottom-container .right-container .copyright strong:hover {
  color: #6598FE;
  transform: translateX(10px);
  transition: ease 0.3s;
}
@media (max-width: 786px) {
  footer .bottom-container .right-container .copyright {
    flex-direction: column;
    gap: 10px;
  }
}

.about-us-section {
  padding: 40px;
  background-image: linear-gradient(180deg, rgb(101, 152, 254) 0%, rgba(101, 152, 254, 0.5) 100%);
}
@media (max-width: 992px) {
  .about-us-section {
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  .about-us-section {
    padding: 10px;
  }
}
.about-us-section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-us-section .content {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .about-us-section .content {
    flex-direction: column;
  }
}
.about-us-section .content h3 {
  width: fit-content;
  font-family: "Road Rage";
  font-size: 80px;
  font-weight: 600;
}
.about-us-section .content span {
  width: 100px;
  height: 4px;
  display: block;
  background-color: #000;
}
.about-us-section .content .text-content {
  width: 50%;
}
@media (max-width: 992px) {
  .about-us-section .content .text-content {
    width: 100%;
  }
}
.about-us-section .main-content {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 992px) {
  .about-us-section .main-content {
    flex-direction: column;
  }
}
.about-us-section .main-content .tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}
@media (max-width: 992px) {
  .about-us-section .main-content .tabs {
    width: 100%;
  }
}
.about-us-section .main-content .tabs .tab {
  padding: 40px;
  background-color: #fff;
  border-radius: 25px;
  transition: all 0.5s ease;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.about-us-section .main-content .tabs .tab .tabs-top {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 786px) {
  .about-us-section .main-content .tabs .tab .tabs-top {
    gap: 10px;
  }
}
.about-us-section .main-content .tabs .tab .tabs-top .tabs-heading {
  font-size: 50px;
  font-weight: 600;
  font-family: "roboto";
}
@media (max-width: 786px) {
  .about-us-section .main-content .tabs .tab .tabs-top .tabs-heading {
    font-size: 30px;
  }
}
.about-us-section .main-content .tabs .tab .tabs-top .tabs-waarde {
  font-size: 35px;
  font-weight: 500;
  font-family: "roboto";
  line-height: 1;
}
@media (max-width: 786px) {
  .about-us-section .main-content .tabs .tab .tabs-top .tabs-waarde {
    font-size: 25px;
  }
}
.about-us-section .main-content .tabs .tab .tabs-top svg {
  width: 35px;
  height: auto;
  margin-left: auto;
  cursor: pointer;
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}
@media (max-width: 786px) {
  .about-us-section .main-content .tabs .tab .tabs-top svg {
    max-width: 25px;
    min-width: 25px;
  }
}
.about-us-section .main-content .tabs .tab .tabs-top svg.closed {
  transform: rotate(0);
}
.about-us-section .main-content .tabs .tab .tabs-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.about-us-section .main-content .tabs .tab .tabs-content.open {
  max-height: 500px;
  opacity: 1;
}
.about-us-section .main-content .right-container {
  width: 50%;
  padding: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .about-us-section .main-content .right-container {
    width: 100%;
  }
}
@media (max-width: 687px) {
  .about-us-section .main-content .right-container {
    padding: 10px;
  }
}

.hero-section {
  padding: 30px;
  background: linear-gradient(0deg, #6C98FE 0%, rgba(108, 152, 254, 0.5) 100%);
}
@media (max-width: 768px) {
  .hero-section {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 10px;
  }
}
.hero-section .hero-banner {
  position: relative;
  min-height: 600px;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .hero-section .hero-banner {
    flex-direction: row;
    min-height: 700px;
    justify-content: space-between;
  }
}
.hero-section .hero-banner .left-container,
.hero-section .hero-banner .right-container {
  display: flex;
  position: relative;
  background: transparent;
}
@media (max-width: 992px) {
  .hero-section .hero-banner .left-container,
  .hero-section .hero-banner .right-container {
    width: 100%;
  }
}
.hero-section .hero-banner .left-container {
  padding: 40px;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-bottom-right-radius: 25px;
  overflow: hidden;
  z-index: 10;
}
.hero-section .hero-banner .left-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: right;
  border-bottom-right-radius: 25px;
  z-index: -1;
}
.hero-section .hero-banner .left-container .fill-up {
  width: 100%;
  height: 100%;
  background: transparent;
}
@media (max-width: 576px) {
  .hero-section .hero-banner .left-container {
    padding: 20px;
    display: none;
  }
}
.hero-section .hero-banner .right-container {
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  width: fit-content;
  background-position: left;
}
.hero-section .hero-banner .right-container .fill-up {
  width: 100%;
  height: 100%;
  background: transparent;
  border-bottom-right-radius: 25px;
  z-index: 10;
}
@media (max-width: 576px) {
  .hero-section .hero-banner .right-container .fill-up {
    background: inherit;
    background-position: bottom;
  }
}
.hero-section .hero-banner .right-container .fill-up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 51%;
  background-image: inherit;
  background-size: cover;
  background-position: top left;
  border-bottom-right-radius: 25px;
  z-index: -1;
}
@media (max-width: 576px) {
  .hero-section .hero-banner .right-container .fill-up::before {
    background-position: bottom;
  }
}
.hero-section .hero-banner .right-container .text-container {
  position: relative;
  z-index: 1;
  width: 461px;
  height: fit-content;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  border-radius: 25px;
  clip-path: polygon(186px 0px, 87.21% 0.27%, 100% -32px, 100% 100%, -5% 100%, 0% 85%, 0.43% 0px);
  background: linear-gradient(180deg, #89ADFE 0%, rgb(108, 152, 254) 100%);
}
.hero-section .hero-banner .right-container .text-container:before {
  content: "";
  position: absolute;
  display: block;
  width: 600px;
  height: 500px;
  clip-path: polygon(186px 6px, 87.21% 0.27%, 100% -32px, 100% 100%, -5% 100%, 0% 85%, 0% 124px);
  background: linear-gradient(180deg, #89ADFE 0%, rgb(108, 152, 254) 100%);
  z-index: -1;
  top: -60px;
  left: -60px;
}
@media (max-width: 576px) {
  .hero-section .hero-banner .right-container .text-container:before {
    display: none;
  }
}
@media (max-width: 499px) {
  .hero-section .hero-banner .right-container .text-container {
    border-radius: 25px;
    clip-path: none;
  }
}
.hero-section .hero-banner .right-container .text-container h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}
.hero-section .hero-banner .right-container .text-container p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.hero-section .hero-banner .right-container .text-container .btn-container {
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .hero-section .hero-banner .right-container .text-container .btn-container {
    flex-direction: column;
  }
}

.over-mij-hero {
  display: block;
  padding: 40px;
  gap: 40px;
  height: auto;
  display: flex;
  flex-direction: row;
}
@media (max-width: 992px) {
  .over-mij-hero {
    flex-direction: column;
    display: flex;
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .over-mij-hero {
    padding: 10px;
  }
}
.over-mij-hero .left-container,
.over-mij-hero .right-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .over-mij-hero .left-container,
  .over-mij-hero .right-container {
    width: 100%;
  }
}
.over-mij-hero .left-container img {
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .over-mij-hero .left-container img {
    max-height: 450px;
  }
}
.over-mij-hero .right-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.over-mij-hero .right-container .text-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.over-mij-hero .right-container .text-container .top-text {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.over-mij-hero .right-container .text-container .over-mij-heading {
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.over-mij-hero .right-container .text-container .over-mij-content {
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.over-mij-hero .right-container .btn-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 992px) {
  .over-mij-hero .right-container .btn-container {
    flex-direction: column;
  }
}
.over-mij-hero .right-container .btn-container .btn {
  border-radius: 25px;
}

.projects-slider {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .projects-slider {
    padding: 30px;
  }
}
.projects-slider .heading {
  text-align: center;
  font-size: 88px;
  font-weight: bold;
  font-family: "Road Rage";
  position: relative;
}
@media (max-width: 992px) {
  .projects-slider .heading {
    font-size: 48px;
  }
}
.projects-slider .heading:before {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #000;
  display: block;
  position: absolute;
  top: 50%;
  left: 20%;
}
@media (max-width: 768px) {
  .projects-slider .heading:before {
    left: 0;
    width: 80px;
  }
}
@media (max-width: 378px) {
  .projects-slider .heading:before {
    right: 0;
    width: 50px;
  }
}
.projects-slider .heading:after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #000;
  display: block;
  position: absolute;
  top: 50%;
  right: 20%;
}
@media (max-width: 768px) {
  .projects-slider .heading:after {
    right: 0;
    width: 80px;
  }
}
@media (max-width: 378px) {
  .projects-slider .heading:after {
    right: 0;
    width: 50px;
  }
}
.projects-slider .slider-wrap {
  position: relative;
}
.projects-slider .slider-wrap .slider-container {
  display: flex;
  flex-direction: row;
  padding-left: 100px;
}
@media (max-width: 768px) {
  .projects-slider .slider-wrap .slider-container {
    padding-left: 0;
  }
}
.projects-slider .slider-wrap .slider-container .slide {
  max-height: 560px;
  min-width: 360px;
  width: 100%;
  height: 100vh;
  border-radius: 25px;
  display: flex;
  justify-content: right;
  align-items: end;
  position: relative;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .projects-slider .slider-wrap .slider-container .slide {
    max-height: 428px;
    min-width: 280px;
  }
}
.projects-slider .slider-wrap .slider-container .slide .rect-1 {
  position: absolute;
  right: 0;
  top: 60%;
}
@media (max-width: 768px) {
  .projects-slider .slider-wrap .slider-container .slide .rect-1 {
    top: 48.1%;
  }
}
.projects-slider .slider-wrap .slider-container .slide .text-container {
  width: 80%;
  height: 200px;
  background: #fff;
  border-top-left-radius: 25px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.projects-slider .slider-wrap .slider-container .slide .text-container .text-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.projects-slider .slider-wrap .slider-container .slide .text-container .text-content .title {
  font-size: 18px;
  font-weight: 600;
}
.projects-slider .slider-wrap .slider-container .slide .text-container .btn {
  border-radius: 50px;
  color: #6598FE;
}
.projects-slider .slider-wrap .swiper-btn-nxt,
.projects-slider .slider-wrap .swiper-btn-prv {
  position: absolute;
  bottom: 50%;
  width: 70px;
  height: 70px;
  background: #6598FE;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .projects-slider .slider-wrap .swiper-btn-nxt,
  .projects-slider .slider-wrap .swiper-btn-prv {
    width: 50px;
    height: 50px;
  }
}
.projects-slider .slider-wrap .swiper-btn-nxt {
  right: 5%;
}
.projects-slider .slider-wrap .swiper-btn-nxt:before {
  content: "→"; /* Right arrow */
  font-size: 24px; /* Adjust the size as needed */
  color: #fff; /* Set color to match design */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.projects-slider .slider-wrap .swiper-btn-prv {
  left: 5%;
}
.projects-slider .slider-wrap .swiper-btn-prv:before {
  content: "←"; /* Left arrow */
  font-size: 24px; /* Adjust the size as needed */
  color: #fff; /* Set color to match design */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-slider {
  display: flex;
  flex-direction: row;
}

section.diensten-section {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 992px) {
  section.diensten-section {
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  section.diensten-section {
    padding: 10px;
  }
}
section.diensten-section.mx-auto {
  margin: 0 auto;
}
section.diensten-section .top-content {
  display: flex;
  gap: 30px;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  section.diensten-section .top-content {
    flex-direction: column;
  }
}
section.diensten-section .top-content h4 {
  width: fit-content;
  font-family: "Road Rage";
  font-size: 80px;
  font-weight: 600;
}
section.diensten-section .top-content span {
  width: 100px;
  height: 4px;
  display: block;
  background-color: #000;
}
@media (max-width: 992px) {
  section.diensten-section .top-content span {
    margin: 0 auto;
  }
}
section.diensten-section .top-content .content {
  width: 50%;
}
@media (max-width: 992px) {
  section.diensten-section .top-content .content {
    width: 100%;
  }
}
section.diensten-section .diensten {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  section.diensten-section .diensten {
    flex-direction: column;
  }
}
section.diensten-section .diensten .dienst {
  width: 48%;
  background-color: #fff;
  border-radius: 25px;
  transition: all 0.5s ease;
  gap: 10px;
  display: flex;
  flex-direction: row;
  background: linear-gradient(180deg, rgb(101, 152, 254) 0%, rgba(101, 152, 254, 0.5) 100%);
}
@media (max-width: 992px) {
  section.diensten-section .diensten .dienst {
    width: 100%;
  }
}
@media (max-width: 687px) {
  section.diensten-section .diensten .dienst {
    flex-direction: column;
    max-height: fit-content;
  }
}
section.diensten-section .diensten .dienst .dienst-text {
  width: 50%;
  padding: 40px;
  gap: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 687px) {
  section.diensten-section .diensten .dienst .dienst-text {
    width: 100%;
  }
}
section.diensten-section .diensten .dienst .dienst-text .dienst-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.diensten-section .diensten .dienst .dienst-text .dienst-content .diensten-top {
  display: flex;
  gap: 20px;
  align-items: start;
  flex-direction: column;
}
@media (max-width: 786px) {
  section.diensten-section .diensten .dienst .dienst-text .dienst-content .diensten-top {
    gap: 10px;
  }
}
section.diensten-section .diensten .dienst .dienst-text .dienst-content .diensten-top .diensten-heading {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  font-family: "roboto";
}
section.diensten-section .diensten .dienst .dienst-text .dienst-content .diensten-top .diensten-waarde {
  font-size: 21px;
  font-weight: 500;
  font-family: "roboto";
  line-height: 1;
}
section.diensten-section .diensten .dienst .dienst-text .diensten-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
section.diensten-section .diensten .dienst .dienst-text .diensten-content.open {
  max-height: 500px;
  opacity: 1;
}
section.diensten-section .diensten .dienst .dienst-text svg {
  min-width: 35px;
  max-width: 35px;
  height: auto;
  cursor: pointer;
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}
@media (max-width: 786px) {
  section.diensten-section .diensten .dienst .dienst-text svg {
    max-width: 25px;
    min-width: 25px;
  }
}
section.diensten-section .diensten .dienst .dienst-text svg.closed {
  transform: rotate(0);
  transition: all ease 0.3s;
}
section.diensten-section .diensten .dienst img {
  width: 50%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  object-fit: cover;
}
@media (max-width: 678px) {
  section.diensten-section .diensten .dienst img {
    height: 330px;
    width: 100%;
  }
}

section.pva-section {
  padding: 40px;
  background-image: linear-gradient(270deg, #6598fe 0%, #0056ff 100%);
}
@media (max-width: 992px) {
  section.pva-section {
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  section.pva-section {
    padding: 10px;
  }
}
section.pva-section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative; /* Ensures proper layout for child elements */
}
@media (max-width: 992px) {
  section.pva-section .container {
    max-width: unset;
  }
}
section.pva-section .main-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  section.pva-section .main-content {
    flex-direction: column;
    gap: 20px;
  }
}
section.pva-section .main-content h4 {
  font-family: "Road Rage";
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  color: #fff;
  align-items: center;
}
section.pva-section .main-content span {
  width: 100px;
  height: 4px;
  background-color: #000;
  display: block;
}
section.pva-section .main-content .content {
  color: #fff;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  section.pva-section .main-content .content {
    width: 100%;
  }
}
section.pva-section .main-content .content .btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 992px) {
  section.pva-section .main-content .content .btn-container {
    flex-direction: column;
    gap: 10px;
  }
}
section.pva-section .main-content .content .btn-container .btn {
  white-space: nowrap;
}
section.pva-section .main-content .content .btn-container .btn-primary-outline {
  color: #fff;
  background-image: linear-gradient(#5b91fe, #5c92fe), linear-gradient(90deg, #013256 0%, #002fba 100%);
}
@media (max-width: 992px) {
  section.pva-section .main-content .content .btn-container .btn-primary-outline {
    background-image: linear-gradient(#1664ff, #1363ff), linear-gradient(90deg, #013256 0%, #002fba 100%);
  }
}
section.pva-section .pva {
  background: linear-gradient(180deg, rgba(101, 152, 254, 0.5) 0%, rgb(101, 152, 254) 100%);
  padding: 20px;
  border-radius: 15px;
}
@media (max-width: 786px) {
  section.pva-section .pva {
    display: flex;
    gap: 20px;
    flex-direction: row;
  }
}
section.pva-section .pva .timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 786px) {
  section.pva-section .pva .timeline {
    width: 50%;
  }
}
section.pva-section .pva .timeline .timeline-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 786px) {
  section.pva-section .pva .timeline .timeline-container {
    gap: 150px;
  }
}
@media (max-width: 468px) {
  section.pva-section .pva .timeline .timeline-container {
    min-height: 1100px;
  }
}
section.pva-section .pva .timeline .timeline-container::-webkit-scrollbar {
  display: none;
}
section.pva-section .pva .timeline .timeline-container .timeline-bar {
  border-radius: 25px;
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  height: 4px;
  background: #fff;
  z-index: 0;
  transform: translateY(-50%);
}
@media (max-width: 786px) {
  section.pva-section .pva .timeline .timeline-container .timeline-bar {
    top: 50%;
    left: 97%;
    height: 97%;
    width: 3px;
  }
}
@media (max-width: 560px) {
  section.pva-section .pva .timeline .timeline-container .timeline-bar {
    left: 95%;
    height: 97%;
    width: 3px;
  }
}
section.pva-section .pva .timeline .timeline-container .timeline-step {
  position: relative;
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
section.pva-section .pva .timeline .timeline-container .timeline-step:hover {
  cursor: pointer;
}
@media (max-width: 786px) {
  section.pva-section .pva .timeline .timeline-container .timeline-step {
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
  }
}
section.pva-section .pva .timeline .timeline-container .timeline-step .step-dot {
  width: 15px;
  height: 15px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 50%;
  margin-bottom: 8px;
}
section.pva-section .pva .timeline .timeline-container .timeline-step .step-title {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
section.pva-section .pva .timeline .timeline-container .timeline-step.active .step-dot {
  background: #000;
}
section.pva-section .pva .pva-content {
  display: flex;
  flex-wrap: nowrap; /* Allow wrapping of planning items */
  gap: 20px;
}
@media (max-width: 786px) {
  section.pva-section .pva .pva-content {
    width: 50%;
    flex-wrap: wrap;
  }
}
section.pva-section .pva .pva-content .planning-item {
  width: 100%; /* Three items per row */
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block; /* Hide all by default */
  opacity: 0;
  border-top-left-radius: 0;
}
section.pva-section .pva .pva-content .planning-item.active {
  opacity: 1;
  display: block; /* Show active item */
}
section.pva-section .pva .pva-content .planning-item:hover {
  cursor: pointer;
}
section.pva-section .pva .pva-content .planning-item .planning-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
section.pva-section .pva .pva-content .planning-item .planning-content {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 786px) {
  section.pva-section .timeline {
    flex-direction: column;
    align-items: flex-start;
  }
  section.pva-section .timeline .timeline-container {
    flex-direction: column;
  }
  section.pva-section .timeline .timeline-container .timeline-step {
    flex-direction: row-reverse;
  }
  section.pva-section .pva-content {
    flex-direction: column;
  }
  section.pva-section .pva-content .planning-item {
    width: 100%; /* Full-width items on small screens */
  }
}

.cta-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 40px 0;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cta-container {
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cta-container {
    padding: 10px;
  }
}
.cta-container .left-container,
.cta-container .right-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cta-container .left-container,
  .cta-container .right-container {
    width: 100%;
  }
}
.cta-container .left-container {
  min-height: 510px;
  gap: 40px;
  position: relative;
}
.cta-container .left-container .cta-heading {
  color: #0056FF;
  font-family: "Road Rage";
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 70%; /* 89.6px */
  position: relative;
}
@media (max-width: 476px) {
  .cta-container .left-container .cta-heading {
    font-size: 100px;
  }
}
.cta-container .left-container .cta-heading h4 {
  white-space: wrap;
  width: 80%;
}
.cta-container .left-container .cta-heading img {
  position: absolute;
  left: 70%;
  bottom: 30%;
}
@media (max-width: 992px) {
  .cta-container .left-container .cta-heading img {
    left: 65%;
    bottom: 50%;
  }
}
@media (max-width: 476px) {
  .cta-container .left-container .cta-heading img {
    width: 40%;
    left: 72%;
    bottom: 40%;
  }
}
.cta-container .left-container .cta-content {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
.cta-container .right-container {
  border: 2px solid #000;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.about-us-projecten {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media (max-width: 576px) {
  .about-us-projecten {
    padding: 10px;
  }
}
.about-us-projecten h2 {
  color: #000;
  font-family: "Road Rage";
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 128px */
  text-align: center;
  position: relative;
}
.about-us-projecten h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 4px;
  background-color: #000;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .about-us-projecten h2:before {
    display: none;
  }
}
.about-us-projecten h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 4px;
  background-color: #000;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .about-us-projecten h2:after {
    display: none;
  }
}
.about-us-projecten .projects-container {
  display: flex;
  flex-wrap: nowrap; /* Allow items to wrap */
  gap: 20px; /* Spacing between items */
}
@media (max-width: 992px) {
  .about-us-projecten .projects-container {
    flex-direction: column;
  }
}
.about-us-projecten .projects-container .left-projects,
.about-us-projecten .projects-container .right-projects {
  width: 50%; /* Two equal-width containers */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Single column for top item */
  grid-template-rows: auto auto; /* Adjust rows based on content */
  gap: 20px;
  /* Top project should span full width */
  /* Bottom projects side by side */
}
@media (max-width: 992px) {
  .about-us-projecten .projects-container .left-projects,
  .about-us-projecten .projects-container .right-projects {
    width: 100%; /* Full-width for smaller screens */
    grid-template-columns: 1fr; /* Single column layout */
  }
}
.about-us-projecten .projects-container .left-projects #project-1,
.about-us-projecten .projects-container .left-projects #project-4,
.about-us-projecten .projects-container .right-projects #project-1,
.about-us-projecten .projects-container .right-projects #project-4 {
  grid-column: 1/-1; /* Full width */
  height: 450px; /* Adjust height if needed */
}
.about-us-projecten .projects-container .left-projects #project-2,
.about-us-projecten .projects-container .left-projects #project-3,
.about-us-projecten .projects-container .left-projects #project-5,
.about-us-projecten .projects-container .left-projects #project-6,
.about-us-projecten .projects-container .right-projects #project-2,
.about-us-projecten .projects-container .right-projects #project-3,
.about-us-projecten .projects-container .right-projects #project-5,
.about-us-projecten .projects-container .right-projects #project-6 {
  grid-column: span 1; /* Half width */
  height: 450px; /* Adjust height for smaller items */
}
.about-us-projecten .projects-container .left-projects #project-2 .rect-1,
.about-us-projecten .projects-container .left-projects #project-3 .rect-1,
.about-us-projecten .projects-container .left-projects #project-5 .rect-1,
.about-us-projecten .projects-container .left-projects #project-6 .rect-1,
.about-us-projecten .projects-container .right-projects #project-2 .rect-1,
.about-us-projecten .projects-container .right-projects #project-3 .rect-1,
.about-us-projecten .projects-container .right-projects #project-5 .rect-1,
.about-us-projecten .projects-container .right-projects #project-6 .rect-1 {
  position: absolute;
  left: auto; /* Adjust based on design */
  top: 56%;
}
@media (max-width: 992px) {
  .about-us-projecten .projects-container .left-projects #project-2 .rect-1,
  .about-us-projecten .projects-container .left-projects #project-3 .rect-1,
  .about-us-projecten .projects-container .left-projects #project-5 .rect-1,
  .about-us-projecten .projects-container .left-projects #project-6 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-2 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-3 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-5 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-6 .rect-1 {
    top: 61%;
  }
}
@media (max-width: 376px) {
  .about-us-projecten .projects-container .left-projects #project-2 .rect-1,
  .about-us-projecten .projects-container .left-projects #project-3 .rect-1,
  .about-us-projecten .projects-container .left-projects #project-5 .rect-1,
  .about-us-projecten .projects-container .left-projects #project-6 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-2 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-3 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-5 .rect-1,
  .about-us-projecten .projects-container .right-projects #project-6 .rect-1 {
    top: 56%;
  }
}
.about-us-projecten .projects-container .left-projects .project,
.about-us-projecten .projects-container .right-projects .project {
  border-radius: 25px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about-us-projecten .projects-container .left-projects .project .text-container,
.about-us-projecten .projects-container .right-projects .project .text-container {
  width: 50%;
  padding: 20px;
  background: #fff;
  border-top-left-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 576px) {
  .about-us-projecten .projects-container .left-projects .project .text-container,
  .about-us-projecten .projects-container .right-projects .project .text-container {
    width: 70%;
  }
}
.about-us-projecten .projects-container .left-projects .project .text-container .text-content .title,
.about-us-projecten .projects-container .right-projects .project .text-container .text-content .title {
  font-family: "Road Rage";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  color: #000;
}
.about-us-projecten .projects-container .left-projects .project .rect-1,
.about-us-projecten .projects-container .right-projects .project .rect-1 {
  position: absolute;
  left: auto; /* Adjust based on design */
  top: 61%;
}
@media (max-width: 992px) {
  .about-us-projecten .projects-container .left-projects .project .rect-1,
  .about-us-projecten .projects-container .right-projects .project .rect-1 {
    top: 61%;
  }
}
@media (max-width: 376px) {
  .about-us-projecten .projects-container .left-projects .project .rect-1,
  .about-us-projecten .projects-container .right-projects .project .rect-1 {
    top: 56%;
  }
}

.projects-project {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 576px) {
  .projects-project {
    padding: 10px;
  }
}
.projects-project h2 {
  color: #000;
  font-family: "Road Rage";
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 128px */
  text-align: center;
  position: relative;
}
@media (max-width: 576px) {
  .projects-project h2 {
    font-size: 90px;
  }
}
.projects-project h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 4px;
  background-color: #000;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .projects-project h2:before {
    display: none;
  }
}
.projects-project h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 4px;
  background-color: #000;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .projects-project h2:after {
    display: none;
  }
}
.projects-project .projects-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .projects-project .projects-container {
    grid-template-columns: 1fr;
  }
}
.projects-project .projects-container .project {
  max-height: 500px;
  height: 100vh;
  border-radius: 25px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.projects-project .projects-container .project .text-container {
  width: 50%;
  padding: 20px;
  background: #fff;
  border-top-left-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 992px) {
  .projects-project .projects-container .project .text-container {
    min-height: 180px;
  }
}
@media (max-width: 576px) {
  .projects-project .projects-container .project .text-container {
    width: 70%;
    min-height: 180px;
  }
}
.projects-project .projects-container .project .text-container .text-content .title {
  font-family: "Road Rage";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  color: #000;
}
.projects-project .projects-container .project .rect-1 {
  position: absolute;
  left: auto; /* Adjust based on design */
  top: 65%;
}
@media (max-width: 992px) {
  .projects-project .projects-container .project .rect-1 {
    top: 60%;
  }
}
@media (max-width: 376px) {
  .projects-project .projects-container .project .rect-1 {
    top: 60%;
  }
}

.diensten-hero {
  padding: 112px 64px;
  background-image: linear-gradient(90deg, #6598FE 0%, #00329F 100%);
}
@media (max-width: 992px) {
  .diensten-hero {
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .diensten-hero {
    padding: 40px 10px;
  }
}
.diensten-hero .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 992px) {
  .diensten-hero .container {
    gap: 40px;
  }
}
.diensten-hero .container .top-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 70%;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 992px) {
  .diensten-hero .container .top-content {
    width: 100%;
  }
}
.diensten-hero .container .top-content p, .diensten-hero .container .top-content h1 {
  color: #fff;
  width: fit-content;
  text-align: center;
}
.diensten-hero .container .top-content .diensten-small {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
}
.diensten-hero .container .top-content .diensten-heading {
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
}
.diensten-hero .container .top-content .diensten-desc {
  /* Text/Medium/Normal */
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.diensten-hero .container .diensten-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.diensten-hero .container .diensten-tabs .dienst-tab {
  width: 30%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  border-radius: 25px;
  transform: translateY(0) rotate(0);
  transition: transform ease-in 0.3s, background-color ease-in 0.3s, color ease-in 0.3s;
}
@media (max-width: 992px) {
  .diensten-hero .container .diensten-tabs .dienst-tab {
    width: 50%;
  }
}
@media (max-width: 786px) {
  .diensten-hero .container .diensten-tabs .dienst-tab {
    width: 80%;
  }
}
.diensten-hero .container .diensten-tabs .dienst-tab:hover {
  background-color: #003EBB;
  color: #fff;
  transform: translateY(-30px) rotate(2deg);
}
.diensten-hero .container .diensten-tabs .dienst-tab:hover picture svg {
  fill: #fff;
}
.diensten-hero .container .diensten-tabs .dienst-tab:hover picture svg #path-2 {
  fill: #AAC5FF;
}
.diensten-hero .container .diensten-tabs .dienst-tab picture {
  width: fit-content;
}
.diensten-hero .container .diensten-tabs .dienst-tab picture img {
  width: 100px;
}
.diensten-hero .container .diensten-tabs .dienst-tab picture svg {
  width: 100px;
  height: 100px;
  fill: #000;
}
.diensten-hero .container .diensten-tabs .dienst-tab .diensten-title {
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
}
.diensten-hero .container .diensten-tabs .dienst-tab .diensten-content {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.diensten-hero .container .btn-container {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 787px) {
  .diensten-hero .container .btn-container {
    flex-direction: column;
  }
}
.diensten-hero .container .btn-container .btn {
  color: #fff;
}
.diensten-hero .container .btn-container .btn:hover {
  color: #000;
}

section.diensten-column-section {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 576px) {
  section.diensten-column-section {
    padding: 40px 0;
  }
}
section.diensten-column-section .diensten-columns {
  border-radius: 25px;
  width: 100%;
  min-height: 400px;
  height: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 200px 100px;
}
@media (max-width: 992px) {
  section.diensten-column-section .diensten-columns {
    padding: 40px;
    justify-content: center;
  }
}
@media (max-width: 678px) {
  section.diensten-column-section .diensten-columns {
    padding: 40px 5px;
    border-radius: 0;
    justify-content: center;
  }
}
section.diensten-column-section .diensten-columns#dienst-col-1 {
  justify-content: right;
}
section.diensten-column-section .diensten-columns#dienst-col-2 {
  justify-content: left;
}
section.diensten-column-section .diensten-columns#dienst-col-3 {
  justify-content: right;
}
section.diensten-column-section .diensten-columns#dienst-col-4 {
  justify-content: left;
}
section.diensten-column-section .diensten-columns .text-container {
  border-radius: 25px;
  padding: 40px;
  background: #fff;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 992px) {
  section.diensten-column-section .diensten-columns .text-container {
    width: 80%;
  }
}
section.diensten-column-section .diensten-columns .text-container .heading {
  color: #000;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
}
section.diensten-column-section .diensten-columns .text-container .content {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
}
section.diensten-column-section .diensten-columns .text-container .btn-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
section.diensten-column-section .diensten-columns .text-container .btn-container .btn {
  border-radius: 25px;
  width: fit-content;
}
@media (max-width: 992px) {
  section.diensten-column-section .diensten-columns .text-container .btn-container {
    flex-direction: column;
  }
}

.single-hero {
  display: flex;
  justify-content: left;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5rem 3rem;
}
.single-hero .text-container {
  width: 50%;
  padding: 40px;
  background: linear-gradient(90deg, #6C98FE 0%, #3C5B98 100%);
  border-radius: 40px;
  box-shadow: 0px 10px 10px rgba(255, 255, 255, 0.4);
}
@media (max-width: 687px) {
  .single-hero .text-container {
    width: 100%;
  }
}
.single-hero .text-container h1 {
  color: #fff;
  font-family: "Road Rage";
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 128px */
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 786px) {
  .single-hero .text-container h1 {
    font-size: 70px;
  }
}
.single-hero .text-container p {
  color: #fff;
  font-family: "Quicksand";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 28px */
  text-align: center;
}
@media (max-width: 786px) {
  .single-hero .text-container p {
    font-size: 16px;
  }
}

.contact #contact-form-page {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 40%;
  padding: 40px;
}
.contact #contact-form-page h1 {
  font-size: 26px;
  font-family: "Rubik Mono One", monospace;
  text-align: center;
  color: #6598FE;
  line-height: 1;
}
.contact #contact-form-page .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact #contact-form-page .wpcf7-form p:first-of-type {
  font-size: unset;
  font-family: unset;
  text-align: unset;
  color: unset;
  line-height: unset;
}
.contact #contact-form-page .wpcf7-form .wpcf7-textarea {
  width: 100%;
  border: 1px solid #6598FE;
  border-radius: 25px;
  padding: 20px;
  height: 50px;
  background-color: #FFF4F4;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999999;
}
@media (max-width: 992px) {
  .whatsapp {
    right: 30px;
    bottom: 40px;
  }
}
.whatsapp .Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}
.whatsapp .Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}
.whatsapp .Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}
.whatsapp .Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}
.whatsapp .Btn:active {
  transform: translate(2px, 2px);
}
.whatsapp .sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp .sign svg {
  width: 25px;
}
.whatsapp .sign svg path {
  fill: white;
}
.whatsapp .text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

/*# sourceMappingURL=style-watch.css.map */
