@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');

/* ----------------------------------------------- Color Variables -----------------------------------------------  */

:root{
    --primary: #004848;
    --primary-dark: #72aaa9;
    --primary-mid: #c6dbde;
    --primary-mid-light: #459496;
    --primary-light: #e3edef;
    --grey: #bdbdbd;
    --grey-light: #f2f2f2;
    --green: #adbe51;
    --orange: #d3520b;
    --white: #ffffff;
    --black: #000000;
    --black-mid: #444444;
    --black-light: #757575;
    --gradient: linear-gradient(90deg, var(--primary-dark), var(--green))
}

/* ----------------------------------------------- Default/Common Style -----------------------------------------------  */

*{
    -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;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
}

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;
}
.section_title h2{
    font-size: 45px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}
.section_title p{
    color: var(--black-mid);
    font-weight: 400;
}

.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.mod_article {
    padding: 100px 0;
}

h1{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    width: 80%;
    margin-bottom: 60px;
}

h2{
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

p a {
    color: var(--orange);
}

p a:hover {
    color: var(--primary);
}

.rsts-skin-default.rsts-main {
    z-index: 1;
}

/* ----------------------------------------------- Fixed Menus -----------------------------------------------  */

.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: var(--gradient);
}
.floating_menu a img{
    width: 35px;
}

/* ----------------------------------------------- Mobile 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: 20px;
    width: 20px;
    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 Navigation -----------------------------------------------  */

.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;
    position: relative;
}
.top_nav .top_nav_wrapper ul li .subnav{
    position: absolute;
    top: 50px;
    left: 0;
    background-color: var(--primary-mid);
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.3s;
    opacity: 0;
    min-width: 120px;
    z-index: 1;
}
.top_nav .top_nav_wrapper ul li.active .subnav {
    opacity: 1;
    transform: scaleY(1);
}

.top_nav .top_nav_wrapper ul li.trail a svg {
    transform: rotate(180deg);
}
.top_nav .top_nav_wrapper ul li .subnav a,
.top_nav .top_nav_wrapper ul li .subnav strong{
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    z-index: 1;
    letter-spacing: 0.3px;
    color: var(--primary);
    transition: 0.3s;
    height: auto;
    padding: 10px 15px;
}
.top_nav .top_nav_wrapper ul li .subnav a.active,
.top_nav .top_nav_wrapper ul li .subnav a:hover,
.top_nav .top_nav_wrapper ul li .subnav strong{
    color: var(--primary-mid-light);
}

.top_nav .top_nav_wrapper ul li a,
.top_nav .top_nav_wrapper ul li > strong {
    color: var(--white);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    font-weight: 400;
    gap: 7px;
    font-size: 16px;
}

.top_nav .top_nav_wrapper ul li > strong,
.top_nav .top_nav_wrapper ul li > a:hover,
.top_nav .top_nav_wrapper ul li.trail > a,
.top_nav .top_nav_wrapper ul li a:hover svg{
    color: var(--primary-mid-light);
}

.top_nav .top_nav_wrapper ul li a:hover svg,
.top_nav .top_nav_wrapper ul li.trail a svg{
    fill: var(--primary-mid-light);
}

.top_nav .top_nav_wrapper ul li a svg{
    fill: var(--white);
    width: 12px;
    margin-top: 3px;
    transition: 0.3s;
}
.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;
    position: relative;
}
.main_nav .main_nav_wrapper ul li{
    list-style: none;
    position: unset;
}
.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;
    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.active > a,
.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.active a svg{
    transform: rotate(180deg);
}
.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);
}
.main_nav .main_nav_wrapper ul li.active .dropdown_menu{
    transform: scaleY(1);
    opacity: 1;
    z-index: 10;
}

