/* -- Font family -----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700&display=swap");
/* -- Font modifiers --------------------------*/
.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
} 

.fw-900 {
  font-weight: 900;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-wrap: balance;
  margin-bottom: 0.5em;
}

.lead {
  font-size: 1.125rem;
  font-weight: 700;
}

b, strong {
  font-weight: 700;
}

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

body {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2F2F2F;
  scroll-behavior: smooth;
}

body.menu--active {
  overflow: hidden;
}

html, body {
  font-size: 16px;
}

@media all and (min-width: 1200px) {
  html, body {
    font-size: 17px;
  }
}
@media all and (min-width: 1920px) {
  html, body {
    font-size: 18px;
  }
}
/* -- Container ------------------------------*/
.container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media all and (min-width: 1920px) {
  .container {
    max-width: 1480px;
  }
}
/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
  transition: all 0.5s;
}

.text-link {
  text-transform: uppercase;
  font-weight: 700;
  color: #2F2F2F;
  cursor: pointer;
}
.text-link:hover {
  color: #EA690B;
}
.text-link:hover i {
  margin-left: 0.5rem;
}
.text-link i {
  color: #EA690B;
  margin-left: 0.125rem;
  transition: margin 0.25s;
}

/* -- Backgrounds ---------------------------*/
.bcg--white {
  background: #ffffff;
}

.bcg--light {
  background: #F5F5F5;
}

.bcg--primary {
  background: #EA690B;
}

.bcg--secondary {
  background: #2F2F2F;
}

.bcg--tertiary {
  background: #E3E3E3;
}

/* -- Colors --------------------------------*/
.clr--white {
  color: #ffffff;
}

.clr--light {
  color: #F5F5F5;
}

.clr--primary {
  color: #EA690B;
}

.clr--secondary {
  color: #2F2F2F;
}

.clr--tertiary {
  color: #E3E3E3;
}

/* -- Images --------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

img.mfp-img {
  background: #fff; 
}

/* -- Buttons -------------------------------*/
.btn {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  transition: all .5s;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
}
.btn--primary {
  color: #ffffff;
  background: #EA690B;
}
.btn--secondary {
  color: #ffffff;
  background: #2F2F2F;
}
.btn--hover-white:hover, .btn--hover-white:active {
  color: #2F2F2F !important;
  background: #ffffff !important;
}
.btn--hover-primary:hover, .btn--hover-primary:active {
  color: #ffffff !important;
  background: #EA690B !important;
}
.btn--hover-secondary:hover, .btn--hover-secondary:active {
  color: #ffffff !important;
  background: #2F2F2F !important;
}

.btn-square {
  display: grid;
  place-items: center;
  padding: 0;
  width: 54px;
  height: 54px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
}

.btn-square--reverse {
  -webkit-clip-path: polygon(0 0, 0% calc(100% - 0.9rem), calc(0% + 0.9rem) 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0% calc(100% - 0.9rem), calc(0% + 0.9rem) 100%, 100% 100%, 100% 0);
}

/* -- Navigation -----------------------------*/
.nav-magnific--left,
.nav-magnific--right {
  display: grid;
  place-items: center;
  padding: 0;
  width: 54px;
  height: 54px;
  cursor: pointer;
  touch-action: manipulation;
  color: #fff;
  background: #EA690B;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1046;
}

.nav-magnific--right {
  right: 1rem;
  -webkit-clip-path: polygon(0 0, 0% calc(100% - 0.9rem), calc(0% + 0.9rem) 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0% calc(100% - 0.9rem), calc(0% + 0.9rem) 100%, 100% 100%, 100% 0);
}

.nav-magnific--left {
  left: 1rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
}

@media all and (min-width: 992px) {
  .nav-magnific--left {
    left: 2rem;
  }

  .nav-magnific--right {
    right: 2rem;
  }
}

/* -- Blockquote ----------------------------*/
.blockquote {
  margin: 0;
}
.blockquote__quote {
  font-weight: 600;
  font-size: 1.35rem;
  font-style: italic;
  margin: 0;
}
.blockquote__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #EA690B;
  display: block;
}
.blockquote__meta {
  font-weight: 600;
  font-size: .9rem;
  color: #727272;
  display: block;
  text-wrap: balance;
}
.blockquote__logo {
  margin-top: 1rem;
  max-width: 200px;
}

.quote-grid__video {
  position: absolute;
/*
  font-size: 2.5rem;
  color: #fff;
  transition: transform .5s;
  background: rgba();
*/
  
  aspect-ratio: 1;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: rgba(0,0,0,.8) .25rem 0 1rem;
  z-index: 666;
  width: 100px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.3);
  border-radius: 100%;
  transition: background .5s;
  margin: 0 auto 1.5rem auto;
}
.quote-grid__video:hover {
  color: #fff;
  transform: scale(1.1);
  background: rgba(0,0,0,.85);
}

