@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;
    height: 100vh;
    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;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #0f0f0f;
    border-bottom: 1px solid #1887d226;
    overflow: hidden;
}

.movingBG {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210%; 
    height: 210%;
    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;
    flex-direction: column;
    height: 100%;
    padding: 0 var(--page_padding) 0 var(--page_padding);
    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: 250px;
    width: 600px;
    height: 400px;
    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: -680px;
    top: 54px;
    width: 900px;
    height: 750px;
    border-radius: 50%;
    background: #096681;
    filter: blur(150px);
    transform: rotate(-40deg);
    opacity: .08;
    animation: glowRotation2 20s linear infinite;
}

@keyframes glowRotation2{
    from {transform: rotate(0deg);}
    to {transform: rotate(-356deg);}
}

.top_title {
    position: relative;
    opacity: 0;
    padding-top: 350px;
    color: #c6c6c6;
    font-size: 80px;
    font-weight: 600;
    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;   
    text-align: center;
    animation: slideIn .2s forwards .5s;
    z-index: 5;
}

.top_btn_box {
    position: relative;
    opacity: 0;
    top: 20px;
    display: flex;
    gap: 15px;
    animation: slideIn .2s forwards .7s;
}

.top_btn_start {
    display: block;
    position: relative;
    width: 275px;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    background: #075f9a;
    color: #c3c3c3;
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
    transform: scale(.9);
}

.top_btn_start span {
    width: 88%;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    right: 0;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2);
}

.top_btn_start_icon {
    color: #c3c3c3;
}

