/* ============================================================
   Sundrop v3 — main.css
   Based on hous.nl/project/luxe-uitbouw-in-eigentijds-klassieke-stijl/
   ============================================================ */

/* ------------------------------------------------------------
   Base
   ------------------------------------------------------------ */
*, *:before, *:after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    color: #1d1c1c;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6, ul, ol, p {
    font-family: 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #444;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* Wrapper matches Bootstrap container */
.wrapper {
    max-width: 1280px;
    width: 95%;
    margin: 0 auto;
    position: relative;
}

/* Bootstrap overrides */
.container {
    max-width: 1280px;
}
.container-fluid {
    position: relative;
}

/* ------------------------------------------------------------
   Page transition / loading overlay
   ------------------------------------------------------------ */
#pageOut {
    width: 150vw;
    height: 150vw;
    border-radius: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    display: block;
    background-color: #fff;
    transition: 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99999;
    animation: pageOut;
    animation-delay: 0s;
}
#pageOut.hide {
    height: 100vw;
    width: 100vw;
    opacity: 0;
    transition: .8s;
}
#pageOut.none {
    display: none;
}
@keyframes pageOut {
    0%   { height: 150vw; width: 150vw; top: 50%; }
    80%  { height: 150vw; width: 150vw; opacity: 1; }
    100% { height: 150vw; opacity: 0; width: 150vw; }
}

#pageTransition {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    bottom: -100vh;
    transition: 1s cubic-bezier(0.74, 0.05, 0.34, 1.08);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pageTransition .innerWrapper {
    font-size: 1.3em;
    letter-spacing: 5px;
    font-family: 'Raleway', sans-serif;
    color: #b38551;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}
#pageTransition .innerWrapper:before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    background-color: #b38551;
    width: 100%; height: 100%;
    transition: .3s;
    transition-delay: .3s;
    z-index: 9;
}
#pageTransition .innerWrapper:after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    background-color: #fff;
    width: 100%; height: 100%;
    transition: .3s;
    z-index: 10;
}
#pageTransition .innerWrapper.show:after  { width: 0; right: -10px; left: unset; }
#pageTransition .innerWrapper.show:before { width: 0; right: -10px; left: unset; }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.headerMargin {
    height: 0px;
    background-color: #fff;
}

header.site-header {
    width: 100vw;
    background-color: #fff;
    position: fixed;
    top: 0px;
    padding: 16px 0;
    z-index: 99999;
    transition: .3s;
}
header.site-header .container {
    max-width: unset;
    padding: 0px 40px;
}
header.site-header .navbar {
    display: flex;
    flex-direction: row;
    padding: 0;
    align-items: center;
}

/* Desktop logo */
header.site-header #logo-mobile img { display: none; }
header.site-header #logo-desktop { display: block; }
header.site-header #logo-desktop-flat { display: none; }

header.site-header .navbar-collapse {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
}
header.site-header .navbar-logo {
    display: flex;
    align-items: center;
    padding: 0px;
}
header.site-header .navbar-logo img {
    height: 60px;
}
header.site-header .navbar-nav {
    display: flex;
    flex-direction: row;
}
header.site-header .navbar-nav .nav-item {
    color: #fff;
    list-style: none;
    transition: .2s;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: bold;
    display: flex;
    align-items: center;
}
header.site-header .navbar-nav .nav-item a h3 {
    padding: 0;
    margin: 0;
    font-size: .9em;
}
header.site-header .navbar-nav .nav-item a.nav-link {
    margin: 0px 14px;
    padding: 8px 8px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    position: relative;
}
header.site-header .navbar-nav .nav-item a.nav-link:hover {
    text-decoration: none !important;
    color: inherit;
}
header.site-header .navbar-nav .nav-item a.nav-link::after {
    width: 0;
    height: 3px;
    background-color: #b38551;
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: .5s;
}
header.site-header .navbar-nav .nav-item a.nav-link:hover::after {
    width: 100%;
}
header.site-header .navbar-nav .nav-item.contact {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 2px;
    padding: 0px;
    margin: 0px 0px 0px 12px;
    transition: .3s;
    color: #fff;
    display: flex;
    align-items: center;
}
header.site-header .navbar-nav .nav-item.contact a {
    margin: 0px;
    padding: 10px 12px;
}
header.site-header .navbar-nav .nav-item.contact a h3 {
    color: #fff;
    margin: 0;
}
header.site-header .navbar-nav .nav-item.contact a.nav-link:hover::after {
    width: 0;
}
header.site-header .navbar-nav .nav-item.contact:hover {
    background-color: #fff;
}
header.site-header .navbar-nav .nav-item.contact:hover a h3 {
    color: #b38551;
}