/* -- Content flow --------------------------*/
.content-flow {
  & > * + * {
    margin-block-start: var(--flow-space, 1em);
  }

  :is(h1, h2, h3, h4, h5, h6, blockquote) {
    --flow-space: 2rem;
  }

  :is(h1, h2, h3, h4, h5, h6) + * {
    --flow-space: 1rem;
  }
}

/* -- Lists ---------------------------------*/
.project-informatie {
  margin-bottom: 1rem;
}

.project-informatie__label {
  font-weight: 700;
  text-transform: uppercase;
}

/* -- MFP -----------------------------------*/
.mfp-iframe-holder .mfp-content {
  max-width: 1320px !important;
}

/* -- Tiles ---------------------------------*/
.tile span, .tile a {
  display: block;
}
.tile__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2F2F2F;
  text-transform: uppercase;
}
.tile__phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2F2F2F;
}
.tile__email {
  font-size: 1.1rem;
  color: #727272;
}
.tile__name {
  font-size: 1.1rem;
  font-weight: 700;
}
.tile__meta {
  font-weight: 600;
  color: #727272;
}
.tile__trigger {
  text-transform: uppercase;
  font-weight: 700;
  color: #EA690B;
  cursor: pointer;
}
.tile__trigger i {
  color: #2F2F2F;
  margin-left: 0.125rem;
  transition: margin 0.25s;
}
.tile:hover .tile__trigger i {
  margin-left: 0.5rem;
  color: #EA690B;
}
.tile-media {
  overflow: hidden;
}
.tile__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tile--project .tile-media {
  aspect-ratio: 4/4.5;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% calc(0% + 2.125rem), calc(100% - 2.125rem) 0);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% calc(0% + 2.125rem), calc(100% - 2.125rem) 0);
}
.tile--project .tile__img {
  transform: scale(1.05);
  transition: transform 0.5s ease-in-out;
  
}
.tile--project:hover .tile__img {
  transform: scale(1);
}

.tile--project .tile-body {
  padding: 1.25rem;
  background: #F5F5F5;
}

.tile--nieuws .tile-media {
  aspect-ratio: 4/3;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% calc(0% + 2.125rem), calc(100% - 2.125rem) 0);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% calc(0% + 2.125rem), calc(100% - 2.125rem) 0);
}
.tile--nieuws .tile__img {
  transform: scale(1.05);
  transition: transform 0.5s ease-in-out;
}
.tile--nieuws:hover .tile__img {
  transform: scale(1);
}

.tile--nieuws .tile-body {
  padding: 1.25rem;
  background: #F5F5F5;
}

.tile--persoon {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: #ffffff;
  -webkit-clip-path: polygon(0 0, 0 100%, calc(100% - 2.125rem) 100%, 100% calc(100% - 2.125rem), 100% 0);
          clip-path: polygon(0 0, 0 100%, calc(100% - 2.125rem) 100%, 100% calc(100% - 2.125rem), 100% 0);
}
.tile--persoon .tile-media {
  display: flex;
  aspect-ratio: 1/1;
  margin: 0;
  width: 100%;
  height: 100%;
}
.tile--persoon .tile-media img {
  max-width: 220px;
}
.tile--persoon .tile-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.25rem 1rem 0;
}

.tile--informatie {
  display: flex;
  gap: .75rem;
  flex-direction: column;
  border-bottom: 2px solid rgba(47, 47, 47, .2);
  height: 100%;
  padding-bottom: 1.5rem;
}

.tile--informatie .tile-body p:last-of-type {
  margin: 0;
}

/* -- Swiper ----------------------------*/
.swiper-controls {
  display: flex;
  justify-content: flex-end;
}
.swiper-controls--center {
  justify-content: center;
}
.swiper-controls--end {
  justify-content: flex-end;
}

.swiper-button-disabled {
  opacity: .5;
}

.swiper-button-lock {
  display: none;
}


.swiper-controls__dots {
  margin: 0;
}
.swiper-controls__dots .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ffffff;
  opacity: 1;
}
.swiper-controls__dots .swiper-pagination-bullet:hover {
  opacity: 0.6;
}
.swiper-controls__dots .swiper-pagination-bullet-active {
  background: #EA690B;
}
.swiper-controls__dots .swiper-pagination-bullet-active:hover {
  opacity: 1;
}

.swiper--hero {
  height: 100%;
}
.swiper--hero .swiper-slide {
  position: relative;
}
.swiper--hero .swiper-controls__dots {
  bottom: 2rem;
}

.swiper--projecten {
  overflow: visible;
}
.swiper--projecten .swiper-controls {
  margin-top: 2rem;
}

