@import url('https://fonts.googleapis.com/css2?family=Delicious+Handrawn&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


:root {
    --page_padding: 450px;
    --akzentfarbe: #1887d2;
    --clr_white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #121212;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    z-index: 10;
}

.navbar-inner {
    transition: backdrop-filter 0.3s ease;
}

.scrolled .navbar-inner {
    backdrop-filter: blur(10px) brightness(75%);
    border-bottom: 1px solid #1887d2;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--page_padding) 0 var(--page_padding);
    animation: slideIn .3s forwards;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 75px;
    margin-left: -7px;
}

.logo img {
    position: absolute;
    height: 50px;
    transition: all .2s ease;
}

.logo_text {
    position: relative;
    left: 50px;
    color: #c6c6c6;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
}

.logo_text span {
    font-size: 13px;
    font-weight: 800;
}


.logo img:nth-child(1) {
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(90%) hue-rotate(149deg) brightness(84%) contrast(86%);
}

.logo img:nth-child(3) {
    filter: invert(43%) sepia(100%) saturate(1200%) hue-rotate(179deg) brightness(86%) contrast(91%);
}

.logo img:nth-child(3):hover {
    transform: scale(1.25);
    cursor: pointer;
}

.nav_action {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav_a {
    position: relative;
    color: #c6c6c6; 
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0px 0px 10px black;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.nav_a:hover {
    filter: brightness(125%);
}

.nav_a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: -3px;
    padding: 0 4px;
    background-color: #1887d2;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav_a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav_btn {
    display: block;
    position: relative;
    width: 200px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    background: #125e91;
    color: #c6c6c6;
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
}

.nav_btn span {
    width: 80%;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    right: 0;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2);
}

.nav_btn_icon {
    color: #c6c6c6;
}

.nav_btn .nav_btn_icon {
    width: 0%;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.nav_btn .nav_btn_icon i {
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.nav_btn span,
.nav_btn .nav_btn_icon {
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
}

.nav_btn .nav_btn_icon i {
    font-size: 19px;
    line-height: 30px;
}

.nav_btn:hover span {
  right: -80%;
  opacity: 0;
}

.nav_btn:hover .nav_btn_icon {
  width: 90%;
}


.nav_btn:hover .nav_btn_icon i {
  font-size: 35px;
}



.top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container {
    position: relative;
    width: 100%;
    height: 375px;
    background-color: #0f0f0f;
    border-bottom: 1px solid #1887d226;
    overflow: hidden;
    z-index: 5;
}

.movingBG {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%; 
    height: 500%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: center;
    background: #1187d2;
    mask:
        radial-gradient(circle at 100% 100%, white 2px, transparent 2.5px) 50% 50% / 20px 20px,
        url("https://assets.codepen.io/605876/noise-mask.png") 256px 256px / 256px 256px;
    mask-composite: intersect;
    animation: flicker 60s infinite linear, light_ease 1s forwards 1s;
    opacity: 0;
}

.highlightMaus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1187d2;
    opacity: 0;
    clip-path: circle(0px at 50% 50%);
    mask:
        radial-gradient(circle at 100% 100%, white 2.5px, transparent 1.5px) 50% 50% / 20px 20px,
        url("https://assets.codepen.io/605876/noise-mask.png") 256px 256px / 256px 256px;
    mask-composite: intersect;
    transition: clip-path 0.1s ease, opacity 0.1s ease;
    animation: flicker 60s infinite linear, light_ease 1s forwards 1s;
    pointer-events: none;
}

@keyframes flicker {
    to {
        mask-position: 50% 50%, 0 50%;
    }
}

.top_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 var(--page_padding) 0;
    z-index: 1;
}

.top_glow {
    opacity: 0;
    position: absolute;
    animation: light_ease 1s forwards 1.2s;
}

@keyframes light_ease{
    from {opacity: 0;}
    to {opacity: 1;}
}

.top_glow_item1 {
    position: absolute;
    top: 0px;
    width: 400px;
    height: 200px;
    border-radius: 50%;
    background: #1887d2;
    filter: blur(150px);
    transform: rotate(60deg);
    opacity: .09;
    animation: glowRotation1 15s linear infinite;
}

@keyframes glowRotation1{
    from {transform: rotate(0deg);}
    to {transform: rotate(356deg);}
}

.top_glow_item2 {
    position: absolute;
    left: -380px;
    top: 25px;
    width: 500px;
    height: 250px;
    border-radius: 50%;
    background: #096681;
    filter: blur(150px);
    transform: rotate(-40deg);
    opacity: .09;
    animation: glowRotation2 20s linear infinite;
}

@keyframes glowRotation2{
    from {transform: rotate(0deg);}
    to {transform: rotate(-356deg);}
}

.top_title {
    position: relative;
    opacity: 0;
    color: #aba7a7;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-shadow: 0px 0px 80px black;
    animation: slideIn .2s forwards .3s;
    z-index: 5;
}

.top_title span {
    color: #006fb5;
}

.top_description {
    opacity: 0;
    color: #a1a1a1;
    text-shadow: 0px 0px 80px black;
    font-size: 22px;
    font-weight: 300;   
    animation: slideIn .2s forwards .5s;
    z-index: 5;
}

@keyframes slideIn{
    from {opacity: 0;margin-top: -50px;}
    to {opacity: 1;margin-top: 0px;}
}

.top_path {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 35px;
    background: #101010;
    border-bottom: 1px solid #1b1b1b;
    padding: 0 var(--page_padding);
}

.top_path a {
    display: flex;
    flex-wrap: nowrap;
    color: #8c8a8a;
    text-decoration: none;
    font-size: 13px;
    opacity: 0;
    animation: slideIn .2s forwards .4s;
}

.top_path a:hover {
    filter: brightness(120%);
}

.top_path_logo {
    position: relative;
    display: flex;
    align-items: center;
    width: 25px;
}

.top_path_logo img {
    position: absolute;
    height: 25px;
    transition: all .2s ease;
}

.top_path_logo img:nth-child(1) {
    filter: brightness(0) saturate(100%) invert(68%) sepia(6%) saturate(79%) hue-rotate(314deg) brightness(81%) contrast(81%);
}

.top_path_logo img:nth-child(3) {
    filter: invert(43%) sepia(100%) saturate(1200%) hue-rotate(179deg) brightness(86%) contrast(91%);
}

.top_path_spacer {
    color: #8c8a8a;
    font-size: 13px;
    opacity: 0;
    animation: slideIn .2s forwards .8s;
}

/* Content Start */

.content {
    opacity: 0;
    text-align: justify;
    padding: 100px var(--page_padding) 0;
    color: #c6c6c6;
    animation: slideIn .2s forwards .6s;
}

.titel {
    color: var(--akzentfarbe);
    font-size: 35px;
    font-weight: 600;
}

.content_titel {
    width: 100%;
    padding: 2px 0;
    border-bottom: 2px solid #333;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.content_titel_info {
    padding: 5px 5px;
}

.content_titel_info a {
    color: var(--akzentfarbe);
}

h2 {
    color: #c6c6c6;
}

h3 {
    color: #c6c6c6;
    opacity: .9;
}

h4 {
    color: #c6c6c6;
    opacity: .75;
}

p,
ul {
    color: #c6c6c6;
    opacity: .75;
}

p a {
    color: #1887d2;
    white-space: break;
}


/* Footer Start */

.footer {
    position: relative;
    width: 100%;
    border-top: 1px solid #243e4f;
}

.footer_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    padding: 0 var(--page_padding) 0 var(--page_padding);
    background: #121212;
}