.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;
    left: 0;
}
.dropdown_menu:hover, .dropdown_menu.active{
    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,
.dropdown_menu strong {
    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 -----------------------------------------------  */

.inside > div.hero{
    width: 100vw;
    max-height: 60vh;
    min-height: 60vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: normal;
}

.hero{
    width: 100vw;
    max-height: 60vh;
    min-height: 60vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.hero .rsts-slide {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.hero .container{
    bottom: 0;
    position: relative;
    z-index: 1;
}
.hero .container::after{
    content: '';
    height: 100%;
    width: 50%;
    background-image: url('/files/gwh2023/layout/hero-back.png');
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    left: 0;
    bottom: 0;
}
.hero .container::before{
    content: '';
    height: 100%;
    width: 100vw;
    position: absolute;
    left: -100vw;
    bottom: 0;
    background-color: var(--green);
}
.hero .container .hero_content_wrapper{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.hero .container .hero_content_wrapper * {
    width: 100%;
    font-size: 24px;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
}

.hero .container .hero_content_wrapper > div {
    max-width: 50%;
    padding-right: 100px;
}

.hero .container .hero_content_wrapper .name{
    background-image: url('/files/gwh2023/layout/name-back.png');
    width: 123px;
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 14px;
    color: var(--white);
    margin-top: 15px;
    font-weight: 600;
    padding-bottom: 1px;
}
.hero img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ----------------------------------------------- Note -----------------------------------------------  */

.note{
    background-color: var(--orange);
    color: var(--white);
    padding: 10px 100px 10px;
    text-align: right;
}

/* ----------------------------------------------- Wasser Section -----------------------------------------------  */

.wasser{
    padding: 100px 0;
}
.wasser .wasser_wrapper h1{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    width: 80%;
    margin-bottom: 60px;
}

.wasser .wasser_wrapper{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.wasser .wasser_wrapper h1{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    width: 80%;
    margin-bottom: 20px;
    line-height: 1.2;
}
.wasser .wasser_wrapper p span{
    color: var(--orange);
}


/* ----------------------------------------------- IHR Navigation -----------------------------------------------  */

.ihr{
    padding: 0;
}
.ihr .ihr_tabs_wrapper{
    border: 2px solid var(--green)
}
.ihr .ihr_tabs{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ihr .ihr_tabs button{
    flex: 1;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
    border-bottom: 2px solid var(--green);
    background-color: var(--white);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
    position: relative;
}
.ihr .ihr_tabs button::after{
    content: '';
    height: 100%;
    width: 100%;
    background-image: url('/files/gwh2023/layout/tab_left.png');
    background-position: right;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}
.ihr .ihr_tabs button:nth-child(2):after{
    background-image: url('/files/gwh2023/layout/teb_right.png');
    background-position: left;
}
.ihr .ihr_tabs button img{
    width: 24px;
    min-width: 24px;
}
.ihr .ihr_tabs button img.active{
    display: none;
}
.ihr .ihr_tabs button.active{
    background: var(--gradient);
    color: var(--white);
}
.ihr .ihr_tabs button.active img.active{
    display: block;
}
.ihr .ihr_tabs button.active img.not_active{
    display: none;
}
.ihr .ihr_tab_body{
    padding: 35px;
}
.ihr .ihr_tab_body .section_title h2{
    text-transform: uppercase;
    color: var(--green);
}
.ihr .input_container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px 30px;
    flex-wrap: wrap;
}
.ihr .input_wrapper .input_title{
    font-size: 18px;
    font-weight: 600;
    color: var(--black-light);
    margin-bottom: 5px;
}
.ihr .input_wrapper.small{
    width: 135px;
    min-width: 100px;
}
.ihr .input_wrapper input{
    height: 56px;
    border-radius: 10px;
    border: 2px solid var(--grey);
    padding: 5px 15px;
    background-color: var(--white);
    outline: none;
    width: 100%;
}
.ihr .person_wrapper{
    background-color: var(--white);
    border-radius: 10px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.ihr .person_wrapper::after{
    content: '';
    height: 100%;
    width: calc(100%);
    background: var(--white);
    position: absolute;
    top: 0px;
    left: 0px;
    transition: 0.3s;
    opacity: 1;
    border: 2px solid var(--grey);
    border-radius: 10px;
    z-index: 0;
}
.ihr .person_wrapper label input{
    display: none;
}
.ihr .person_wrapper label .custom_select{
    height: 56px;
    min-width: 92px;
    background-color: transparent;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
}
.ihr .person_wrapper label .custom_select::after{
    content: '';
    height: 56px;
    width: calc(100%);
    background: var(--white);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    transition: 0.3s;
    opacity: 0;
    border-radius: 10px;
}
.ihr .person_wrapper label .custom_select::before{
    content: '';
    height: 52px;
    width: calc(100% - 4px);
    background: var(--white);
    border-radius: 8px;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    background-image: url('/files/gwh2023/layout/person1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 27px;
    transition: 0.3s;
}
.ihr .person_wrapper label:nth-child(1) .custom_select{
    border-radius: 10px 0 0 10px;
}
.ihr .person_wrapper label:nth-child(1) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person1.png');
}
.ihr .person_wrapper label:nth-child(2) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person2.png');
}
.ihr .person_wrapper label:nth-child(3) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person3.png');
}
.ihr .person_wrapper label:nth-child(4) .custom_select{
    border-radius: 0 10px 10px 0;
}
.ihr .person_wrapper label:nth-child(4) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person4.png');
}
.ihr .person_wrapper label:nth-child(1) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person1_active.png');
}
.ihr .person_wrapper label:nth-child(2) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person2_active.png');
}
.ihr .person_wrapper label:nth-child(3) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person3_active.png');
}
.ihr .person_wrapper label:nth-child(4) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person4_active.png');
}
.ihr .person_wrapper label input:checked + .custom_select::before{
    width: calc(100% - 4px);
    left: 2px;
}
.ihr .person_wrapper label input:checked + .custom_select::after{
    background: var(--gradient);
    opacity: 1;
}
.ihr .submit_buttom{
    height: 56px;
    border-radius: 50px;
    background-color: var(--grey);
    color: var(--white);
    padding: 10px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    margin-top: 30px;
    white-space: nowrap;
}