/* -- Formulieren ----------------------------*/
.gform_wrapper {
  font-size: 1rem !important;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 1rem !important;
}

.gform_fields input:not([type="radio"]), .gform_fields input:not([type="checkbox"]),
.gform_fields textarea {
  background: #f5f5f5;
  border: none;
  outline: 0;
  box-shadow: none;
  padding: .75rem 1rem !important;
}

.gform_wrapper .btn {
  position: relative !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  border: none !important;
  transition: all .5s !important;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%) !important;
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%) !important;
  color: #ffffff !important;
  background: #EA690B !important;
}

.gform_wrapper .btn:hover {
  color: #ffffff !important;
  background: #2F2F2F !important;
}

.gform_wrapper .gfield_validation_message {
  display: none;
}

.gform_wrapper .gform_validation_errors {
  border: none !important;
  border-left: 3px solid #c02b0a !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  
}

.gform_wrapper .gform_validation_errors h2 {
  font-size: 1rem !important;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border: none !important;
  border-left: 3px solid #c02b0a !important;
}

/* -- Matrix ---------------------------------*/
.matrix {
  display: flex;
  gap: 1.25rem;
}
.matrix-items {
  flex-grow: 1;
}

.matrix-legenda,
.matrix-items {
  position: relative;
  padding-top: 24px;
  display: grid;
  grid-template-rows: repeat(17, max-content);
}

.matrix-items:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 24px;
  width: 100%;
  background: #fff;
}

.matrix-legenda .matrix-row:not(:first-of-type) .matrix-col,
.matrix-items .matrix-row:not(:first-of-type) .matrix-col {
  display: flex;
  align-items: center;
  height: 100%;
}
.matrix-legenda .matrix-row:not(:first-of-type) .matrix-col .d-flex,
.matrix-items .matrix-row:not(:first-of-type) .matrix-col .d-flex {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.matrix-legenda {
  min-width: 136px;
}
.matrix-legenda .matrix-row:first-of-type .matrix-col {
  display: flex;
  align-items: flex-end;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}
.matrix-legenda .matrix-row .matrix-col {
  display: flex;
  align-items: end !important;
  height: 100%;
  flex-direction: column;
}

.matrix-col {
  display: flex;
  align-items: end !important;
  height: 100%;
  flex-direction: column;
  padding: 0.5rem 0;
}

.main__title {
  display: block;
  color: #2F2F2F;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: right;
}

.legenda__title {
  display: block;
  color: #2F2F2F;
  font-weight: 700;
}

.legenda__subtitle {
  display: block;
  color: #EA690B;
  font-weight: 700;
  font-size: 0.85rem;
}

.matrix-items {
  background: #E3E3E3;
  overflow-x: scroll;
}

.matrix-items .matrix-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.matrix-items .matrix-col {
  position: relative;
  min-width: 160px;
}
.matrix-items .matrix-col:after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  pointer-events: none;
  z-index: 0;
}

.matrix-items .matrix-col > * {
  position: relative;
  z-index: 2;
}

.matrix-items .matrix-arrow {
  position: absolute;
  top: 0;
  left: calc(50% - 18px);
  width: 0px;
  height: 20px;
  border-style: solid;
  border-width: 20px 18px 0 18px;
  border-color: #EA690B transparent transparent transparent;
  transform: rotate(0deg);
}
.matrix-items .matrix-arrow--active {
  border-color: #2F2F2F transparent transparent transparent;
}

.matrix-items .item-pmc {
  position: relative;
  background: #EA690B;
}
.matrix-items .item-pmc--active {
  position: relative;
  background: #2F2F2F;
}
.matrix-items .item-pmc--active:after {
  content: "\f00c";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  font-size: 1.25rem;
  color: #2F2F2F;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border: 2px solid #2F2F2F;
  border-radius: 100%;
  background: #ffffff;
  z-index: 3;
}

.pmc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  height: 100%;
  margin: 0 auto;
}
.pmc__title {
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.5rem;
  line-height: 1;
}

a.beukmaat {
  display: block;
  width: 100%;
  text-align: center;
  color: #2F2F2F;
  background: #ffffff;
}
a.beukmaat .beukmaat__popover {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  width: 0;
  height: 0;
  padding: 1rem;
  background: #2F2F2F;
  z-index: 100;
  text-align: left;
  opacity: 0;
  pointer-events: none;
}
a.beukmaat .beukmaat__popover--end {
  left: auto;
  right: 0;
}
a.beukmaat .beukmaat__popover span {
  opacity: 0;
  display: block;
}
a.beukmaat .beukmaat__popover .popover__subtitle {
  font-size: 0.85rem;
}
a.beukmaat .beukmaat__popover .popover__size {
  font-weight: 600;
}
a.beukmaat .beukmaat__popover .popover__trigger {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #EA690B;
  margin-top: 0.5rem;
}
a.beukmaat:hover {
  color: #ffffff;
  background: #2F2F2F;
  z-index: 3;
}
a.beukmaat:hover .beukmaat__popover {
  width: 100%;
  height: auto;
  opacity: 1;
  transition-delay: 0.25s;
  pointer-events: all;
  min-width: 14rem;
}
a.beukmaat:hover .beukmaat__popover span {
  opacity: 1;
  transition: opacity 0.25s ease-out;
  transition-delay: 0.25s;
}

