.navigation {
    margin-top: 0.3em;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.8em;
    color: #606060;
}

.navigation a {
    color: unset;
    display: flex;
    font-weight: bolder;
    align-items: center;
    cursor: pointer;
}

.navigation .icon {
    width: 1.1em;
    height: 1.1em;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.2em;
}

.navigation .icon.buy {
    background-image: url('buy.svg');
}

.navigation .icon.config {
    background-image: url('config.svg');
}


.section.show {
    overflow: hidden;
    height: calc(100vh - 13em);
    position: relative;
    margin-bottom: 0;
}

.section.show video {
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translate(-30%, 0%);
}

.section.meet {
    padding-top: 2em; /* show/meet gap is defined by padding-top on meet for precise scroll after video end */
}

.section.meet .image {
    height: 18em;
    background-image: url("img1.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 100%;
}

.section.why .image {
    height: 18em;
    background-image: url("img2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 0%;
    background-position-y: 100%;
}


.section.dimensions .image {
    height: 20em;
    background-image: url("dimensions.webp");
    background-size: contain;
    background-repeat: no-repeat;
}

.section.buy .platforms {
    margin-top: 3em;
    flex-flow: row;
    flex-wrap: wrap;
    gap: 3em;
    /*
    filter: grayscale(100%) brightness(70%);
    opacity: 0.6;
    */
}

.section.buy .out-of-stock {
    margin-top: 1.5em;
    font-weight: bolder;
}

.section.buy .platforms a img {
    height: 4em;
}

.section.involve .image-prod {
    height: 28em;
    background-image: url("t14-side.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 30%;
    background-position-y: 100%;
}

.section.involve .image-prod .image-cf {
    position: relative;
    background-image: url("indiegogo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15em;
    height: 5em;
    top: 80%;
    left: 4em;
}

@media screen and ((orientation: landscape) or (min-height: 250mm)) {
    .section.show {
        height: unset;
        position: unset;
        max-height: calc(100vh - 9em);
    }

    .section.show video {
        height: 100%;
        width: 100%;
        left: 0px;
        transform: unset;
        position: unset;
    }
}

@media screen and (min-width: 150mm) {
    .section.show {
        margin-bottom: 3em;
    }
}

