* {
    margin: 0;
    font-family: "AvenirNext", "Open Sans", sans-serif;
    box-sizing: border-box;
}
.homepage {
    background-color: rgb(76, 82, 220);
}
html, .home, header {
    height: 100%;
}
body {
    width: 100%;
}
main {
    width: 100%;
}
h2, h3, .project h4, p {
    color: rgb(31, 31, 35);
}
h2 {
    line-height: 1.5;
    font-size: 1em;
    font-weight: 400;
}
a {
    text-decoration: none;
    color: #FDF0D5;
}
picture {
    width: 100%;
    display: flex;
    flex-direction: column;
}
/* ========================= VIDEO'S ======================================================= */
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ======================= Homepagina ================================================================ */
.home > header > section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home > header > section > div:nth-of-type(1) {
    width: 88%;
    margin: 0 auto 0 auto;
    padding: 28% 0 0 0;
}
.home > header > section > div h1 {
    font-family: "AvenirNext", sans-serif;
    font-size: 4em;
    color: #FDF0D5;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
    position: fixed;
    animation-name: bounceInLeft;
    animation-duration: 1.15s;
    animation-fill-mode: both;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.home > header > section > div h1.bounceOut {
    animation-name: bounceOutRight;
    animation-duration: 1.15s;
    animation-fill-mode: both;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.home > header > section > div h1:nth-of-type(2) {
    display: none;
}
.icon {
    width: 20%;
    margin: auto;
}
.icon img {
    width: 100%;
}
/* ======================== !!!! Navigatie !!!! - Homepagina ======================= */
.home > header > section > div + article {
    width: 88%;
    height: 3em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    margin: 0 8%;
    bottom: 0;
    z-index: 2;
    animation-name: fadeIn;
    animation-delay: .6s;
    animation-duration: .4s;
    animation-fill-mode: both;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.achtergrond-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 0%;
    border-top: .05em;
    border-top-style: solid;
    border-top-color: rgba(111, 111, 111, 0.4);
    transition: all ease .3s;
}
/* slightly transparent fallback */
.achtergrond-menu.expand {
    background: rgba(76, 82, 220, .98);
    height: 2.9em;
}
/* if backdrop support */
@supports ((-webkit-backdrop-filter: blur(15px)) or (backdrop-filter: blur(15px))) {
    .achtergrond-menu.expand {
        background: rgba(76, 82, 220, .85);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}
.tegel-knop {
    display: flex;
    width: 33.33%;
    justify-content: center;
}
.tegel-knop:nth-of-type(1) {
    justify-content: flex-start;
}
.tegel-knop:nth-of-type(3) {
    justify-content: flex-end;
}
.tegel-knop a {
    font-size: 1.2em;
    color: #FDF0D5;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.tegel-knop a:hover {
    transform: scale(1.1);
    text-shadow: -2px -1px 0px rgba(255, 32, 120, 1);
}
.tegel-knop a.active {
    text-decoration: underline;
    transform: scale(1.05);
}
/* ======================== !!!! About Sectie !!!! - Homepagina ======================= */
.home main {
    padding: 5% 0 0 0;
}
.home > main > section:nth-of-type(1) {
    margin: 0 auto;
    width: 88%;
}
.home > main > section:nth-of-type(1) article:nth-of-type(2) {
    padding: 0 0 30% 0;
}
.home > main > section h3,
footer article:nth-of-type(1) h3 {
    padding: 0 0 1% 0;
    font-size: 2.2em;
    font-weight: 600;
}
main > section p {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 200;
}
.home > main > section:nth-of-type(1) picture img {
    width: 60%;
    z-index: -1;
    border-radius: 50%;
    margin: 25% auto 17.5% auto;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, .25));
}
/* ======================== !!!! Work/Portfolio Sectie !!!! - Homepagina ======================= */
.home main > section:nth-of-type(2) h3 {
    width: 88%;
    margin: auto;
}
.home main > section:nth-of-type(2) article {
    width: 94%;
    height: 85vw;
    display: flex;
    flex-direction: column;
    margin: 2% auto;
    background: #FF2078;
    transition: all .3s ease;
    border-radius: .3em;
}
.home main > section:nth-of-type(2) article:nth-of-type(even) {
    background: #FF2078;
}
.home main > section:nth-of-type(2) article a {
    height: 100%;
    width: 100%;
    border-radius: 0.3em;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, .25);
    transition: all .3s ease;
}
.home main > section:nth-of-type(2) article a:hover {
    transform: translate(9px, 9px);
}
.home main > section:nth-of-type(2) article h4 {
    font-size: 1.8em;
    font-weight: 600;
    margin: 10% 0 0 0;
    align-self: center;
}
.home main > section:nth-of-type(2) article picture {
    align-self: flex-end;
}
.home main > section:nth-of-type(2) article img {
    width: 60%;
    align-self: center;
}
.home main > section:nth-of-type(2) .hidden-persuasion {
    margin: 0 0 5% 0;
}
/* ========================= FOOTER / Contact ======================================================= */
footer {
    margin: 20% 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer section {
    width: 88%;
    margin: auto;
    display: flex;
    flex-direction: column;
}
footer section article:nth-of-type(3) {
    margin: 8% 0 3% 0;
}
footer article:nth-of-type(1) h3 {
    margin: 0 0 10% 0;
}
footer article:nth-of-type(1) p {
    font-weight: 200;
    line-height: 1.4;
}
/*    FORMULIER     */
footer form {
    width: 100%;
}
footer fieldset {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-style: none;
    padding: 0;
}
footer fieldset label {
    margin: 0 0 3% 0;
    width: 100%;
}
footer fieldset label span {
    margin: 0 0 0 .5%;
}
footer input[type="text"],
footer input[type="email"],
footer textarea {
    width: 100%;
    height: 15vw;
    padding: 0 0 0 2%;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    border-left-width: 4px;
    border-left-color: #1f1f23;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .15);
    background: rgb(249, 249, 249);
    transition: all .2s ease;
    font-size: 1em;
}
footer input:valid {
    border-color: limegreen;
}
footer textarea {
    height: 35vh;
    padding: 2%;
}
footer fieldset > input[type="submit"] {
    width: 100%;
    height: 2.5em;
    margin: 10% auto 0 auto;
    border-radius: .3em;
    border-style: none;
    background: #4E54DE;
    box-shadow: 1px 1px 2px rgba(31, 31, 35, .2);
    font-size: 1.5em;
    color: #fff;
}
footer .footer-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    margin: 5% auto 0 auto;
}
footer .footer-icons a {
    width: 6em;
    height: 4em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footer-icons a .fa {
    font-size: 1.85em;
}
footer > section:last-of-type {
    width: 100%;
    height: 10em;
    margin: 10% 0;
    background: #4E54DE;
    display: flex;
    flex-direction: column;
}
footer section:last-of-type > article:last-of-type {
    display: flex;
}
footer article:last-of-type p {
    font-size: .9em;
    margin: 10% auto;
    font-weight: 200;
    color: #FFF;
}
/* ========================= PROJECT PAGINA ================================================================== */
/* ========================= PROJECT TITEL ================================================= */
.project main section:nth-of-type(1) {
    margin: 3.5em auto 0 auto;
    padding: 14em 0 0 0;
}
.project main section.show {
    margin: 8em auto 0 auto;
}
#header {
    height: 15em;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 1;
}
#header.grow {
    transition: all .6s ease;
    height: 100%;
}
.project-titel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    background: rgba(78, 84, 222, 1);
}
.project-titel.hide-shadow {
    box-shadow: 0px 0px 0px rgba(51,51,51,0);
}
.project-menu {
    background: rgba(78, 84, 222, .5);
    opacity: 1;
    width: 3.5em;
    height: 3.5em;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 0;
    transition: all .3s ease-in-out;
    border-radius: 100% 0 0 0 / 100% 0 0 0;
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .project-menu {
        background: rgba(71, 77, 206, 0.5);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }
    .project-menu.expand {
        background: rgba(71, 77, 206, 0.9);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }
}
.project-menu.expand {
    background: rgba(78, 84, 222, .98);
    height: 100%;
    width: 100%;
    opacity: 1;
    z-index: 1;
    border-radius: 0;
}
.project-menu div {
    height: 100%;
    width: 30%;
    margin: auto;
    display: flex;
    align-items: center;
}
.project-menu div .lijst-menu {
    opacity: 0;
    transition: all ease .2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 16em;
}
.project-menu.expand div .lijst-menu {
    opacity: 1;
}
.project-menu.expand div div a {
    font-size: 1.6em;
    font-weight: 600;
    text-align: center;
    height: 1.2em;
}
.nav {
    width: 100%;
    height: 3.5em;
    z-index: 2;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.nav a:first-of-type,
.nav a:last-of-type {
    height: 3.5em;
    width: 3.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: rgba(78, 84, 222, .95);
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .nav a:first-of-type,
    .nav a:last-of-type {
        background: rgba(76, 82, 220, .8);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}
.nav a:first-of-type {
    border-radius: 0 100% 0 0 / 0 100% 0 0;
}
.nav a:last-of-type {
    border-radius: 100% 0 0 0 / 100% 0 0 0;
}
.nav a:first-of-type div {
    margin: 15% 15% 0 0;
}
.nav a:last-of-type div {
    margin: 15% 0 0 15%;
}
.nav a.terug .fa {
    padding: 0 15% 2% 0;
}
.terug {
    margin: 0%;
}
.menu {
    right: 0;
    margin: 0%;
}
.fa-cube {
    -webkit-transition: all 0.45s ease-in-out;
    transition: all .8s cubic-bezier(0.56, 1.17, 0.91, 0.99);
    transform: rotate(0deg);
    padding: 0;
}
.fa-cube.draai {
    transform: rotate(1440deg);
}
.project-titel div {
    position: relative;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-titel h1 {
    color: #FDF0D5;
    font-size: 1.55em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    opacity: 1;
}
.project-titel h1.hide {
    opacity: 0;
}
/* ================================ PROJECT INHOUD ==================================================== */
.project {
    height: 100%;
}
.project main {
    width: 88%;
    margin: 0 auto;
}
.project section article:first-of-type {
    margin: 0 0 5% 0;
}
.project section article:last-of-type {
    margin: 0 0 15% 0;
}
.project main section h3 {
    padding: 6% 0 1% 0;
    font-size: 2em;
    font-weight: 600;
}
.project h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 2% 0;
}
.project section article h2:nth-of-type(1) {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 2% 0;
}
.project main article picture {
    margin: 0 auto;
}
.project main article picture img {
    width: 100%;
    margin: 0 auto;
}
.project main section:nth-of-type(1) article:nth-of-type(2) {
    display: none;
}
.project section:nth-of-type(2) article:nth-of-type(1) {
    margin: 0 0 2.5% 0;
}
.project section article picture + p {
    margin: 3% 0;
}
.project section:nth-of-type(2) article div h4 {
    font-size: 1.62em;
}
.single-picture {
    width: 70%;
    margin: 0 auto;
}
.single-item {
    width: 90%;
    margin: 0;
    z-index: 0;
}
.project main section article .single-item {
    width: 70%;
    margin: 0 auto;
}
.single-item div p {
    text-align: center;
    font-size: 1em;
    margin: 0 0 2.5% 0;
}
/* ================================ GLOWAY (MOBIEL) ==================================================== */
.project .gloway section:nth-of-type(3) article:first-of-type,
.project .rabbit section:nth-of-type(2) article:first-of-type {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gloway section:nth-of-type(3) picture,
.rabbit section:nth-of-type(2) div{
    width: 45%;
    margin: 0;
}
.project main section:nth-of-type(2n+2) article:first-of-type,
.project main section:nth-of-type(2n+3) article:last-of-type {
/*    width: 80%;*/
/*    margin: 0 10%;*/
}


/* ================================ HIDDEN PERSUASION (MOBIEL) ==================================================== */
.project .hidden-persuasion section:nth-of-type(2) article:first-of-type div {
    margin: 0 0 10% 0;
    text-align: center;
}
.project .hidden-persuasion section:nth-of-type(2) article:first-of-type div picture {
    margin: 0 auto;
    width: 85%;
}
/* ================================ PHOTOGRAPHY (MOBIEL) ==================================================== */
.photo section:first-of-type article {
    display: flex !important;
    flex-direction: column;
    background: #ff2b66;
    margin: 0 0 5% 0 !important;
}
.photo section:first-of-type article div {
    width: 100%;
    height: 21vh;
    background-position: center;
    background-size: cover;
}
.photo section:first-of-type article:nth-of-type(1) div {
    background-image: url(../img/photography/inkt/ecoline1.jpg);
}
.photo section:first-of-type article:nth-of-type(2) div {
    background-image: url(../img/photography/beeldtaal/beeldtaal1.jpg);
}
.photo section:first-of-type article:nth-of-type(3) div {
    background-image: url(../img/photography/lichtdoos/cactus1.jpg);
}
.photo section:first-of-type article:nth-of-type(4) div {
    background-image: url(../img/photography/architecture/wroclaw1.jpg);
}
.photo section:first-of-type article h2 {
    color: #fff;
    margin: 4% auto;
    text-align: center;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    animation-name: joejoe;
    animation-duration: .45s;
}
@keyframes joejoe {
    from {opacity:0}
    to {opacity:1}
}
.modal.show {
    display: block;
}
.stop-body-scroll {
    overflow: hidden;
}
.close,
.close2 {
    color: #aaa;
    font-size: 3em;
    font-weight: lighter;
    transition: all .2s ease;
    position: absolute;
    bottom: 0;
    width: 20%;
    margin: 0 40%;
    text-align: center;
}
.close:hover,
.close:focus {
    color: rgb(31, 31, 35);
    text-decoration: none;
    cursor: pointer;
}
.modal-content {
    width: 100%;
    height: 100%;
    margin: auto;
}
.modal-content > div:last-of-type {
    width: 86%;
    margin: auto;
    display: flex;
    flex-direction: column;
}
.slider-for1,
.slider-for2 {
    width: 100%;
    margin: 0 0 5% 0;
}
.slider-for1 picture img,
.slider-nav1 picture img,
.slider-for2 picture img,
.slider-nav2 picture img {
    width: 100%;
}
.project .video section {
    margin: 10% 0;
}
/* ========================= MOBILE LANDSCAPE ======================================================= */
@media (min-width: 2em) and (orientation: landscape) {
    .home > header > section > div:nth-of-type(1) {
        padding: 10% 0 0 0;
    }
    .home > main > section:nth-of-type(1) {
        display: flex;
        flex-direction: row-reverse;
    }
    .home > main > section:nth-of-type(1) article:nth-of-type(1) {
        width: 45%;
        padding: 0 0 20% 0;
    }
    .home > main > section:nth-of-type(1) article:nth-of-type(2) {
        width: 55%;
        padding: 0 0 20% 0;
    }
    .home > main > section:nth-of-type(1) picture img {
        margin: 20% 0 20% auto;
        width: 75%;
    }
    .home > main > section:nth-of-type(2) {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .home > main > section:nth-of-type(2) article a {
        margin: auto;
        flex-direction: row;
    }
    .home > main > section:nth-of-type(2) article h4 {
        margin: 0;
        font-size: 2.55em;
    }
    .home > main > section:nth-of-type(2) article picture {
        width: 50%;
    }
    .home > main > section:nth-of-type(2) article img {
        width: 100%;
        align-self: flex-end;
    }
}
/* ========================= TABLET PORTRAIT ======================================================= */
@media (min-width: 44em) {
    .home > header > section > div:nth-of-type(1) {
        width: 72%;
    }
    .home > header > section > div h1:nth-of-type(1) {
        display: none;
    }
    .home > header > section > div h1:nth-of-type(2) {
        display: flex;
        font-size: 8.5vw;
    }
    .home > header > section > div + article {
        width: 70%;
        margin: 0 auto 10% auto;
        position: relative;
    }
    .home > header > section > div + article.pin-it {
        width: 80%;
        margin: 0 10%;
    }
    .tegel-knop a {
        font-size: 1.5em;
    }
    .home main {
        width: 76%;
        margin: 0 auto;
    }
    .home > main > section:nth-of-type(2) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .home main > section:nth-of-type(2) article:nth-of-type(4n+1),
    .home main > section:nth-of-type(2) article:nth-of-type(4n+4) {
        width: 42.5%;
        margin: 1.5% 0;
        height: 25vw;
    }
    .home main > section:nth-of-type(2) article:nth-of-type(4n+2),
    .home main > section:nth-of-type(2) article:nth-of-type(4n+3) {
        width: 54.5%;
        margin: 1.5% 0;
        height: 25vw;
    }
    .home > main > section:nth-of-type(2) article a {
        flex-direction: column;
    }
    .home main > section:nth-of-type(2) h3 {
        width: 100%;
    }
    .home > main > section:nth-of-type(2) article h4 {
        font-size: 1.4em;
        margin: 6.5% 0 0 0;
    }
    .home main > section:nth-of-type(2) article picture {
        align-self: center;
        width: 65%;
    }
    .home main > section:nth-of-type(2) article:nth-of-type(4n+5) picture,
    .home main > section:nth-of-type(2) article:nth-of-type(4n+4) picture {
        width: 75%;
    }
    .home main > section:nth-of-type(2) .hidden-persuasion {
        width: 80%;
    }


}
/* ========================= DESKTOP  ======================================================= */
@media (min-width: 62em) {
    .home > header > section > div:nth-of-type(1) {
        width: 50.5%;
    }
    .home > header > section > div h1:nth-of-type(2) {
        font-size: 6.2vw;
    }
    /* ======================== !!!! MENU !!!! - Homepagina ======================= */
    .home > header > section > div + article {
        height: 8em;
        width: 50%;
        margin: 0 auto 5% auto;
        transition: all 0s ease;
        z-index: 2;
    }
    .achtergrond-menu {
        top: 0;
        z-index: 2;
    }
    .achtergrond-menu.expand {
        height: 3em;
    }
    .tegel-knop a {
        font-size: 1.6em;
        border-style: none;
        font-weight: 700;
        transition: all 0.20s ease;
    }
    .tegel-knop a:hover {
        transform: scale(1.2);
        text-shadow: -3px -2px 0px rgba(255, 255, 255, .4);
    }
    .tegel-knop a:active {
        transform: scale(1.1);
        text-shadow: 2px 1px 0px rgba(47, 47, 56, 1);
    }
    .tegel-knop a.active {
        opacity: 1;
    }
    /* ======================== !!!! MENU-FIXED !!!! - Homepagina ======================= */
    .home > header > section > div + article.pin-it {
        display: flex;
        flex-direction: row;
        height: 3em;
        width: 50%;
        margin: 0 auto 5% auto;
        align-self: center;
        position: fixed;
        top: 0;
    }
    .home > header > section > div + article.pin-it .tegel-knop a {
        font-size: 1.2em;
        color: #FDF0D5;
    }
    .home > header > section > div + article.pin-it .tegel-knop a:hover {
        transform: scale(1.1);
    }
    .home main {
        width: 50%;
        margin: 0 auto;
        padding: 10% 0 0 0;
    }
    .home > main > section:nth-of-type(1),
    .home > main > section:nth-of-type(2) h3 {
        width: 100%;
    }
    .home > main > section h3,
    footer article:nth-of-type(1) h3 {
        font-size: 2.2em;
    }

    /* ======================== !!!! Work/Portfolio Sectie !!!! - Homepagina ======================= */
    .home main > section:nth-of-type(2) article:nth-of-type(4n+1),
    .home main > section:nth-of-type(2) article:nth-of-type(4n+4) {
        height: 19.2vw;
    }
    .home main > section:nth-of-type(2) article:nth-of-type(4n+2),
    .home main > section:nth-of-type(2) article:nth-of-type(4n+3) {
        height: 19.2vw;
    }
    .home > main > section:nth-of-type(2) article h4 {
        font-size: 1.2em;
    }
    .home main > section:nth-of-type(2) article picture {
        width: 55%;
    }
    .home main > section:nth-of-type(2) article:nth-of-type(4n+5) picture,
    .home main > section:nth-of-type(2) article:nth-of-type(4n+4) picture {
        width: 65%;
    }

    /* ======================== !!!! FOOTER  !!!! - Desktop ======================= */
    footer {
        margin: 10% 0 0 0;
    }
    footer section {
        width: 50%;
        margin: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .project footer section {
        width: 60%;
    }
    footer section article:nth-of-type(1) {
        width: 100%;
    }
    footer section article:nth-of-type(2) {
        width: 40%;
    }
    footer section article:nth-of-type(3) {
        width: 40%;
        margin: 15% 0 0 0;
    }
    footer article:nth-of-type(1) h3 {
        margin: 0 0 5% 0;
    }
    footer > article:last-of-type {
        margin: 5% 0 0 0;
/*        height: 5em;*/
    }
    footer article:last-of-type p {
        margin: 2% auto;
    }
    footer .footer-icons {
        width: 100%;
        margin: auto;
        flex-direction: column;
    }

    footer input[type="text"],
    footer input[type="email"] {
        height: 2.25em;
    }
    footer textarea {
        height: 10em;
    }
    /* ======= Projectpagina Projectpagina Projectpagina Projectpagina Projectpagina Projectpagina Projectpagina ======== */
    /* ======================== !!!! PROJECTHEADER/MENU !!!! - Projectpagina ======================= */
    #header {
        height: 14em;
        width: 100%;
        top: 0;
        position: fixed;
    }
    .project-titel h1 {
        font-size: 2em;
        font-weight: 700;
    }
    .nav {
        position: absolute;
        top: 0;
        width: 100%;
        height: 4em;
        border-radius: 0;
        background: transparent;
        flex-direction: row;
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
    }
    .nav a:first-of-type,
    .nav a:last-of-type {
        width: 4.5em;
        height: 4.5em;
        margin: 1.5em;
        background: rgba(78, 84, 222, 1)
    }
    .nav a:first-of-type {
        border-radius: 0 0 100% 0 / 0 0 100% 0;
    }
    .nav a:last-of-type {
        border-radius: 0 0 0 100% / 0 0 0 100%;
    }
    .nav a div {
        height: 50%;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all .2s ease;
    }
    .nav a div:hover {
        animation: hoverScale;
        animation-duration: 2.5s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: both;
    }
    @keyframes hoverScale {
        0% {
            transform: scale(1);
        }
        25% {
            transform: scale(1.35);
        }
        50% {
            transform: scale(1);
        }
        75% {
            transform: scale(1.35);
        }
        100% {
            transform: scale(1);
        }
    }
    .nav a:first-of-type div {
        margin: 0 15% 15% 0;
    }
    .nav a:last-of-type div {
        margin: 0 0 19% 19%;
    }
    .fa-angle-double-left {
        font-size: 1.6em;
    }
    .fa-cube {
        font-size: 1.2em;
    }
    .project-menu {
        width: 5em;
        height: 5em;
        top: 0;
        margin: 0 0 0 90%;
        border-radius: 0 0 0 100% / 0 0 0 100%;
        background: transparent;
    }
    .project-menu.expand {
        height: 50%;
        width: 18%;
        border-radius: 0 0 0 40% / 0 0 0 20%;
    }
    .project-menu.expand div div a {
        width: 80%;
        height: initial;
        font-size: 1.4em;
/*        font-weight: 700;*/
        text-align: left;
        border: none;
        transition: all 0.20s ease;
    }
    .project-menu.expand div div a:hover {
        transform: scale(1.3);
        text-shadow: -9px -5px 0px rgba(251, 50, 85, .2);
        filter: drop-shadow(8px 5px 0px rgba(251, 50, 85, .2));
    }
    .project-menu.expand div .lijst-menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }
    /* ======================== !!!! INHOUD PROJECT !!!! - Projectpagina ======================= */
    .project main {
        width: 60%;
        margin: 0 auto;
    }
    .project main section {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 0 10% 0;
    }
    .project main section:nth-of-type(1) {
        margin: 1.5em auto 10% auto;
    }
    .project main section:first-of-type article a {
        color: black;
        text-decoration: underline;
    }
    .project main section:first-of-type article a:hover {
        color: dimgrey;
    }
    /* ======================== !!!! VLAKVERDELING !!!! - Projectpagina ======================= */

    .project main section:nth-of-type(1) article:first-of-type {
        width: 54%;
    }
    .project main section:nth-of-type(1) article:last-of-type {
        width: 40%;
        display: inline;
        align-items: center;
    }
    .project main section:nth-of-type(2) article:first-of-type {
        margin: 0;
    }
    .project main section:nth-of-type(2n+2) article:first-of-type,
    .project main section:nth-of-type(2n+3) article:last-of-type {
        width: 40%;
        margin: 0;
    }
    .project main section:nth-of-type(2n+2) article:last-of-type,
    .project main section:nth-of-type(2n+3) article:first-of-type {
        width: 48%;
    }


    /* ======================== !!!! EINDE VLAKVERDELING !!!! - Projectpagina ======================= */
    .project section article h2:nth-of-type(1) {
        font-size: 1.05em;
        line-height: 1.4;
    }
    .project main section h3 {
        width: 100%;
        padding: 0 0 3.5% 0;
        font-size: 2.5em;
    }
    .project main > section p {
        font-size: .95em;
        line-height: 1.4;
    }
    .project h4 {
        font-size: 1.2em;
    }
    .single-item {
        width: 14em;
        margin: auto;
    }
    .single-picture {
        width: 14em;
        margin: auto;
    }
    .prototype {
        width: 10%;
    }
    /* ======================== !!!! SPECIFIEK VOOR GLOWAY !!!! - Projectpagina ======================= */
    .gloway section:nth-of-type(2) article:first-of-type {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .gloway section:nth-of-type(3) picture {
        width: 27%;
    }
    .gloway section:nth-of-type(3) picture img {
        width: 95%;
    }
    .gloway section:nth-of-type(3) picture:nth-of-type(2) img {
        width: 90%;
    }
    .project .gloway section:nth-of-type(3) article:first-of-type {
        width: 60%;
    }
    .project .gloway section:nth-of-type(3) article:last-of-type {
        width: 30%;
    }
    /* ======================== !!!! SPECIFIEK VOOR RABBIT !!!! - Projectpagina ======================= */
    .project .rabbit section:nth-of-type(3) article:nth-of-type(1) picture {
        width: 80%;
        float: left;
    }
    .project .rabbit section:nth-of-type(2) article:nth-of-type(1n+1) div {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 24%;
    }
    /* ======================== !!!! HIDDEN PERSUASION !!!! - Projectpagina ======================= */
    .project .hidden-persuasion section:nth-of-type(2) article:nth-of-type(1n+1),
    .project .rabbit section:nth-of-type(2) article:nth-of-type(1n+1) {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .project .hidden-persuasion section:nth-of-type(3) article:nth-of-type(1n+1) {
        width: 48%;
    }
    .project .hidden-persuasion section:nth-of-type(2) article:first-of-type div {
        width: 40%;
        margin: 0 0 5% 0;
        text-align: center;
    }
    .project .hidden-persuasion section:nth-of-type(2) article:first-of-type div picture {
        margin: 0 auto 2% auto;
    }

    /* ======================== !!!! PHOTOGRAPHY !!!! - Projectpagina ======================= */
    .photo section:nth-of-type(1) article {
        width: 32.5% !important;
    }
    .photo section:first-of-type article div {
        height: 13vw;
    }

    /* ======================== !!!! JOIN FLOORTJE !!!! - Projectpagina ======================= */


    .project .video section article {
        width: 100% !important;
    }
    .project .floortje section:last-of-type article {
        width: 100% !important;
    }
}

.video {

}
/* .video .videoWrapper {
  position: absolute;
  z-index: 1;

}
.video .iphone-shape {
  position: absolute;
  z-index: 2;
} */