/* Transparent header on project/hero pages */
.single-projecten header.site-header:not(.sticky),
.home header.site-header:not(.sticky) {
    background-color: transparent;
    top: 20px;
}
.home .headerMargin {
    display: none;
}

/* Sticky header (after scroll) */
header.site-header.sticky {
    position: fixed;
    transition: .3s;
    box-shadow: 0px 0px 30px rgba(0,0,0,.05);
    top: 0;
    background-color: #fff;
}
header.site-header.sticky .navbar-nav .nav-item.contact {
    background-color: #f6f1eb;
    border-color: #f6f1eb;
    border-radius: 2px;
}
header.site-header.sticky .navbar-nav .nav-item.contact:hover {
    border-color: #b38551;
}
header.site-header.sticky .navbar-nav .nav-item a h3 {
    color: #b38551;
}
header.site-header.sticky #logo-desktop { display: none; }
header.site-header.sticky #logo-desktop-flat { display: block; }
header.site-header.sticky #logo-desktop-flat img { height: 36px; }

/* Mobile header hamburger (hidden on desktop) */
.mobileNav {
    display: none;
}
header.site-header .navbar-toggler {
    border: 0;
    padding: 12px;
    background: transparent;
    cursor: pointer;
}
.navbar-bar {
    width: 24px;
    height: 2px;
    background-color: #b38551;
    display: block;
}
.navbar-bar:nth-child(2) {
    margin: 6px 0;
}

/* ------------------------------------------------------------
   AOS / overlayAnimation
   ------------------------------------------------------------ */
.overlayAnimation {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background-color: #fff;
    z-index: 3;
    pointer-events: none;
}

[data-aos="clearImage"] {
    filter: brightness(90%);
    transform: scaleY(1);
    transform-origin: top;
}
[data-aos="clearImage"].aos-animate {
    filter: unset;
    transform: scaleY(1);
    opacity: 0;
}

/* ------------------------------------------------------------
   Hero (#top .scrollTop)
   ------------------------------------------------------------ */
#top, .container-fluid, .container, .contentRow, .col-12, .imageOverlay, img {
    transition: .7s;
}

#top .container {
    width: 100%;
    position: relative;
}

/* Center the hero text+image vertically */
#top .col-12 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

#content {
    z-index: 1;
}

.contentRow {
    margin: 200px 0;
}
.contentRow .col-12 {
    padding: 0;
}
.contentRow .imageOverlay {
    position: relative;
}
.contentRow .imageOverlay:before {
    content: "";
    position: absolute;
    opacity: 0;
}

/* Project info: h2 above h1 */
.contentRow .projectInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 80px;
    transition: 2s;
    width: 100%;
}
.contentRow .projectInfo h1,
.contentRow .projectInfo h2,
.contentRow .projectInfo h3 {
    text-align: center;
    color: #1d1c1c;
}
/* h1: large gold title */
.contentRow .projectInfo h1 {
    font-size: 3.2em;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b38551;
    position: relative;
    display: inline-block;
    margin: 0;
    order: 1;
    transition: .2s;
}
.contentRow .projectInfo h1:after {
    content: "";
    position: absolute;
    width: 70%;
    height: calc(100% + 20px);
    left: 15%;
    top: -10px;
    background-color: #f6f1eb;
    z-index: -1;
}
/* h2: city name above — rendered after h1 via order */
.contentRow .projectInfo h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    font-weight: 500;
    order: 2;
}
.contentRow .projectInfo h2:before,
.contentRow .projectInfo h2:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    top: 50%;
    background-color: #b38551;
    z-index: -1;
}
.contentRow .projectInfo h2:before { left: -100px; }
.contentRow .projectInfo h2:after  { right: -100px; }

