/**
 * Modern CSS Reset Tweaks
 * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Box sizing normalization */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 *
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0-modified | 20110126
 * License: none (public domain)
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/**
 * Input Reset
 */
input:required,
input {
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

[disabled] {
  pointer-events: none;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Misc
 * ========================================================================== */
template {
  display: none;
}

/* Poppins 400 Regular */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/Poppins/Poppins-Regular.ttf");
}
/* Poppins 500 Medium */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/fonts/Poppins/Poppins-Medium.ttf");
}
/* Poppins 600 Semibold */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/Poppins/Poppins-SemiBold.ttf");
}
/* Poppins 700 Bold */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/Poppins/Poppins-Bold.ttf");
}
html {
  font-family: Poppins, serif;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  border-left: transparent;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #f6a51f;
}

h1, h2 {
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 998px) {
  h1, h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

h3 {
  font-size: 28px;
  line-height: 120%;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}
p.small {
  width: 75%;
}

strong {
  font-weight: 600;
}

.row {
  margin-bottom: 24px;
}

.row ul {
  padding: 8px 0 8px 16px;
  margin: 0;
}
.row ul li {
  margin-bottom: 8px;
}
.row ul li a {
  text-decoration: none;
  color: #000;
}
.row ul li a:hover {
  text-decoration: underline;
}

.button {
  padding: 16px 24px;
  border: 1px solid #000;
  color: #000;
  display: inline-block;
  text-decoration: none;
  font: 400 18px/100% Poppins;
  transition: all 220ms ease-in-out;
}
.button:hover {
  background: #f5f5f5;
}
.button.white {
  border: 1px solid #fff;
  color: #fff;
}
.button.white:hover {
  background: rgba(255, 255, 255, 0.25);
}
.button.primary {
  position: relative;
  background: #000;
  color: #fff;
  border: none;
  outline: 4px solid #f6a51f;
  outline-offset: -2px;
}
.button.primary:hover {
  outline: 4px solid transparent;
}

.chip {
  font: 600 14px/100% Poppins;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 8px;
  background: #000;
  color: #fff;
}
.chip.te-koop {
  background: #f6a51f;
  color: #000;
}
.chip.realisaties {
  background: #BA6F0B;
  color: #fff;
}
.chip.in-voorbereiding {
  background: #FFC372;
  color: #000;
}

#nav-icon1 {
  width: 36px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-top: 10px;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #f6a51f;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0;
}

#nav-icon1 span:nth-child(2) {
  top: 12px;
}

#nav-icon1 span:nth-child(3) {
  top: 24px;
}

#nav-icon1.open span:nth-child(1) {
  top: 12px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 12px;
  transform: rotate(-135deg);
}

