@charset "UTF-8";

#landing {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

#video-con {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    overflow: hidden;
}

#video-con video {
    margin: 0;
    padding: 0;
    min-width: 100%; 
    min-height: 100%; 
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#nav {
    position: absolute;
    top: 50px;
    left: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: auto;
    animation: blurfx 4s ease-in-out 1;
}

@keyframes blurfx {
    from {
        filter: blur(10px);
    }
    to {
        filter: blur(0);
    }
 }

#nav-logo {
    margin: 12px 0 0 0;
    padding: 0;
    height: 60px;
}

#nav-main {
    margin: 0;
    padding: 0;
    width: 700px;
    height: 50px;
    background-color: black;
    border-radius: 45px;
    font-family: "roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#nav-main a {
    margin: 0;
    padding: 0;
    transition: ease 500ms;
    cursor: pointer;
}

#nav-main a:hover {
    color: #CE0000;
}

#nav-sm {
    margin: 0;
    padding: 0;
    width: auto;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#nav-sm a:hover {
    filter: blur(1px);
}

#landing-titel {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 15%;
    left: 0;
    text-align: center;
}

.animated-text {
    margin: 0;
    padding: 0;
    font-family: "monte-stella", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 170px;
    color: white;
    word-wrap: no-wrap;
    animation: blend 4s ease-in-out 1;
    cursor: default;
}

@keyframes blend {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1.0;
        filter: blur(0px);
    }
 }

 /***
 ****
 MOBILE
 ****
 ***/

 #m-nav {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

#m_logo_con {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0.75);
    animation: blend 4s ease-in-out 1;
}

#m_logo {
    margin: 7% 0 7% 0;
    padding: 0;
    min-width: 345px;
    width: 80%;
    animation: blend 4s ease-in-out 1;
}



#m_menu {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0%;
    background-color: rgb(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5%;
    font-family: "roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: white;
}

#m_menu a {
    cursor: pointer;
}

#m_menu_sm {
    margin: 10% 0 0 0;
    padding: 0;
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20%;
}

#m_menu_sm a img {
    margin: 0;
    padding: 0;
    height: 35px;
}

#m-button {
    position: relative;
    margin: 0 0 30% 0;
    padding: 0;
    width: auto;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: blend 4s ease-in-out 1;
}

#m-button p {
    margin: 0;
    padding: 0;
    color: white;
    font-family: "roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 10px;
    cursor: default;
    transition: all 700ms ease;
}

#b_out {
    position: relative;
    margin: 0;
    padding: 0;
    width: 68px;
    height: 68px;
    border: 6px solid white;
    border-radius: 50%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#b-center {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    border: 2px solid transparent;
    border-left-color: white;
    border-right-color: white;
    border-radius: 50%;
    animation: loading 2s linear infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn)
    }
}

#b-in {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 12px;
    height: 12px;
    border: 5px solid white;
    border-radius: 50%;
}

 @media screen and (max-width: 1000px) {
    #nav {
        display: none;
    }
    #landing-titel {
        display: none;
    }
    #m-nav {
        display: flex;
    }
}

@media screen and (max-width: 1389px) {
    #nav-logo {
        height: 50px;
    }
    #nav-main {
        width: 600px;
        height: 40px;
        font-size: 14px;
    }
    .animated-text {
        font-size: 124px;
    }
}

