/*fonts imported*/

@font-face {
    font-display: swap;
    font-family: Orbitron;
    src: local("fonts/Orbitron-Variable.ttf"), url("fonts/Orbitron-Variable.ttf");
}

@font-face {
    font-display: swap;
    font-family: FamiljenGrotesk;
    src: local("fonts/FamiljenGrotesk-Variable.ttf"), url("fonts/FamiljenGrotesk-Variable.ttf");
}

body {
    margin: 0;
    padding: 0;
    color: aliceblue;
    box-sizing: border-box;
    background-color: black !important;
    overflow: visible !important;
    overflow-x: hidden !important;
    font-family: FamiljenGrotesk;
}

body::selection {
    background-color: var(--palette_accent_white);
    color: var(--palette_accent_black);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    background:
        radial-gradient(100% 100% at var(--7-x-position) var(--7-y-position), hsl(0, 0%, 30%) 0%, transparent),
        radial-gradient(100% 100% at var(--8-x-position) var(--8-y-position), hsl(0, 0%, 0%) 0%, transparent),
        radial-gradient(100% 100% at var(--9-x-position) var(--9-y-position), hsl(0, 0%, 20%) 0%, transparent),
        radial-gradient(100% 100% at var(--10-x-position) var(--10-y-position), hsl(0, 0%, 5%) 0%, transparent),
        radial-gradient(100% 100% at var(--11-x-position) var(--11-y-position), hsl(0, 0%, 10%) 0%, transparent), black;
    animation-name: main;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    transition-timing-function: ease-in-out;
    z-index: -9;
}


body::after {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200vh;
    background: transparent url('resources/noisy.webp') repeat 0 0;
    background-repeat: repeat;
    animation: bg-animation .2s infinite;
    opacity: 0.65;
    overflow: hidden;
    visibility: visible;
    z-index: -10;
}

/* Noisy animation */

@keyframes bg-animation {
    0% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(-5%, -5%)
    }

    20% {
        transform: translate(-10%, 5%)
    }

    30% {
        transform: translate(5%, -10%)
    }

    40% {
        transform: translate(-5%, 15%)
    }

    50% {
        transform: translate(-10%, 5%)
    }

    60% {
        transform: translate(15%, 0)
    }

    70% {
        transform: translate(0, 10%)
    }

    80% {
        transform: translate(-15%, 0)
    }

    90% {
        transform: translate(10%, 5%)
    }

    100% {
        transform: translate(5%, 0)
    }
}

/*background blend down*/

#background-blend {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: -1;
    background: linear-gradient(in oklab to bottom, rgb(0, 0, 0) 5%, transparent);
}

/* Gradient animation */

@property --7-x-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 16.09375%;
}

@property --7-y-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 28.632812500000004%;
}

@property --8-x-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 87.8125%;
}

@property --8-y-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 15.703124999999996%;
}

@property --9-x-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 79.609375%;
}

@property --9-y-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 72.96875%;
}

@property --10-x-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 34.29687500000001%;
}

@property --10-y-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 85.2734375%;
}

@property --11-x-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 55.58593750000001%;
}

@property --11-y-position {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 40.74218750000001%;
}

:root {
    --7-x-position: 16.09375%;
    --7-y-position: 28.632812500000004%;
    --8-x-position: 87.8125%;
    --8-y-position: 15.703124999999996%;
    --9-x-position: 79.609375%;
    --9-y-position: 72.96875%;
    --10-x-position: 34.29687500000001%;
    --10-y-position: 85.2734375%;
    --11-x-position: 55.58593750000001%;
    --11-y-position: 40.74218750000001%;
    /*Color palettes*/
    --palette_accent_black: #000000;
    --palette_accent_white: #ffffff;
}