/* Hero: full-viewport with scrollTop class on desktop */
@media (min-width: 993px) {
    #top.scrollTop {
        min-height: calc(100vh - 20px);
        margin: 10px 10px 210px 10px;
    }
    #top.scrollTop .container-fluid {
        padding: 0;
        margin: 0 auto;
        height: calc(100vh - 20px);
        width: 100%;
    }
    #top.scrollTop .container-fluid .container {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 auto;
        height: calc(100vh - 20px);
        position: relative;
        overflow: hidden;
    }
    #top.scrollTop .container-fluid .container .contentRow {
        margin-top: 0px;
        height: 100%;
        display: flex;
        align-items: stretch;
    }
    #top.scrollTop .container-fluid .container .contentRow .col-12 {
        height: 100%;
        padding: 0;
    }
    #top.scrollTop .container-fluid .container .contentRow .projectInfo {
        position: relative;
        z-index: 6;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h1,
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h2,
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h3 {
        color: #fff;
    }
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h1:before,
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h1:after,
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h2:before,
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h2:after {
        background-color: #fff;
    }
    #top.scrollTop .container-fluid .container .contentRow .projectInfo h1:after {
        background-color: transparent;
    }
    #top.scrollTop .container-fluid .container .contentRow .imageOverlay {
        position: absolute;
        top: 0;
        height: 100vh;
        width: 100%;
        overflow: hidden;
    }
    #top.scrollTop .container-fluid .container .contentRow .imageOverlay:before {
        content: "";
        position: absolute;
        opacity: 1;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.3);
        z-index: 4;
    }
    #top.scrollTop .container-fluid .container .contentRow .imageOverlay img {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        min-height: 100vh;
        min-width: 98vw;
        object-fit: cover;
    }

    body.scrolled .contentRow .projectInfo h1 {
        margin: 12px 0;
    }
    body.scrolled .contentRow.information {
        margin: -100px 0;
    }
}

/* ------------------------------------------------------------
   Info blocks
   ------------------------------------------------------------ */
.contentRow.information {
    font-size: 1.5em;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -100px 0;
}
.contentRow.information .infoTitle {
    font-weight: bold;
}
.contentRow.information .infoInformation a {
    color: inherit;
}

/* ------------------------------------------------------------
   Content images (imageFull)
   ------------------------------------------------------------ */