.top_btn_start .top_btn_start_icon {
    width: 0%;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.top_btn_start .top_btn_start_icon i {
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.top_btn_start span,
.top_btn_start .top_btn_start_icon {
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
}

.top_btn_start .top_btn_start_icon i {
    font-size: 20px;
    line-height: 35px;
}

.top_btn_start:hover span {
  right: -80%;
  opacity: 0;
}

.top_btn_start:hover .top_btn_start_icon {
  width: 95%;
}


.top_btn_start:hover .top_btn_start_icon i {
  font-size: 28px;
}

.top_btn_discord {
    display: block;
    position: relative;
    width: 200px;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    background: #4951b4;
    color: #c3c3c3;
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
    transform: scale(.9);
}

.top_btn_discord span {
    width: 88%;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    right: 0;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2);
}

.top_btn_discord_icon {
    color: #c3c3c3;
}

.top_btn_discord .top_btn_discord_icon {
    width: 0%;
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.top_btn_discord .top_btn_discord_icon i {
    transition: all 0.25s cubic-bezier(0.29, -0.103, 0.40, 1.2), height 0.25s ease;
}

.top_btn_discord span,
.top_btn_discord .top_btn_discord_icon {
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
}

.top_btn_discord .top_btn_discord_icon i {
    font-size: 20px;
    line-height: 35px;
}

.top_btn_discord:hover span {
  right: -80%;
  opacity: 0;
}

.top_btn_discord:hover .top_btn_discord_icon {
  width: 95%;
}


.top_btn_discord:hover .top_btn_discord_icon i {
  font-size: 28px;
}

@keyframes slideIn{
    from {opacity: 0;margin-top: -50px;}
    to {opacity: 1;margin-top: 0px;}
}

.mouse_box {
    opacity: 0;
    position: absolute;
    bottom: 40px;
    width: 35px;
    height: 55px;
    animation: mouse 1s forwards 3s;
}
@keyframes mouse {
    from {
        opacity: 1;
        transform: rotate(30deg);
        bottom: -100px;
        margin-left: -60px;
    }
    to {
        opacity: 1;
        margin-left: 0px;
    }
}

.mouse {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    background: #242424;
    border: 2px solid #737373;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #737373;
    animation: scroll 2s cubic-bezier(.15,.41,.69,.94) infinite 4s;
}

@keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
}




.content_part {
    position: relative;
    padding: 115px var(--page_padding) 115px var(--page_padding);
    width: 100%;
}

.content_part:first-child {
    padding-top: 150px;
}

.content_part:last-child {
    padding-top: 0px;
    padding-bottom: 150px;
}

.content_glow {
    position: absolute;
    width: calc(100% -  var(--page_padding) * 2);
    height: 100%;
    z-index: -1;
}

.content_glow_item {
    width: 100%;
    height: 80%;
    border-radius: 25%;
    filter: blur(150px);
    opacity: .045;
}

.content_glow_color1 {
    background: #1887d2;
}

.content_glow_color2 {
    background: #096681;
}


.content_titel {
    opacity: 0;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c6c6c6;
    transform: translateY(-50px); 
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.content_titel span {
    display: block;
    width: 100%;
    color: #8b8b8b;
    font-size: 20px;
    font-weight: 500;
}

.content_titel.visible {
    opacity: 1;
    transform: translateY(0); 
}

.content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.content_item {
    opacity: 0;
    position: relative;
    background: #191919;
    height: 350px;
    border-radius: 8px;
    border: 1px solid #303030;
    overflow: hidden;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.content_item.visible {
    opacity: 1;
}

.content_item.animation-left {
    transform: translateX(-150px); 
}

.content_item.animation-right {
    transform: translateX(150px); 
}

.content_item.visible.animation-left {
    transform: translateX(0);
}

.content_item.visible.animation-right {
    transform: translateX(0); 
}


.content_item:nth-child(1), .content_item:nth-child(4) {
    width: calc(35% - 30px);
}

.content_item:nth-child(2), .content_item:nth-child(3) {
    width: 65%;
}

.createcontainer,
.aufgabecontainer,
.besprechungcontainer,
.addUsercontainer {
    filter: saturate(0.5);
    transition: filter .2s ease;
}

/* CreateItem */

.createcontainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 75%;
    width: 100%;
}

.create_titel {
    font-size: 18px;
    font-weight: 800;
    color: #c3c3c3;
}

.create_titel_info {
    font-size: 12px;
    color: #8c8a8a;
}

.createcontainer input {
    margin: 10px 0;
    width: 50%;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #2f2f2f;
    text-align: center;
    color: #969696;
    background: #171717;
}

.createcontainer input:hover {
    border: 1px solid #3f3f3f;
}

.createcontainer input:focus {
    border: 1px solid #636363;
    outline: none;
}


.createcontainer button {
    width: 50%;
    height: 30px;
    border: none;
    outline: none;
    background: #096681;
    border-radius: 3px;
    color: #c6c6c6;
    text-align: center;
    box-shadow: 0 6px 20px -5px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.createcontainer button:hover {
    filter: brightness(110%);
}

.createbtn_x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40%;
    box-shadow: 0 0 12px -2px rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

.createbtn_active {
    background: #6f2a2a !important;
    transition: 1s;
}

.createbtn_active .createbtn_x {
    right: 0;
    top: -5px;
    opacity: 1;
    transition: 1s;
    animation: createbtn_x ease 1s forwards;
}

@keyframes createbtn_x {
    0% { transform: rotate(0);}
    70% { transform: rotate(370deg);}
    80% { transform: rotate(350deg);}
    100% { transform: rotate(360deg);}
}

.createbtn_active span {
    padding-right: 75px;
    transition: 1s;
}

/* AufgabenItem */

.content_item_aufgabe {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aufgabecontainer {
   /*  transform: skewY(-2deg) skewX(5deg);
    height: 50%;
    width: 80%;
    box-shadow: 0 0 5px #1887d2;
    border-radius: 5px;
    margin-top: -75px;
    background-color: #101010; */
    width: 100%;
    height: 100%;
}

.aufgaben_table {
    width: 100%;
}

.aufgaben_table tr {
    height: 30px;
}

.aufgaben_table tr[draggable="true"] {
    cursor: grab;
}

.aufgaben_table tr:hover:first-child {
     backdrop-filter: brightness(85%);
}

.aufgaben_table tr:hover {
    backdrop-filter: brightness(115%);
}
 

.aufgaben_table tr th {
    text-align: left;
    padding: 0 5px;
    font-size: 10px;
    color: #969696;
    border-bottom: 1px solid #272727;
    border-right: 1px solid #272727;
    background: #171717;
}

.aufgaben_table tr th:last-child {
    border-right: none;
}

.aufgaben_table tr td {
    padding: 0 5px;
    font-size: 10px;
    color: #969696;
    border-bottom: 1px solid #272727;
    border-right: 1px solid #272727;
}

.aufgaben_table tr td:last-child {
    border-right: none;
}

.aufgabe_tag {
    border-radius: 2px;
    padding: 0 8px;
    font-weight: 700;
    width: fit-content;
}

.aufgabe_action {
    position: relative;
    display: flex;
    gap: 10px;
}

.aufgabe_action span:hover {
    color: #1887d2;
    cursor: pointer;
}

.tooltip_text {
    position: relative;
}

.tooltip_text:hover:after {
    content: attr(data-msg);
    position: absolute;
    top: -20px;
    left: -5px;
    padding: 0 6px;
    border-radius: 3px;
    background: #075f9a;
    color: #c3c3c3;
    font-size: 10px;
    white-space: nowrap;
}


/* BesprechungsItem */

.besprechung_tabs_box {
    display: flex;
    height: 30px;
    width: 100%;
    border-bottom: 1px solid #272727;
    background: #171717;
} 

.besprechung_tab {
    display: flex;
    align-items: center;
    height: 100%;
    border-right: 1px solid #272727;
    padding: 0 30px;
    font-size: 10px;
    font-weight: 700;
    color: #969696;
    background: #171717;
}

.besprechung_tab:hover {
    background: #151515;
    backdrop-filter: brightness(115%);
    cursor: pointer;
}

.besprechung_tab_active {
    color: #006fb5;
}

#besprechungAllgemein,
#besprechungCommunity,
#besprechungFraktion {
    display: none;
}

.besprechung_tab_content_active {
    display: block;
}

.besprechung_item {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid #272727;
}


.besprechung_item_top {
    display: flex;
}


.besprechung_item_avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    border-radius: 3px;
    background: #181818;
    color: #969696;
    font-size: 18px;
    outline: 2px solid #3c3b3b;
    z-index: 1;
}

.besprechung_item_user_info {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.besprechung_item_user_info span:first-child {
    padding: 1px 10px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 800;
    width: fit-content;
}

.besprechung_item_user_info span:last-child {
    font-size: 10px;
    font-weight: 700;
    color: #969696;
    padding-top: 3px;
}

.besprechungs_item_contextmenu {
    position: absolute;
    right: 5px;
    top: 5px;
}

.besprechungs_item_contextmenu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    color: #969696;
    font-size: 12px;
}



.besprechungs_item_contextmenu_btn:hover,
.besprechungs_item_contextmenu_btn_active {
    background: #181818;
    border: 1px solid #333;
    cursor: pointer;
}

.besprechungs_item_contextmenu_options {
    position: absolute;
    right: 25px;
    top: 0;
    border-radius: 2px;
    border: 1px solid #2d2d2d;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
    animation: besprechungs_item_contextmenu_options .3s ease;
}

@keyframes besprechungs_item_contextmenu_options {
    from {
        opacity: 0;
        transform: scale(0.2) skew(30deg, 0deg);
    }
    to {
        opacity: 1;
        transform: scale(1) skew(0deg, 0deg);
    }
}

.besprechungs_item_contextmenu_options div {
    padding: 2px 8px;
    border-bottom: 1px solid #2d2d2d;
    background: #181818;
    color: #969696;
    font-size: 10px;
    white-space: nowrap;
}

.besprechungs_item_contextmenu_options div:last-child {
    border-bottom: none;
}

.besprechungs_item_contextmenu_options div:hover {
    background: #232323;
    cursor: pointer;
}

.besprechungs_item_thema {
    padding-left: 43px;
    padding-top: 8px;
    color: #969696;
    font-size: 10px;
}

.besprechung_item_fazit {
    position: relative;
    padding: 25px 0 0 40px;
}

.besprechung_item_fazit::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 40px;
    height: 2px;
    width: 40px;
    background: #3c3b3b;
}

.besprechung_item_fazit::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 39px;
    height: 90px;
    width: 2px;
    background: #3c3b3b;
}

