* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h3 {
  font-size: 19pt;
  margin-bottom: 10px;
}

p, a, ul, li, input, label, textarea {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #000000;
  text-decoration: none;
  font-size: 10pt;
}
p b, a b, ul b, li b, input b, label b, textarea b {
  color: #bc221e;
}
p::placeholder, a::placeholder, ul::placeholder, li::placeholder, input::placeholder, label::placeholder, textarea::placeholder {
  font-family: "Montserrat", sans-serif;
}

.header__mini {
  font-weight: 700;
  color: #a7a7a7;
  text-transform: uppercase;
  font-size: 10pt;
  margin-bottom: 1em;
}

.button {
  display: block;
  border: 2px solid #000000;
  text-decoration: none;
  color: #000000;
  padding: 0.5em 2em;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  margin-top: 30px;
  font-size: 11pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button_2 {
  display: block;
  border: 2px solid #ffffff;
  text-decoration: none;
  color: #ffffff;
  padding: 0.5em 2em;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  font-size: 11pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.button_3 {
  display: block;
  border: 2px solid #000000;
  background-color: #000000;
  text-decoration: none;
  color: #ffffff;
  padding: 0.5em 2em;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  font-size: 11pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.input__controll {
  padding-bottom: 20px;
}
.input__controll input, .input__controll textarea {
  width: 100%;
  padding: 1em 3.5%;
  border-radius: 10px;
  border: 0.5px solid rgba(52, 52, 52, 0.1764705882);
}
.input__controll textarea {
  height: 200px;
  resize: none;
}

.hamofaMailing__succes {
  display: none;
  color: #bc221e;
}

.hamofaMailing__fail {
  display: none;
  color: #bc221e;
}

.hamofaMailing__loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  display: none;
  position: relative;
  border: 3px solid;
  border-color: #bc221e #bc221e transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.hamofaMailing__loader::after, .hamofaMailing__loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #ffffff #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.hamofaMailing__loader::before {
  width: 32px;
  height: 32px;
  border-color: #bc221e #bc221e transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.hamofaConsent__button {
  padding: 0.5em 2em;
  background-color: white;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #bc221e;
  border-radius: 5px;
  flex-grow: 1;
  text-align: center;
  z-index: 999;
}

.hamofaConsent__button__2 {
  background-color: #bc221e;
  color: white;
}

.hamofaConsent__banner {
  position: fixed;
  left: 2em;
  bottom: 2em;
  background-color: white;
  width: fit-content;
  padding: 2em;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1em;
  border-radius: 20px;
  transition: 0.5s;
  z-index: 999;
}
.hamofaConsent__banner__closed {
  left: -100% !important;
}

.hamofaConsent__banner__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1em;
}

.hamofaConsent__banner__header__icon {
  width: 50px;
  padding: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 50%;
}
.hamofaConsent__banner__header__icon img {
  width: 100%;
}

.hamofaConsent__banner__text {
  width: 350px;
}

.hamofaConsent__banner__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.hamofaConsent__icon {
  z-index: 999;
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
}
.hamofaConsent__icon img {
  width: 100%;
}
.hamofaConsent__icon__closed {
  left: -100%;
}

.hamofaConsent__settings {
  position: fixed;
  bottom: 0;
  transition: 0.5s;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding: 2em, 7%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  overflow-y: scroll;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  -webkit-backdrop-filter: blur(7.9px);
}
.hamofaConsent__settings__closed {
  bottom: -100%;
}

.hamofaConsent__settings__wrapper {
  width: 50%;
  height: fit-content;
  padding: 2em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  background-color: #ffffff;
}

.hamofaConsent__settings__wrapper__text {
  width: 75%;
  margin-bottom: 20px;
}

.hamofaConsent__settings__wrapper__items {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hamofaConsent__settings__wrapper__items__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.hamofaConsent__settings__wrapper__items__item input {
  accent-color: #bc221e;
}

.hamofaConsent__settinges__actions {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
}

@media screen and (max-width: 1500px) {
  .hamofaConsent__settings__wrapper {
    width: 75%;
  }
}
@media screen and (max-width: 1100px) {
  .hamofaConsent__settings__wrapper__items__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 800px) {
  .hamofaConsent__settings__wrapper__items__item {
    width: 100%;
  }
  .hamofaConsent__settings__wrapper__text {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .hamofaConsent__settings {
    padding: 2em;
    align-items: flex-end;
  }
  .hamofaConsent__settings__wrapper {
    width: 100%;
  }
  .hamofaConsent__banner {
    width: calc(100% - 4em);
  }
  .hamofaConsent__banner__text {
    width: 100%;
  }
  .hamofaConsent__banner__header__icon {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .hamofaConsent__banner {
    width: 100%;
    left: 0;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .hamofaConsent__settings {
    padding: 0;
  }
  .hamofaConsent__settings__wrapper {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  z-index: 998;
  transition: 0.5s;
}

.nav__logo {
  transition: 0.5s;
  width: 400px;
  height: 175px;
  background-color: #ffffff;
  padding-left: 3.5%;
  padding-right: 3.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.nav__logo img {
  width: 100%;
  transition: 0.5s;
}

.nav__scroll {
  align-items: stretch;
}
.nav__scroll .nav__logo {
  height: 100px;
  padding: 2em 0;
  padding-left: 7%;
}
.nav__scroll .nav__logo img {
  width: 50%;
}

.nav__items {
  background-color: #ffffff;
  flex-grow: 1;
  padding: 2em 0;
  height: 100px;
  padding-left: 3.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4em;
}

.nav__items__item {
  display: block;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.5s;
  border-bottom: 3px solid #ffffff;
  font-size: 12pt;
}
.nav__items__item__active {
  border-bottom: 3px solid #bc221e;
}
.nav__items__item:hover {
  border-bottom: 3px solid #bc221e;
}

.nav__contact {
  height: 100px;
  background-color: #ffffff;
  padding: 2em 0;
  padding-left: 2em;
  padding-right: 7%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.nav__contact a {
  font-weight: 700;
  color: #bc221e;
}

.nav__button {
  display: none;
  padding: 2em 0;
  height: 100px;
  background-color: #ffffff;
  padding-right: 3.5%;
}
.nav__button div {
  width: 50px;
  height: 3px;
  background-color: #bc221e;
}

.nav__items__mobile {
  right: 0 !important;
}

@media screen and (max-width: 1700px) {
  .nav__items {
    gap: 2em;
  }
}
@media screen and (max-width: 1500px) {
  .nav__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .nav__button__active {
    background-color: #ffffff;
  }
  .nav__contact {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    padding-right: 2em;
  }
  .nav__items {
    position: fixed;
    width: 25%;
    height: fit-content;
    right: -25%;
    top: 100px;
    padding-right: 3.5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 2em;
    transition: 0.5s;
  }
}
@media screen and (max-width: 900px) {
  .nav__items {
    width: calc(100% - 400px);
    right: calc(-100% - 400px);
  }
}
@media screen and (max-width: 750px) {
  .nav__items {
    width: 100%;
    height: calc(100% - 100px);
    top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .nav {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .nav__logo {
    width: unset;
    height: 100px;
    padding: 2em 0;
    padding-left: 3.5%;
  }
  .nav__logo img {
    width: unset;
    height: 100%;
  }
}
@media screen and (max-width: 500px) {
  .nav {
    justify-content: space-between;
    padding: 0 7%;
  }
  .nav__logo {
    padding-left: 0;
  }
  .nav__button {
    padding-right: 0;
  }
  .nav__contact {
    display: none;
  }
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
}

.footer__text {
  background-image: url("../assets/footer/footer.webp");
  background-size: cover;
  width: 75%;
  padding: 4em 7%;
  padding-right: 0;
}

.footer__text__header {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  width: 400px;
}

.footer__text__info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 4em;
  margin-top: 3em;
}

.footer__text__info__adres .header__mini,
.fotoer__text__info__contact .header__mini {
  margin-bottom: 10px;
}

.footer__text__info__adres__text,
.fotoer__text__info__contact__text {
  color: #ffffff;
  display: block;
}

.footer__social {
  width: 25%;
  padding: 4em 7%;
  padding-left: 3.5%;
  background-color: #000000;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
}

.footer__social__links a {
  color: #ffffff;
  font-weight: 700;
  display: block;
  font-size: 2em;
}

.footer__social__hamofa {
  padding-top: 2em;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
}
.footer__social__hamofa p {
  color: #ffffff;
}

.footer__social__hamofa__logo {
  width: 30px;
}

.footer__social__hamofa__text p {
  font-size: 0.9em;
}

@media screen and (max-width: 1200px) {
  .footer__text {
    width: 65%;
  }
  .footer__social {
    width: 35%;
  }
}
@media screen and (max-width: 800px) {
  .footer {
    flex-wrap: wrap;
  }
  .footer__text {
    width: 100%;
  }
  .footer__text {
    padding-right: 7%;
    padding-bottom: 1em;
  }
  .footer__social {
    padding-top: 1em;
    padding-left: 7%;
  }
  .footer__social {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .footer__text__header {
    width: 100%;
  }
  .footer__social__links__wrapper {
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .footer__text__info {
    flex-direction: column;
    gap: 2em;
  }
  .footer__social {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .footer__social__hamofa {
    padding-top: 0;
    flex-direction: row-reverse;
  }
  .footer__social__hamofa__text {
    text-align: left;
  }
}
.projects__card {
  width: calc(25% - 1.9em);
}
.projects__card:hover .projects__card__image__action {
  bottom: 2em;
}
.projects__card:hover .projects__card__image__overlay {
  opacity: 0;
}

.projects__card__image {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.projects__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects__card__image__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff9eb;
  opacity: 0.8;
  transition: 0.5s;
}

.projects__card__image__action {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  transition: 0.5s;
}

.projects__card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 0.5em;
  text-align: center;
}
.projects__card__text h4 {
  font-size: 1.5em;
}

@media screen and (max-width: 1500px) {
  .projects__card__image {
    height: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .projects__card {
    width: calc(33.3333333333% - 2em);
  }
  .projects__card__image__action {
    bottom: 2em;
  }
  .projects__card__image {
    height: 400px;
  }
}
@media screen and (max-width: 950px) {
  .projects__card {
    width: calc(50% - 2em);
  }
}
@media screen and (max-width: 550px) {
  .projects__card {
    width: 100%;
  }
}
.home__hero {
  height: 90vh;
  background-image: url("../assets/home/home.webp");
  background-size: cover;
  background-position: center;
  padding: 4em 7%;
  padding-top: calc(175px + 2em);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
}

.home__hero__text {
  width: 500px;
  color: #ffffff;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 2em;
}

.home__projects {
  padding: 4em 7%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 4em;
}

.home__projects__text {
  width: 20%;
  padding-top: 2em;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
}

.home__projects__wrapper {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2em;
}

.home__about {
  padding: 4em 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2em;
}

.home__about__r {
  padding: 4em 0 2em 0;
  flex-direction: row-reverse;
}
.home__about__r .home__about__text .button {
  margin-top: 20px;
}

.home__about__image {
  width: 60%;
  min-height: 600px;
  max-height: 800px;
  background-image: url("../assets/home/about.webp");
  background-size: cover;
}

.home__about__text {
  width: 40%;
  padding: 0 7%;
}
.home__about__text .button {
  margin-top: 100px;
}

.home__extra {
  padding: 4em 7%;
}

.home__extra__titel {
  margin-bottom: 40px;
  text-align: center;
}

.home__extra__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2em;
}

.home__extra__wrapper__item {
  width: 400px;
}

.home__extra__wrapper__item__image img {
  width: 400px;
  height: 400px;
  object-fit: contain;
}

.home__extra__wrapper__item__text {
  text-align: center;
  padding-top: 1em;
}
.home__extra__wrapper__item__text h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.home__steen {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4em;
  padding: 4em 7%;
  background-image: url("../assets/home/steentapijt_bg.webp");
  background-size: cover;
  background-position: top;
}

.home__steen__r {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4em;
}
.home__steen__r .home__steen__text {
  padding-right: 0;
  padding-left: 7%;
}

.home__steen__text {
  width: 40%;
  padding-right: 7%;
}

.home__steen__image {
  background-image: url("../assets/home/steentapijt.webp");
  background-size: cover;
  background-position: center;
  width: 60%;
  height: 600px;
}

@media screen and (max-width: 1500px) {
  .home__extra__wrapper__item {
    width: 33.3333333333%;
  }
  .home__extra__wrapper__item__image {
    width: 100%;
    height: 350px;
  }
  .home__extra__wrapper__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home__projects {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .home__projects__wrapper {
    width: 100%;
  }
  .home__projects__text {
    width: 50%;
  }
}
@media screen and (max-width: 1250px) {
  .home__about__image {
    width: 50% !important;
  }
  .home__about__text {
    padding-left: 2em;
  }
  .home__about__text .button {
    margin-top: 30px;
  }
  .home__about__r .home__about__text {
    padding-right: 2em;
    padding-left: 7%;
  }
  .home__about__text {
    width: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .home__extra__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2em;
  }
  .home__extra__wrapper__item {
    width: calc(50% - 1em);
  }
  .home__about {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 4em;
  }
  .home__about__image {
    width: 93% !important;
  }
  .home__about__text {
    width: 75% !important;
  }
  .home__steen {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 4em;
  }
  .home__steen__text {
    width: 75%;
  }
  .home__steen__image {
    width: 100%;
  }
  .home__projects {
    flex-direction: column;
  }
  .home__projects__wrapper {
    width: 100%;
  }
  .home__projects__text {
    width: 75%;
  }
}
@media screen and (max-width: 900px) {
  .home__hero {
    height: 75vh;
    background-position: right;
  }
}
@media screen and (max-width: 750px) {
  .home__extra__wrapper__item {
    width: 100%;
  }
  .home__hero {
    height: 60vh;
  }
  .home__extra__titel {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .home__about__text {
    width: 100% !important;
    padding: 0 7% !important;
  }
  .home__about__image {
    height: 300px;
    min-height: unset;
  }
  .home__steen__text {
    width: 100%;
  }
  .home__steen__image {
    height: 300px;
  }
  .home__projects__text {
    width: 100%;
  }
  .home__hero__text h1 {
    font-size: 20px;
  }
}
.about__hero {
  height: 50vh;
  background-image: url("../assets/about/over.webp");
  background-size: cover;
  background-position: center;
  padding: 4em 7%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
}

.about__hero__text {
  width: 600px;
  height: 50%;
  color: #ffffff;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
}

.about__about__image {
  background-image: url("../assets/about/Steentapijt.webp");
  background-position: center;
}

.about__extra {
  padding: 1em 7% 4em 7%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.about__extra__text {
  width: 35%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

@media screen and (max-width: 1100px) {
  .about__about__image {
    background-position: right;
  }
  .about__about__text {
    width: 100%;
    padding: 0 7%;
  }
}
@media screen and (max-width: 1000px) {
  .about__extra {
    display: block;
  }
  .about__extra__text {
    width: 75%;
    display: block;
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .about__about__image {
    background-position-x: 80%;
  }
  .about__extra__text {
    width: 100%;
  }
}
.project__hero {
  background-image: url("../assets/projects/1/hero.webp");
}

.project__info {
  padding: 4em 3.5%;
  padding-top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 7%;
}

.project__info__text {
  width: 30%;
}

.project__info__text__detail {
  background-color: #000000;
  padding: 2em 4em;
}
.project__info__text__detail p {
  color: #ffffff;
}
.project__info__text__detail p b {
  color: #ffffff;
}

.project__info__text__other {
  margin-top: 2em;
}
.project__info__text__other h1 {
  font-size: 1.7em;
  margin-bottom: 1em;
}

.project__info__images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em;
  width: 60%;
  padding-top: 2em;
}

.project__info__images__image {
  cursor: pointer;
}
.project__info__images__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project__info__images__image__1 {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
}
.project__info__images__image__2 {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 2;
  grid-column-end: 3;
}
.project__info__images__image__3 {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 4;
}
.project__info__images__image__4 {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
}

.project__gallerij {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 7%;
  z-index: 998;
  transition: 0.5s;
  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.3px);
  -webkit-backdrop-filter: blur(10.3px);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.project__gallerij .project__gallerij__image {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.project__gallerij .project__gallerij__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
}

.project__gallerij__container {
  width: 100%;
  height: fit-content;
  overflow: hidden;
}

.project__gallerij__slider {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
  left: 0;
  transition: 0.5s;
  width: 400%;
}

.project__gallerij__container__arrows {
  position: absolute;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
}
.project__gallerij__container__arrows p {
  color: #fff9eb;
  font-size: 40px;
  user-select: none;
}

#images_prev {
  left: 7%;
  top: 50%;
}

#images_next {
  right: 7%;
  top: 50%;
}

#images_close {
  right: 3.5%;
  top: 3.5%;
}

@media screen and (max-width: 1500px) {
  .project__info {
    gap: 2em;
  }
  .project__info__images {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2em;
    width: 60%;
  }
  .project__info__images__image {
    width: calc(50% - 1em);
  }
  .project__info__text {
    width: 40%;
  }
}
@media screen and (max-width: 1300px) {
  .project__info__text {
    width: 50%;
  }
  .project__info__images {
    width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .project__info {
    display: block;
  }
  .project__info__text {
    width: 75%;
  }
  .project__info__images {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .project__info__text {
    width: 100%;
  }
  .project__info__images {
    gap: 1em;
  }
}
.projecten__hero {
  background-image: url("../assets/projects/projecten.webp");
  background-position: center;
}

.projecten__projects {
  padding: 4em 7%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2em;
}

@media screen and (max-width: 900px) {
  .projecten__hero {
    background-position: right;
  }
}
.steen__hero {
  background-image: url("../assets/steentapijt/steentapijt.webp");
}

.steen__start {
  display: grid;
  grid-template-rows: 300px auto;
  grid-template-columns: 50% auto;
  padding-top: 2em;
}

.steen__start__image {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
  background-image: url("../assets/steentapijt/intro.webp");
  background-size: cover;
}

.steen__start__text {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
  padding: 4em;
  background-color: #ffffff;
  margin-right: 14%;
}

.steen__plus {
  padding: 2em 7%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2em;
}

.steen__plus__text {
  width: calc(50% - 1em);
  padding-right: 7%;
}

.steen__plus__text__cta {
  margin-top: 100px;
}

.steen__plus__text__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
}

.steen__plus__text__wrapper__item__titel {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
  cursor: pointer;
  opacity: 0.3;
  transition: 0.5s;
}
.steen__plus__text__wrapper__item__titel h4 {
  font-size: 1.5em;
}

.steen__plus__text__wrapper__item__titel__active {
  opacity: 1;
}

.steen__plus__text__wrapper__item__icon {
  width: 20px;
}

.steen__plus__text__wrapper__item__text {
  height: 0;
  opacity: 0;
  display: none;
}

.steen__plus__text__wrapper__item__text__active {
  height: fit-content;
  opacity: 1;
  display: block;
  padding-left: calc(25px + 1em);
}

.steen__plus__image {
  background-image: url("../assets/steentapijt/pluspunten.webp");
  background-size: cover;
  width: calc(50% + 1em);
  height: 800px;
}

.steen__buiten {
  padding: 2em 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2em;
}

.steen__buiten__titel {
  width: 35%;
  text-align: center;
}

.steen__buiten__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4em;
}

.steen__buiten__wrapper__item {
  width: calc(25% - 3em);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
}

.steen__buiten__wrapper__item__image {
  width: 50px;
}
.steen__buiten__wrapper__item__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.steen__buiten__wrapper__item__text h4 {
  margin-bottom: 10px;
}

.steen__tijd__image {
  background-image: url("../assets/steentapijt/tijdloos.webp");
  background-position: center;
  min-height: 400px;
}

.steen__about .steen__tijd__image {
  width: 50%;
}
.steen__about .home__about__text {
  width: 50%;
}
.steen__about .home__about__text .button {
  margin-top: 20px;
}

@media screen and (max-width: 1300px) {
  .steen__buiten {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .steen__buiten__wrapper__item {
    width: calc(33.3333333333% - 3em);
  }
  .steen__buiten__titel {
    width: 50%;
    text-align: left;
  }
}
@media screen and (max-width: 1200px) {
  .steen__start {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .steen__start__image {
    width: 100%;
    height: 400px;
    background-position: center;
  }
  .steen__start__text {
    padding: 2em 7%;
    margin: 0 !important;
    width: 75%;
  }
  .steen__plus {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .steen__plus__text {
    padding: 0;
    width: 75%;
  }
  .steen__plus__image {
    background-position: center;
    width: 100%;
    height: 500px;
  }
}
@media screen and (max-width: 900px) {
  .steen__buiten__titel {
    width: 100%;
  }
  .steen__buiten__wrapper__item {
    width: calc(50% - 2em);
  }
  .steen__plus__text {
    width: 100%;
  }
  .steen__start__text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .steen__buiten__wrapper__item {
    width: 100%;
  }
  .steen__intro__text {
    padding: 2em;
  }
}
@media screen and (max-width: 500px) {
  .steen__plus__image {
    height: 300px;
  }
  .steen__start__image {
    height: 300px;
  }
}
.extra__hero {
  background-image: url("../assets/extra/hero.webp");
}

.extra__start__image {
  background-image: url("../assets/extra/intro.webp");
}

.extra__start {
  grid-template-rows: auto 300px;
}
.extra__start .steen__start__text {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-left: 14%;
}

.extra__intro {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  padding-top: 0;
  padding-bottom: 300px;
  background-image: url("../assets/extra/intro.webp");
}

.extra__plus {
  flex-direction: row-reverse;
}

.extra__steen {
  background-image: none;
}

.extra__steen__image {
  background-image: url("../assets/extra/bloemen.webp");
}

@media screen and (max-width: 1000px) {
  .extra__steen .home__steen__text {
    padding-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .extra__intro {
    padding-bottom: 0;
  }
}
.contact__hero {
  background-image: url("../assets/contact/hero.webp");
}

.contact {
  padding: 2em 7%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 4em;
}

.contact__cform {
  width: 35%;
}

.contact__cform__text {
  margin-bottom: 2em;
}

.contact__map {
  width: 50%;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

@media screen and (max-width: 1500px) {
  .contact__cform {
    width: 50%;
  }
}
@media screen and (max-width: 1200px) {
  .contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .contact__cform {
    width: 75%;
  }
  .contact__map {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .contact__cform {
    width: 100%;
  }
}
.privacy {
  padding: 4em 7%;
  padding-top: calc(175px + 2em);
  width: 50%;
}
.privacy p {
  padding-bottom: 4em;
}

.privacy__heading {
  font-size: 20px;
  padding-bottom: 1em;
}

@media screen and (max-width: 1200px) {
  .privacy {
    width: 75%;
  }
}
@media screen and (max-width: 1000px) {
  .privacy {
    width: 100%;
  }
}

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