.contentRow .imageFull {
    position: relative;
}
.contentRow .imageFull img {
    width: 100%;
    box-shadow: 0px 10px 30px rgba(0,0,0,.03);
}
.contentRow .imageFull .overlayAnimation {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

/* ------------------------------------------------------------
   Bottom navigation
   ------------------------------------------------------------ */
.bottomRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 80px;
    transform: translateY(-60px);
}
.bottomRow .col {
    min-width: 33.33%;
    padding: 0;
}
.bottomRow .previousProject { display: flex; justify-content: flex-start; }
.bottomRow .nextProject     { display: flex; justify-content: flex-end; }
.bottomRow .shareProject    { display: flex; align-items: center; justify-content: center; }
.bottomRow .socialWrapper   { display: flex; flex-direction: row; justify-content: center; }
.bottomRow .socialWrapper a {
    margin-right: 12px;
    transform: translateX(-10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid #fff;
}
.bottomRow .socialWrapper a .button.gold:after {
    position: absolute;
    width: 0px; height: 0px;
    content: "";
    left: 50%; top: 50%;
    background-color: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    transition-delay: 0s;
    z-index: -2;
}
.bottomRow .socialWrapper a .button.gold:before {
    position: absolute;
    width: 0px; height: 0px;
    content: "";
    left: 50%; top: 50%;
    background-color: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    transition-delay: .2s;
    z-index: -1;
}
.bottomRow .socialWrapper a i {
    font-size: 1.4em;
    color: #b38551;
    transition: .5s;
}
.bottomRow .socialWrapper a:hover .button.gold:after { width: 42px; height: 42px; }
.bottomRow .socialWrapper a:hover .button.gold:before { width: 42px; height: 42px; }
.bottomRow .socialWrapper a:hover i { color: #1d1c1c; }

#top .contentRow { margin-top: 50px; }

#bottomNav .buttonWrapper {
    font-size: 1.6em;
    font-family: 'Raleway', sans-serif;
    color: #b38551;
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-direction: row;
    transition: .3s;
}
#bottomNav .buttonWrapper:hover { color: #b38551; }
#bottomNav .buttonWrapper:hover .button.gold {
    background-color: #f6f1eb;
    border-color: #f6f1eb;
    text-decoration: none;
}
#bottomNav .buttonWrapper .button {
    margin-left: 20px;
    width: 32px; height: 32px;
    min-width: 32px; min-height: 32px;
    border: 1px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    background-color: #fff;
    transform: translateY(2px);
}
#bottomNav .buttonWrapper .button.gold { border-color: #b38551; }
#bottomNav .buttonWrapper .button.gold i { color: #b38551; font-size: .5em; }
#bottomNav .buttonWrapper.rightText .button { margin-left: 0; margin-right: 20px; }

.changeProject { font-size: 1em; }

/* arrow icons (using CSS arrows since icomoon not available) */
.icon-arrow-right-700,
.icon-arrow-left-700 {
    display: inline-block;
    width: 8px; height: 8px;
    border-top: 2px solid #b38551;
    border-right: 2px solid #b38551;
    position: relative;
}
.icon-arrow-right-700 { transform: rotate(45deg); }
.icon-arrow-left-700  { transform: rotate(-135deg); }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
footer.footer {
    padding: 160px 0px 0px 0px;
    background-color: #1d1c1c;
}

footer #section-info {
    padding: 0px 0px 80px 0;
    width: 100%;
}
footer #section-info .quote {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 4em;
}
footer #section-info .col-12.kennisCol {
    display: flex;
    justify-content: flex-end;
}
footer #section-info .col-12.kennisCol .contactRow a {
    font-weight: 500;
}
footer #section-info .col-12 .maakKennis {
    margin-bottom: 80px;
}
footer #section-info .col-12 .maakKennis h2 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 3em;
    margin: 0;
}
footer #section-info .col-12 .maakKennis .contactOptions a {
    font-family: 'Raleway', sans-serif;
    font-size: 1.7em;
    font-weight: 700;
    color: #b38551;
    margin-right: 24px;
}
footer #section-info .col-12 .innerWrapper {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 0;
    position: relative;
}
footer #section-info .col-12 .innerWrapper a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    position: relative;
    display: inline-block;
}
footer #section-info .col-12 .innerWrapper a:after {
    content: "";
    position: absolute;
    bottom: -3px; left: 0px;
    width: 0px; height: 1px;
    background-color: #b38551;
    transition: .3s;
}
footer #section-info .col-12 .innerWrapper a:hover:after { width: 100%; }

footer #section-info .col-12 .innerWrapper .contactRow {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    padding: 8px 0;
    text-decoration: none;
    transition: .2s;
}

footer .socialsContainer {
    width: 100%;
    padding: 0;
    margin: 80px 0;
}
footer .socialsContainer .socialWrapper {
    display: flex;
    flex-direction: row;
}
footer .socialsContainer .socialWrapper a {
    margin-right: 12px;
    width: 40px; height: 40px;
    border-radius: 50%;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1d1c1c;
}
footer .socialsContainer .socialWrapper a i {
    font-size: 1.1em;
    color: #b38551;
    transition: .3s;
}
footer .socialsContainer .socialWrapper a:hover { border-color: #b38551; }
footer .socialsContainer .socialWrapper a:hover i { color: #b38551; }

footer #section-bar {
    padding: 24px 0 48px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}
footer #section-bar a {
    transition: .3s;
    position: relative;
    display: inline-block;
    color: #fff;
    background-color: #1d1c1c;
}
footer #section-bar a:after {
    content: "";
    position: absolute;
    bottom: -3px; left: 0px;
    width: 0px; height: 1px;
    background-color: #b38551;
    transition: .5s;
}
footer #section-bar a:hover:after { width: 100%; }