a.beukmaat + a.beukmaat {
  margin-top: 0.35rem;
}

.specification {
  width: 100%;
  text-align: center;
}

.specification-list {
  font-size: 0.85rem;
  padding-left: 1rem;
}

.specification-list li::marker {
  color: #EA690B;
}

.matrix-items .item-light {
  background: rgba(255, 255, 255, 0.3);
}

.matrix-items .item-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between !important;
  background: #EA690B;
  color: #ffffff;
  grid-column: span 6;
  padding-left: 1rem;
  padding-right: 1rem;
}
.matrix-items .item-footer span {
  font-size: 0.85rem;
}

/* -- Navigation ------------------------*/
.navigation {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 888;
  padding: 1.5rem 0;
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.admin-bar .navigation {
  top: 32px;
}

.navigation__brand {
  display: inline-block;
}

.headroom {
  will-change: transform;
  transition: all .5s ease-in-out;
}

.headroom--pinned {
  transform: translateY(0%);
  opacity: 1;
}

.headroom--unpinned {
  transform: translateY(-100%);
  opacity: 0;
}

/* -- Overlay menu -------------------------*/
.hamburger {
  padding: 3px 3px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.is-active .hamburger .hamburger-inner,
.is-active .hamburger .hamburger-inner::before,
.is-active .hamburger .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 20px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -12px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.is-active .hamburger--collapse .hamburger-inner {
  transform: translate3d(0, -6px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-active .hamburger--collapse .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.is-active .hamburger--collapse .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.overlay-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #EA690B;
  z-index: 777;
  transform: translateY(-100%);
}
.overlay-menu--open {
  transform: translateY(0);
}

.overlay-menu-inner {
  overflow-y: scroll;
  height: 100%;
}

.overlay-menu-inner .container,
.overlay-menu-inner .row {
  height: 100%;
}

.mobile-menu {
  margin: 3rem 0;
}

.mobile-menu .nav-item + .nav-item {
  margin-top: 1.35rem;
}
.mobile-menu .nav-link {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  padding: 0;
}
.mobile-menu .nav-link[target="_blank"]:after {
  position: relative;
  content: '\f08e';
  font-family: "Font Awesome 6 Sharp";
  font-weight: 400;
  color: inherit;
  font-size: .5em;
  margin-left: 0.5em;
  top: -.5em;
}
.mobile-menu .nav-link:before {
  content: "\f054";
  position: relative;
  top: -.2em;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  font-size: .6em;
  color: inherit;
  margin-right: 0.5em;
}
.mobile-menu .nav-link:hover, .mobile-menu .nav-link:active, .mobile-menu .nav-link:focus, .mobile-menu .nav-link.active {
  color: #2F2F2F;
}


@media all and (min-width: 992px) {
  .navigation {
    padding: 0 0 2rem 0;
    overflow: hidden;
  }  
  .navigation__menu-top {
    background: #E3E3E3;
    position: relative;
    padding: 0.75rem 0;
    z-index: 8;
  }
  .navigation__menu-top:before {
    content: "";
    height: 100%;
    width: 2.8rem;
    display: block;
    background: #E3E3E3;
    -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
            clip-path: polygon(0 0, 100% 100%, 100% 0);
    position: absolute;
    top: 0;
    left: -2.8rem;
  }
  .navigation__menu-top:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #E3E3E3;
  }
  .top-menu .nav-item + .nav-item {
    margin-left: 1rem;
  }
  .top-menu .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #727272;
    padding: 0;
  }
  .top-menu .nav-link[target="_blank"]:after {
    content: '\f08e';
    font-family: "Font Awesome 6 Sharp";
    font-weight: 400;
    color: inherit;
    margin-left: 0.5em;
  }
  .top-menu .nav-link:hover, .top-menu .nav-link:active, .top-menu .nav-link:focus, .top-menu .nav-link.active {
    color: #EA690B;
  }
  .bottom-menu {
    padding-top: 1.5rem;
  }
  .bottom-menu .nav-item + .nav-item {
    margin-left: 2rem;
  }
  .bottom-menu .nav-link {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #2F2F2F;
    padding: 0;
  }
  .bottom-menu .nav-link:hover, .bottom-menu .nav-link:active, .bottom-menu .nav-link:focus, .bottom-menu .nav-link.active {
    color: #EA690B;
  }
  .bottom-menu .nav-link:before {
    content: "\f054";
    font-family: "Font Awesome 6 Sharp";
    font-weight: 900;
    font-size: 1rem;
    color: #EA690B;
    margin-right: 0.5em;
  }
  
  .overlay-menu {
    display: none;
    pointer-events: none;
  }
}

/* -- Hero ----------------------------*/
.hero {
  position: relative;
  background: #2F2F2F;
}
.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 8rem;
  z-index: 2;
}
.hero__title {
  line-height: 1;
  text-wrap: balance;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}
