:root {
    --standard-mobile-icon-color: #222222;
    --standard-mobile-icon-size: 25px;
    --standard-navigation-background: #5dbf37;
    --standard-heading-font: "Open sans", 'sans-serif';
    --standard-text-font: "Inter", 'sans-serif';
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/**
 * HEADER
 */
header {
    display: block;
    width: 100%;
    background-color: #ffffff;
}
.header_logo {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.show_hide {
    display: block;
}
.header_container {
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background-color: #193E9F;
}
.inner_header {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 20px 20px 20px;
}
nav ul li input[type="checkbox"] {
    display: none;
}
.header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#logo {
    width: 30px;
    height: 30px;
}
#logo-text {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Inter', 'sans-serif';
    font-weight: bold;
    text-decoration: none;
    /* text-transform: uppercase; */
    /* justify-content: center; */
    display: flex;
    margin: 0 0 0 10px;
}
/**
 * SEARCH
 */

.search_section {
    margin-top: 10px;
}
.search_items {
    width: 55%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: white;
}
.search_box {
    height: 100%;
    border: none;
    outline: none;
    color: #212121;
    font-family: var(--standard-text-font);
    font-size: 18px;
    padding-left: 15px;
    caret-color: #445fc1;
    width: 100%;
}
.search_button {
    fill: #fff;
    height: 50px;
    padding: 10px 13px;
}
.search_button:hover {
    opacity: 0.85;
}
#inner_search_mobile {
    width: 100%;
    height: 100px;
    background-color: #e3e3e3;
    justify-content: center;
    align-items: center;
    display: none;
}
/**
 * HAUPTNAVIGATION
 */
.hauptnavigation {
    text-align: center;
    background-color: #ffffff;
    margin-top: 20px;
}
.hauptnavigation ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
}
.hauptnavigation ul li {
    color: #4e4e4e;
    cursor: pointer;
}
.navigation_text, .inner-navigation-text {
    color: inherit;
    display: inline-block;
    padding: 30px 30px;
    text-decoration: none;
    font-size: 17px;
    font-family: var(--standard-text-font);
    cursor: pointer;
}
.hauptnavigation ul li:hover  {
    background-color: var(--standard-navigation-background);
    color: white;
    border-radius: 3px;
}
/**
 * RESPONSIVE - DESIGN
 */

@media screen and (max-width: 1225px) {
    .header_top {
        display: inherit;
    }
    .search_items {
        width: 100%;
    }
}
@media screen and (max-width: 615px) {
    #logo-text {
        font-size: 7.25vw;
    }
}
@media screen and (max-width: 475px) {

}