@import url("https://use.typekit.net/ymp4cou.css");



/*FONTS

ADOBE FONTS

FUTURA PT

Futura PT Light
font-family: futura-pt, sans-serif;
font-weight: 300;
font-style: normal;

Futura PT Book
font-family: futura-pt, sans-serif;
font-weight: 400;
font-style: normal;

Futura PT Book Italic
font-family: futura-pt, sans-serif;
font-weight: 400;
font-style: italic;

Futura PT Demi
font-family: futura-pt, sans-serif;
font-weight: 600;
font-style: normal;

Futura PT Heavy
font-family: futura-pt, sans-serif;
font-weight: 700;
font-style: normal;

Futura PT Extra Bold
font-family: futura-pt, sans-serif;
font-weight: 800;
font-style: normal;

Futura PT Condensed Book
font-family: futura-pt-condensed, sans-serif;
font-weight: 400;
font-style: normal;

Futura PT Bold
font-family: futura-pt-bold, sans-serif;
font-weight: 700;
font-style: normal;

*/




* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100wh;
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 15%);
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    letter-spacing: normal;
}

a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
}

a::selection{
    background: hsl(203, 27%, 41%);
    color: hsl(0, 100%, 100%);
}

.a-alternative {
    color: hsl(0, 0%, 40%);
    letter-spacing: 0.02em;
    transition: color 0.2s ease-in;
}

.a-alternative:hover,
.a-alternative:active {
    color: hsl(203, 61%, 15%);
}

p {
    margin-top: 0.5em;
    transition: color 0.2s ease-in;
    transition: background 0.2s ease-in;
}

p::selection{
    background:  hsl(203, 27%, 41%);
    color: hsl(0, 100%, 100%);
}

.blue-box {
    background-color: hsl(203, 27%, 41%);
    right: 0;
    position: fixed;
    height: 100vh;
    z-index: -4;
}

.red-box{
    background-color: hsl(342, 27%, 41%);
    right: 0;
    position: fixed;
    height: 100vh;
    z-index: -4;
}

@keyframes home-blue-box-landing-anim {
    from {
        width: 0;
        /*        transform: translateX(-100%);*/
    }

    to {
        width: 33vw;
    }
}

.home-blue-box {
    width: 33vw;
    /*    transition: width 2.1s ease-in;*/
    animation-name: home-blue-box-landing-anim;
    animation-duration: 1.8s;
}

@keyframes others-blue-box-landing-anim {
    from {
        width: 0;
        /*        transform: translateX(-100%);*/
    }

    to {
        width: 11vw;
    }
}

.others-blue-box {
    width: 11vw;
    /*transition: width 2s ease-in;*/
    animation-name: others-blue-box-landing-anim;
    animation-duration: 1s;
}

/*
.home-blue-box.fadeout
{
    width: 10vw;
}*/

.other-blue-box {
    width: 11vw;
}

.wrapper-home-left {
    padding-left: 5vw;
}

.vertical-center {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.bird {
    position: absolute;
    top: -12%;
    width: 10%;
    height: auto;
}

/*.bird:hover {
    transform-style: preserve-3d;
    animation: jumping 1s ease-out infinite;
}

@keyframes jumping {
    0% {
        transform: translateY(0px);
    }
    
    60% {
        transform: translateY(-20px);
    }
    
    100% {
        transform: translateY(0px);
    }
}*/


#bird-wing {
    transform-style: preserve-3d;
    animation: flapping 1s ease-in infinite;
}

/*#bird-wing:hover {
    transform-style: preserve-3d;
    animation: flapping 1s ease-in infinite;
}*/

@keyframes flapping {
    0% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }

    40% {
        transform: perspective(1000px) rotateX(108deg) rotateY(48deg);
    }

    100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }
}





/*
@keyframes name-anim-in
{
    from 
    {
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    to 
    {
        position: absolute;
        top: 10%;
        -ms-transform: translateY(50%);
        transform: translateY(50%);
    }
}
*/

.name-anim {
    /*animation-name: name-anim-in;
    position: absolute;
    top: 10%;
    -ms-transform: translateY(50%);
    transform: translateY(50%);*/
    top: 0%;
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
}

