@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root{
    --primary: #004848;
    --primary-dark: #72aaa9;
    --primary-mid: #c6dbde;
    --primary-mid-light: #459496;
    --primary-light: #e3edef;
    --grey-light: #f2f2f2;
    --green: #adbe51;
    --orange: #d3520b;
    --white: #ffffff;
    --black: #000000;
    --black-mid: #444444;

}

*{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: "Lato", sans-serif;
    font-size: 20px;
    overflow-x: hidden;
    overflow-y: visible;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, label, table, tbody, tfoot, thead, tr, th, td, footer, header, menu, nav, section{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

.mb_100{
    margin-bottom: 100px;
}

.mb_20{
    margin-bottom: 20px;
}
.mb_45{
    margin-bottom: 45px;
}

.px_30{
    padding: 0 30px;
}
.pb_35{
    padding-bottom: 35px;
}

/* Index Page */

.floating_menu{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1px;
    z-index: 99999;
}
.floating_menu a{
    display: block;
    height: 75px;
    width: 75px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
}
.floating_menu a img{
    width: 35px;
}

/* Top Navigation */

.mobile_navbar{
    display: none;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    color: var(--primary);
    padding: 5px 10px;
    position: fixed;
    width: 100%;
    height: 55px;
    top: 0;
    left: 0;
    z-index: 1001;
}
.mobile_navbar .logo{
    width: 70px;
}
.mobile_navbar .logo img{
    width: 100%;
    height: auto;
}
.hamburger {
    cursor: pointer;
    z-index: 1001;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: 0.4s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger .bar:nth-child(2) {
    width: calc(100% - 10px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.top_nav{
    height: 50px;
    background-color: var(--primary);
}
.top_nav .top_nav_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top_nav .top_nav_wrapper ul{
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.top_nav .top_nav_wrapper ul li{
    list-style: none;    
}
.top_nav .top_nav_wrapper ul li a{
    color: var(--white); 
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    font-weight: 300;
    gap: 7px;
    font-size: 16px;
}
.top_nav .top_nav_wrapper ul li a svg{
    fill: var(--white);
    width: 12px;
    margin-top: 3px;
}
.top_nav .top_nav_wrapper .details_wrapper{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
.top_nav .top_nav_wrapper .detail_card{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--white);
    gap: 5px;
}
.top_nav .top_nav_wrapper .icon{
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Navigation */

.main_nav{
    background-color: var(--white);
    padding: 0;
}
.main_nav .main_nav_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main_nav .main_nav_wrapper .logo{
    width: 120px;
    height: 75px;
}
.main_nav .main_nav_wrapper .logo img{
    width: 100%;
    height: auto;
}
.main_nav .main_nav_wrapper ul{
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}
.main_nav .main_nav_wrapper ul li{
    list-style: none;    
    position: relative;
}
.main_nav .main_nav_wrapper ul li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    text-transform: uppercase;
    transition: 0.3s;
    color: var(--primary); 
    font-weight: 600;
    gap: 7px;
    position: relative;
    height: 99px;
}
.main_nav .main_nav_wrapper ul li .inner_dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 500px;
    width: 100%;
    background-color: var(--primary-mid);
}
.main_nav .main_nav_wrapper ul li a.active,
.main_nav .main_nav_wrapper ul li a:hover{
    color: var(--primary-dark); 
}
.main_nav .main_nav_wrapper ul li a svg{
    fill: var(--primary);
    width: 13px;
    margin-top: 3px;
    transition: 0.3s;
}
.main_nav .main_nav_wrapper ul li a.active svg,
.main_nav .main_nav_wrapper ul li a:hover svg{
    fill: var(--primary-dark);
}

@media (min-width: 767px) {
    .main_nav .main_nav_wrapper ul li a:hover + .dropdown_menu{
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Dropdown Open Hover Over Main Links */

.dropdown_menu{
    background-color: var(--primary-mid);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    height: 70px;
    position: absolute;
    top: 97px;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.3s;
    opacity: 0;
}
.dropdown_menu:hover{
    opacity: 1;
    transform: scaleY(1);
}
.dropdown_menu::after{
    content: '';
    position: absolute;
    left: -100vw;
    top: 0;
    background-color: var(--primary-mid);
    height: 70px;
    width: 100vw;
    z-index: 0;
}
.dropdown_menu::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-mid);
    height: 70px;
    width: 100vw;
    z-index: 0;
}
.dropdown_menu a{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1;
    letter-spacing: 0.3px;
    color: var(--primary);
    transition: 0.3s;
}
.dropdown_menu a.active,
.dropdown_menu a:hover{
    color: var(--primary-mid-light);
}

/* Hero Section */

.hero{
    width: 100vw;
    max-height: 60vh;
    overflow: hidden;
}
.hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Note */
.note{
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 100px 10px;
    text-align: right;
}

.wasser{
    padding: 110px 0 40px;
}
.wasser .wasser_wrapper h1{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    width: 80%;
    margin-bottom: 60px;
}

/* Table Design Customize */

table{
    width: 100%;
    color: var(--black-mid)
}
table.light_header thead tr th{
    background-color: var(--primary-mid);
    color: var(--black-mid);
}
table.light_header tbody tr td{
    background-color: var(--primary-light);
}
table thead tr th{
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-left: 1px solid var(--white);
}
table thead tr th:first-child{
    border-left: 0px solid var(--white);
    background-color: transparent;
    width: 33.33%;
}
table tbody tr:nth-child(even){
    background-color: var(--primary-light);
}
table tbody tr:nth-child(odd){
    background-color: var(--primary-mid);
}
table tbody tr td:first-child{
    border-left: 0px;
}
table tbody tr td{
    padding: 10px 20px;
    border-left: 1px solid var(--white);
}
table tbody tr td.black_mid{
    color: var(--black-mid);
    font-weight: 600;
}
table tbody tr td.black{
    font-weight: 600;
}
table tfoot tr td{
    padding: 10px 20px;
    text-align: right;
    font-size: 16px;
}

/* Download Section */

.download{
    padding: 100px 0;
    background-color: var(--primary-mid);
}
.download h2{
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    width: 80%;
    margin-bottom: 50px;
}
.download h3{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    width: 80%;
    margin:60px 0 30px;
    text-align: center;
    width: 100%;
    text-transform: capitalize;
}
.download .download_card{
    width: max-content;
    height: 88px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent   ;
}
.download .download_card button{
    width: 117px;
    min-width: 117px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 0;
    padding-left: 25px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    background-image: url('./../images/down-btn-back.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.download .download_card button img{
    width: 38px;
    min-width: 30px;
    z-index: 1;
}
.download .download_card .text{
    height: 100%;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 40px 30px 30px;
    background-color: transparent;
    background-image: url('./../images/download-text-back.png');
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 476px;
    max-width: 476px;
    width: 476px;
    display: block;
}
.download .download_card.mini{
    height: 56px;
    margin: 0 auto;
}
.download .download_card.mini button{
    width: 74px;
    min-width: 74px;
    padding-left: 20px;
    background-image: url('./../images/down-btn-back.png');
}
.download .download_card.mini button img{
    width: 30px;
    min-width: 30px;
}
.download .download_card.mini .text{
    padding: 10px 35px 10px 20px;
    min-width: 292px;
    max-width: 292px;
    font-weight: 600;
    width: 292px;
    font-size: 24px;
    text-transform: uppercase;
}

/* Aktuelles Section */

.ektulles{
    padding: 100px 0;
}
.ektulles h2{
    font-size: 45px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}
.ektulles p{
    color: var(--black-mid);
    font-weight: 300;
}
.ektulles_card .card_img{
    width: 100%;
    height: 260px;
}
.ektulles_card .card_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ektulles_card .card_content{
    position: relative;
    padding: 50px 25px 40px;
    background-color: var(--grey-light);


}
.ektulles_card .label{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    background-image: url('./../images/label-back.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 188px;
    max-width: 188px;
    width: 188px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.ektulles_card h5{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 800;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    color: var(--primary)
}
.ektulles_card .date_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 49px;
}
.ektulles_card .date_wrapper .date{
    color: var(--black-mid);
    font-weight: 300;
}
.ektulles_card .date_wrapper .name{
    font-weight: 500;
    color: var(--primary-dark);
}

/* Footer */

footer{
    padding: 15px 0;
    background-color: var(--primary);
}
footer .footer_links{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
footer .footer_links a{
    color: var(--white);
    font-size: 18px;
}


@media screen and (max-width: 1680px) {}

@media screen and (max-width: 1280px) {
    .main_nav .main_nav_wrapper ul li a{
        font-size: 14px;
    }
    .floating_menu a{
        height: 50px;
        width: 50px;
    }
    .floating_menu a img{
        width: 25px;
    }
}

@media (max-width: 992px){
    body{
        font-size: 14px;
    }
    .mb_100{
        margin-bottom: 60px;
    }
    
    .mb_20{
        margin-bottom: 15px;
    }
    .mb_45{
        margin-bottom: 35px;
    }
    
    .px_30{
        padding: 0 20px;
    }
    .pb_35{
        padding-bottom: 25px;
    }

    .floating_menu a{
        height: 35px;
        width: 35px;
    }
    .floating_menu a img{
        width: 20px;
    }

    .main_nav .main_nav_wrapper ul{
        gap: 20px;
    }
    .main_nav .main_nav_wrapper ul li{
        position: unset;
    }
    .main_nav .main_nav_wrapper ul li a{
        font-size: 12px;
    }
    .main_nav .main_nav_wrapper ul li a:hover + .dropdown_menu,
    .dropdown_menu:hover{
        transform: translateX(-50%) scaleY(1);
    }
    .dropdown_menu{
        top: 148px;
        transform: translateX(-50%) scaleY(0);
        left: 50%;
    }

    .wasser {
        padding: 70px 0 30px;
    }
    .wasser .wasser_wrapper h1{
        font-size: 46px;
        margin-bottom: 30px;
    }
    .download{
        padding: 60px 0;
    }
    .download h2{
        font-size: 35px;
        margin-bottom: 30px;
    }
    .download .download_card .text{
        font-size: 18px;
    }
    .ektulles{
        padding: 70px 0;
    }
    .ektulles h2{
        font-size: 35px;
    }
    .ektulles_card .card_content {
        padding: 40px 15px 20px;
    }
    .ektulles_card .date_wrapper{
        margin-top: 20px;
    }
    .ektulles_card h5{
        font-size: 18px;
    }
    .ektulles_card .card_img{
        height: 150px;
    }
    .ektulles_card .label{
        height: 30px;
        min-width: 150px;
        max-width: 150px;
        width: 150px;
        top: -15px;
    }
}

@media screen and (max-width: 980px) {}
@media screen and (max-width: 768) {
    .ektulles_card .card_img {
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .top_nav{
        display: none;
    }
    .page_header{
        width: 100vw;
        overflow: hidden;
    }
    .mobile_navbar{
        display: flex;
    }
    .main_nav{
        position: fixed;
        top: 0;
        max-width: 280px;
        width: 100%;
        transform: translateX(-100%);
        background: var(--white);
        padding-top: 80px;
        transition: 0.4s ease-in-out;
        z-index: 1000;
        height: 100%;
        max-height: 100vh;
        overflow-x: auto;
    }
    .main_nav.active{
        transform: translateX(0);
     }
     .main_nav .main_nav_wrapper .logo{
        display: none;
    }
    .main_nav .main_nav_wrapper ul{
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }
    .main_nav .main_nav_wrapper ul li{
        width: 100%;
    }
    .main_nav .main_nav_wrapper ul li a{
        height: auto;
        justify-content: space-between;
    }
    .main_nav .main_nav_wrapper ul li a svg{
        margin-top: 0;
    }
    .main_nav .main_nav_wrapper ul li a:hover + .dropdown_menu,
    .dropdown_menu:hover{
        transform: translateX(0%) scaleY(1);
    }

    .dropdown_menu {
        flex-direction: column;
        gap: 15px;
        top: 0px;
        position: relative;
        left: 0;
        align-items: flex-start;
        transform: translateX(0%) scaleY(0);
        margin-bottom: 0px;
        height: 0;
        padding: 0px;
        background-color: var(--primary-light);
        max-height: 200px;
        transition: 0.3s;
    }
    .main_nav .main_nav_wrapper ul li.active .dropdown_menu{
        transform: translateX(0%) scaleY(1);
        height: 100%;
        opacity: 1;
        padding: 15px 10px;
    }
    .dropdown_menu::after, .dropdown_menu::before{
        display: none;
    }

    .hero{
        height: 250px;
    }
    .note{
        padding: 5px 10px;
    }
    .wasser {
        padding: 40px 0 20px;
    }
    .wasser .wasser_wrapper h1 {
        font-size: 28px;
        width: 100%;
        margin-bottom: 20px;
    }
    .ektulles {
        padding: 30px 0;
    }
    .ektulles h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .ektulles_card{
        margin-bottom: 20px;
    }
    .ektulles_card .card_img {
        height: 250px;
    }
    .download .download_card{
        height: 52px;
    }
    .download .download_card button{
        width: 70px;
        min-width: 70px;
        padding-left: 15px;
    }
    .download .download_card.mini button{
        width: 50px;
        min-width: 50px;
    }
    .download .download_card button img{
        width: 25px;
        min-width: 25px;
    }
    .download .download_card.mini{
        height: 38px;
    }
    .download .download_card.mini button img{
        width: 15px;
        min-width: 15px;
    }
    .download .download_card .text{
        padding: 13px 10px;
        white-space: normal;
        width: 100%;
        min-width: auto;      
        max-width: 270px;     
        padding: 20px;
        text-overflow: unset;
        display: flex;
        line-height: 1.2;
        font-size: 16px;
    }
    .download .download_card.mini .text{
        padding: 8px 25px 8px 15px;
        font-size: 15px;
        min-width: unset;
        max-width: max-content;
    }
    .download{
        padding: 50px 0;
    }
    .download h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .download h3{
        margin: 40px 0 30px;
    }
    .table_wrapper{
        overflow: auto;
    } 
}

@media screen and (max-width: 480px) {
    body{
        font-size: 12px;
    }
    .ektulles_card .card_img {
        height: 200px;
    }
    footer .footer_links a{
        font-size: 14px;
    }
    .download h3{
        font-size: 22px;
        margin: 30px 0 15px;
    }
    .note {
        font-size: 10px;
        padding: 5px 10px;
    }
    .px_30{
        padding: 0 10px;
    }
}