footer #section-bar .part-of {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
footer #section-bar .part-of .image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
footer #section-bar .part-of .part-of-text {
    font-weight: 600;
    opacity: .6;
    font-size: 12px;
    color: #fff;
}
footer #section-bar .part-of img {
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
footer #section-bar .copyright {
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-weight: 300;
    gap: 16px;
    color: #fff;
    font-size: 12px;
}
footer #section-bar .copyright a {
    color: #fff;
    font-weight: 700;
}

/* ------------------------------------------------------------
   Responsive — tablet/mobile (≤992px)
   ------------------------------------------------------------ */
@media (max-width: 992px) {
    body {
        margin-top: 0px !important;
        font-size: .8em;
    }

    .home header.site-header:not(.sticky) {
        background-color: transparent;
        top: 16px;
    }
    .home header.site-header:not(.sticky) #logo-mobile #mobileLogoGrey {
        opacity: 0;
        display: none;
    }
    .home header.site-header:not(.sticky) #logo-mobile #mobileLogoWhite {
        opacity: 1;
        display: block;
        height: 30px;
    }
    .home header.site-header:not(.sticky) .navbar-bar { background-color: #fff; }
    .home header.site-header:not(.sticky).show {
        top: 0px;
        background-color: #fff;
    }
    .home header.site-header:not(.sticky).show #logo-mobile #mobileLogoWhite { opacity: 0; display: none; }
    .home header.site-header:not(.sticky).show #logo-mobile #mobileLogoGrey { opacity: 1; display: block; height: 30px; }
    .home header.site-header:not(.sticky).show .navbar-bar { background-color: #b38551; }

    header.site-header {
        width: 100vw;
        top: 0;
        left: 0;
        z-index: 999999;
        position: fixed;
        background-color: #fff;
        transition: .3s;
    }
    header.site-header:after {
        content: "";
        position: absolute;
        background-color: #fff;
        top: 0; left: 0;
        width: 100%;
        height: 0;
        transition: .7s ease-in-out;
        transition-delay: .3s;
        z-index: 0;
    }
    header.site-header.show {
        position: fixed;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }
    header.site-header.show:after { height: 100vh; }

    .mobileNav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    #logo-mobile { display: flex !important; align-items: center; }
    #logo-mobile img { height: 36px; }
    #logo-desktop, #logo-desktop-flat { display: none !important; }

    /* Mobile collapsed nav */
    header.site-header .navbar-collapse {
        flex-direction: column;
        pointer-events: none;
        display: block;
        height: 0;
    }
    header.site-header .navbar-collapse.collapse {
        top: 75px;
        transition: .3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 200px;
        position: absolute;
        height: 100vh;
        left: 0;
        width: 100%;
        opacity: 0;
        pointer-events: none;
    }
    header.site-header.show .navbar-collapse.collapse {
        pointer-events: auto;
        transition: .3s ease-in-out;
        opacity: 1;
    }
    header.site-header.show .navbar-collapse.collapse .nav-item a {
        opacity: 1;
        transition-delay: .6s;
        transition: .3s ease-in-out;
        transform: translateY(0);
    }

    header.site-header .navbar-logo { display: none; }
    header.site-header .navbar-nav {
        color: #fff;
        flex-direction: column;
        margin: 20px 0;
    }
    header.site-header .navbar-nav h3 { margin: 8px 0; }
    header.site-header .navbar-nav .nav-item a {
        opacity: 0;
        transition: .3s ease-in-out;
        padding: 10px 0;
        font-size: 2em;
        transform: translateY(-16px);
        transition-delay: .2s;
    }
    header.site-header .navbar-nav .nav-item a.nav-link {
        color: #b38551;
        font-weight: 700;
        text-align: center;
    }

    header.site-header .container {
        width: calc(100% - 30px);
        margin: 0px 16px;
        padding: 0;
        max-width: unset;
    }
    header.site-header .navbar {
        padding: 8px 0;
        justify-content: space-between;
        background-color: #fff;
    }

    /* Hamburger transform when open */
    header.site-header.show .navbar-toggler .bar1 {
        transform: rotate(45deg) translate(-6px, 5px);
        width: 32px;
    }
    header.site-header.show .navbar-toggler .bar2 { opacity: 0; }
    header.site-header.show .navbar-toggler .bar3 {
        transform: rotate(-45deg) translate(-7px, -5px);
        width: 32px;
    }

    .headerMargin { position: relative; height: 70px; }
    .home .headerMargin { display: none; }

    /* Hero mobile */
    #top.scrollTop { min-height: unset; }
    #top.scrollTop .container-fluid .container { min-height: unset; }
    #top.scrollTop .container-fluid .container .contentRow .imageOverlay { position: relative; }

    .contentRow { margin: 80px 0; }
    .contentRow .projectInfo h1 { font-size: 3em; }
    .contentRow .projectInfo h2 { font-size: 1.8em; }
    .contentRow .projectInfo h2:before,
    .contentRow .projectInfo h2:after { width: 20px; }
    .contentRow .projectInfo h2:before { left: -40px; }
    .contentRow .projectInfo h2:after  { right: -40px; }

    .contentRow.information { margin: 40px 0; }
    .contentRow.information .col-12 {
        margin: 12px 0px;
        padding: 0px 20px;
        font-size: 1.3em;
    }

    .bottomRow {
        margin: 80px 0;
        padding: 0px 12px;
        align-items: center;
        transform: unset;
    }
    .bottomRow .col { min-width: unset; }
    .bottomRow .changeProject { font-size: 0em; }
    .bottomRow .buttonWrapper { font-size: 0px; }
    .bottomRow .buttonWrapper .button.gold {
        border-color: #f6f1eb;
        background-color: #f6f1eb;
    }
    .bottomRow .socialWrapper a {
        margin: 0px 12px;
        width: 20px; height: 20px;
        transform: translateY(2px);
        border: 0px;
    }
    .bottomRow .socialWrapper a i { font-size: 2em; }

    #top .container-fluid, #content .container-fluid, #bottomNav .container-fluid { padding: 0px 10px; }
    #top .container-fluid.bottom .container,
    #content .container-fluid.bottom .container,
    #bottomNav .container-fluid.bottom .container { padding: 0px 15px; }
    #top .container, #content .container, #bottomNav .container { padding: 0; }

    footer.footer {
        font-size: 1.5em;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    footer #section-info .quote { font-size: 2.4em; }
    footer #section-info .col-12 .maakKennis { margin-bottom: 60px; }
    footer #section-info .col-12 .maakKennis h2 { font-size: 2em; }
    footer #section-info .col-12 .maakKennis .contactOptions a { margin: 0 20px 0px 0; }
    footer #section-info .col-12.kennisCol {
        justify-content: flex-start;
        margin-top: 100px;
    }
    footer #section-bar .row { flex-direction: column; }
    footer #section-bar .row .col-12 { margin: 0px auto 0px auto; text-align: left; }
    footer #section-bar .row .col-12.part-of {
        margin-top: 64px;
        flex-direction: row;
        justify-content: center;
    }
    footer #section-bar .row .col-12.copyright {
        justify-content: center;
        margin-top: 64px;
    }

    #pageOut { display: none; visibility: hidden; }
}

@media (max-width: 320px) {
    .bottomRow {
        flex-wrap: wrap;
        justify-content: center;
    }
    .bottomRow .shareProject { width: 100%; order: 1; margin-bottom: 32px; }
    .bottomRow .previousProject { order: 2; width: unset; }
    .bottomRow .nextProject { order: 3; width: unset; }
}