.hero__title strong {
  font-weight: 900;
}
.hero__subtitle {
  line-height: 1;
  text-wrap: balance;
  text-transform: uppercase;
  display: block;
}
.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__media:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(47, 47, 47) 0%, rgba(47, 47, 47, 0.1) 60%);
}

.hero__popup {
  aspect-ratio: 1;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: rgba(0,0,0,.8) .25rem 0 1rem;
  z-index: 666;
  width: 100px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.3);
  display: grid;
  place-items: center;
  border-radius: 100%;
  transition: background .5s;
  margin: 0 auto 1.5rem auto;
}
.hero__popup:hover {
  color: #fff;
  background: rgba(0,0,0,.85);
  transform: scale(1.1);
}
.popup-video i {
  position: relative;
  left: .125rem;
}

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

.hero--large {
  height: 80vh;
  min-height: 600px;
}

.hero--medium {
  height: 65vh;
  min-height: 500px;
}

.hero--basic {
  height: 40vh;
  min-height: 420px;
}
.hero--basic .hero__content {
  padding-bottom: 2.5rem;
}

@media all and (min-width: 1700px){
  .hero--basic {
    height: 55vh;
  }
}

/* -- Module matrix --------------------------*/
.module--matrix {
  padding: 2rem 0;
}

/* -- Module projecten -----------------------*/
.module--projecten {
  padding: 2rem 0;
  overflow: hidden;
}
.module--projecten .container {
  position: relative;
}
.module--projecten .container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  right: calc(100% - 1.25rem);
  z-index: 2;
}


/* -- Module content -------------------------*/
.module--content {
  margin: 2rem 0;
}

/* -- Module stappenplan ---------------------*/
.module--stappenplan {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(47,47,47,1) 0%, rgba(47,47,47,1) 50%, rgba(245,245,245,1) 50%, rgba(245,245,245,1) 100%);
}

.stappen-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4rem;
}

.stappen-grid-content {
  padding: 2rem 0;
  color: #fff;
}

  .stappen-grid-content span.fs-2 {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    text-wrap: balance;
    line-height: 1.2;
  }

  .stappen-grid-content .slide-pagination {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
  }

    .stappen-grid-content .slide-pagination__number {
      display: grid;
      place-items: center;
      padding: 0;
      width: 54px;
      height: 54px;
      font-weight: 700;
      text-transform: uppercase;
      background: #f5f5f5;
      border-radius: 0;
      border: none;
      border-top-color: currentcolor;
      border-right-color: currentcolor;
      border-bottom-color: currentcolor;
      border-left-color: currentcolor;      
    }

    .stappen-grid-content .slide-pagination__number {
      color: #fff;
      background: #BFBFBF;
      clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0% 100%);
    }

    .stappen-grid-content .slide-pagination__number.active {
      color: #fff;
      background: #EA690B;
      clip-path: polygon(0% 0%, calc(100% - 0.9rem) 0%, 100% 0.9rem, 100% 100%, 0% 100%, 0% 0%);
    }

.stappen-grid-steps {
  padding: 2rem;
  text-align: center;
  min-width: 0;
  overflow: hidden; 
}

.swiper--steps .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}

.tile-step {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

  .tile-step .tile__title {
    font-size: 1.5rem;
     color: #EA690B;
  }

  .tile-step-icon {
    height: 120px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
  }
  

  .tile__slide-next {
    color: #2f2f2f;
    font-weight: 700;
    margin-top: 1rem;
  }

    .tile__slide-next i {
      color: #EA690B;
    }


@media all and (min-width: 992px) {
  .module--stappenplan {
    background: linear-gradient(90deg, rgba(47,47,47,1) 0%, rgba(47,47,47,1) 50%, rgba(245,245,245,1) 50%, rgba(245,245,245,1) 100%);
  }
  .stappen-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr; 
    gap: 6rem;
  }
  
  .stappen-grid-content {
    padding: 3rem 5rem 3rem 0;
  }
  .stappen-grid-steps {
    padding: 3rem;
  }

}