.green{
    padding: 85px 0;
    background-color: var(--green);
}
.green .input_container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.green .input_wrapper .input_title{
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.green .input_wrapper.small{
    width: 135px;
    min-width: 100px;
}
.green .input_wrapper input{
    height: 56px;
    border-radius: 10px;
    border: 2px solid var(--grey);
    padding: 5px 15px;
    background-color: var(--white);
    outline: none;
    width: 100%;
}
.green .person_wrapper{
    background-color: var(--white);
    border-radius: 10px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.green .person_wrapper::after{
    content: '';
    height: 100%;
    width: calc(100%);
    background: var(--white);
    position: absolute;
    top: 0px;
    left: 0px;
    transition: 0.3s;
    opacity: 1;
    border: 2px solid var(--grey);
    border-radius: 10px;
    z-index: 0;
}
.green .person_wrapper label input{
    display: none;
}
.green .person_wrapper label .custom_select{
    height: 56px;
    min-width: 50px;
    background-color: transparent;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
}
.green .person_wrapper label .custom_select::after{
    content: '';
    height: 56px;
    width: calc(100%);
    background: var(--grey);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    transition: 0.3s;
    opacity: 0;
}
.green .person_wrapper label .custom_select::before{
    content: '';
    height: 52px;
    width: calc(100% - 4px);
    background: var(--white);
    border-radius: 10px;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    background-image: url('/files/gwh2023/layout/person1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 27px;
    transition: 0.3s;
}
.green .person_wrapper label:nth-child(1) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person1.png');
}
.green .person_wrapper label:nth-child(2) .custom_select{
    width: 60px;
    min-width: 60px;
}
.green .person_wrapper label:nth-child(2) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person2.png');
}
.green .person_wrapper label:nth-child(3) .custom_select{
    width: 70px;
    min-width: 70px;
}
.green .person_wrapper label:nth-child(3) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person3.png');
}
.green .person_wrapper label:nth-child(4) .custom_select{
    width: 80px;
    min-width: 80px;
}
.green .person_wrapper label:nth-child(4) .custom_select:before{
    background-image: url('/files/gwh2023/layout/person4.png');
}
.green .person_wrapper label:nth-child(1) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person1_active.png');
}
.green .person_wrapper label:nth-child(2) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person2_active.png');
}
.green .person_wrapper label:nth-child(3) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person3_active.png');
}
.green .person_wrapper label:nth-child(4) input:checked + .custom_select::before{
    background-image: url('/files/gwh2023/layout/person4_active.png');
}
.green .person_wrapper label input:checked + .custom_select::before{
    width: calc(100% - 4px);
    left: 2px;
}
.green .person_wrapper label input:checked + .custom_select::after{
    background: var(--gradient);
    opacity: 1;
}
.green .submit_buttom{
    height: 50px;
    border-radius: 50px;
    background-color: var(--grey-light);
    padding: 10px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    margin-top: 30px;
    white-space: nowrap;
}



/* ----------------------------------------------- Worauf Section -----------------------------------------------  */