@keyframes text-fadein-anim {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.text-fadein {

    opacity: 0;
    animation-name: text-fadein-anim;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: 0.7s;
    animation-duration: 3s;
}

.text-headline-smaller {
    
    font-size: 0.6em;
    line-height: 0.1em;
    
}

.wrapper-home-name {}

.wrapper-home-slogan {
    /*-ms-transform: translateY(-60%);
    transform: translateY(-60%);*/
    text-transform: lowercase;
    margin-top: 3vw;
    padding-left: 0.7vw;
    position: absolute;
    top: 65%;
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5em;
    z-index: 2;
}

h1 {
    text-transform: uppercase;
    font-family: futura-pt, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 11.8vw;
    z-index: 2;
    color: hsl(0, 0%, 15%);
}

.h1-non-home-pages {
    margin-top: 0;
    padding-top: 0;
    font-size: 7vw;
    letter-spacing: 0.1em;
    color: hsl(0, 0%, 15%);
}

.black-text {
    color: hsl(0, 0%, 0%);
}

/*
@keyframes fade-to-black-anim
{
    from
    {
        color: hsl(0, 0%, 20%);
    }
    to
    {
        color: hsl(0, 0%, 10%);
    }
}

.fade-to-black
{
    color: hsl(0, 0%, 10%);
    animation-name: fade-to-black-anim;
    animation-duration: 2.5s;
}*/

h2 {
    text-transform: uppercase;
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.6em;
    color: hsl(342, 27%, 41%);
}

h3 {
    text-transform: uppercase;
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2em;
    color: hsl(342, 27%, 41%);
    margin-top: 1em;
}

article {
    padding-left: 1.3%;
}

.main-content {
    padding: 1.5em 1.3%;
}

.main-content-smaller {
    width: 70%;
}

nav {
    color: hsl(0, 0%, 100%);
}

.ul-nav-projects {
    /*visibility: hidden;*/
    display: none;
    text-transform: lowercase;
    list-style: none;
    text-align: right;
    right: 0;
    margin-right: 8vw;
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5vw;
    ;
}

.ul-nav-projects li a,
.ul-nav-projects li .a-dummy {
    letter-spacing: 0;
    transition: letter-spacing 0.2s ease-in,
        text-transform 0.2s ease-in;
}

.ul-nav-projects li a:focus,
.ul-nav-projects li a:hover,
.ul-nav-projects li .a-dummy:hover,
.ul-nav-projects li .a-dummy:focus {
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.ul-nav-bar {
    list-style: none;
}

.ul-nav-bar li {
    right: 1vw;
    text-transform: uppercase;
    transform: rotate(-90deg);
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2.2vw;
    transition: color 1s ease-in;
    z-index: 3;
}

.ul-nav-bar li a {
    transition: color 0.2s ease-in;
}

.ul-nav-bar li a:hover,
.ul-nav-bar li a:focus {
    color: hsl(203, 61%, 77%);
}

@keyframes nav-li-active-in {
    from {
        color: hsl(203, 61%, 77%);
    }

    to {
        color: hsl(0, 0%, 0%);
    }
}

.nav-li-active {
    color: hsl(0, 0%, 0%);
    animation-name: nav-li-active-in;
    animation-duration: 2s;
    transition: color 0.2s ease-in;
}

.ul-nav-bar li .nav-li-active:hover,
.ul-nav-bar li .nav-li-active:focus {
    color: hsl(203, 61%, 15%);
}

.nav-li1 {
    position: absolute;
    margin-top: 0.4em;
    top: 5%;
    right: 3%;
    text-align: right;
}

.nav-li2 {
    position: absolute;
    top: 48%;
    text-align: center;
}

.nav-li2:hover ~ .ul-nav-projects {
    visibility: visible;
}

.nav-li3 {
    position: absolute;
    bottom: 5%;
    margin-bottom: 0.8em;
    text-align: left;
}

.wrapper-projects {
    position: absolute;
    border-left: 1px solid hsl(0, 0%, 0%);
    margin-left: 0.5%;
    width: 75%;
    -ms-transform: translateY(12vw);
    transform: translateY(12vw);
    overflow-y: scroll;
}

.wrapper-projects-sub {
    border-left: 1px solid hsl(0, 0%, 0%);
}

.wrapper-projects-category-content-sub {
    /*margin-left: 1%;*/
}

.projects-tab {
    position: relative;
    overflow: hidden;
    padding: 0.2em 0.1em;
    z-index: 10;
}

button {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
    height: 1.5em;
    width: auto;
    cursor: pointer;
    color: hsl(203, 27%, 41%);
    background-color: transparent;
    padding: 0.2em 0.4em;
    text-transform: lowercase;
    border: none;
    font-size: 1.6em;
    transition: border 0.5s ease-in;
    display: inline-block;
}

button:hover {
    border: 1px solid hsl(203, 27%, 41%);
}

button.active,
.button-active {
    color: hsl(0, 0%, 100%);
    text-transform: uppercase;
    border: none;
}


.projects-tab projects-tab-button {
    position: relative;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    transition: 0.3s;
    z-index: 12;
}

@keyframes projects-tab-button-layer-one-in {
    from {
        background-color: hsl(0, 0%, 100%);
    }

    to {
        background-color: hsl(203, 27%, 41%);
    }
}

.projects-tab-button-layer-one-active {
    background-color: hsl(203, 27%, 41%);
    /*animation-name: projects-tab-button-layer-one-in;
    animation-duration: 0.7s;*/
}

@keyframes projects-tab-button-layer-two-in {
    from {
        background-color: hsl(0, 0%, 100%);
    }

    to {
        background-color: hsl(342, 27%, 41%);
    }
}

.projects-tab-button-layer-two {
    color: hsl(342, 27%, 41%);
    font-size: 1.2em;
}

.projects-tab-button-layer-two:hover {
    border-color: hsl(342, 27%, 41%);
}

.projects-tab-button-layer-two.active {
    background-color: hsl(342, 27%, 41%);
    animation-name: projects-tab-button-layer-two-in;
    animation-duration: 0.7s;
}

@keyframes projects-tab-button-layer-three-in {
    from {
        background-color: hsl(0, 0%, 100%);
    }

    to {
        background-color: hsl(97, 27%, 41%);
    }
}

.projects-tab-button-layer-three {
    color: hsl(97, 27%, 41%);
    font-size: 1.1em;
}

.projects-tab-button-layer-three:hover {
    border-color: hsl(97, 27%, 41%);
}

.projects-tab-button-layer-three.active {
    background-color: hsl(97, 27%, 41%);
    animation-name: projects-tab-button-layer-three-in;
    animation-duration: 0.7s;
}

/*
.projects-tab projects-tab-button:hover {
    background-color: #ddd;
    color: yellow;
}

.projects-tab projects-tab-button.active {
    background-color: #ff0000;
    color: green;
}*/

.projects-category-content {
    position: relative;
    background-color: transparent;
    display: none;
    width: 100%;
    padding: 2em 1.3%;
    z-index: 11;
}

.projects-category-content-sub {
    display: none;
    padding: 2em 1.3%;
    /*    padding: 2em 1.3% 0 1.3%;*/
}

.table-section {
    width: 100%;
    font-size: 0.9em;
    /*    background-color: aqua;*/
    color: hsl(0, 0%, 40%);
    margin-bottom: 0.2em;
}

.table-row {
    /*    background-color: deeppink;*/
    display: flex;
    padding: 0.2em 0;
    width: 100%;
}

.table-section-title {
    /*    background-color: chocolate;*/
    width: 12%;
    padding-right: 0.2em;
    text-align: right;
}

.table-column {
    /*    background-color: darkgreen;*/
}

.table-column-left {
    width: 12%;
    padding-right: 0.2em;
    text-align: right;
}

.table-column-right {
    width: 35%;
    padding-left: 1em;
    text-align: left;
}

.table-column-right-far {
    width: 30%;
    color: hsl(0, 0%, 61%);
    /*    font-variant: small-caps;*/
}

.table-row-title {
    color: hsl(0, 0%, 0%);
}

.a-font-table {
    transition: color 0.2s ease-in;
}

.a-font-table:hover,
.a-font-table:focus {
    color: hsl(203, 27%, 41%);
}

.tasks {
    font-family: futura-pt-condensed, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
    letter-spacing: 0.02em;
    margin-bottom: 0.2em;
    padding-right: 0.3em;
}

.margin-left {
    margin-left: 1.3%;
}

#cursor {
    position: absolute;
    width: 3em;
    height: 3em;
    /*    background-color: hsl(0, 0%, 100%);*/
    border: 8px solid hsl(203, 27%, 41%);
    box-sizing: border-box;
    transition: 0.1s;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.my-gallery {
    width: 100%;
    height: 60vh;
    overflow-x: scroll;
    float: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 1em 0 0 1em;
    /*    background-color: red;*/
}

.my-gallery img {
    width: 90%;
    height: auto;
}

.my-gallery figure {
    display: block;
    float: left;
    margin: 0 5px 5px 0;
    width: 20%;
}

.my-gallery-small {
    overflow: scroll;
    width: 60%;
    height: auto;
}

.my-gallery-small figure {
    max-width: 90%;
    width: 75%;
}

.my-gallery-project-impression {
    width: 100%;
}

.my-gallery figcaption {
    display: none;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.gallery-column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.gallery-column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.hide-content {
    display: none;
}







#cookie-banner {
    color: #ffffff !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /*width: 67vw;*/
    width: 100vw;
    z-index: -999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: hsl(342, 27%, 41%);
}

#cookie-banner-blue{
    color: #ffffff !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /*width: 67vw;*/
    width: 100vw;
    z-index: -999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: hsl(203, 27%, 41%);
}

#cookie-banner p {
    margin: 10px 0 15px 6%;
}

