* {
    box-sizing : border-box;
    margin : 0;
    padding : 0;
    font-family : 'Kumbh Sans', sans-serif;
}

html, body {
  overflow-x: hidden;
}

#navbar_logo_png {
    width : 75px;
    height :75px;
    margin-left: -2rem;
    margin-right: 0.5rem;
}

.navbar {
    background: white;
    height : 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position : fixed;
    width: 100%;
    top : 0;
    z-index: 999;
    border-bottom: 2px solid rgb(35, 65, 165);
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar_logo {
    background-color: rgb(35, 65, 165);
    background-image: rgb(35, 65, 165);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.9rem;
}

.navbar_menu {
    margin-right: -2.5rem;
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar_links {
    color: rgb(35, 65, 165);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 4px;
    background:rgb(35, 65, 165);
    color: white;
}

.button:hover {
    background:rgb(102, 116, 162);;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar_container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar_menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: auto;
        z-index: -1;
        background: white;
    }

    .navbar_menu.active {
        background: white;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: auto;
        font-size: 1.6rem;
    }

    #navbar_logo {
        padding-left: 50px;
        margin: 0 55px 0 0;
        font-size: 1.5rem;
    }

    .navbar_toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: black;
    }

    .navbar_item {
        width: 100%;
    }

    .navbar_links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar_btn {
       padding-bottom: 2rem;
       width: 100%;
       display: flex;
       justify-content: center;
    }

    .button {
        padding: 8px 24px;
        width: auto;
    }

    .navbar_toggle .bar{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section CSS*/

.main {
    margin-top: 80px;
    background-color: white;
}

.main_container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    min-height: 80vh;
    z-index: 1;
    width: 100%;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

.video_overlay {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: linear-gradient(
        90deg,
        rgba(0,0,0,0.3),
        rgba(255, 255, 255, 0.3)
    );
}

.video-bg {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.hero_picture {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.hero_picture_verkabelung {
    position: absolute;
    z-index: -2;
    bottom: middle;
    left: middle;
    width: 100%;
    min-height: 100%
}

.microsoft_picture {
    position: absolute;
    z-index: -2;
    bottom: middle;
    left: middle;
    width: 700px;
}


#beratung_img{
    top: -250px;
}

.main_content h1 {
    font-size: 3.5rem;
    background-color: black;
    background-image: linear-gradient(to right, rgb(131, 131, 131) 0%, rgb(255, 255, 255) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

}

#hero_text_verkabelung {
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(28, 28, 28) 100%);
}

#hero_text_vpn {
    background-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(101, 101, 101) 100%);
}

#hero_text_virtualisierung {
    background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(173, 173, 173) 100%);
}
#hero_text_service {
    background-image: linear-gradient(to left, rgb(255, 255, 255) 0%, rgb(173, 173, 173) 100%);
}
#hero_text_impressum {
    background-image: black;
    color: black;
}

#microsoft_text {
    background-image: linear-gradient(to right, rgb(75, 75, 75) 0%, rgb(173, 173, 173) 100%);
}

.main_content h2 {
    font-size: 3rem;
    background-color: blue;
    background-image: linear-gradient(to left, rgb(131, 131, 131) 0%, rgb(255, 255, 255) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
}

.main_content {
    margin-top: 18rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

#index_content {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

#microscoft_content {
    color: grey;
}

.main_btn {
    font-size: 1rem;
    background-image: linear-gradient(to left, rgb(203, 203, 203) 0%, rgb(138, 138, 138) 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: black;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main_btn a {
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
}

.main_btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, rgb(35, 65, 165) 0%, rgb(117, 130, 172) 100%);
    transition: all 0.35s;
    border-radius: 4px;
}

.main_btn:hover {
    color: black;
}

.main_btn:hover:after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .main_container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }

    .main_content {
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 15rem;
    }

    .main_content h1 {
        font-size: 2rem;
        margin-top: 1rem;
    }
    .main_content h2 {
        font-size: 2rem;
    }

    .main_content p {
        margin-top: 1rem;
        font-size: 1.2rem; 
    }

    .microsoft_picture {
        width: 400px;
    }
}

@media screen and (max-width: 480px) {

    .main_content h1 {
        font-size: 1rem;
        margin-top: 2rem;
    }
    .main_content h2 {
        font-size: 1rem;
    }

    .main_content p {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .main_btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }

    .microsoft_picture {
        width: 200px;
    }
}

/* Information Section CS */

.information{
    background: white;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    min-height: auto;
    padding: 4rem 1rem;
}

.information h1 {
    background-color: black;
    background-image: black;
    background-size: 100%;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-left: 2rem;
}

.information p {
    background-color: gray;
    background-image: gray;
    background-size: 100%;
    font-size: 1.5rem;
    margin-left: 2rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

/* Services Section CSs */

.services {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding: 4rem 1rem;
}

.services h1 {
    background-color: black;
    background-image: black;
    background-size: 100%;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
    

.services_card {
    text-decoration: none;
    margin: 1rem;
    height: auto;
    min-height: 225px;
    padding-bottom: 2rem;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/Netzwerk.jpg');
    background-position: 60% 50%;
    background-size: cover;
    position: relative;
    color: white;
    transition: transform 0.3s ease;
}

.services_card:nth-child(2) {
    margin: 1rem;
    height: 250px;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/Computer_Systeme.jpg');
    background-position: left center;
}

.services_card:nth-child(3) {
    margin: 1rem;
    height: 250px;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/Virtualisierung.jpg');
    background-position: 20% 0;
}

.services_card:nth-child(4) {
    margin: 1rem;
    height: 250px;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/Security.jpg');
}

.services_card:nth-child(5) {
    margin: 1rem;
    height: 250px;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/VPN.jpg');
    background-position: 48% 0%;
}

.services_card:nth-child(6) {
    margin: 1rem;
    height: 250px;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/Verkabelung.jpg');
    background-position: right center;
}

.services_card:nth-child(7) {
    margin: 1rem;
    height: 250px;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/Beratung.jpg');
    background-position-x: left center;
}

.services_card:nth-child(8) {
    margin: 1rem;
    height: 250px;
    width: 200px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17, 17, 17, 0.6) 100%), url('/images/Microsoft_logo.svg.png');
    background-position-x: left center;
    background-size: 14.4rem; 
}