.worauf{
    background: var(--gradient);
    padding: 100px 0;
}
.worauf .section_title h2{
    text-transform: uppercase;
}
.wo_img_box{
    position: relative;
    height: 610px;
}
.wo_img_box:hover::after{
    height: 0;
}
.wo_img_box img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 1;
}
.wo_img_box h6{
    z-index: 3;
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}
.wo_img_box::after{
    content: '';
    position: absolute;
    background: linear-gradient(0deg, var(--primary), transparent);
    height: 100%;
    width: 100%;
    bottom: 0;
    z-index: 2;
    transition: 0.3s;
}
.worauf .wo_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}
.worauf .wo_wrapper .left, .worauf .wo_wrapper .right{
    width: 50%;
}
.worauf .wo_wrapper .right .right_row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.worauf .wo_wrapper .right .wo_img_box{
    height: 305px;
    width: 50%;
}

/* ----------------------------------------------- Aktuelles Section -----------------------------------------------  */

.ektulles{
    padding: 100px 0;
    overflow: hidden;
}
.ektulles_card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--grey-light);
}
.ektulles_card .card_img{
    width: 100%;
    max-height: 260px;
}
.ektulles_card 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: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: var(--white);
    background-color: transparent;
    background-image: url('/files/gwh2023/layout/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: -35px;
    left: 50%;
    transform: translateX(-50%);
}
.ektulles_card h5 {
    padding: 0 20px;
}

.ektulles_card h5,
.ektulles_card h5 *{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    color: var(--primary);
    flex: 1;
}

.ektulles_card h5 a:hover {
    color: var(--primary-dark)
}

.ektulles_card .date_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 49px;
    margin-top: auto;
    padding: 20px;
}
.ektulles_card .date_wrapper .date{
    color: var(--black-mid);
    font-weight: 400;
}
.ektulles_card .date_wrapper .name{
    font-weight: 500;
    color: var(--primary-dark);
}

/* ----------------------------------------------- Wichtige Section -----------------------------------------------  */

.wichtige{
    background: var(--orange);
    padding: 100px 0;
}
.wichtige .section_title h2{
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 60px;
}
.wich_box{
    background-color: var(--white);
    padding: 47px 28px 30px;
    position: relative;
}
.wich_box .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('/files/gwh2023/layout/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: 30px;
}
.wich_box .date{
    font-size: 20px;
    line-height: 1;
    margin-bottom: 30px;

}
.wich_box .title{
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--orange);
}
.wich_box .content{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 27px;
}
.wich_box .name{
    font-weight: 500;
    color: var(--primary-dark);
    text-align: right;
}


/* ----------------------------------------------- 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{
    height: 88px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent   ;
}
.download .download_card.center{
    justify-content: center;
}
.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('/files/gwh2023/layout/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_wrapper{
    height: 100%;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 40px 0px 30px;
    background-color: transparent;
    background-image: url('/files/gwh2023/layout/download-text-back.png');
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    width: 476px;
}
.download .download_card .text_wrapper .text{
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines before truncation */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.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('/files/gwh2023/layout/down-btn-back.png');
}
.download .download_card.mini button img{
    width: 30px;
    min-width: 30px;
}
.download .download_card.mini .text_wrapper{
    padding: 10px 35px 10px 20px;
    min-width: 292px;
    max-width: 292px;
    font-weight: 600;
    width: 292px;
    font-size: 24px;
    text-transform: uppercase;
}

/* ----------------------------------------------- keyfact Section -----------------------------------------------  */

.keyfact {
    overflow: hidden;
    margin-top: -100px;
    margin-bottom: -100px;
}
.keyfact .container{
    background-color: var(--white);
    padding: 0;
}
.keyfact .keyfact_image{
    max-height: 488px;
    min-height: 300px;
    height: 100%;
    width: 100%;
    position: relative;
}
.keyfact .keyfact_image::after{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('/files/gwh2023/layout/right-space.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 1;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.keyfact .keyfact_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.keyfact .keyfact_content{
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: clamp(10px, 5%, 50px) 0 clamp(10px, 5%, 50px) clamp(20px, 10%, 100px);
    height: 100%;
}
.keyfact .keyfact_content h4{
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.keyfact .keyfact_content p{
    color: var(--black-mid);
    font-weight: 400;
    font-size: 16px;
}

/* ----------------------------------------------- Haufig Section -----------------------------------------------  */

.haufig{
    padding: 100px 0;
    overflow: hidden;
}
.haufig .carousel_wrapper{
    position: relative;
    margin-top: 50px;
}
.haufig .carousel_wrapper .haufig_card{
    padding: 70px 30px 40px;
    background-color: var(--grey-light);
}
.haufig .carousel_wrapper .haufig_card h5{
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--primary);
    text-transform: uppercase;
}
.haufig .carousel_wrapper .haufig_card p{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-dark);
    text-align: right;
}
.haufig .carousel_wrapper .custom_nav{
    width: 100%;
}
.haufig .carousel_wrapper .custom_nav button{
    background-color: transparent;
    padding: 0;
    border: 0;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.haufig .carousel_wrapper .custom_nav button#prevBtn{
    left: -25px;
}
.haufig .carousel_wrapper .custom_nav button#nextBtn{
    right: -25px;
}