/* -- Module quote ---------------------------*/
.module--quote {
  padding: 2rem 0;
  overflow: hidden;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content;
}
.quote-grid__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quote-grid-content {
  grid-row: 1;
}
.quote-grid-content-inner {
  padding: 3rem 1.25rem;
  background: #F5F5F5;
  position: relative;
  -webkit-clip-path: polygon(0 0, 0 100%, calc(100% - 2.125rem) 100%, 100% calc(100% - 2.125rem), 100% 0);
          clip-path: polygon(0 0, 0 100%, calc(100% - 2.125rem) 100%, 100% calc(100% - 2.125rem), 100% 0);
  z-index: 2;
}
.quote-grid-media {
  display: grid;
  position: relative;
  margin-top: -2.125rem;
  aspect-ratio: 16/9;
  grid-row: 2;
  place-items: center;
}

@media all and (min-width: 576px) {
  .quote-grid-content-inner-positioner {
    max-width: calc(540px - 2.5rem);
    margin: 0 auto;
  }
}
@media all and (min-width: 768px) {
  .quote-grid-content-inner-positioner {
    max-width: calc(720px - 2.5rem);
    margin: 0 auto;
  }
}
@media all and (min-width: 992px) {
  .quote-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .quote-grid__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .quote-grid--left .quote-grid-content {
    align-self: center;
    grid-column: 7/span 6;
    grid-row: 1;
  }
  
  .quote-grid--right .quote-grid-content {
    align-self: center;
    grid-column: 1/span 6;
    grid-row: 1;
  }
  .quote-grid-content-inner {
    padding: 3rem 0;
  }
  
  .quote-grid--left .quote-grid-media {
    grid-column: span 8/-6;
    grid-row: 1;
  }
  
  .quote-grid--right .quote-grid-media {
    grid-column: span 7/-1;
    grid-row: 1;
    margin-top: 0;
  }  
  .module--matrix {
    padding: 3rem 0;
  }
  .module--projecten {
    padding: 3rem 0;
  }
  .module--content {
    margin: 3rem 0;
  }
  
  .module--content + .module--content {
    margin-top: -1rem;
  }
  
  .module--quote {
    padding: 3rem 0;
  }  
}
@media all and (min-width: 992px) {
  .quote-grid--left .quote-grid-content-inner {
    -webkit-clip-path: polygon(0 0, 0 calc(100% - 2.125rem), 2.125rem 100%, 100% 100%, 100% 0);
    clip-path: polygon(0 0, 0 calc(100% - 2.125rem), 2.125rem 100%, 100% 100%, 100% 0);

  }
  
  .quote-grid--left .quote-grid-content-inner-positioner {
    max-width: calc(472px - 1.5rem);
    margin: 0 auto 0 0.75rem;
  }
  
  .quote-grid--right .quote-grid-content-inner-positioner {
    max-width: calc(472px - 1.5rem);
    margin: 0 0.75rem 0 auto;
  }
  .quote-grid--left .quote-grid-content-inner-positioner .blockquote {
    padding-left: 3rem;
  }
  .quote-grid--right .quote-grid-content-inner-positioner .blockquote {
    padding-right: 3rem;
  }
}
@media all and (min-width: 1200px) {
  .module--matrix {
    padding: 4rem 0;
  }
  .module--projecten {
    padding: 4rem 0;
  }
  .module--content {
    margin: 4rem 0;
  }
  
  .module--content + .module--content {
    margin-top: -2rem;
  }
  
  .module--quote {
    padding: 4rem 0;
  } 
  
  .quote-grid--left .quote-grid-content-inner-positioner,
  .quote-grid--right .quote-grid-content-inner-positioner {
    max-width: calc(561.5px - 1.5rem);
  }
}
@media all and (min-width: 1400px) {
  .quote-grid--left .quote-grid-content-inner-positioner,
  .quote-grid--right .quote-grid-content-inner-positioner {
    max-width: calc(651.5px - 1.5rem);
  }
}
@media all and (min-width: 1920px) {
  .quote-grid--left .quote-grid-content-inner-positioner,
  .quote-grid--right .quote-grid-content-inner-positioner {
    max-width: calc(731px - 1.5rem);
  }
}

.details--plattegronden {
  padding: 4rem 0;
}

.nav-pills {
  gap: 1rem;
}
.nav-pills .nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
  color: #ffffff;
  background: #2F2F2F;
}
.nav-pills .nav-link.active, .nav-pills .nav-link:focus, .nav-pills .nav-link:hover, .nav-pills .nav-link:active {
  color: #2F2F2F;
  background: #EA690B;
}

