@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #ffffff;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #ffffff;
}

h4 {
    font-size: 20px;
    color: #ffffff;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #b1b1b1;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
    text-align: center;
}

.section-m1{
    margin: 40px 0;
}

body {
    width: 100%;
    background-color: #000000;
}

.logo {
    height: 70px;
    width: 70px;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background-color: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#products .pro-container1 {
    float: left;
    width: 48%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid white;
    border-radius: 10px;
}

#products .pro-container2 {
    float: right;
    width: 48%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid white;
    border-radius: 10px;
}

#products .pro-container2 ul {
    align-items: left;
    justify-content: left;
}

#haken {
    justify-content: left;
    align-items: left;
    text-decoration: none;
    font-family: 'Spartan', sans-serif;
}

#haken li{
    color: white;
    text-decoration: none;
    align-items: left;
    justify-content: left;
    list-style: none;
}

#products button {
    background-color: #ffffff;
    border-radius: 10px;
    color: rgb(0, 0, 0);
    padding: 16px 100px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255);
}

#products button:hover {
   background-color: #000000;
   color: #ffffff; 
   border: 1px solid rgb(255, 255, 255);
}

.section-fragen {
    text-align: center;
    padding: 50px;
    margin: 15px;
}

h5 {
    color: #ffffff;
    text-align: center;
    font-size: 46px;
    margin-top: 700px;
}