/* ----------------------------------------------- Footer Section -----------------------------------------------  */

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;
}

footer .footer_links a:hover,
footer .footer_links a.active {
    color: var(--primary-dark);
}

@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;
    }

    .haufig .carousel_wrapper .haufig_card{
        padding: 30px 30px 20px;
    }
    .haufig .carousel_wrapper .haufig_card h5 {
        margin-bottom: 20px;
        font-size: 22px;
    }
}

@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;
    }
    .section_title h2{
        font-size: 35px;
    }

    .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{
        height: 65px;
    }
    .download .download_card button{
        width: 90px;
        min-width: 90px;
    }
    .download .download_card button img{
        width: 30px;
    }
    .download .download_card .text_wrapper{
        padding: 0px 25px 0 10px;
        white-space: normal;
        width: 100%;
        min-width: auto;
        max-width: 270px;
        text-overflow: unset;
        display: flex;
        line-height: 1.2;
        font-size: 16px;
    }
    .download .download_card.mini .text_wrapper{
        width: 200px;
        min-width: fit-content;
    }


    .ektulles{
        padding: 70px 0;
    }
    .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;
    }

    .haufig{
        padding: 70px 0;
    }
    .haufig .carousel_wrapper .haufig_card{
        padding: 30px 30px 20px;
    }
    .haufig .carousel_wrapper .haufig_card h5 {
        margin-bottom: 20px;
        font-size: 22px;
    }
}

@media screen and (max-width: 768) {
    .ektulles_card .card_img {
        height: 200px;
    }

    .haufig .carousel_wrapper{
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .section_title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .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);
    }
    .main_nav .main_nav_wrapper ul li.active .dropdown_menu{
        transform: translateX(0%) scaleY(1);
        height: 100%;
        opacity: 1;
        padding: 15px 10px;
    }
    .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;
    }
    .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;
    }


    .download{
        padding: 50px 0;
    }
    .download h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .download h3{
        margin: 40px 0 30px;
    }
    .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.mini .text_wrapper .text{
        font-size: 14px;
    }


    .ektulles {
        padding: 30px 0;
    }
    .ektulles_card{
        margin-bottom: 20px;
    }
    .ektulles_card .card_img {
        height: 250px;
    }


    .keyfact .keyfact_image{
        max-height: 300px;
        min-height: 200px;
    }
    .keyfact .keyfact_image::after{
        display: none;
    }
    .keyfact .keyfact_content h4{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .keyfact .keyfact_content p{
        color: var(--black-mid);
        font-size: 14px;
    }

    .haufig {
        padding: 40px 0 20px;
    }
    .haufig .carousel_wrapper{
        margin-top: 20px;
    }
    .haufig .carousel_wrapper .haufig_card{
        padding: 30px 30px 20px;
    }
    .haufig .carousel_wrapper .haufig_card h5 {
        margin-bottom: 20px;
        font-size: 18px;
    }
    .haufig .carousel_wrapper .custom_nav button img{
        width: 30px;
    }
    .haufig .carousel_wrapper .custom_nav button#nextBtn{
        right: -10px;
    }
    .haufig .carousel_wrapper .custom_nav button#prevBtn{
        left: -10px;
    }
}

@media screen and (max-width: 480px) {
    body{
        font-size: 12px;
    }
    .px_30{
        padding: 0 10px;
    }
    .section_title h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .wasser .wasser_wrapper h1{
        font-size: 24px;
        margin-bottom: 30px;
    }

    .note {
        font-size: 10px;
        padding: 5px 10px;
    }

    .download h3{
        font-size: 22px;
        margin: 30px 0 15px;
    }

    .ektulles_card .card_img {
        height: 200px;
    }
    .ektulles_card h5 {
        font-size: 16px;
        font-weight: 600;
    }

    .keyfact .keyfact_content{
        background-color: var(--primary-light);
    }
    .keyfact .keyfact_content h4{
        font-size: 22px;
    }

    footer .footer_links a{
        font-size: 14px;
    }

}