/* DESKTOP STYLES */

.desktop {

    /* HEADER */

    header {
        position: absolute;
        width: 100%;
        z-index: 10;
    }

    header > .logo-container {
        background-image: url("../images/logo.svg");
        background-size: 200px 244px;
        position: absolute;
        top: 0;
        left: 110px;
        width: 200px;
        height: 244px;
    }

    /* HERO */

    section#hero {
        position: relative;
        height: 1079px;
        z-index: 1;
    }

    section#hero > .video-container {
        position: absolute;
        top: -257px;
        left: -215px;
        width: 2375px;
        height: 1336px;
    }

    section#hero > .video-container > .video {
        display: flex;
        height: 100%;
    }

    section#hero > .border-container {
        background-color: #e5e5e5;
        border: 7px solid #fff;
        position: absolute;
        top: 518px;
        left: -150px;
        width: 1031px;
        height: 777px;
    }

    section#hero > .text-container {
        position: absolute;
        top: 579px;
        left: 111px;
        width: 681px;
        height: 289px;
    }

    section#hero > .text-container > .subtitle {
        font-size: 36px;
        font-weight: 300;
        line-height: 60px;
    }

    section#hero > .text-container > .title {
        font-size: 58px;
        font-weight: 700;
        line-height: 60px;
    }

    section#hero > .text-container > .scroll-text {
        margin-top: 117px;
        position: absolute;
        opacity: 0;
        transform: translateY(20px);
    }

    section#hero > .text-container > .scroll-text.in-view {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    section#hero > .text-container > .scroll-text > p {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
    }

    /* PRINCIPLE */

    section#principle {
        background-color: #fff;
        position: relative;
        height: 1672px;
    }

    section#principle > .background-container {
        background-color: #eff3f3;
        background-size: 1026px 617px;
        overflow: hidden;
        position: absolute;
        top: 753px;
        left: -54px;
        width: 1026px;
        height: 617px;
    }

    section#principle > .border-container {
        border: 7px solid #dee2e2;
        position: absolute;
        top: 427px;
        left: 199px;
        width: 1628px;
        height: 851px;
    }

    section#principle > .title-container {
        position: absolute;
        top: 490px;
        left: 278px;
        width: 570px;
    }

    section#principle > .title-container > .title {
        font-size: 100px;
        font-weight: 700;
        line-height: 105px;
    }

    section#principle > .list-container {
        position: absolute;
        top: 817px;
        left: 279px;
    }

    section#principle > .list-container > .list {
        list-style-type: none;
    }

    section#principle > .list-container > .list > li {
        user-select: none;
    }

    section#principle > .list-container > .list > li > a {
        color: #2b2e32;
        display: flex;
        align-items: center;
        font-size: 40px;
        font-variation-settings: "wght" 300;
        font-weight: 300;
        line-height: 84px;
        text-decoration: none;
        transition: font-variation-settings 0.1s ease-in-out, font-weight 0.1s ease-in-out;
        will-change: font-variation-settings, font-weight;
    }

    section#principle > .list-container > .list > li > a:hover {
        font-variation-settings: "wght" 700;
        font-weight: 700;
    }

    section#principle > .list-container > .list > li > a:hover > .robus-t {
        background-image: url("../images/robus-t-list-black-hover.png");
    }

    section#principle > .list-container > .list > li > a > span {
        pointer-events: none;
    }

    section#principle > .list-container > .list > li > a > .robus-t {
        background-image: url("../images/robus-t-list-black.png");
        background-size: 61px 55px;
        margin-right: 5px;
        width: 61px;
        height: 55px;
    }

    section#principle > .list-container > .list > li > a > .chevron-right {
        background-image: url("../images/chevron-list-right-black.png");
        background-size: 16px 23px;
        margin-top: 4px;
        margin-left: 20px;
        width: 16px;
        height: 23px;
    }

    section#principle > .foreground-container {
        background-color: #5285a6;
        position: absolute;
        top: 662px;
        right: 0;
        width: 948px;
        height: 812px;
    }

    section#principle > .text-container {
        position: absolute;
        top: 916px;
        right: 99px;
    }

    section#principle > .text-container > .text {
        width: 739px;
    }

    section#principle > .text-container > .text > p {
        color: #fff;
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
    }

    section#principle > .hover-text-container {
        position: absolute;
        top: 1164px;
        right: 109px;
    }

    section#principle > .hover-text-container > .hover-text {
        width: 730px;
    }

    section#principle > .hover-text-container > .hover-text > p {
        color: #fff;
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
    }

    section#principle > .hover-text-container > .hover-text > p.visible {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
    }

    section#principle > .image-container {
        background-image: url("../images/principle-image.jpg");
        background-position: center 30%;
        background-size: cover;
        position: absolute;
        top: 366px;
        right: 68px;
        width: 770px;
        height: 482px;
    }

    /* PROJECTS */

    section#projects {
        background-color: #eff3f3;
        position: relative;
        height: 965px;
    }

    section#projects > .title-container {
        position: absolute;
        top: 83px;
        left: 95px;
        width: 494px;
        height: 435px;
    }

    section#projects > .title-container > .title {
        font-size: 100px;
        font-weight: 700;
        line-height: 105px;
    }

    section#projects > .text-container {
        position: absolute;
        top: 570px;
        left: 95px;
        width: 648px;
        height: 305px;
    }

    section#projects > .text-container > .text > p {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
    }

    section#projects > .border-container {
        border: 7px solid #e0eaef;
        position: absolute;
        top: -90px;
        left: 795px;
        width: 650px;
        height: 732px;
    }

    section#projects > .video-container {
        position: absolute;
        top: 234px;
        right: 0;
        width: 1055px;
        height: 594px;
    }

    section#projects > .video-container > .video {
        display: flex;
        height: 100%;
    }

    /* PLANNING */

    section#planning {
        position: relative;
        height: 1391px;
    }

    section#planning > .background-container {
        background-color: #eff3f3;
        position: absolute;
        top: 508px;
        right: 0;
        width: 1406px;
        height: 883px;
    }

    section#planning > .text-container {
        position: absolute;
        top: 612px;
        right: 108px;
        width: 661px;
        height: 738px;
    }

    section#planning > .text-container > .text > p {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
    }

    section#planning > .image-container {
        background-image: url("../images/planning-image.jpg");
        background-size: 1082px 676px;
        position: absolute;
        top: 612px;
        left: 0;
        width: 1082px;
        height: 676px;
    }

    section#planning > .border-container {
        border: 7px solid #e0eaef;
        position: absolute;
        top: 189px;
        left: -109px;
        width: 1659px;
        height: 370px;
    }

    section#planning > .title-container {
        position: absolute;
        top: 220px;
        left: 95px;
        width: 1350px;
        height: 225px;
    }

    section#planning > .title-container > .title {
        font-size: 100px;
        font-weight: 700;
        line-height: 105px;
    }

    /* ABOUT US */

    section#about-us {
        position: relative;
        height: 1654px;
    }

    section#about-us > .image-container {
        background-image: url("../images/about-us-image.jpg");
        background-size: 1040px 1134px;
        position: absolute;
        top: 358px;
        left: 0;
        width: 1040px;
        height: 1134px;
    }

    section#about-us > .text-container {
        position: absolute;
        top: 534px;
        right: 108px;
        width: 661px;
        height: 638px;
    }

    section#about-us > .text-container > .text > p {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
    }

    section#about-us > .text-container > .hover-text {
        margin-top: 20px;
        position: absolute;
    }

    section#about-us > .text-container > .hover-text > p {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
    }

    section#about-us > .text-container > .hover-text > p.hidden {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    }

    section#about-us > .text-container > .hover-text > p > a {
        font-size: 20px;
        font-weight: 700;
        color: #4488a6;
        line-height: 24px;
        text-decoration: none;
    }

    section#about-us > .text-container > .hover-text > p.more {
        user-select: none;
    }

    section#about-us > .text-container > .hover-text > p > a > .chevron-right {
        background-image: url("../images/chevron-right-blue.png");
        background-size: 9px 15px;
        display: inline-block;
        margin-top: 5px;
        margin-left: 5px;
        width: 9px;
        height: 15px;
    }

    section#about-us > .text-container > .hover-text:hover > p.hidden {
        max-height: 450px;
        opacity: 1;
    }

    section#about-us > .text-container > .hover-text:hover > p > a {
        color: #142b40;
    }

    section#about-us > .text-container > .hover-text:hover > p > a > .chevron-right {
        background-image: url("../images/chevron-right-black.png");
    }

    section#about-us > .border-container {
        border: 7px solid #e0eaef;
        position: absolute;
        top: 147px;
        right: 70px;
        width: 1561px;
        height: 276px;
    }

    section#about-us > .title-container {
        position: absolute;
        top: 202px;
        right: 162px;
        width: 775px;
    }

    section#about-us > .title-container > .title {
        font-size: 100px;
        font-weight: 700;
        line-height: 120px;
    }

    /* REFERENCES */

    section#references {
        position: relative;
        height: 1992px;
    }

    section#references > .border-container {
        border: 7px solid #e0eaef;
        position: absolute;
        top: 0;
        left: 66px;
        width: 1388px;
        height: 197px;
    }

    section#references > .title-container {
        position: absolute;
        top: 55px;
        left: 127px;
        width: 536px;
        height: 120px;
    }

    section#references > .title-container > .title {
        font-size: 100px;
        font-weight: 700;
        line-height: 100px;
    }

    section#references > .subtitle-container {
        position: absolute;
        top: 275px;
        left: 181px;
    }

    section#references > .subtitle-container > .subtitle {
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
    }

    section#references > .text-container {
        position: absolute;
        top: 320px;
        left: 181px;
        width: 474px;
        height: 148px;
    }

    section#references > .text-container > .text > p {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-bottom: 30px;
    }

    section#references > .background-container {
        background-color: #e0e7e6;
        position: absolute;
        top: 816px;
        left: 0;
        width: 100%;
        height: 634px;
    }

    section#references > .image-container-small {
        background-image: url("../images/references-image-small.jpg");
        background-size: 475px 741px;
        position: absolute;
        top: 494px;
        left: 181px;
        width: 475px;
        height: 741px;
    }

    section#references > .image-container-large {
        background-image: url("../images/references-image-large.jpg");
        background-size: 1198px 1141px;
        position: absolute;
        top: 94px;
        right: 0;
        width: 1198px;
        height: 1141px;
    }

    section#references > .gallery-container {
        position: absolute;
        top: 1305px;
        width: 100%;
    }

    section#references > .gallery-container > .nav > .prev-button,
    section#references > .gallery-container > .nav > .next-button {
        background-size: contain;
        cursor: pointer;
        position: absolute;
        width: 43px;
        height: 103px;
        transition: background-image 0.3s ease-in-out, transform 0.2s ease-in-out;
    }

    section#references > .gallery-container > .nav > .prev-button {
        background-image: url("../images/slider-left.png");
        top: 198px;
        left: 110px;
    }

    section#references > .gallery-container > .nav > .next-button {
        background-image: url("../images/slider-right.png");
        top: 198px;
        right: 110px;
    }

    section#references > .gallery-container > .nav > .prev-button:hover {
        background-image: url("../images/slider-left-hover.png");
        transform: scale(1.1);
    }

    section#references > .gallery-container > .nav > .next-button:hover {
        background-image: url("../images/slider-right-hover.png");
        transform: scale(1.1);
    }

    section#references > .gallery-container > .images-wrapper {
        position: relative;
        left: 181px;
        display: flex;
        gap: 66px;
        overflow: hidden;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease-in-out;
        transform: none !important;
        transform-origin: unset !important;
    }

    section#references > .gallery-container > .images-wrapper > .image-container {
        background-size: 491px 498px;
        cursor: pointer;
        flex-shrink: 0;
        overflow: hidden;
        perspective: 2000px;
        position: relative;
        width: 475px;
        height: 498px;
    }

    section#references > .gallery-container > .images-wrapper > .image-container > .image {
        object-fit: cover;
        opacity: 1;
        position: absolute;
        transform-origin: center;
        width: 100%;
        height: 100%;
    }

    /* FOOTER */

    footer {
        position: relative;
        height: 418px;
    }

    footer > .background-container {
        background-color: #0061a1;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 178px;
    }

    footer > .logo-container {
        background-image: url("../images/logo.svg");
        background-size: 344px 418px;
        position: absolute;
        top: 0;
        left: 110px;
        width: 344px;
        height: 418px;
    }

    footer > .text-container {
        display: flex;
        gap: 117px;
        position: absolute;
        top: 0;
        left: 500px;
    }

    footer > .text-container > div > .subtitle {
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
    }

    footer > .text-container > div > p {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
        margin-top: 19px;
    }

    footer > .text-container > div > p > a {
        color: #000;
        font-variation-settings: "wght" 100;
        text-decoration: none;
        transition: color 0.1s ease-in-out, font-variation-settings 0.1s ease-in-out, font-weight 0.1s ease-in-out;
        will-change: color, font-variation-settings, font-weight;
    }

    footer > .text-container > div > p > a:hover {
        color: #142b40;
        font-variation-settings: "wght" 300;
        font-weight: 300;
    }

    footer > .links-container {
        position: absolute;
        bottom: 18px;
        right: 70px;
    }

    footer > .links-container > .links {
        color: #fff;
        display: flex;
        gap: 10px;
        font-size: 20px;
        font-weight: 300;
        line-height: 24px;
    }

    footer > .links-container > .links > a {
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }

    footer > .links-container > .links > a:hover {
        color: #fff;
    }

    /* IMPRINT */

    section#imprint {
        position: relative;
        height: 2050px;
    }

    section#imprint > .border-container {
        border: 7px solid #dee2e2;
        position: absolute;
        top: 374px;
        left: 110px;
        width: 1864px;
        height: 208px;
    }

    section#imprint > .title-container {
        position: absolute;
        top: 432px;
        left: 210px;
        width: 1864px;
    }

    section#imprint > .title-container > .title {
        font-size: 100px;
        font-weight: 700;
        line-height: 105px;
    }

    section#imprint > .text-container {
        position: absolute;
        top: 667px;
        left: 500px;
        width: 1053px;
    }

    section#imprint > .text-container > .text {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
    }

    /* PRIVACY */

    section#privacy {
        position: relative;
        height: 5915px;
    }

    section#privacy > .border-container {
        border: 7px solid #dee2e2;
        position: absolute;
        top: 374px;
        left: 110px;
        width: 1864px;
        height: 208px;
    }

    section#privacy > .title-container {
        position: absolute;
        top: 432px;
        left: 210px;
        width: 1864px;
    }

    section#privacy > .title-container > .title {
        font-size: 100px;
        font-weight: 700;
        line-height: 105px;
    }

    section#privacy > .text-container {
        position: absolute;
        top: 667px;
        left: 500px;
        width: 1053px;
    }

    section#privacy > .text-container > .text {
        font-size: 20px;
        font-weight: 100;
        line-height: 30px;
    }

    /** IMPRINT & PRIVACY LINKS */

    section#imprint > .text-container *,
    section#privacy > .text-container * {
        margin: revert;
        padding: revert;
    }

    section#imprint a,
    section#privacy a {
        color: #000;
        font-variation-settings: "wght" 100;
        font-weight: 100;
        text-decoration: none;
        transition: color 0.1s ease-in-out, font-variation-settings 0.1s ease-in-out, font-weight 0.1s ease-in-out;
        will-change: color, font-variation-settings, font-weight;
    }

    section#imprint a:hover,
    section#privacy a:hover {
        color: #2b2e34;
        font-variation-settings: "wght" 300;
        font-weight: 300;
    }

    /* JUMP TO TOP BUTTON */

    .jump-top {
        background-color: rgba(255, 255, 255, 0.3);
        background-image: url("../images/chevron-up-white.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 21px 13px;
        cursor: pointer;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 42px;
        height: 35px;
    }

}