@keyframes main {
    25% {
        --7-x-position: 15%;
        --7-y-position: 15%;
        --8-x-position: 85%;
        --8-y-position: 80%;
    }

    50% {
        --7-x-position: 80%;
        --7-y-position: 15%;
        --8-x-position: 15%;
        --8-y-position: 85%;
        --9-x-position: 20%;
        --9-y-position: 20%;
        --10-x-position: 20%;
        --10-y-position: 20%;
        --11-x-position: 20%;
        --11-y-position: 20%;
    }
}

/*photo sphere viewer styles*/

.psv-virtual-tour-link {
    display: none !important;
}

.psv-panel-content {
    font-family: FamiljenGrotesk !important;
}

.psv-panel-close-button {
    top: 8px !important;
    right: 16px !important;
}

/* navigation bar */

nav {
    z-index: 1;
    position: absolute;
    width: 100%;
    user-select: none;
}

.nav-container {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

@media screen and (max-width: 600px) {
    .nav-container {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 0.5rem;
    }
}


@media screen and (min-width: 601px) {
    .nav-container {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media screen and (min-width: 1200px) {
    .nav-container {
        margin-left: 6rem;
        margin-right: 6rem;
    }
}

@media screen and (min-width: 2400px) {
    .nav-container {
        margin-top: 4rem;
        margin-left: 16rem;
        margin-right: 16rem;
    }
}

@media screen and (min-width: 3000px) {
    .nav-container {
        margin-top: 8rem;
        margin-left: 48rem;
        margin-right: 48rem;
    }
}

/* menu icons */

.nav-icon {
    cursor: pointer;
    filter: drop-shadow(0px 0px 25px hsla(0, 0%, 0%, 0.25));
}

@media screen and (max-width: 600px) {
    .nav-icon {
        width: 2rem;
        height: 2rem;
    }
}

@media screen and (min-width: 601px) {
    .nav-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media screen and (min-width: 2400px) {
    .nav-icon {
        width: 4rem;
        height: 4rem;
    }
}

.nav-icon:hover {
    opacity: 0.75;
}

nav ul {
    display: inline-block;
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 600px) {
    nav ul {
        margin: 1rem;
        margin-left: 1rem;
    }
}

@media screen and (min-width: 601px) {
    nav ul {
        margin: 1rem;
        margin-left: 2rem;
    }
}

@media screen and (min-width: 2400px) {
    nav ul {
        margin: 2rem;
        margin-left: 4rem;
    }
}

nav ul li a {
    user-select: none;
}

#container {
    position: relative;
}

/* banner video */

#video-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
}

#video-loop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/*video blend up*/

#video-blend {
    background-image: linear-gradient(to bottom, transparent 50%, rgb(0, 0, 0));
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

/*logo main nav*/

#logo {
    filter: drop-shadow(0px 0px 25px hsla(0, 0%, 0%, 0.5));
}

@media screen and (max-width: 600px) {
    #logo {
        width: 3rem;
        height: 3rem;
    }
}


@media screen and (min-width: 601px) {
    #logo {
        width: 4rem;
        height: 4rem;
    }
}

@media screen and (min-width: 2400px) {
    #logo {
        width: 8rem;
        height: 8rem;
    }
}

@media screen and (min-width: 3000px) {
    #logo {
        width: 12rem;
        height: 12rem;
    }
}

/*sections global*/

#sections {
    position: relative;
}

@media screen and (max-width: 200px) {
    #sections {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media screen and (min-width: 201px) {
    #sections {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}


@media screen and (min-width: 600px) {
    #sections {
        margin-left: 4rem;
        margin-right: 4rem;
    }
}

@media screen and (min-width: 1200px) {
    #sections {
        margin-left: 6rem;
        margin-right: 6rem;
    }
}

@media screen and (min-width: 2400px) {
    #sections {
        margin-left: 16rem;
        margin-right: 16rem;
    }
}

@media screen and (min-width: 3000px) {
    #sections {
        margin-left: 48rem;
        margin-right: 48rem;
    }
}

/*SECTION 01 ****************************************************************/
/*SECTION 01 ****************************************************************/
/*SECTION 01 ****************************************************************/