.container {
  display: grid;
  grid-gap: 64px;
  grid-template-rows: [row-start] 1fr [row-end];
  grid-template-columns: [col1-start] 1fr [col1-end col2-start] 1fr [col2-end];
}
@media screen and (max-width: 998px) {
  .container {
    grid-template-rows: [row-start] 1fr [row-end row2-start] 1fr [row2-end];
    grid-template-columns: [col1-start] 1fr [col1-end];
    grid-gap: 0;
  }
}
.container .visual {
  grid-row: row-start/row-end;
  grid-column: col2-start/col2-end;
  display: grid;
  align-content: center;
  padding-right: 48px;
}
.container .visual span.top {
  width: calc(100% - 16px);
  height: 16px;
  grid-row: 1/2;
  grid-column: 2/3;
  background: #f6a51f;
  justify-items: end;
}
.container .visual span.left {
  width: 16px;
  height: calc(100% - 16px);
  grid-row: 1/3;
  grid-column: 1/2;
  background: #f6a51f;
}
.container .visual span.bottom {
  width: calc(100% - 16px);
  height: 16px;
  grid-row: 2/3;
  grid-column: 1/span 2;
  background: #f6a51f;
  justify-self: end;
}
.container .visual span.right {
  width: 16px;
  height: calc(100% - 16px);
  grid-row: 1/2;
  grid-column: 2/3;
  background: #f6a51f;
  align-self: end;
}
.container .visual img {
  width: 100%;
  height: auto;
}
.container .data {
  grid-row: row-start/row-end;
  grid-column: col1-start/col1-end;
  display: block;
}
.container .data .subTitle {
  font: 600 16px/20px Poppins;
  margin-bottom: 16px;
}
.container .data h2 {
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 998px) {
  .container .data h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
.container .data p {
  font-size: 18px;
  line-height: 26px;
}
.container.data-left {
  justify-content: start;
}
.container.data-left .visual {
  grid-row: row-start/row-end;
  grid-column: col2-start/col2-end;
}
@media screen and (max-width: 998px) {
  .container.data-left .visual {
    grid-row: row2-start/row2-end;
    grid-column: col1-start/col1-end;
    padding-right: 0;
  }
}
.container.data-left .data {
  grid-row: row-start/row-end;
  grid-column: col1-start/col1-end;
}
@media screen and (max-width: 998px) {
  .container.data-left .data {
    grid-row: row-start/row-end;
    grid-column: col1-start/col1-end;
  }
}
.container.data-right {
  justify-content: start;
}
.container.data-right .visual {
  grid-row: row-start/row-end;
  grid-column: col1-start/col1-end;
  padding-right: 0;
}
@media screen and (max-width: 998px) {
  .container.data-right .visual {
    grid-row: row2-start/row2-end;
    grid-column: col1-start/col1-end;
  }
}
.container.data-right .data {
  grid-row: row-start/row-end;
  grid-column: col2-start/col2-end;
}
@media screen and (max-width: 998px) {
  .container.data-right .data {
    grid-row: row-start/row-end;
    grid-column: col1-start/col1-end;
  }
}

.inner-container.desktop {
  display: block;
}
.inner-container.mobile {
  display: none;
}
@media screen and (max-width: 998px) {
  .inner-container.desktop {
    display: none;
  }
  .inner-container.mobile {
    display: flex;
  }
}

.frame {
  display: flex;
  flex-direction: column;
}
.frame .inner-container {
  position: relative;
  max-width: 1312px;
  margin: 0 auto;
  padding: 24px;
}
@media screen and (max-width: 998px) {
  .frame .inner-container {
    max-width: unset;
    width: 100%;
    overflow: hidden;
    padding: 16px;
  }
}
.frame main section {
  width: 100%;
}
.frame main section.grey {
  background: #fafafa;
  padding: 120px 0;
}
.frame main section.grey.visuals {
  margin-top: 0;
  padding: 68px 0;
}
@media screen and (max-width: 720px) {
  .frame main section.grey.visuals {
    padding: 24px 0;
  }
}
@media screen and (max-width: 998px) {
  .frame main section.grey {
    padding: 60px 0;
  }
}

section {
  margin-top: 120px;
}
@media screen and (max-width: 998px) {
  section {
    margin-top: 60px;
  }
}
section.small-padding {
  margin-top: 60px;
}
@media screen and (max-width: 720px) {
  section.small-padding {
    margin-top: 24px;
  }
}

.cols {
  display: flex;
  align-items: center;
}
.cols.cols3 .col {
  width: 32%;
  margin-right: 2%;
}
.cols.cols3 .col:last-child {
  margin-right: 0;
}
@media screen and (max-width: 761px) {
  .cols.cols3 {
    flex-wrap: wrap;
  }
  .cols.cols3 .col {
    width: 100%;
    margin: 0 0 24px;
  }
}
.cols.cols4 .col {
  width: 22.5%;
  margin-right: 3.33%;
}
.cols.cols4 .col:last-child {
  margin-right: 0;
}
@media screen and (max-width: 998px) {
  .cols.cols4 {
    flex-wrap: wrap;
  }
  .cols.cols4 .col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-block figure {
  width: 48px;
  height: 48px;
  display: block;
  background: url("../assets/images/icons/icon_relume.svg");
}
.cta-block h3 {
  text-align: center;
  font-size: 32px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-block p {
  text-align: center;
}

header {
  border-bottom: 4px solid #f6a51f;
}
header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header .topBar {
  position: absolute;
  right: 24px;
  top: 8px;
  display: flex;
  align-items: center;
  color: #6c6c6c;
}
header .topBar .topMenu ul {
  display: flex;
}
header .topBar .topMenu li.menuDivider {
  margin: 0 4px;
}
header .topBar a {
  text-decoration: none;
  color: #6c6c6c;
  transition: all 200ms ease-in-out;
}
header .topBar a:hover {
  color: #000;
  text-decoration: underline;
}
header .call {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
header .call a {
  margin-left: 4px;
  color: #6c6c6c;
}
header .call figure {
  margin-right: 8px;
}
header .menu {
  display: flex;
  align-items: end;
}
header .menu .logo {
  margin-right: 64px;
}
header .menu nav {
  width: 100%;
  margin-bottom: 8px;
}
header .menu nav ul {
  display: flex;
  width: 100%;
}
header .menu nav ul li {
  margin-right: 24px;
}
header .menu nav ul li:last-child {
  margin-right: 0;
}
header .menu nav ul li a {
  text-decoration: none;
  background: transparent;
  color: #000;
  font: 400 18px/100% Poppins;
  padding: 4px 16px;
  transition: all 220ms ease-in-out;
}
header .menu nav ul li a:hover {
  background: #f5f5f5;
}
header .menu nav ul li a.active {
  background: #000;
  color: #fff;
}

.inner-container.mobile {
  justify-content: space-between;
  width: 100%;
  padding: 8px 16px;
}
.inner-container.mobile .logo img {
  width: 55%;
}

footer {
  background: #000;
  color: #fff;
  padding: 50px 0;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer ul li {
  margin-bottom: 8px;
}

.copyright {
  padding: 8px;
  text-align: center;
}

#mobileMenuOverlay {
  right: -200%;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99;
  top: 0;
  background: #f6a51f;
  transition: all 220ms ease-in-out;
}
#mobileMenuOverlay .close {
  position: absolute;
  right: 16px;
  top: 16px;
  font: 700 32px/36px Poppins;
}
#mobileMenuOverlay .close img {
  transition: all 220ms ease-in-out;
  cursor: pointer;
}
#mobileMenuOverlay .close img:hover {
  opacity: 0.65;
}
#mobileMenuOverlay .topMenu li.menuDivider {
  display: none;
}
#mobileMenuOverlay.open {
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
#mobileMenuOverlay.open nav, #mobileMenuOverlay.open .topMenu {
  width: 50%;
  margin: 0 auto;
}
#mobileMenuOverlay.open .divider {
  display: block;
  height: 3px;
  width: 75%;
  margin: 24px;
  padding-bottom: 24px;
  border-top: 3px solid #BA6F0B;
}
#mobileMenuOverlay.open ul li {
  margin-bottom: 24px;
}
#mobileMenuOverlay.open ul li a {
  text-decoration: none;
  color: #000;
  font: 600 28px/32px Poppins;
  transition: all 220ms ease-in-out;
}
#mobileMenuOverlay.open ul li a:hover {
  opacity: 0.75;
  text-decoration: underline;
}
#mobileMenuOverlay.open ul li a.active {
  color: #BA6F0B;
}
#mobileMenuOverlay.open ul li a.active:hover {
  text-decoration: none;
  opacity: 1;
}