/* Add User Item */

.addUsercontainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 75%;
    width: 100%;
}



.add_user_title {
    font-size: 18px;
    font-weight: 800;
    color: #c3c3c3;
}


.addUsercontainer select {
    margin: 10px 0;
    width: 50%;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #2f2f2f;
    text-align: center;
    color: #969696;
    background: #171717;
}

.addUsercontainer select:hover {
    border: 1px solid #3f3f3f;
}

.addUsercontainer select:focus {
    border: 1px solid #636363;
    outline: none;
}


.addUsercontainer button {
    position: relative;
    width: 50%;
    height: 30px;
    border: none;
    outline: none;
    background: #096681;
    border-radius: 3px;
    color: #c6c6c6;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.addUsercontainer button:hover {
    filter: brightness(110%);
}

.createUserCopy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40%;
    box-shadow: 0 0 12px -2px rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    right: -2px;
    opacity: 0;
    transition: transform .1s ease !important;
}

.createUserCopy:active {
    transform: scale(0.5);
    box-shadow: inset 0 0 12px -2px rgba(0,0,0,0.7);
}

.createUserbtn_active {
    background: #246033 !important;
    transition: 1s;
}

.createUserbtn_active .createUserCopy {
    right: -2px;
    top: -5px;
    opacity: 1;
    transition: 1s;
    animation: createUserCopy ease 1s forwards;
}

@keyframes createUserCopy {
    0% { transform: rotate(0);}
    70% { transform: rotate(370deg);}
    80% { transform: rotate(350deg);}
    100% { transform: rotate(360deg);}
}

.createUserbtn_active span {
    padding-right: 55px;
    transition: 1s;
}