#section01 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media screen and (max-width: 600px) {
    #section01 {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width: 601px) {
    #section01 {
        margin-left: 2rem;
        margin-right: 2rem;
        display: block;
    }
}

@media screen and (min-width: 1200px) {
    #section01 {
        margin-left: 6rem;
        margin-right: 6rem;
    }
}

@media screen and (min-width: 2400px) {
    #section01 {
        margin-left: 16rem;
        margin-right: 16rem;
    }
}

@media screen and (min-width: 3000px) {
    #section01 {
        margin-left: 48rem;
        margin-right: 48rem;
    }
}

H1,
H2,
H3,
H4,
H5,
H6 {
    color: var(--palette_accent_white);
    margin: 0;
    font-family: Orbitron;
    font-weight: 600;
}

/* Banner tittle main*/

#container_tittle {
    display: block !important;
    width: 50%;
    user-select: none;
}

@media screen and (min-width: 200px) {
    #container_tittle {
        width: 90%;
    }
}

@media screen and (min-width: 600px) {
    #container_tittle {
        width: 75%;
    }
}

@media screen and (min-width: 1200px) {
    #container_tittle {
        width: 50%;
    }
}

.tittle01,
.tittle02,
.tittle03,
.tittle04 {
    white-space: nowrap;
    display: inline-block;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

/*SECTION 02 ****************************************************************/
/*SECTION 02 ****************************************************************/
/*SECTION 02 ****************************************************************/

#section02 {
    opacity: 0;
    position: relative;
}

/*buttons*/

.explore-tag,
.play-tag {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 2rem;
    margin: 0;
    margin-top: 4rem;
    background-color: var(--palette_accent_white);
    color: var(--palette_accent_black);
    width: max-content;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

.explore-tag p,
.play-tag p {
    margin: 0;
    padding: 0;
    user-select: none;
}

.explore-tag {
    transition: 500ms ease;
    cursor: pointer;
}


/*VIEWER ****************************************************************/
/*VIEWER ****************************************************************/
/*VIEWER ****************************************************************/

/*Cover viewer*/

.cover-v {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, hsl(0, 0%, 15%), hsl(0, 0%, 0%));
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1 / 1;
    background-size: 100% 100%;
    z-index: 100;
}

.cover-v video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.viewer-unlocked {
    display: none;
}

/* Viewer */

#viewer {
    width: AUTO;
    height: 32rem;
    outline: solid 0.5rem var(--palette_accent_white);
    pointer-events: none;
    z-index: 1;
    aspect-ratio: 16 / 9;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 200px) {
    #viewer {
        height: 10rem;
    }
}

@media screen and (min-width: 400px) {
    #viewer {
        height: 12rem;
    }
}

@media screen and (min-width: 600px) {
    #viewer {
        height: 18rem;
    }
}

@media screen and (min-width: 800px) {
    #viewer {
        height: 24rem;
    }
}

@media screen and (min-width: 1600px) {
    #viewer {
        height: 32rem;
    }
}

@media screen and (min-width: 2400px) {
    #viewer {
        height: 50rem;
    }
}

@media screen and (min-width: 3000px) {
    #viewer {
        height: 64rem;
    }
}

/*viewer button 02*/

.play-tag {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    outline: solid 0.25rem var(--palette_accent_white);
    outline-color: rgb(255, 255, 255);
    outline-offset: 0px;
    cursor: pointer;
    animation: pulse 1s ease-out infinite;
}

/*play-tag animation*/

@keyframes pulse {
    0% {
        outline-color: rgba(255, 255, 255, 1);
        outline-offset: 0px;
    }

    30% {
        outline-offset: 10px;
        outline-color: rgba(255, 255, 255, 0.616);
    }

    60% {
        outline-offset: 12px;
        outline-color: rgba(255, 255, 255, 0.397);
    }

    100% {
        outline-color: rgba(255, 255, 255, 0);
        outline-offset: 15px;
    }
}