.no-scroll {
  overflow: hidden;
}

section.cta .title {
  font-size: 56px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 998px) {
  section.cta .title {
    font-size: 36px;
  }
}
section.cta p {
  font: 400 20px/24px Poppins;
}
section.cta a {
  color: #000;
}
section.cta a:hover {
  text-decoration: none;
}
section.cta a.primary {
  margin-top: 16px;
}

section.intro {
  margin-top: 0;
  display: block;
  height: 72vh;
  background: url("../assets/images/home/main-visual.jpg") no-repeat;
  background-size: cover;
  position: relative;
}
section.intro .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
section.intro .inner-container {
  display: grid;
  height: 100%;
}
section.intro .inner-container .shout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
section.intro .inner-container .shout h1 {
  font-size: 56px;
  line-height: 120%;
  font-weight: bold;
}
section.intro .inner-container .shout p {
  margin: 16px 0;
  width: 30%;
}
@media screen and (max-width: 998px) {
  section.intro .inner-container .shout h1 {
    font-size: 36px;
  }
  section.intro .inner-container .shout p {
    width: 100%;
  }
}

#project-nav {
  background: #fafafa;
  margin-top: 0;
}
#project-nav .inner-container {
  padding: 32px 24px;
}
#project-nav .project-menu {
  display: flex;
}
#project-nav .project-menu .project-menu-item {
  display: flex;
  align-self: center;
  height: 34px;
  line-height: 34px;
  background: transparent;
  margin-right: 16px;
  padding: 0 16px;
  cursor: pointer;
  transition: all 220ms ease-in-out;
}
#project-nav .project-menu .project-menu-item:hover {
  background: #EBEBEB;
}
#project-nav .project-menu .project-menu-item.active {
  background: #f6a51f;
  color: #fff;
}