.footer_legal {
    display: flex;
    margin-left: -10px;
}

.footer_legal a {
    padding: 2px 10px;
    color: #8c8a8a;
    border-radius: 3px;
    text-decoration: none;
    transition: all .1s ease;
}

.footer_legal a:hover {
    background: #262626;
    color: #bebebe;
}

.footer_social a {
    margin-right: 10px;
    font-size: 18px;
    color: #8c8a8a;
    transition: all .1s ease;
}

.footer_social a:hover {
    color: #bebebe;
}

.footer_info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 50px;
    padding: 0 var(--page_padding) 0 var(--page_padding);
    border-top: 1px solid #232323;
    background: #0f0f0f;
    text-transform: uppercase;
}


.footer_made {
    font-size: 10px;
    font-weight: 700;
    color: #8c8a8a;
}

.footer_made i, .footer_made span {
    color: #006fb5;
    font-weight: 900;
}

.footer_copyright {
    font-size: 12px;
    font-weight: 900;
    color: #8c8a8a;
}

.footer_glow {
    position: absolute;
    background: #1e8d92;
    width: 100% ;
    height: 100%;
    border-radius: 25%;
    filter: blur(150px);
    opacity: .4;
    z-index: -1;
}


/* Smartphones Portrait */
@media only screen and (max-width: 480px) {
    :root {
        --page_padding: 10px;
    }
    .navbar-content {
        padding: 0 10px;
    }
    .nav_action {
        gap: 15px;
    }
    .nav_btn {
        width: 150px;
    }
    .top_title {
        font-size: 30px;
    }
}

/* Tablets Portrait & Smartphones Landscape */
@media only screen and (max-width: 768px) {
    :root {
        --page_padding: 20px;
    }
    .navbar-content {
        padding: 0 20px;
    }
    .top_title {
        font-size: 40px;
    }
}

/* Tablets Landscape */
@media only screen and (max-width: 1024px) {
    :root {
        --page_padding: 50px;
    }
    .navbar-content {
        padding: 0 50px;
    }
}

/* Desktops & Laptops */
@media only screen and (min-width: 1025px) {
    :root {
        --page_padding: 150px;
    }
}

/* Large Screens */
@media only screen and (min-width: 1440px) {
    :root {
        --page_padding: 400px;
    }
}