.plattegrond {    
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin: 0;
}
.plattegrond figcaption {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.details--specificaties {
  position: relative;
  padding: 6rem 0;
}
.details--specificaties .container {
  position: relative;
  z-index: 2;
}
.details--specificaties:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  -webkit-clip-path: polygon(0 calc(0% + 2.25rem), 0 100%, 100% 100%, 100% 0%, calc(0% + 2.25rem) 0);
          clip-path: polygon(0 calc(0% + 2.25rem), 0 100%, 100% 100%, 100% 0%, calc(0% + 2.25rem) 0);
  z-index: 1;
}

.accordion--second .accordion-item:first-child {
  border-top: 2px solid #d1d1d1;
}
.accordion-item {
  background: none;
  border: 2px solid #d1d1d1;
}
.accordion-button {
  outline: none;
  background: none;
  box-shadow: none !important;
  padding: 1.5rem 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #2F2F2F;
}
.accordion-button i {
  color: #EA690B;
  margin-right: 0.5rem;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EA690B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
  color: #2F2F2F;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EA690B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  padding: 0 0 var(--bs-accordion-body-padding-y) 0;
}

.accordion-body dl.row {
  gap: 0.75rem 0;
}

.details--matrix {
  padding: 4rem 0;
}

.project-map {
  --margin-size: -3rem;
  position: relative;
  margin-top: calc(var(--margin-size) * 2);
  z-index: 3;
}

.project-map .acf-map {
  height: 600px;
}

.project-galerij {
  padding: 3rem 0;
}

.swiper--galerij .project-galerij__image {
  display: block;
  aspect-ratio: 5/4.5;
  overflow: hidden;
  cursor: zoom-in;
}

.swiper--galerij .project-galerij__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s;
}

.swiper--galerij .project-galerij__image:hover img {
  transform: scale(1.05);
}

.project-controls {
  padding: 1.5rem 0;
}

.project-controls__btn {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #2F2F2F;
  transition: all .5s;
}

.project-controls__btn .btn-square {
  color: #fff;
  background: #2F2F2F;
}

.project-controls__btn:hover {
  color: #EA690B;
}

.project-controls__btn:hover .btn-square {
  color: #fff;
  background: #EA690B;
}

@media all and (min-width: 992px) {
  .project-map {
    --margin-size: -3.5rem;
  }
}
@media all and (min-width: 1200px) {
  .project-map {
    --margin-size: -3.75rem;
  }
}
@media all and (min-width: 1500px) {
  .project-map {
    --margin-size: -4rem;
  }
}
@media all and (min-width: 1920px) {
  .project-map {
    --margin-size: -4.5rem;
  }
}

@media all and (min-width: 576px) {
  .details--specificaties:after {
    width: calc(100% - 1.25rem);
  }
}
@media all and (min-width: 992px) {
  .accordion--second .accordion-item:first-child {
    border-top: none;
  }
}
@media all and (min-width: 1620px) {
  .details--specificaties:after {
    width: 95dvw;
    -webkit-clip-path: polygon(0 calc(0% + 3.25rem), 0 100%, 100% 100%, 100% 0%, calc(0% + 3.25rem) 0);
            clip-path: polygon(0 calc(0% + 3.25rem), 0 100%, 100% 100%, 100% 0%, calc(0% + 3.25rem) 0);
  }
}
@media all and (min-width: 1920px) {
  .details--specificaties:after {
    width: 90dvw;
    -webkit-clip-path: polygon(0 calc(0% + 3.75rem), 0 100%, 100% 100%, 100% 0%, calc(0% + 3.75rem) 0);
            clip-path: polygon(0 calc(0% + 3.75rem), 0 100%, 100% 100%, 100% 0%, calc(0% + 3.75rem) 0);
  }
}
/* -- Breadcrumbs ---------------------------*/
.breadcrumbs {
  font-size: 0.85rem;
}
.breadcrumbs a {
  color: #2F2F2F;
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.breadcrumbs .spacer {
  padding: 0 0.125rem;
}

.page-content {
  --container-size: 100%;
  --clip-size: 2.125rem;
  --padding-size: 3rem;
  position: relative;
  margin: 0 0 4rem 0;
}

.page-content--map {
  margin: 0;
}

.page-content .row--breadcrumbs {
  padding: 1.5rem 0;
}

.page-content .row--contents {
  padding: 0 0 var(--padding-size) 0;
  align-items: center;
}

.page-content:not(.page-content--media) .row--contents {
  padding: 3rem 0 var(--padding-size) 0;
  align-items: flex-start;
}

.page-content:not(.page-content--media) .row--title {
  padding: 1.25rem 0;
}

.page-content--map .row--contents {
  padding: 0 0 calc(var(--padding-size) * 2.5) 0 !important;
}

.content--styles p:first-of-type {
  font-size: 1.125rem;
  font-weight: 700;
}

.page-content .container {
  position: relative;
  z-index: 2;
}

.page-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  -webkit-clip-path: polygon(0 0, 0 100%, calc(100% - var(--clip-size)) 100%, 100% calc(100% - var(--clip-size)), 100% 0);
          clip-path: polygon(0 0, 0 100%, calc(100% - var(--clip-size)) 100%, 100% calc(100% - var(--clip-size)), 100% 0);
  z-index: 1;
}