/*/*//*/*//*/*//*/*//*/*//*/*/


.content_item_desc {
    position: absolute;
    bottom: 0;
    height: 65px;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 40px;
    background: #131313;
    box-shadow: 0 -13px 20px #111111;
    color: #a1a1a1;
    font-size: 18px;
    font-weight: 600;
}

.content_item_desc span {
    font-weight: 400;
    color: #696767;
    margin-left: 5px;
}

.content_item_desc_long {
    width: 70%;
}


.content_list {
    width: 100%;
    height: 350px;
    display: flex;
    gap: 30px;
}

.content_list_item {
    opacity: 0;
    position: relative;
    background: #1b1b1b;
    height: 350px;
    width: 25%;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.content_list_item.visible {
    opacity: 1;
}

.content_list_item.animation-up {
    transform: translateY(50px);
}

.content_list_item.visible.animation-up {
    transform: translateY(0);
}

.content_list_item:hover {
    transform: scale(1.1);
    z-index: 1;
}

.content_list_item.visible:hover {
    transform: scale(1.1) translateY(0);
}

.content_list_item_wiki {
    background: #131313;
    border: 1px solid #222;
    height: auto;
}

.wiki_header {
    position: absolute;
    top: -50px;
    left: -150px;
    height: 150px;
    width: calc(100% + 175px);
    border-bottom: 1px solid #222;
    overflow: hidden;
    background: #121212;
}

.wiki_header_text {
    width: 120%;
    filter: blur(2px);
    opacity: 0.1;
    font-size: 20px;
    font-weight: 600;
    color: #a8a8a8;
    text-transform: uppercase;
    transform: rotate(-20deg);
}

.wiki_titel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    font-size: 30px;
    font-weight: 700;
    color: #777777;
    text-shadow: 0 0 57px #000000;
}

.wiki_ammount {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    font-size: 40px;
    font-weight: 700;
    color: #096681;
}




.content_question_part {
    display: flex;
    align-items: center;
    flex-direction: column;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.content_question_part.visible {
    opacity: 1;
    transform: translateY(0);
}

.content_question {
    opacity: 0;
    text-align: center;
    font-size: 20px;
    color: #8c8a8a;
    padding: 0 185px;
    transform: translateY(50px); 
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.content_question.visible {
    opacity: 1;
    transform: translateY(0); 
}

.content_question_btn_box {
    opacity: 0;
    display: flex;
    gap: 30px;
    transform: translateY(50px); 
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.content_question_btn_box.visible {
    opacity: 1;
    transform: translateY(0);
}

.content_question_btn_box a {
    font-size: 18px;
    color: #dedede;
    padding: 3px 50px;
    border-radius: 2px;
    border: none;
    margin-top:  20px;
    text-decoration: none;
    transition: all .2s ease;
}

.content_question_btn_box a:first-child {
    background: #075f9a;
}

.content_question_btn_box a:last-child {
    background: #4951b4;
}

.content_question_btn_box a:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.content_question_btn_box a i {
    margin-right: 10px;
}

.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;
}


/* Smartphone im Hochformat (bis 480px) */
@media only screen and (max-width: 480px) {
    :root {
        --page_padding: 10px;
    }

    .nav_action {
        display: none;
    }


    .logo_text {
        font-size: 18px;
    }

    .top_title {
        font-size: 30px;
        letter-spacing: 5px;
    }

    .content_list , .content {
        flex-direction: column;
    }

    .content_item:nth-child(1), 
    .content_item:nth-child(2), 
    .content_item:nth-child(3), 
    .content_item:nth-child(4) {
        width: 100%;
    }

    .content {
        padding: 50px var(--page_padding) 0;
    }

    .content_question_part {
        overflow: hidden;
    }

    .footer_links {
        flex-direction: column;
        gap: 10px;
        padding: 10px var(--page_padding);
    }

    .footer_info {
        font-size: 10px;
        padding: 10px var(--page_padding);
    }
}


























/* Smartphone im Querformat (bis 768px) */
@media screen and (max-width: 768px) {
    :root {
        --page_padding: 20px;
    }
    
   
}


























/* Tablets (769px bis 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    :root {
        --page_padding: 50px;
    }
}

/* Desktop-Bildschirme (1025px bis 1439px) */
@media screen and (min-width: 1025px) and (max-width: 1439px) {
    :root {
        --page_padding: 150px;
    }
    .top_title {
        font-size: 50px;
    }

    .top_description {
        font-size: 15px;
        font-weight: 400;
    }
}

/* Großbildschirme (1440px und größer) */
@media screen and (min-width: 1440px) {
    :root {
        --page_padding: 400px;
    }
}