@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/*/ VARIABLES /*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
}

.container {
  max-width: 1440px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.theme-button {
  padding: 12px 40px;
  display: inline-block;
  transition: 0.2s ease-in;
  border-radius: 20px;
}
.theme-button__orange {
  background-color: #FF3D00;
  color: #fff;
}
.theme-button__orange:hover {
  background-color: #DFDCCC;
  color: #000;
}

.burger-trigger {
  position: relative;
  height: 16px;
  width: 16px;
  z-index: 15;
  margin-right: 12px;
  display: block;
  cursor: pointer;
  display: none;
}
.burger-trigger::before {
  content: "";
  background-color: #DFDCCC;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
}
.burger-trigger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition-duration: 0.3s;
}
.burger-trigger span:first-child {
  top: 0px;
}
.burger-trigger span.center {
  top: calc(50% - 1px);
}
.burger-trigger span:last-child {
  bottom: 0px;
}
.burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 6.5px;
}
.burger-trigger.burger-active span.center {
  opacity: 0;
}
.burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 6.5px;
}

.theme-wrapper {
  padding: 75px 0;
}

.theme-header {
  padding: 32px 0;
}
.theme-header-logo {
  max-width: 275px;
}
.theme-header-wrapper {
  margin-top: 8px;
}
.theme-header-wrapper ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
.theme-header-wrapper ul li {
  position: relative;
}
.theme-header-wrapper ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
  z-index: 200;
}
.theme-header-wrapper ul li.current-menu-item::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #FF3D00;
  border-radius: 999px;
  width: 8px;
  height: 8px;
}
.theme-header-wrapper ul li a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
.theme-header-wrapper ul li a:hover {
  color: #FF3D00;
}
.theme-header-wrapper ul li .sub-menu {
  position: absolute;
  top: 32px;
  left: 0;
  display: flex;
  flex-direction: column;
  background-color: #F8F7F3;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 16px 0;
  font-weight: 500;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 100px);
  transition: 0.2s ease-in;
}
.theme-header-wrapper ul li .sub-menu li {
  padding: 16px 40px;
}
.theme-header-wrapper ul li .sub-menu li:hover {
  background-color: #FFFFFF;
  font-weight: 700;
}
.theme-header-wrapper ul li .sub-menu li::after {
  left: 16px;
}
.theme-header-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.theme-banner {
  padding: 50px 0;
}
.theme-banner-title {
  font-size: 54px;
}

.theme-hero {
  padding: 0;
  min-height: 350px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.theme-hero__custom-container {
  max-width: 1440px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.theme-hero-menu {
  background-color: #283D3B;
  width: 250px;
  position: relative;
  padding: 50px 0;
}
.theme-hero-menu::after {
  content: "";
  background-color: #283D3B;
  width: 100px;
  height: 100%;
  position: absolute;
  left: -100px;
  top: 0;
}
.theme-hero-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.theme-hero-menu ul li {
  padding: 32px 0;
}
.theme-hero-menu ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  font-weight: 500;
}
.theme-hero-menu ul li a:hover {
  color: #FF3D00;
}
.theme-hero-label-bottom {
  position: absolute;
  right: calc((100% - 1400px) / 2);
  bottom: -32px;
  background-color: #283D3B;
  color: #fff;
  padding: 24px 38px 24px 70px;
  border-radius: 999px;
}
.theme-hero-label-bottom::after {
  content: "";
  background-color: #FF3D00;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 45px;
}
.theme-hero-label-center {
  position: absolute;
  background-color: #fff;
  color: #283D3B;
  padding: 16px 38px 16px 70px;
  border-radius: 999px;
  font-weight: 700;
}
.theme-hero-label-center::after {
  content: "";
  background-color: #FF3D00;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 45px;
}

.theme-stappen-title {
  font-size: 36px;
}
.theme-stappen-content {
  margin-bottom: 40px;
}
.theme-stappen .col-12:not(:last-child) .theme-stappen-card {
  border-right: 1px solid #D5D5D5;
  padding-right: 24px;
}
.theme-stappen-card-title {
  font-size: 24px;
}
.theme-stappen-card-title span {
  color: #FF3D00;
  font-size: 36px;
  margin-right: 8px;
}

.theme-logos-content {
  margin-bottom: 48px;
}
.theme-logos-content-subtitle {
  font-size: 28px;
  color: #FF3D00;
  margin-left: 16px;
  position: relative;
}
.theme-logos-content-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #FF3D00;
  border-radius: 999px;
}
.theme-logos-content-title {
  font-size: 36px;
}
.theme-logos-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.theme-logos-wrapper-image {
  width: 20%;
  padding: 0 16px;
}

.theme-services-slider {
  background-color: #F8F8F8;
}
.theme-services-slider-title {
  text-align: center;
}
.theme-services-slider-content {
  text-align: center;
  margin-bottom: 24px;
}
.theme-services-slider-container-slider-slide {
  position: relative;
  background-color: #283D3B;
  color: #fff;
  font-weight: 700;
  margin: 12px 8px;
  padding: 16px 38px 16px 70px;
  border-radius: 999px;
}
.theme-services-slider-container-slider-slide::after {
  content: "";
  border: 2px solid #FF3D00;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 45px;
}

.theme-four-images {
  padding-top: 48px;
  padding-bottom: 0;
  background-color: #F8F8F8;
}
.theme-four-images-image {
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.theme-four-images-image.image-1 {
  height: 375px;
}
.theme-four-images-image.image-2 {
  height: 310px;
}
.theme-four-images-image.image-3 {
  height: 440px;
}
.theme-four-images-image.image-4 {
  height: 360px;
}
.theme-four-images-image img {
  height: 100%;
}

.theme-about-martin-image {
  height: 575px;
  border-radius: 8px;
  overflow: hidden;
}
.theme-about-martin-image img {
  height: 100%;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}
.theme-about-martin-logo {
  margin-top: 24px;
  width: 200px;
}
.theme-about-martin-contact {
  margin-top: 24px;
  margin-left: 40px;
}
.theme-about-martin-contact a {
  display: block;
  color: #000;
  margin: 8px 0;
}
.theme-about-martin-contact a:hover {
  color: #FF3D00;
}
.theme-about-martin-contact a i {
  font-size: 24px;
  color: #FF3D00;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  text-align: center;
}
.theme-about-martin-card {
  background-color: #fff;
  padding: 50px 40px;
  position: absolute;
  top: -180px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.theme-about-martin-card::after {
  content: "";
  position: absolute;
  top: -45px;
  left: 40px;
  width: 90px;
  height: 80px;
  background-image: url("../img/kantoorenthuis-icon.svg");
  background-size: contain;
}
.theme-about-martin-card-title {
  font-size: 24px;
}
.theme-about-martin-card-content a {
  color: #FF3D00;
}
.theme-about-martin-card-content a:hover {
  color: #283D3B;
}

.theme-cta {
  background-color: #283D3B;
  position: relative;
  padding: 100px 0;
}
.theme-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  background-image: url("../img/cta-background.svg");
  background-size: 100%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  z-index: 0;
}
.theme-cta-wrapper {
  text-align: center;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}
.theme-cta-wrapper-title {
  color: #fff;
  max-width: 500px;
}
.theme-cta-wrapper-content {
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 40px;
}

.theme-description {
  padding: 100px 0;
}
.theme-description-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.theme-description-wrapper-subtitle {
  font-size: 28px;
  color: #FF3D00;
  margin-left: 16px;
  position: relative;
}
.theme-description-wrapper-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #FF3D00;
  border-radius: 999px;
}
.theme-description-wrapper-title {
  font-size: 36px;
}

.theme-steps-slider {
  background-color: #F8F8F8;
}
.theme-steps-slider-controls {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}
.theme-steps-slider-controls > div {
  border-radius: 999px;
  border: 1px solid #FF3D00;
  padding: 4px 9.63px;
  color: #FF3D00;
  margin-left: 8px;
  cursor: pointer;
}
.theme-steps-slider-slider-slide {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.theme-steps-slider-slider-slide-image {
  width: 80%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}
.theme-steps-slider-slider-slide-image img {
  height: 100%;
}
.theme-steps-slider-slider-slide-card {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #fff;
  padding: 50px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  max-width: 575px;
}
.theme-steps-slider-slider-slide-card-title {
  font-size: 28px;
}
.theme-steps-slider-slider-slide-card-title > span {
  color: #FF3D00;
  font-size: 36px;
}

.theme-overons {
  background-color: #F8F8F8;
}
.theme-overons-wrapper {
  padding-left: 32px;
}
.theme-overons-wrapper-title {
  margin-bottom: 40px;
}
.theme-overons-wrapper-title strong {
  color: #FF3D00;
}

.theme-ourteam-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
.theme-ourteam-wrapper-inner-subtitle {
  font-size: 28px;
  color: #FF3D00;
  margin-left: 16px;
  position: relative;
}
.theme-ourteam-wrapper-inner-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #FF3D00;
  border-radius: 999px;
}
.theme-ourteam-wrapper-inner-title {
  font-size: 36px;
}
.theme-ourteam-wrapper-controls {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}
.theme-ourteam-wrapper-controls > div {
  border-radius: 999px;
  border: 1px solid #FF3D00;
  padding: 4px 9.63px;
  color: #FF3D00;
  margin-left: 8px;
  cursor: pointer;
}
.theme-ourteam-slider .slick-track {
  height: 400px !important;
}
.theme-ourteam-slider-slide {
  position: relative;
}
.theme-ourteam-slider-slide-image {
  margin-right: 32px;
}
.theme-ourteam-slider-slide-card {
  position: absolute;
  margin-left: 32px;
  margin-right: 16px;
  background-color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  bottom: 50px;
  left: 0;
  right: 0;
  padding: 20px 20px;
}
.theme-ourteam-slider-slide-card-name {
  margin-left: 16px;
  position: relative;
  font-size: 20px;
}
.theme-ourteam-slider-slide-card-name::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #FF3D00;
  border-radius: 999px;
}
.theme-ourteam-slider-slide-card-title {
  font-size: 16px;
  font-weight: 500;
}
.theme-ourteam-slider-slide-card-socials {
  display: flex;
  flex-direction: row;
}
.theme-ourteam-slider-slide-card-socials-social {
  margin-top: 8px;
  background-color: #F0EEE7;
  color: #283D3B;
  padding: 6px 11.5px;
  margin-right: 8px;
  border-radius: 999px;
  text-align: center;
}
.theme-ourteam-slider-slide-card-socials-social:hover {
  color: #FF3D00;
}
.theme-ourteam-slider-slide-card-socials-social i {
  width: 16px;
  height: 16px;
  text-align: center;
}

.theme-projects {
  position: relative;
}
.theme-projects:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1000px;
  background-color: #F8F8F8;
}
.theme-projects-title {
  font-size: 36px;
  margin-bottom: 16px;
}
.theme-projects-image {
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
}
.theme-projects-image img {
  height: 100%;
}
.theme-projects-grid {
  margin-top: 80px;
}
.theme-projects-grid-sizer {
  width: 25%;
}
.theme-projects-grid-item {
  float: left;
  width: 25%;
  padding: 0 16px;
  margin-bottom: 32px;
}
.theme-projects-grid-item-image {
  overflow: hidden;
  border-radius: 8px;
}
.theme-projects-grid-item-wrapper {
  position: absolute;
  bottom: 24px;
  left: 48px;
  color: #fff;
  max-width: 240px;
}
.theme-projects-grid-item-wrapper-title {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  width: 100%;
}
.theme-projects-grid-item-wrapper-location {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
.theme-projects-grid-item-button {
  position: absolute;
  bottom: 24px;
  right: 32px;
  background-color: #fff;
  padding: 4.5px 10px;
  color: #283D3B;
  border-radius: 999px;
  transition: 0.2s ease-in;
}
.theme-projects-grid-item-button i {
  width: 16px;
  height: 16px;
}
.theme-projects-grid-item:hover .theme-projects-grid-item-button {
  transform: translate(5px, 0);
}

.theme-aanbod-wrapper-content a {
  color: #FF3D00;
}
.theme-aanbod-wrapper-content a:hover {
  color: #283D3B;
}
.theme-aanbod-grid {
  margin: 0 -16px;
  margin-top: 80px;
}
.theme-aanbod-grid-sizer {
  width: 25%;
}
.theme-aanbod-grid-item {
  float: left;
  width: 25%;
  padding: 0 16px;
  margin-bottom: 32px;
}
.theme-aanbod-grid-item:after {
  content: "";
  transition: 0.2s ease-in;
}
.theme-aanbod-grid-item img {
  overflow: hidden;
  border-radius: 8px;
}
.theme-aanbod-grid-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 36px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in;
  z-index: 10;
}
.theme-aanbod-grid-item:hover:after {
  background-color: rgba(40, 61, 59, 0.6);
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  bottom: 0;
  border-radius: 8px;
}
.theme-aanbod-grid-item:hover .theme-aanbod-grid-item-icon {
  opacity: 1;
  visibility: visible;
}

.theme-project-single-gallery {
  margin-top: 50px;
}
.theme-project-single-gallery .theme-aanbod-grid {
  margin: 0;
}
.theme-project-single-content {
  position: relative;
}
.theme-project-single-content::before {
  content: "";
  background-color: #F8F8F8;
  position: absolute;
  left: 0;
  right: 0;
  top: 450px;
  height: 600px;
}
.theme-project-single-content-subtitle {
  font-size: 28px;
  color: #FF3D00;
  margin-left: 16px;
  position: relative;
  width: 80%;
}
.theme-project-single-content-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #FF3D00;
  border-radius: 999px;
}
.theme-project-single-content-title {
  font-size: 36px;
  margin-bottom: 24px;
  width: 80%;
}
.theme-project-single-content-content {
  width: 80%;
}
.theme-project-single-content-wrapper {
  display: flex;
  margin-bottom: 75px;
}
.theme-project-single-content-wrapper-location {
  width: 25%;
}
.theme-project-single-content-wrapper-location h4 {
  font-size: 24px;
  font-weight: 800;
}
.theme-project-single-content-wrapper-location div {
  font-size: 16px;
}
.theme-project-single-content-wrapper-space {
  width: 25%;
}
.theme-project-single-content-wrapper-space h4 {
  font-size: 24px;
  font-weight: 800;
}
.theme-project-single-content-wrapper-space div {
  font-size: 16px;
}
.theme-project-single-content-wrapper-date {
  width: 25%;
}
.theme-project-single-content-wrapper-date h4 {
  font-size: 24px;
  font-weight: 800;
}
.theme-project-single-content-wrapper-date div {
  font-size: 16px;
}
.theme-project-single-content-image {
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}
.theme-project-single-content-image img {
  height: 100%;
}
.theme-project-single-related {
  margin-top: 50px;
}
.theme-project-single-related-subtitle {
  font-size: 28px;
  color: #FF3D00;
  margin-left: 16px;
  position: relative;
}
.theme-project-single-related-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #FF3D00;
  border-radius: 999px;
}
.theme-project-single-related-title {
  font-size: 36px;
  margin-bottom: 48px;
}
.theme-project-single-related-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.theme-project-single-related-card-wrapper {
  position: absolute;
  bottom: 32px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.theme-project-single-related-card-wrapper-content-title {
  font-size: 24px;
  font-weight: 900;
}
.theme-project-single-related-card-wrapper-content-location {
  font-size: 16px;
  font-weight: 500;
}
.theme-project-single-related-card-wrapper-button {
  background-color: #fff;
  padding: 4.5px 10px;
  color: #283D3B;
  border-radius: 999px;
  transition: 0.2s ease-in;
}
.theme-project-single-related-card-wrapper-button i {
  width: 16px;
  height: 16px;
}
.theme-project-single-related-card:hover .theme-projects-single-related-card-wrapper-button {
  transform: translate(5px, 0);
}

.theme-contact {
  background-color: #283D3B;
  position: relative;
  padding: 100px 0;
  min-height: 400px;
}
.theme-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  background-image: url("../img/cta-background.svg");
  background-size: 100%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  z-index: 0;
}
.theme-contact-wrapper {
  color: #fff;
}
.theme-contact-wrapper-subtitle {
  font-size: 28px;
  color: #FF3D00;
  margin-left: 16px;
  position: relative;
}
.theme-contact-wrapper-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0, -50%);
  width: 8px;
  height: 8px;
  background-color: #FF3D00;
  border-radius: 999px;
}
.theme-contact-wrapper-title {
  font-size: 36px;
}
.theme-contact-wrapper-content {
  opacity: 50%;
  text-transform: uppercase;
  font-size: 24px;
}
.theme-contact-form {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #DFDCCC;
  background-color: #fff;
  padding: 50px 70px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
.theme-contact-form input, .theme-contact-form textarea {
  border: none !important;
  border-radius: 21px !important;
  background-color: rgba(223, 220, 204, 0.4) !important;
}
.theme-contact-form button {
  background-color: #FF3D00 !important;
  border: none !important;
  border-radius: 21px !important;
  padding: 16px 32px !important;
  transition: 0.2s ease-in !important;
  font-weight: 700 !important;
}
.theme-contact-form button:hover {
  background-color: #283D3B !important;
}
.theme-contact__bottom {
  min-height: 400px;
}
.theme-contact__bottom-wrapper-link {
  color: #000;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
}
.theme-contact__bottom-wrapper-link:hover {
  color: #FF3D00;
}
.theme-contact__bottom-wrapper-link i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  text-align: center;
  margin-right: 16px;
  color: #FF3D00;
}
.theme-contact__bottom-wrapper-location {
  color: #000;
  font-weight: 600;
  display: flex;
  margin-bottom: 24px;
}
.theme-contact__bottom-wrapper-location i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  text-align: center;
  margin-right: 20px;
  color: #FF3D00;
}
.theme-contact__bottom-wrapper-phone {
  color: #FF3D00;
  font-weight: 600;
}
.theme-contact__bottom-wrapper-phone:hover {
  color: #283D3B;
}
.theme-contact__bottom-wrapper-phone i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  text-align: center;
  margin-right: 16px;
}
.theme-contact__bottom-wrapper-title {
  font-size: 36px;
  margin-bottom: 16px;
}
.theme-contact__bottom-wrapper-content {
  margin-top: 24px;
}

.theme-footer {
  background-color: #F8F8F8;
}
.theme-footer-wrapper-logo {
  max-width: 250px;
  margin-bottom: 32px;
}
.theme-footer-wrapper-content {
  max-width: 400px;
}
.theme-footer-wrapper-socials {
  display: flex;
  margin-bottom: 32px;
}
.theme-footer-wrapper-socials-social {
  background-color: #283D3B;
  color: #fff;
  padding: 8.5px 11px 6.5px 13px;
  border-radius: 999px;
  text-align: center;
  margin-right: 8px;
}
.theme-footer-wrapper-socials-social:hover {
  color: #283D3B;
  background-color: #DFDCCC;
}
.theme-footer-wrapper-socials-social i {
  width: 18px;
  height: 18px;
}
.theme-footer-navigation ul {
  list-style-type: none;
  padding: 0;
}
.theme-footer-navigation ul li {
  margin: 8px 0;
}
.theme-footer-navigation ul li a {
  color: #000;
}
.theme-footer-navigation ul li a:hover {
  color: #FF3D00;
}
.theme-footer-contact-link {
  display: block;
  color: #000;
  margin: 8px 0;
}
.theme-footer-contact-link:hover {
  color: #FF3D00;
}
.theme-footer-contact-link i {
  width: 24px;
  height: 24px;
  align-items: center;
  color: #FF3D00;
}
.theme-footer__bottom {
  padding: 24px 0;
}
.theme-footer__bottom-copyright {
  text-align: center;
  opacity: 0.5;
}

.theme-offcanvas {
  position: fixed;
  background-color: #fff;
  right: -60%;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 25;
  transition: 0.4s ease-in;
  overflow-y: scroll;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.theme-offcanvas__overlay {
  background-color: rgba(40, 61, 59, 0.8);
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 20;
  transition: 0.4s ease-in;
}
.theme-offcanvas__overlay.canvas-open {
  visibility: visible;
  opacity: 1;
}
.theme-offcanvas.canvas-open {
  right: 0;
}
.theme-offcanvas-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 40px 32px 40px;
  background-color: #fff;
}
.theme-offcanvas-top-logo {
  max-width: 240px;
}
.theme-offcanvas-middle {
  padding: 40px;
}
.theme-offcanvas-middle-navigation #menu-offcanvas-navigatie {
  list-style-type: none;
  padding: 0;
}
.theme-offcanvas-middle-navigation #menu-offcanvas-navigatie > li:not(:last-child) {
  border-bottom: 1.5px solid #DBD7D7;
}
.theme-offcanvas-middle-navigation #menu-offcanvas-navigatie > li a {
  color: #000;
  font-size: 24px;
  padding: 20px 0;
  display: block;
}
.theme-offcanvas-middle-navigation #menu-offcanvas-navigatie > li a:hover {
  color: #FF3D00;
}
.theme-offcanvas-middle-navigation #menu-offcanvas-navigatie > li .sub-menu {
  max-height: 0;
  list-style-type: none;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.2s ease-in;
}
.theme-offcanvas-middle-navigation #menu-offcanvas-navigatie > li .sub-menu.menu-open {
  max-height: unset;
  opacity: 1;
  visibility: visible;
}
.theme-offcanvas-contact {
  background-color: #FF3D00;
  color: #fff;
  display: block;
  font-size: 24px;
  padding: 24px 40px;
}
.theme-offcanvas-contact:hover {
  color: #283D3B;
}
.theme-offcanvas-bottom-contact {
  background-color: #283D3B;
  padding: 40px;
}
.theme-offcanvas-bottom-contact a {
  color: #fff;
  margin: 8px 0;
}
.theme-offcanvas-bottom-socials {
  padding: 20px 40px;
  padding-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
.theme-offcanvas-bottom-socials-text {
  width: 60%;
}

/*/ Media Query /*/
@media screen and (max-width: 1400px) {
  .theme-hero-label-bottom {
    right: 2%;
  }
}
@media screen and (max-width: 992px) {
  .burger-trigger {
    display: block;
  }
  .theme-header-wrapper {
    display: none;
  }
  .theme-header-burger-trigger {
    margin-left: 24px;
  }
  .theme-aanbod-grid-sizer {
    width: 33.3334%;
  }
  .theme-aanbod-grid-item {
    width: 33.3334%;
  }
  .theme-projects-grid-sizer {
    width: 33.3334%;
  }
  .theme-projects-grid-item {
    width: 33.3334%;
  }
  .theme-four-images-image {
    height: 330px !important;
    margin: 12px 0;
  }
  .theme-overons-wrapper-title {
    font-size: 28px;
  }
  .theme-about-martin-card {
    position: relative;
    top: unset;
    margin-top: 80px;
  }
  .theme-contact-form {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 768px) {
  .theme-header .theme-button {
    display: none;
  }
  .theme-hero-label-center {
    display: none;
  }
  .theme-banner-title {
    font-size: 36px;
  }
  .theme-hero-menu {
    display: none;
  }
  .theme-logos-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
  .theme-logos-wrapper-image {
    width: 48%;
    margin: 0 1%;
  }
  .theme-aanbod-grid-sizer {
    width: 50%;
  }
  .theme-aanbod-grid-item {
    width: 50%;
    padding: 0 8px;
    margin-bottom: 16px;
  }
  .theme-projects-grid-sizer {
    width: 50%;
  }
  .theme-projects-grid-item {
    width: 50%;
    padding: 0 8px;
    margin-bottom: 16px;
  }
  .theme-projects-grid-item-wrapper {
    left: 32px;
  }
  .theme-projects-grid-item-button {
    right: 24px;
  }
  .theme-overons-wrapper-image {
    margin-bottom: 48px;
  }
  .theme-steps-slider-controls {
    margin-bottom: 32px;
  }
  .theme-steps-slider-slider-slide-image {
    width: 100%;
  }
  .theme-steps-slider-slider-slide-card {
    position: relative;
    max-width: unset;
  }
  .theme-contact-wrapper {
    margin-bottom: 60px;
  }
  .theme-contact-form {
    position: relative;
  }
  .theme-offcanvas-top {
    padding: 50px 20px 32px 20px;
  }
  .theme-offcanvas-middle {
    padding: 40px 20px;
  }
  .theme-offcanvas-bottom-contact {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 576px) {
  .theme-logos {
    padding: 50px 0;
    padding-top: 0px;
  }
  .theme-logos-wrapper-image {
    margin: 32px 1%;
  }
  .theme-overons-wrapper {
    flex-direction: column;
    align-items: unset;
  }
  .theme-ourteam-wrapper {
    flex-direction: column;
    align-items: unset;
  }
  .theme-ourteam-slider-slide {
    margin: 0 12px;
  }
  .theme-ourteam-slider-slide-image {
    margin: 0;
  }
  .theme-ourteam-slider-slide-card {
    top: 170px;
    bottom: 65px;
    left: -5px;
    margin: 0;
  }
  .theme-four-images-image {
    height: 225px !important;
  }
  .theme-steps-slider-slider-slide {
    margin-bottom: -200px;
  }
  .theme-about-martin .d-flex {
    flex-direction: column;
  }
  .theme-about-martin-contact {
    margin-left: 0;
  }
  .theme-projects-grid-sizer {
    width: 100%;
  }
  .theme-projects-grid-item {
    width: 100%;
  }
  .theme-project-single-content-wrapper {
    flex-direction: column;
  }
  .theme-project-single-content-wrapper > div {
    margin: 8px 0;
  }
  .theme-project-single-content-wrapper-space {
    width: 100%;
  }
  .theme-project-single-related {
    padding-bottom: 75px;
  }
  .theme-contact-form {
    padding: 50px 30px;
  }
  .theme-offcanvas {
    width: 100%;
    right: -110%;
  }
  .theme-offcanvas-top {
    padding: 50px 40px 32px 40px;
  }
  .theme-offcanvas-top-logo {
    max-width: 200px;
  }
  .theme-offcanvas-middle {
    padding: 40px 40px;
  }
  .theme-offcanvas-bottom-contact {
    padding: 24px 40px;
  }
}/*# sourceMappingURL=style.css.map */