.page-content__media {
  aspect-ratio: 16/9;
}

.page-content__media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-content--media:before {
  width: 100%;
}

.facetwp-type-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.facetwp-radio {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.9rem), calc(100% - 0.9rem) 100%, 0 100%);
  color: #ffffff;
  background: #2F2F2F !important;
}
.facetwp-radio .facetwp-display-value {
   padding: 0;
}
.facetwp-radio .facetwp-counter {
  display: none;
}
.facetwp-radio.checked, .facetwp-radio:focus, .facetwp-radio:hover, .facetwp-radio:active {
  color: #2F2F2F;
  background: #EA690B !important;
}

@media all and (min-width: 992px) {
  .page-content {
    --container-size: calc(960px - 2.5rem);
    --clip-size: 2.5rem;
    --padding-size: 3.5rem;
  }
  .page-content__media {
    width: calc(100% + (100vw - var(--container-size)) / 2);
    aspect-ratio: 16/9;
  }
  .page-content:before {
    width: calc(100% - 6rem);
  }
  .page-content--media:before {
    width: 75vw;
  }
}
@media all and (min-width: 1200px) {
  .page-content {
    --clip-size: 2.75rem;
    --container-size: calc(1140px - 2.5rem);
    --padding-size: 3.75rem;
  }
}
@media all and (min-width: 1500px) {
  .page-content {
    --clip-size: 3rem;
    --container-size: calc(1320px - 2.5rem);
    --padding-size: 4rem;
  }
}
@media all and (min-width: 1920px) {
  .page-content {
    --container-size: calc(1480px - 2.5rem);
    --clip-size: 3.25rem;
    --padding-size: 4.5rem;
  }
}
.footer {
  --container-size: 100%;
  margin-top: 4rem;
}
.footer__cta {
  background: #EA690B;
  padding: 4rem 0;
}
.footer__cta--media {
  padding: 0;
}
.footer__cta--media .footer__cta-body {
  padding: 1rem 0 2.5rem 0;
}
.footer__cta-media {
  position: relative;
  width: 100vw;
  right: 1.25rem;
  aspect-ratio: 16/9;
  max-height: 550px;
}
.footer__cta-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__top {
  padding: 4rem 0 3rem 0;
  color: #ffffff;
  background: #2F2F2F;
}
.footer__slogan {
  display: block;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-wrap: balance;
  margin-bottom: 2rem;
}
.footer__socials {
  margin-bottom: 2rem;
}
.footer__socials a {
  font-size: 1.25rem;
}
.footer__address {
  margin-bottom: 2rem;
}
.footer__title {
  display: block;
  font-size: 1.333rem;
  font-weight: 700;
  color: #EA690B;
  margin-bottom: 1rem;
}
.footer__nav {
  margin: 0;
}
.footer__nav .nav-item + .nav-item {
  margin-top: 0.35rem;
}
.footer__nav .nav-link {
  position: relative;
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
}

.footer__nav .nav-link:before {
  content: "\f054";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  color: #EA690B;
  margin-right: 0.5em;
}

.footer__nav .nav-link i {
  
}
.footer__nav .nav-link:hover {
  padding-left: 0.5rem;
}
.footer__bottom {
  padding: 0 0 3rem 0;
  background: #2F2F2F;
}
.footer__bottom span {
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

@media all and (min-width: 576px) {
  .footer {
    --container-size: calc(540px - 2.5rem);
  }
  .footer__cta-media {
    right: calc((100vw - var(--container-size)) / 2);
  }
}
@media all and (min-width: 768px) {
  .footer {
    --container-size: calc(720px - 2.5rem);
  }
}
@media all and (min-width: 992px) {
  .footer {
    --container-size: calc(960px - 2.5rem);
  }
  .footer__cta-media {
    width: 50vw;
  }
  .footer__cta--media .footer__cta-body {
    padding: 4rem 0;
  }
}
@media all and (min-width: 1200px) {
  .footer {
    --container-size: calc(1140px - 2.5rem);
  }
  .footer__top {
    padding: 7rem 0 3.5rem 0;
  }
}
@media all and (min-width: 1400px) {
  .footer {
    --container-size: calc(1320px - 2.5rem);
  }
}
@media all and (min-width: 1920px) {
  .footer {
    --container-size: calc(1480px - 2.5rem);
  }
}/*# sourceMappingURL=stylesheet.css.map */