section.projects {
  margin-top: 16px;
}
section.projects #projects {
  display: flex;
  flex-wrap: wrap;
}
section.projects #projects .project {
  box-sizing: border-box;
  width: calc(33.3333% - 16px);
  margin: 0 24px 24px 0;
  border: 1px solid #d0d0d0;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: all 220ms ease-in-out;
}
section.projects #projects .project:nth-child(3n+3) {
  margin-right: 0;
}
@media screen and (max-width: 998px) {
  section.projects #projects .project {
    width: calc(50% - 16px);
  }
  section.projects #projects .project:nth-child(2n+2) {
    margin-right: 0 !important;
  }
  section.projects #projects .project:nth-child(3n+3) {
    margin-right: 24px;
  }
}
@media screen and (max-width: 620px) {
  section.projects #projects .project {
    width: 100%;
    margin-right: 0 !important;
  }
}
section.projects #projects .project img {
  border-radius: 16px 16px 0 0;
}
section.projects #projects .project .chip {
  position: absolute;
  top: 8px;
  left: 8px;
}
section.projects #projects .project .project-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 8px;
}
section.projects #projects .project .project-info .name {
  font: 600 20px/24px Poppins;
}
section.projects #projects .project .project-info .place {
  font: 400 16px/20px Poppins;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
section.projects #projects .project .project-info .place figure {
  margin-right: 4px;
}
section.projects #projects .project:hover img {
  opacity: 0.85;
}