.services h2 {
    margin-top: 40px;
    gap: min(40px, 5vh);
    color: white;
}

.services_card p {
    top: 100px;
    padding: 10px;
}

.services_card button {
    color: white;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: rgb(35, 65, 165);
    position: absolute;
    top: 175px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.services_card:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

@media screen and (max-width: 960px) {

    .services h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .services {
        height: 1400px;
    }

    .services h1 {
        font-size: 1.2rem;
    }

    .services_card {
        width: 300px;
    }
}

/* Footer CSS*/
.footer_container {
    background-color: #ededed;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer_logo {
    margin-top: 10px;
    color: black;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

#footer_logo-png {
    width : 75px;
    height :75px;
    margin-right: 0.5rem;
}

.footer_links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer_link-wrapper {
    display: flex;
    
}

.footer_link-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 5vw 0 5vw;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer_link-items h2 {
    margin-bottom: 16px;
}

.footer_link-items > h2 {
    color: black;
}

.footer_link-items a {
    color: black;
    text-decoration:none;
    margin-bottom: 0.5rem;
}

.footer_link-items p {
    color: black;
    text-decoration:none;
    margin-bottom: 0.5rem;
}

.footer_link-items a:hover {
    color:  rgb(35, 65, 165);
    transition: 0.3s ease-out;
}

/*.social_icon_link {
    color: white;
    font-size: 24px;
}

.social_media {
    max-width: 1000px;
    width: 100%;
}

.social_media-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social_icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.social_logo {
    color: white;
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}*/

.website_rights {
    color: balck;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .footer-links {
        padding-top: 2rem;
    }

    #footer_logo {
        margin-bottom: 2rem;
    }

    .website_rights {
        margin-bottom: 2rem;
    }

    .footer_link-wrapper {
        flex-direction: column;
    }

    .social_media-wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer_link-items {
        margin: 0;
        padding: 10px;
        width: 100%;

    }
}

/* Impressum Section CS*/

.impressum {
    background-color: white;
    padding: 3rem 2rem;
    max-width: flex;
    margin: 0 auto;
    font-family: 'Kumbh Sans', sans-serif;
}

.impressum-wrapper {
  display: flex;
  justify-content: center;
}


.impressum h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20rem;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: left;
}

.impressum h2 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color:rgb(35, 65, 165);
}

.impressum p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

.impressum strong, h2, h1 {
    color:rgb(35, 65, 165);
}

.impressum_wichtiger_Hinweis {
    margin: 3rem 2rem 0 2rem;
}

.impressum_Haftungsausschluss {
    margin: 3rem 2rem 0 2rem;
}

@media (max-width: 768px) {
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impressum {
        padding: 2rem 1rem;
    }
}

/* Cookie Section CSS */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 0.9rem;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: #00aaff;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: rgb(35, 65, 165);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 2rem;
}

/* Overlay */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    pointer-events: all;
    z-index: 9998; /* Behind the banner */
}

.cookies-disabled {
    overflow: hidden !important;    /* force it */
    position: relative;             /* helps with some browsers */
    height: 100vh;                  /* prevent content scroll */
    pointer-events: none;           /* Disable interaction */
}

.cookies-disabled #cookie-banner,
.cookies-disabled #cookie-overlay {
    pointer-events: auto; /* Allow interaction only on banner & overlay */
}

/*Datenschutz*/

.datenschutz_text ul {
    margin: 0 0 0 1rem;
}

.datenschutz_punkte {
    padding-left: 20px;
    color:rgb(35, 65, 165);
    font-size: 1.2rem;
    font-weight: bold;
}

.datenschutz_punkte p{
    padding: 10px 20px 10px 0;
    font-size: 1rem;
    font-weight: normal;
}

.punkte_punkte {
    padding: 20px 0 0 20px;
    color:rgb(35, 65, 165);
    font-size: 1rem;
    font-weight: bold;
}

.punkte_punkte_punkte {
    padding: 20px 0 20px 20px;
    color:#333;
    font-size: 1rem;
    font-weight: normal;
}

.klammer_liste {
    list-style-type: decimal;
    padding: 20px 0 0px 60px;
    color:#333;
    font-size: 1rem;
    font-weight: normal;
    counter-reset: inner;
}

.klammer_liste > li{
    counter-increment: inner;
     padding: 0 0 15px 0;
}

.klammer_liste > li::marker {
    content: "(" counter(inner, decimal) ") ";
}

.list_eine_klammer {
    padding: 20px 0 20px 0;
    color:#333;
    font-size: 1rem;
    font-weight: normal;
    list-style-type: none;
    counter-reset: list;
}

.list_eine_klammer > li {
    counter-increment: list;
}

.list_eine_klammer > li::marker {
    content: counter(list, lower-alpha) ") ";
}

.datenschutz_abschlussworte {
    align-items: center;
    text-align: center;
    color: #333;
    padding-top: 5rem;
}