/*SECTION 03 ****************************************************************/
/*SECTION 03 ****************************************************************/
/*SECTION 03 ****************************************************************/

#section03 {
    position: relative;
    height: max-content;
    width: 100%;
    overflow: hidden;
}

/*photo team*/

.about-team-img {
    height: auto;
    user-select: none;
}


@media screen and (max-width: 600px) {
    .about-team-img {
        position: relative;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        margin-left: auto;
        margin-right: auto;
    }
}


@media screen and (min-width: 601px) {
    .about-team-img {
        position: relative;
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1200px) {
    .about-team-img {
        width: 45%;
        left: 0;
        transform: translateX(0%);
        margin-left: 6rem;
    }
}


@media screen and (min-width: 2400px) {
    .about-team-img {
        width: 40%;
        margin-left: 16rem;
    }
}

@media screen and (min-width: 3000px) {
    .about-team-img {
        width: 30%;
        margin-left: 48rem;
    }
}

/*section 03*/

@media screen and (min-width: 200px) {
    #section03 {
        margin-top: 8rem;
    }
}


@media screen and (min-width: 600px) {
    #section03 {
        margin-top: 8rem;
    }

}

@media screen and (min-width: 1200px) {
    #section03 {
        margin-top: 16rem;
    }
}

#section03 p {
    line-height: 1.5rem;
}

@media screen and (max-width: 600px) {
    #section03 p {
        max-width: 100%;
    }
}

@media screen and (min-width: 601px) {
    #section03 p {
        max-width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    #section03 p {
        max-width: 50%;
    }
}


/*FOOTER ****************************************************************/
/*FOOTER ****************************************************************/
/*FOOTER ****************************************************************/

@media screen and (min-width: 200px) {
    footer {
        padding-top: 4rem;
    }
}


@media screen and (min-width: 600px) {
    footer {
        padding-top: 8rem;
    }

}

@media screen and (min-width: 1200px) {
    footer {
        padding-top: 16rem;
    }
}

footer div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Footer logos*/

#container_Flogo01,
#container_Flogo02 {
    width: 40%;
    height: 100%;
    user-select: none;
}

.footer-logo01,
.footer-logo02 {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    height: 40%;
    aspect-ratio: 1 / 1;
}

.footer-logo01 img,
.footer-logo02 img {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 800px) {

    .footer-logo01,
    .footer-logo02 {
        width: 30%;
        height: 30%;
    }
}

@media screen and (min-width: 1600px) {

    .footer-logo01,
    .footer-logo02 {
        width: 20%;
        height: 20%;
    }
}

/* footer text block */

#TittleFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    display: flex !important;
    width: 60%;
    font-family: Orbitron;
    font-weight: 600;
    user-select: none;
}

footer #TittleFooter p:nth-child(1) {
    margin: 0;
    margin-bottom: 0.4rem;
}

footer #TittleFooter p:nth-child(2) {
    margin: 0;
    margin-top: 0.4rem;
}

#footer-textblock {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

#footer-textblock .Meta01 {
    text-align: center;
    user-select: none;
}

@media screen and (max-width: 600px) {
    #footer-textblock {
        margin: auto;
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media screen and (min-width: 601px) {
    #footer-textblock {
        margin: auto;
        margin-left: 4rem;
        margin-right: 4rem;
    }
}

@media screen and (min-width: 1024px) {
    #footer-textblock {
        margin: 2rem;
        margin-left: 18rem;
        margin-right: 18rem;
    }
}

@media screen and (min-width: 1600px) {
    #footer-textblock {
        margin: 2rem;
        margin-left: 35rem;
        margin-right: 35rem;
    }
}

#footer-textblock div>* {
    line-height: 1.5rem;
}

#footer-textblock div p:nth-child(1) {
    text-align: left;
    width: 100%;
    margin-right: 2rem;
}

#footer-textblock div p:nth-child(2) {
    text-align: right;
    width: 100%;
    margin-left: 2rem;
}