.team {
  display: flex;
}
.team .teamlid {
  width: 22.5%;
  margin-right: 3.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team .teamlid:last-child {
  margin-right: 0;
}
@media screen and (min-width: 580px) and (max-width: 998px) {
  .team .teamlid {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 32px;
  }
  .team .teamlid:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 579px) {
  .team .teamlid {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.team .teamlid .name {
  font: 600 20px/24px Poppins;
  margin: 16px 0 4px;
}
.team .teamlid .function {
  margin: 8px 0 16px;
}
@media screen and (max-width: 998px) {
  .team {
    flex-wrap: wrap;
  }
  .team .col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.contact .data {
  flex-basis: 55%;
  padding-top: 0;
  margin-right: 40px;
}

.adres-container {
  flex-basis: 40%;
  position: relative;
}
.adres-container .adres {
  padding: 16px;
  background: #fff;
  border-left: 1px solid #f6a51f;
  height: 100%;
}
.adres-container .adres h3 {
  border-bottom: 1px solid #f6a51f;
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.adres-container .adres a {
  text-decoration: none;
  color: #6c6c6c;
  transition: all 200ms ease-in-out;
}
.adres-container .adres a:hover {
  color: #000;
  text-decoration: underline;
}

form {
  margin-right: 24px;
}
form .input {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
form .input label {
  font: 400 14px/100% Poppins;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 4px;
}
form .input label span {
  color: #f6a51f;
}
form .input input {
  padding: 8px 4px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
form .input textarea {
  padding: 8px 4px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
form button {
  margin-top: 16px;
}

@media screen and (max-width: 810px) {
  .contact .data {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 40px !important;
  }
  .contact .data form {
    margin-right: 0;
  }
}
main.project h1 {
  font: 600 28px/32px Poppins;
  margin: 40px 0 4px;
}
main.project section.visuals .project-data-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1180px) {
  main.project section.visuals .project-data-container {
    flex-wrap: wrap;
  }
  main.project section.visuals .project-data-container .project-data {
    width: 100%;
    margin-bottom: 16px;
  }
  main.project section.visuals .project-data-container .project-data h1 {
    margin-top: 0;
  }
}
main.project section.visuals .project-data-container .project-data {
  margin-right: 32px;
}
main.project section.visuals .project-data-container .project-data .tags {
  display: flex;
  align-items: center;
}
main.project section.visuals .project-data-container .project-data .tags .chip {
  margin-right: 8px;
}
main.project section.visuals .project-data-container .owl-carousel {
  width: 700px;
  height: 486px;
  border: 24px solid white;
}
@media screen and (max-width: 720px) {
  main.project section.visuals .project-data-container .owl-carousel {
    width: 100%;
    height: auto;
    border: 8px solid white;
  }
}
main.project section.visuals .project-data-container .owl-carousel .owl-item {
  height: 467px;
}
@media screen and (max-width: 720px) {
  main.project section.visuals .project-data-container .owl-carousel .owl-item {
    height: auto;
  }
}
main.project section.visuals .project-data-container .owl-carousel .owl-stage-outer {
  height: 467px;
}
@media screen and (max-width: 720px) {
  main.project section.visuals .project-data-container .owl-carousel .owl-stage-outer {
    height: auto;
  }
}
main.project section.visuals .project-data-container .owl-carousel .owl-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
main.project section.visuals .project-data-container .owl-carousel .owl-dots button {
  background: #000;
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  margin-right: 8px;
}
main.project section.visuals .project-data-container .owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}
main.project section.visuals .project-data-container .owl-carousel .owl-dots button.active {
  background: #f6a51f;
}
main.project .location {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
main.project .location figure {
  margin-right: 4px;
}
@media screen and (max-width: 1270px) {
  main.project .container {
    flex-wrap: wrap;
  }
}
main.project .container .visual {
  flex-basis: 700px;
  height: 467px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 1270px) {
  main.project .container.data-right .visual {
    order: 2;
    margin: 24px 0 0;
  }
  main.project .container.data-right .data {
    width: 100%;
    flex-basis: 100%;
    padding-top: 8px;
  }
}
@media screen and (max-width: 1270px) {
  main.project .container.data-left .visual {
    order: 2;
    margin: 24px 0 0;
  }
  main.project .container.data-left .data {
    width: 100%;
    flex-basis: 100%;
    padding-top: 8px;
  }
}
main.project .quote {
  font-size: 48px;
  line-height: 64px;
  text-align: center;
  font-weight: 600;
  color: #6c6c6c;
}
@media screen and (max-width: 1270px) {
  main.project .quote {
    font-size: 32px;
    line-height: 48px;
  }
}
@media screen and (max-width: 720px) {
  main.project .quote {
    font-size: 24px;
    line-height: 32px;
  }
}
main.project p.extra {
  width: 75%;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 1270px) {
  main.project p.extra {
    width: 100%;
    margin-top: 16px;
  }
}
@media screen and (max-width: 720px) {
  main.project .container .visual {
    flex-basis: 400px;
    height: 266px;
    min-height: auto;
    min-width: auto;
    width: 100%;
  }
}

.player {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 620px) {
  .player iframe {
    width: 100%;
    height: auto;
    min-height: 330px;
  }
}

/* Utility Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