.close {
    height: 30px;
    background-color: hsl(342, 27%, 41%);
    color: #ffffff !important;
    cursor: pointer;
    margin-top: 2px;
    transition: color 0.3s ease-out 0.2s;
}

.close:hover {
    border: 0;
    color: hsl(0, 0%, 15%) !important;
}

.cookie-underline {
    background-image: linear-gradient(120deg, hsl(0, 0%, 15%), hsl(0, 0%, 15%));
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: 0 88%;
    transition: background-size 0.4s ease-out 0.2s;
    padding: 2px 6px;
    margin: 0 3px;
}

.cookie-underline:hover {
    background-size: 100% 88%;
}











/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .gallery-column {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .gallery-column {
        flex: 100%;
        max-width: 100%;
    }
}

/*
.youtube-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    max-width: 90%;
}
*/

.youtube-embed {
    width: 560px;
    height: 315px;
}

.container-project-impression {
    float: left;
    width: 50%;
    overflow: hidden;
}

.two-columns {
    /*    display: inline-block;*/
}

.two-columns::after {
    content: "";
    display: table;
    clear: both;
}

.project-description {
    float: left;
    width: 50%;
}

.section-title {
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::selection{
    background: hsl(342, 27%, 41%);
    color: hsl(0, 100%, 100%);
}

.img-profile-banner {
    margin-top: 50vh;
    width: 23.5vw;
    height: auto;
    /*height: 50vh;*/
    /*    align-self: flex-end;*/
    /*right: 0;*/
    /*    position: fixed;*/
    position: fixed;
    right: 11vw;
    bottom: 0;
    z-index: -5;

    border-top: 8px solid hsl(203, 27%, 41%);
    border-left: 6px solid hsl(203, 27%, 41%);
}







.website-embed-landscape {
    width: 95%;
    height: 30vh;
}

.website-embed-portrait {
    max-width: 75%;
    max-height: 50vh;
}

.pdf-viewer {
    width: 95%;
    height: 80%;
}

.text-field {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    padding: 0.2em;
    letter-spacing: 0.05em;
    color: hsl(0, 0%, 10%);
    width: 100%;
    transition: color 0.2s ease-in;
}

.text-field:hover,
.text-fiel:focus {
    color: hsl(203, 61%, 15%);
}

.text-area {
    text-align: left;
    height: 4.5em;
    min-height: 1.5em;
}

.button-submit {
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2em;
    padding: 0.4em 1em;
    color: hsl(0, 0%, 100%);
    text-transform: lowercase;
    border: none;
    height: auto;
    width: auto;
    background-color: hsl(203, 61%, 15%);
    border: 0;
    transition: text-transform;
    cursor: grab;
}

.button-submit:hover,
.button-submit:focus {
    text-transform: uppercase;
}









.table-column>a>img{
    max-height: 14px;
    width: auto;
}

.table-column>a>img:hover{
    -webkit-filter: brightness(1)contrast(1)hue-rotate(217deg)saturate(1)sepia(100%);
  filter: brightness(1)contrast(1)hue-rotate(217deg)saturate(1)sepia(100%);
}






/*@media screen and (orientation: portrait) {
    body
    {
        transform: rotate(90deg);
    }
}*/


/**/
/**/
/*RESPONIVENESS*/
/**/
/**/




@media screen and (max-width: 1630px) {

    .vimeo-landscape {
        width: 500px;
        height: 282px;
    }

    .vimeo-portrait {
        width: 500px;
        height: 888px;
    }

}

@media screen and (max-width: 1400px) {

    .vimeo-landscape {
        width: 400px;
        height: 226px;
    }

    .vimeo-portrait {
        width: 400px;
        height: 712px;
    }

}




@media screen and (max-width: 1080px) {

    body {}

    .wrapper-home-slogan {
        font-size: 3vw;
    }

    .bird {
        position: absolute;
        top: -80%;
        width: 25%;
        margin-left: -3%;
        height: auto;
    }

    .img-profile-banner {
        height: 30vh;
        margin-top: 70vh;
        width: auto;
    }

    .wrapper-projects {
        font-size: 0.8em;
    }

    .main-content-smaller {
        width: 50%;
    }

    .vimeo-landscape {
        width: 100%;
        height: auto;
    }

    .vimeo-portrait {
        width: 120%;
        height: auto;
        margin-left: -10%;
    }

    @media screen and (max-height: 520px) {

        .blue-box {
            overflow-y: scroll
        }

        .home-blue-box .ul-nav-bar li {
            font-size: 3.5vh;
        }

        .home-blue-box .nav-li1 {
            top: 20%;
        }

        .home-blue-box .nav-li3 {
            bottom: 20%;
        }


    }

}





@media screen and (max-width: 520px) {



    .wrapper-projects {
        font-size: 0.6em;
    }

    .wrapper-home-slogan {
        font-size: 0.8em;
    }

    /*.img-profile-banner {
        position: relative;
    }

    .img-profile-banner {
        height: 10vh;
        margin-top: 90vh;
        width: auto;
    }*/

    .img-profile-banner {
        height: 20vh;
        margin-top: 80vh;
        width: auto;
    }

    .others-blue-box .ul-nav-bar li {
        font-size: 2.5vh;
    }

    .others-blue-box .nav-li1 {
        top: 15%;
    }

    .others-blue-box .nav-li3 {
        bottom: 15%;
    }

}




@media screen and (max-width: 300px) {

    .img-profile-banner {
        height: 10vh;
        margin-top: 90vh;
        width: auto;
    }

    .bird {
        position: absolute;
        top: -150%;
        width: 40%;
        margin-left: -6%;
        height: auto;
    }
    
    .others-blue-box .ul-nav-bar li {
        font-size: 2em;
    }

    .others-blue-box .nav-li1 {
        top: 20%;
    }

    .others-blue-box .nav-li3 {
        bottom: 20%;
    }

}




@media screen and (orientation: portrait) {

    .home-blue-box .ul-nav-projects {
        right: 4vw;
    }

    .home-blue-box .ul-nav-projects li {
        font-size: 2.5vw;
    }

    .home-blue-box .ul-nav-bar li {
        font-size: 4vw;
    }

    .home-blue-box .nav-li1 {
        top: 15%;
    }

    .home-blue-box .nav-li3 {
        bottom: 15%;
    }

    .others-blue-box .ul-nav-bar li {
        font-size: 2vh;
        margin-right: -2vw;
        ;
    }

    .others-blue-box .nav-li1 {
        top: 20%;
    }

    .others-blue-box .nav-li3 {
        bottom: 20%;
    }

    @media screen and (max-width: 520px) {

        .nav-li1 {
            top: 30%;
        }

        .nav-li3 {
            bottom: 30%;
        }

        .others-blue-box .ul-nav-bar li {
            margin-right: -4vw;
        }

    }

}
