header {
    z-index: 100;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: var(--header-height);
    padding: 0;
    padding-left: var(--gutter);
    padding-right: calc(var(--gutter) - 10px);
    background-color: #fff;
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    &::after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background-color: #fff;
    }

    .container {
        display: flex;
        height: 100%;
        justify-content: space-between;
        align-items: center;
        >a.branding {
            margin-bottom: 0px;
            display: inline-block;
            height: 40px;
            width: 40px;
            background-image: url('data:image/svg+xml,<svg width="15.677mm" height="15.677mm" version="1.1" viewBox="0 0 15.677 15.677" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-162.45 -74.083)" stroke-width=".26458"><rect x="162.62" y="74.207" width="15.431" height="15.431" fill="%23fff" data-name="Rechteck 625"/><path d="m163.24 80.886v7.0173l1.1602-0.0069s3.8709-6.4921 12.953-6.1338v-0.87654z" fill="%23001a33" data-name="Pfad 1183"/><path d="m163.24 76.439h4.3548v1.4187l-0.47281 0.52335 0.51779 0.46725v1.3494h-4.3998z" fill="%238bd6e6" data-name="Pfad 1184"/><rect x="164.84" y="77.349" width="1.1933" height=".567" fill="%23fff" data-name="Rechteck 626"/><rect x="164.84" y="78.797" width="1.1935" height=".56647" fill="%23fff" data-name="Rechteck 627"/><path d="m168 80.199v-3.7595h4.4995v2.417h-2.7977v1.3425z" fill="%238bd6e6" data-name="Pfad 1185"/><rect x="169.67" y="77.349" width="1.1933" height=".567" fill="%23fff" data-name="Rechteck 628"/><path d="m172.87 76.439h1.5512l1.3652 1.8785v-1.8785h1.561v3.7595h-1.614l-1.2293-1.7113v1.7113h-1.6362z" fill="%238bd6e6" data-name="Pfad 1186"/><path d="m178.13 74.083h-15.677v15.677h15.677zm-0.24289 0.24289v15.191h-15.192v-15.191h15.191z" fill="%23001a33" data-name="Pfad 1187"/></g></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            text-indent: -99999px;
            background-position: center center;
        }

        nav {
            visibility: hidden;
            opacity: 0;
            z-index: -1;
            position: absolute;
            top: 0;
            right: 0px;
            left: 0px;
            display: grid;
            justify-content: center;
            align-items: center;
            flex-direction: column-reverse;
            transition: top 0.3s ease, opacity 0.2s ease;
            gap: var(--spacing-08);
            background-color: #fff;
            align-self: flex-end;

            ul.quicklinks, ul.mainnav {
                display: flex;
                flex-direction: column;
                z-index: 1;
                >li {
                    position: relative;
                    .trigger {
                        cursor: default;
                    }

                    >ul {
                        list-style: none;
                        left: 0px;
                        right: 0px;
                        max-height: 0;
                        overflow: hidden;
                        padding: 0 var(--gutter);
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: var(--spacing-04);
                        transition: ease max-height 0.3s;
                        opacity: 0;
                        visibility: hidden;
                        z-index: -1;
                        &::after {
                            content: '';
                            height: 1px;
                            position: absolute;
                            left: var(--gutter);
                            right: var(--gutter);
                            bottom: 0;
                            background-color: var(--dark-blue);
                        }

                        li {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            a {
                                height: 110px;
                                text-transform: uppercase;
                                color: var(--text-color);
                                transition: ease all 0.3s;
                                display: grid;
                                grid-template-rows: 1fr 1fr;
                                justify-content: flex-end;
                                gap: var(--spacing-03);
                                text-align: center;
                                hyphens: auto;
                                hyphenate-limit-chars: auto 5;
                                hyphenate-limit-lines: 4;
                                svg {
                                    max-width: 55px;
                                    width: 100%;
                                    max-height: 55px;
                                    height: 100%;
                                    opacity: 1;
                                    justify-self: center;
                                    path {
                                        transition: ease 0.3s all;
                                    }
                                }
                                span {
                                    font-size: clamp(0.75rem, 0.6485rem + 0.4329vw, 1.0625rem);
                                }
                            }

                            a:hover {
                                color: var(--main-color, #8bd6e6);
                                svg {
                                    path.lighten {
                                        fill: var(--main-color, #8bd6e6);
                                    }
                                }
                            }
                        }
                    }
                }

                >li>.trigger.open+ul {
                    position: relative;
                    visibility: visible;
                    opacity: 1;
                    z-index: 100;
                    max-height: 1000px;
                    width: 100%;
                }
            }

            ul.mainnav {
                grid-column: 1;
                >li {
                    position: relative;
                    max-width: 100%;
                    >.trigger, >a, >a:visited {
                        display: flex;
                        height: 47px;
                        justify-content: center;
                        align-items: center;
                        font-size: var(--font-size-mainnav);
                        text-transform: uppercase;
                        padding: 0 40px;
                        color: var(--text-color);
                    }
                }

                >li:last-child {
                    &::after {
                        display: none;
                    }
                }
            }

            ul.quicklinks {
                flex-direction: row;
                grid-row: 2;
                justify-content: center;
                padding: 0 var(--gutter);
                width: 100%;
                li {
                    width: 100%;
                    max-width: 60px;
                    height: 48px;
                    position: relative;
                    &::after {
                        content: '';
                        height: 100%;
                        width: 1px;
                        background-color: var(--line-gray);
                        position: absolute;
                        right: 0px;
                        bottom: 0px;
                    }

                    &:last-child::after {
                        display: none;
                    }

                    a {
                        display: flex;
                        height: 48px;
                        width: auto;
                        justify-content: center;
                        align-items: center;
                        svg {
                            height: auto;
                            width: auto;
                        }
                    }
                }
            }
        }
    }
}

@media (min-width: 1024px) {
    header {
        z-index: 100;
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        height: var(--header-height);
        background-color: #fff;
        padding: 0 var(--gutter);
        .container {
            position: relative;
            align-items: flex-end;
            >a.branding {
                display: block;
                height: 60px;
                width: 500px;
                width: 60px;
                margin-bottom: 23px;
                /*
                background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="499.411" height="59.253" viewBox="0 0 499.411 59.253"><defs><clipPath id="clip-path"><rect id="Rechteck_629" data-name="Rechteck 629" width="499.411" height="59.253" fill="none"/></clipPath></defs><g id="Gruppe_617" data-name="Gruppe 617" transform="translate(-255 -65.747)"><g id="Gruppe_616" data-name="Gruppe 616" transform="translate(255 65.747)"><g id="Gruppe_616-2" data-name="Gruppe 616" clip-path="url(%23clip-path)"><path id="Pfad_1160" data-name="Pfad 1160" d="M440.292,134.57h2.2a2.879,2.879,0,0,0,3.2-3.2,3.794,3.794,0,0,0-.732-2.288,3.137,3.137,0,0,0-2.561-.915h-2.013v6.4h-.091Zm-.091-9.24h2.013a2.714,2.714,0,0,0,2.2-.915,3.191,3.191,0,0,0,.732-2.2,2.756,2.756,0,0,0-.823-2.1,3.336,3.336,0,0,0-2.2-.732H440.2v5.947Zm-3.568-8.69h6.037a7.393,7.393,0,0,1,4.757,1.281,4.735,4.735,0,0,1,1.463,3.934,4.835,4.835,0,0,1-.365,2.1,4.971,4.971,0,0,1-.823,1.373,4.3,4.3,0,0,1-1.1.823,9.625,9.625,0,0,1-1.1.458v.092a11.325,11.325,0,0,1,1.281.458,3.026,3.026,0,0,1,1.281.915,4.555,4.555,0,0,1,1.006,1.463,5.53,5.53,0,0,1,.365,2.2,7.491,7.491,0,0,1-.458,2.561,5.655,5.655,0,0,1-1.373,1.83,7.113,7.113,0,0,1-2.013,1.1,7.876,7.876,0,0,1-2.561.365h-6.312V116.64h-.089Z" transform="translate(-364.765 -97.442)"/><path id="Pfad_1161" data-name="Pfad 1161" d="M534.978,129.079l-2.653-9.79-2.836,9.79Zm.823,2.928h-7.135l-1.463,5.032H523.36l6.952-20.949h4.209l6.679,20.949h-3.934l-1.463-5.032Z" transform="translate(-437.22 -96.983)"/><path id="Pfad_1162" data-name="Pfad 1162" d="M646.7,116.64v13.539a5.667,5.667,0,0,0,.823,3.568,3.533,3.533,0,0,0,4.941,0,5.657,5.657,0,0,0,.823-3.568V116.64h3.841v13.539a10.464,10.464,0,0,1-.548,3.568,6.317,6.317,0,0,1-1.555,2.378,5.3,5.3,0,0,1-2.288,1.373,8.455,8.455,0,0,1-5.487,0,5.9,5.9,0,0,1-2.288-1.373,6.35,6.35,0,0,1-1.555-2.378,10.1,10.1,0,0,1-.548-3.568V116.64H646.7" transform="translate(-537.051 -97.442)"/><path id="Pfad_1163" data-name="Pfad 1163" d="M757.014,126.428a3.309,3.309,0,0,0,2.561-.823,4.4,4.4,0,0,0,0-5.122,3.444,3.444,0,0,0-2.561-.823h-1.463v6.862h1.463v-.094ZM751.8,116.64h5.947a6.48,6.48,0,0,1,4.849,1.648,7.437,7.437,0,0,1,0,9.332,6.655,6.655,0,0,1-4.849,1.738h-2.1V137.5H751.8V116.64Z" transform="translate(-628.061 -97.442)"/><path id="Pfad_1164" data-name="Pfad 1164" d="M844.06,116.64h3.751v17.838h6.862V137.5H844.06Z" transform="translate(-705.136 -97.442)"/><path id="Pfad_1165" data-name="Pfad 1165" d="M922.938,129.079l-2.653-9.79h-.092l-2.836,9.79Zm.823,2.928h-7.137l-1.463,5.032H911.32l6.952-20.949h4.209l6.677,20.949h-3.934Z" transform="translate(-761.325 -96.983)"/><path id="Pfad_1166" data-name="Pfad 1166" d="M1031.93,116.64h4.574l6.862,16.375h.09V116.64h3.476V137.5h-4.574l-6.862-16.283h-.09V137.5h-3.476Z" transform="translate(-862.084 -97.442)"/><path id="Pfad_1167" data-name="Pfad 1167" d="M1150.272,116.64v13.539a5.667,5.667,0,0,0,.823,3.568,3.533,3.533,0,0,0,4.941,0,5.656,5.656,0,0,0,.823-3.568V116.64h3.841v13.539a10.462,10.462,0,0,1-.548,3.568,6.317,6.317,0,0,1-1.555,2.378,5.3,5.3,0,0,1-2.288,1.373,8.455,8.455,0,0,1-5.487,0,5.9,5.9,0,0,1-2.288-1.373,6.352,6.352,0,0,1-1.555-2.378,10.1,10.1,0,0,1-.548-3.568V116.64h3.841" transform="translate(-957.739 -97.442)"/><path id="Pfad_1168" data-name="Pfad 1168" d="M1256.48,116.64h4.482l6.952,16.375V116.64h3.478V137.5h-4.576l-6.86-16.283h-.092V137.5h-3.384Z" transform="translate(-1049.675 -97.442)"/><path id="Pfad_1169" data-name="Pfad 1169" d="M1376.146,123.925h6.77V134.9a8.717,8.717,0,0,1-2.2.732,17.631,17.631,0,0,1-3.476.365,11.067,11.067,0,0,1-4.391-.823,8.184,8.184,0,0,1-3.2-2.288,8.806,8.806,0,0,1-1.921-3.386,14.751,14.751,0,0,1,0-8.6,10.225,10.225,0,0,1,1.921-3.386,9.258,9.258,0,0,1,3.2-2.288,11.038,11.038,0,0,1,4.391-.823,15.745,15.745,0,0,1,3.111.275,8.391,8.391,0,0,1,1.921.55l-.183,3.476a8.636,8.636,0,0,0-2.105-.915,8.444,8.444,0,0,0-2.653-.365,4.967,4.967,0,0,0-2.653.64,4.761,4.761,0,0,0-1.921,1.648,6.863,6.863,0,0,0-1.188,2.471,10.493,10.493,0,0,0-.365,3.019,11.449,11.449,0,0,0,.365,3.2,7.754,7.754,0,0,0,1.188,2.471,5.353,5.353,0,0,0,1.921,1.555,5.855,5.855,0,0,0,2.561.548,5.1,5.1,0,0,0,2.2-.367v-5.672h-3.2v-3.019h-.09Z" transform="translate(-1142.08 -95.579)"/><path id="Pfad_1170" data-name="Pfad 1170" d="M1532.16,116.64h4.574l6.862,16.375h.09V116.64h3.476V137.5h-4.574l-6.86-16.283h-.092V137.5h-3.476Z" transform="translate(-1279.981 -97.442)"/><path id="Pfad_1171" data-name="Pfad 1171" d="M1646.7,125.206a14.178,14.178,0,0,0,.365,3.66,8.637,8.637,0,0,0,.915,2.378,3.3,3.3,0,0,0,1.373,1.373,3.53,3.53,0,0,0,3.476,0,3.306,3.306,0,0,0,1.373-1.373,7.186,7.186,0,0,0,.915-2.378,18.518,18.518,0,0,0,0-7.319,8.629,8.629,0,0,0-.915-2.378,3.3,3.3,0,0,0-1.373-1.373,3.53,3.53,0,0,0-3.476,0,3.3,3.3,0,0,0-1.373,1.373,7.186,7.186,0,0,0-.915,2.378,19.725,19.725,0,0,0-.365,3.659m-3.934,0a15.2,15.2,0,0,1,.64-4.849,10.841,10.841,0,0,1,1.829-3.386,6.836,6.836,0,0,1,2.653-1.921,7.877,7.877,0,0,1,6.221,0,7.923,7.923,0,0,1,2.653,1.921,10.8,10.8,0,0,1,1.83,3.386,15.562,15.562,0,0,1,.64,4.849,18.345,18.345,0,0,1-.64,4.849,10.775,10.775,0,0,1-1.83,3.384,6.822,6.822,0,0,1-2.653,1.921,7.877,7.877,0,0,1-6.221,0,7.926,7.926,0,0,1-2.653-1.921,9.84,9.84,0,0,1-1.829-3.384,18.356,18.356,0,0,1-.64-4.849" transform="translate(-1372.385 -95.579)"/><path id="Pfad_1172" data-name="Pfad 1172" d="M1767.659,125.7a3.668,3.668,0,0,0,2.47-.823,2.855,2.855,0,0,0,.915-2.378c0-1.19-.275-2.013-.915-2.378a4.926,4.926,0,0,0-2.47-.64H1766.1V125.7h1.556Zm-5.4-9.056h6.495a7.043,7.043,0,0,1,2.47.365,4.287,4.287,0,0,1,1.921,1.006,4.126,4.126,0,0,1,1.28,1.738,6.978,6.978,0,0,1,.458,2.471,5.188,5.188,0,0,1-1.1,3.386,4.841,4.841,0,0,1-2.928,1.555v.092a2.366,2.366,0,0,1,.64.183,5.192,5.192,0,0,1,.64.365,2.565,2.565,0,0,1,.55.732,7.476,7.476,0,0,1,.548,1.188l2.744,7.96h-4.026l-2.013-6.77a3.569,3.569,0,0,0-1.1-1.738,3.5,3.5,0,0,0-1.738-.458h-.823v8.965h-3.842V116.64h-.181Z" transform="translate(-1472.209 -97.442)"/><path id="Pfad_1173" data-name="Pfad 1173" d="M1865.035,134.57h1.281a6.123,6.123,0,0,0,2.745-.548,4.047,4.047,0,0,0,1.921-1.555,5.2,5.2,0,0,0,1.1-2.378,10.74,10.74,0,0,0,.365-3.111,11.211,11.211,0,0,0-.365-3.111,8.166,8.166,0,0,0-1.1-2.378,6.275,6.275,0,0,0-1.921-1.555,6.691,6.691,0,0,0-2.745-.548h-1.281V134.57Zm-3.843-17.93h5.4c3.293,0,5.764.915,7.41,2.653s2.561,4.391,2.561,7.867a13.7,13.7,0,0,1-.732,4.574,8.871,8.871,0,0,1-2.1,3.293,8.447,8.447,0,0,1-3.111,1.921,11.262,11.262,0,0,1-4.026.64h-5.4V116.64Z" transform="translate(-1554.856 -97.442)"/><rect id="Rechteck_624" data-name="Rechteck 624" width="11.049" height="3.019" transform="translate(329.845 30.084)"/><path id="Pfad_1174" data-name="Pfad 1174" d="M2125.544,125.206a14.178,14.178,0,0,0,.365,3.66,6.432,6.432,0,0,0,.915,2.378,3.3,3.3,0,0,0,1.373,1.373,3.53,3.53,0,0,0,3.476,0,3.306,3.306,0,0,0,1.373-1.373,7.175,7.175,0,0,0,.915-2.378,18.506,18.506,0,0,0,0-7.319,6.449,6.449,0,0,0-.915-2.378,3.3,3.3,0,0,0-1.373-1.373,3.53,3.53,0,0,0-3.476,0,3.308,3.308,0,0,0-1.373,1.373,7.191,7.191,0,0,0-.915,2.378,14.092,14.092,0,0,0-.365,3.659m-3.934,0a15.194,15.194,0,0,1,.64-4.849,10.8,10.8,0,0,1,1.83-3.386,6.824,6.824,0,0,1,2.653-1.921,7.877,7.877,0,0,1,6.221,0,7.905,7.905,0,0,1,2.653,1.921,10.809,10.809,0,0,1,1.831,3.386,15.439,15.439,0,0,1,.732,4.849,15.027,15.027,0,0,1-.732,4.849,10.781,10.781,0,0,1-1.831,3.384,6.821,6.821,0,0,1-2.653,1.921,7.877,7.877,0,0,1-6.221,0,7.923,7.923,0,0,1-2.653-1.921,9.9,9.9,0,0,1-1.83-3.384,15.194,15.194,0,0,1-.64-4.849" transform="translate(-1772.413 -95.579)"/><path id="Pfad_1175" data-name="Pfad 1175" d="M2241.11,116.64h3.751v17.838h6.862V137.5H2241.11Z" transform="translate(-1872.245 -97.442)"/><path id="Pfad_1176" data-name="Pfad 1176" d="M2323.315,134.57h1.28a6.111,6.111,0,0,0,2.744-.548,4.047,4.047,0,0,0,1.921-1.555,5.2,5.2,0,0,0,1.1-2.378,10.741,10.741,0,0,0,.365-3.111,11.225,11.225,0,0,0-.365-3.111,8.173,8.173,0,0,0-1.1-2.378,6.261,6.261,0,0,0-1.921-1.555,6.69,6.69,0,0,0-2.744-.548h-1.28V134.57Zm-3.843-17.93h5.4c3.293,0,5.764.915,7.41,2.653s2.561,4.391,2.561,7.867a13.7,13.7,0,0,1-.732,4.574,8.85,8.85,0,0,1-2.1,3.293,8.449,8.449,0,0,1-3.111,1.921,11.269,11.269,0,0,1-4.026.64h-5.4V116.64Z" transform="translate(-1937.707 -97.442)"/><path id="Pfad_1177" data-name="Pfad 1177" d="M2432.87,116.64h10.886v3.019h-7.135v5.58h6.77v3.02h-6.77v6.22h7.41V137.5H2432.87Z" transform="translate(-2032.443 -97.442)"/><path id="Pfad_1178" data-name="Pfad 1178" d="M2521.24,116.64h4.483l6.952,16.375h.091V116.64h3.385V137.5h-4.574l-6.862-16.283V137.5h-3.476Z" transform="translate(-2106.268 -97.442)"/><path id="Pfad_1179" data-name="Pfad 1179" d="M2640.494,134.57h2.1a2.879,2.879,0,0,0,3.2-3.2,3.8,3.8,0,0,0-.732-2.288,3.136,3.136,0,0,0-2.561-.915h-2.013v6.4Zm0-9.24h1.921a2.711,2.711,0,0,0,2.2-.915,3.2,3.2,0,0,0,.732-2.2,2.756,2.756,0,0,0-.823-2.1,3.34,3.34,0,0,0-2.2-.732h-1.83Zm-3.66-8.69h6.037a7.394,7.394,0,0,1,4.757,1.281,4.735,4.735,0,0,1,1.463,3.934,4.832,4.832,0,0,1-.365,2.1,9,9,0,0,1-.823,1.373,4.309,4.309,0,0,1-1.1.823,9.635,9.635,0,0,1-1.1.458v.092a11.321,11.321,0,0,1,1.281.458,3.025,3.025,0,0,1,1.281.915,4.558,4.558,0,0,1,1.006,1.463,5.529,5.529,0,0,1,.365,2.2,7.491,7.491,0,0,1-.458,2.561,4.616,4.616,0,0,1-1.373,1.83,7.113,7.113,0,0,1-2.013,1.1,7.874,7.874,0,0,1-2.561.365h-6.4V116.64Z" transform="translate(-2202.833 -97.442)"/><path id="Pfad_1180" data-name="Pfad 1180" d="M2737.97,116.64v13.539a5.666,5.666,0,0,0,.823,3.568,3.533,3.533,0,0,0,4.941,0,5.669,5.669,0,0,0,.823-3.568V116.64h3.842v13.539a10.456,10.456,0,0,1-.548,3.568,6.313,6.313,0,0,1-1.555,2.378,5.307,5.307,0,0,1-2.286,1.373,8.46,8.46,0,0,1-5.489,0,5.9,5.9,0,0,1-2.286-1.373,6.333,6.333,0,0,1-1.555-2.378,10.1,10.1,0,0,1-.548-3.568V116.64h3.84Z" transform="translate(-2284.118 -97.442)"/><path id="Pfad_1181" data-name="Pfad 1181" d="M2848.44,125.7a3.67,3.67,0,0,0,2.47-.823,2.855,2.855,0,0,0,.915-2.378c0-1.19-.275-2.013-.915-2.378a4.925,4.925,0,0,0-2.47-.64h-1.555V125.7h1.555Zm-5.4-9.056h6.495a7.921,7.921,0,0,1,2.561.365,4.288,4.288,0,0,1,1.921,1.006,4.114,4.114,0,0,1,1.28,1.738,6.978,6.978,0,0,1,.458,2.471,5.188,5.188,0,0,1-1.1,3.386,4.841,4.841,0,0,1-2.928,1.555v.092a2.365,2.365,0,0,1,.64.183,5.2,5.2,0,0,1,.64.365,2.533,2.533,0,0,1,.548.732,7.5,7.5,0,0,1,.548,1.188l2.745,7.96h-4.026l-2.013-6.77a3.57,3.57,0,0,0-1.1-1.738,3.5,3.5,0,0,0-1.738-.458h-.823v8.965h-3.841V116.64h-.271Z" transform="translate(-2375.102 -97.442)"/><path id="Pfad_1182" data-name="Pfad 1182" d="M2947.166,123.925h6.77V134.9a8.712,8.712,0,0,1-2.2.732,17.639,17.639,0,0,1-3.477.365,11.071,11.071,0,0,1-4.391-.823,8.183,8.183,0,0,1-3.2-2.288,8.822,8.822,0,0,1-1.921-3.386,14.756,14.756,0,0,1,0-8.6,10.22,10.22,0,0,1,1.921-3.386,9.257,9.257,0,0,1,3.2-2.288,11.037,11.037,0,0,1,4.391-.823,15.746,15.746,0,0,1,3.111.275,8.394,8.394,0,0,1,1.921.55l-.183,3.476a8.647,8.647,0,0,0-2.1-.915,8.442,8.442,0,0,0-2.653-.365,4.966,4.966,0,0,0-2.653.64,4.741,4.741,0,0,0-1.921,1.648,6.924,6.924,0,0,0-1.19,2.471,10.493,10.493,0,0,0-.365,3.019,11.387,11.387,0,0,0,.365,3.2,7.726,7.726,0,0,0,1.19,2.471,5.355,5.355,0,0,0,1.921,1.555,5.844,5.844,0,0,0,2.561.548,5.105,5.105,0,0,0,2.2-.367v-5.672h-3.2v-3.019h-.092Z" transform="translate(-2454.525 -95.579)"/><rect id="Rechteck_625" data-name="Rechteck 625" width="58.321" height="58.321" transform="translate(0.63 0.466)" fill="%23fff"/><path id="Pfad_1183" data-name="Pfad 1183" d="M17.96,156.22v26.522l4.385-.026s14.63-24.537,48.957-23.183V156.22Z" transform="translate(-15.004 -130.508)" fill="%23001a33"/><path id="Pfad_1184" data-name="Pfad 1184" d="M17.96,54.1H34.419v5.362l-1.787,1.978,1.957,1.766v5.1H17.96Z" transform="translate(-15.004 -45.196)" fill="%238bd6e6"/><rect id="Rechteck_626" data-name="Rechteck 626" width="4.51" height="2.143" transform="translate(9.015 12.343)" fill="%23fff"/><rect id="Rechteck_627" data-name="Rechteck 627" width="4.511" height="2.141" transform="translate(9.015 17.814)" fill="%23fff"/><path id="Pfad_1185" data-name="Pfad 1185" d="M127.4,68.309V54.1h17.006v9.135H133.832v5.074Z" transform="translate(-106.431 -45.196)" fill="%238bd6e6"/><rect id="Rechteck_628" data-name="Rechteck 628" width="4.51" height="2.143" transform="translate(27.287 12.343)" fill="%23fff"/><path id="Pfad_1186" data-name="Pfad 1186" d="M239.217,54.1h5.863l5.16,7.1V54.1h5.9V68.309H250.04l-4.646-6.468v6.468H239.21Z" transform="translate(-199.838 -45.196)" fill="%238bd6e6"/><path id="Pfad_1187" data-name="Pfad 1187" d="M59.253,0H0V59.253H59.253Zm-.918.918V58.334H.918V.918H58.334Z" fill="%23001a33"/></g></g></g></svg>');
                background-size: contain;
                background-repeat: no-repeat;
                text-indent: -99999px;
                background-position: center center;
                */
            }
            
            .hamburger-icon-container {
                display: none;
            }
            nav {
                position: relative;
                top: initial;
                right: initial;
                bottom: initial;
                left: initial;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-end;
                visibility: visible;
                opacity: 1;
                z-index: 1;
                ul.quicklinks, ul.mainnav {
                    display: flex;
                    >li {
                        position: relative;
                        .trigger {
                            cursor: default;
                        }

                        >ul {
                            list-style: none;
                            position: fixed;
                            left: 0px;
                            right: 0px;
                            top: calc(var(--header-height) - 10px);
                            background-color: #fff;
                            padding: var(--spacing-14) calc((100% - var(--page-max-width)) / 2) var(--spacing-16) calc((100% - var(--page-max-width)) / 2);
                            max-height: initial;
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            gap: var(--spacing-14) 7%;
                            transition: ease all 0.3s;
                            opacity: 0;
                            visibility: hidden;
                            z-index: -1;
                            &::after {
                                display: none;
                            }
                            li {
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                width: 220px;
                                a {
                                    height: 110px;
                                    text-transform: uppercase;
                                    color: var(--text-color);
                                    transition: ease all 0.3s;
                                    display: flex;
                                    flex-direction: column;
                                    align-items: center;
                                    justify-content: flex-end;
                                    gap: var(--spacing-03);
                                    white-space: nowrap;
                                    svg {
                                        max-width: 85px;
                                        opacity: 1;
                                        path {
                                            transition: ease 0.3s all;
                                        }
                                    }
                                }

                                a:hover {
                                    color: var(--main-color, #8bd6e6);
                                    svg {
                                        path.lighten {
                                            fill: var(--main-color, #8bd6e6);
                                        }
                                    }
                                }
                            }
                        }
                    }
                    >li .trigger.open + ul {
                        top: initial;
                        flex-wrap: nowrap;
                        position: fixed;
                    }
                    >li>ul {
                        z-index: 0;
                    }
                    >li:hover>ul {
                        position: fixed;
                        top: var(--header-height);
                        visibility: visible;
                        opacity: 1;
                        z-index: 100;
                    }
                }

                ul.mainnav {
                    flex-direction: row;
                    >li {
                        position: relative;
                        padding-bottom: 23px;
                        >.trigger, >a, >a:visited {
                            display: flex;
                            height: 47px;
                            justify-content: center;
                            align-items: center;
                            font-size: var(--font-size-mainnav);
                            text-transform: uppercase;
                            padding: 0 40px;
                            color: var(--text-color);
                        }

                        &::after {
                            content: '';
                            width: 1px;
                            background-color: var(--line-gray);
                            position: absolute;
                            right: -0.5px;
                            top: 0px;
                            bottom: 23px;
                        }
                    }

                    >li:last-child {
                        >a {
                            padding-right: 0;
                        }

                        &::after {
                            display: none;
                        }
                    }
                }

                ul.quicklinks {
                    position: relative;
                    justify-content: flex-end;
                    margin-top: 27px;
                    padding: 0;
                    li {
                        width: 45px;
                        height: 20px;
                        position: relative;
                        &::after {
                            content: '';
                            height: 100%;
                            width: 1px;
                            background-color: var(--line-gray);
                            position: absolute;
                            right: 0px;
                            bottom: 0px;
                        }

                        &:last-child::after {
                            display: none;
                        }

                        a {
                            display: flex;
                            height: 20px;
                            width: auto;
                            justify-content: center;
                            align-items: center;
                            svg {
                                height: auto;
                                width: auto;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (min-width: 1550px) {
    header {
        .container {
            >a.branding {
                display: block;
                height: 60px;
                width: 500px;

      
                background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="499.411" height="59.253" viewBox="0 0 499.411 59.253"><defs><clipPath id="clip-path"><rect id="Rechteck_629" data-name="Rechteck 629" width="499.411" height="59.253" fill="none"/></clipPath></defs><g id="Gruppe_617" data-name="Gruppe 617" transform="translate(-255 -65.747)"><g id="Gruppe_616" data-name="Gruppe 616" transform="translate(255 65.747)"><g id="Gruppe_616-2" data-name="Gruppe 616" clip-path="url(%23clip-path)"><path id="Pfad_1160" data-name="Pfad 1160" d="M440.292,134.57h2.2a2.879,2.879,0,0,0,3.2-3.2,3.794,3.794,0,0,0-.732-2.288,3.137,3.137,0,0,0-2.561-.915h-2.013v6.4h-.091Zm-.091-9.24h2.013a2.714,2.714,0,0,0,2.2-.915,3.191,3.191,0,0,0,.732-2.2,2.756,2.756,0,0,0-.823-2.1,3.336,3.336,0,0,0-2.2-.732H440.2v5.947Zm-3.568-8.69h6.037a7.393,7.393,0,0,1,4.757,1.281,4.735,4.735,0,0,1,1.463,3.934,4.835,4.835,0,0,1-.365,2.1,4.971,4.971,0,0,1-.823,1.373,4.3,4.3,0,0,1-1.1.823,9.625,9.625,0,0,1-1.1.458v.092a11.325,11.325,0,0,1,1.281.458,3.026,3.026,0,0,1,1.281.915,4.555,4.555,0,0,1,1.006,1.463,5.53,5.53,0,0,1,.365,2.2,7.491,7.491,0,0,1-.458,2.561,5.655,5.655,0,0,1-1.373,1.83,7.113,7.113,0,0,1-2.013,1.1,7.876,7.876,0,0,1-2.561.365h-6.312V116.64h-.089Z" transform="translate(-364.765 -97.442)"/><path id="Pfad_1161" data-name="Pfad 1161" d="M534.978,129.079l-2.653-9.79-2.836,9.79Zm.823,2.928h-7.135l-1.463,5.032H523.36l6.952-20.949h4.209l6.679,20.949h-3.934l-1.463-5.032Z" transform="translate(-437.22 -96.983)"/><path id="Pfad_1162" data-name="Pfad 1162" d="M646.7,116.64v13.539a5.667,5.667,0,0,0,.823,3.568,3.533,3.533,0,0,0,4.941,0,5.657,5.657,0,0,0,.823-3.568V116.64h3.841v13.539a10.464,10.464,0,0,1-.548,3.568,6.317,6.317,0,0,1-1.555,2.378,5.3,5.3,0,0,1-2.288,1.373,8.455,8.455,0,0,1-5.487,0,5.9,5.9,0,0,1-2.288-1.373,6.35,6.35,0,0,1-1.555-2.378,10.1,10.1,0,0,1-.548-3.568V116.64H646.7" transform="translate(-537.051 -97.442)"/><path id="Pfad_1163" data-name="Pfad 1163" d="M757.014,126.428a3.309,3.309,0,0,0,2.561-.823,4.4,4.4,0,0,0,0-5.122,3.444,3.444,0,0,0-2.561-.823h-1.463v6.862h1.463v-.094ZM751.8,116.64h5.947a6.48,6.48,0,0,1,4.849,1.648,7.437,7.437,0,0,1,0,9.332,6.655,6.655,0,0,1-4.849,1.738h-2.1V137.5H751.8V116.64Z" transform="translate(-628.061 -97.442)"/><path id="Pfad_1164" data-name="Pfad 1164" d="M844.06,116.64h3.751v17.838h6.862V137.5H844.06Z" transform="translate(-705.136 -97.442)"/><path id="Pfad_1165" data-name="Pfad 1165" d="M922.938,129.079l-2.653-9.79h-.092l-2.836,9.79Zm.823,2.928h-7.137l-1.463,5.032H911.32l6.952-20.949h4.209l6.677,20.949h-3.934Z" transform="translate(-761.325 -96.983)"/><path id="Pfad_1166" data-name="Pfad 1166" d="M1031.93,116.64h4.574l6.862,16.375h.09V116.64h3.476V137.5h-4.574l-6.862-16.283h-.09V137.5h-3.476Z" transform="translate(-862.084 -97.442)"/><path id="Pfad_1167" data-name="Pfad 1167" d="M1150.272,116.64v13.539a5.667,5.667,0,0,0,.823,3.568,3.533,3.533,0,0,0,4.941,0,5.656,5.656,0,0,0,.823-3.568V116.64h3.841v13.539a10.462,10.462,0,0,1-.548,3.568,6.317,6.317,0,0,1-1.555,2.378,5.3,5.3,0,0,1-2.288,1.373,8.455,8.455,0,0,1-5.487,0,5.9,5.9,0,0,1-2.288-1.373,6.352,6.352,0,0,1-1.555-2.378,10.1,10.1,0,0,1-.548-3.568V116.64h3.841" transform="translate(-957.739 -97.442)"/><path id="Pfad_1168" data-name="Pfad 1168" d="M1256.48,116.64h4.482l6.952,16.375V116.64h3.478V137.5h-4.576l-6.86-16.283h-.092V137.5h-3.384Z" transform="translate(-1049.675 -97.442)"/><path id="Pfad_1169" data-name="Pfad 1169" d="M1376.146,123.925h6.77V134.9a8.717,8.717,0,0,1-2.2.732,17.631,17.631,0,0,1-3.476.365,11.067,11.067,0,0,1-4.391-.823,8.184,8.184,0,0,1-3.2-2.288,8.806,8.806,0,0,1-1.921-3.386,14.751,14.751,0,0,1,0-8.6,10.225,10.225,0,0,1,1.921-3.386,9.258,9.258,0,0,1,3.2-2.288,11.038,11.038,0,0,1,4.391-.823,15.745,15.745,0,0,1,3.111.275,8.391,8.391,0,0,1,1.921.55l-.183,3.476a8.636,8.636,0,0,0-2.105-.915,8.444,8.444,0,0,0-2.653-.365,4.967,4.967,0,0,0-2.653.64,4.761,4.761,0,0,0-1.921,1.648,6.863,6.863,0,0,0-1.188,2.471,10.493,10.493,0,0,0-.365,3.019,11.449,11.449,0,0,0,.365,3.2,7.754,7.754,0,0,0,1.188,2.471,5.353,5.353,0,0,0,1.921,1.555,5.855,5.855,0,0,0,2.561.548,5.1,5.1,0,0,0,2.2-.367v-5.672h-3.2v-3.019h-.09Z" transform="translate(-1142.08 -95.579)"/><path id="Pfad_1170" data-name="Pfad 1170" d="M1532.16,116.64h4.574l6.862,16.375h.09V116.64h3.476V137.5h-4.574l-6.86-16.283h-.092V137.5h-3.476Z" transform="translate(-1279.981 -97.442)"/><path id="Pfad_1171" data-name="Pfad 1171" d="M1646.7,125.206a14.178,14.178,0,0,0,.365,3.66,8.637,8.637,0,0,0,.915,2.378,3.3,3.3,0,0,0,1.373,1.373,3.53,3.53,0,0,0,3.476,0,3.306,3.306,0,0,0,1.373-1.373,7.186,7.186,0,0,0,.915-2.378,18.518,18.518,0,0,0,0-7.319,8.629,8.629,0,0,0-.915-2.378,3.3,3.3,0,0,0-1.373-1.373,3.53,3.53,0,0,0-3.476,0,3.3,3.3,0,0,0-1.373,1.373,7.186,7.186,0,0,0-.915,2.378,19.725,19.725,0,0,0-.365,3.659m-3.934,0a15.2,15.2,0,0,1,.64-4.849,10.841,10.841,0,0,1,1.829-3.386,6.836,6.836,0,0,1,2.653-1.921,7.877,7.877,0,0,1,6.221,0,7.923,7.923,0,0,1,2.653,1.921,10.8,10.8,0,0,1,1.83,3.386,15.562,15.562,0,0,1,.64,4.849,18.345,18.345,0,0,1-.64,4.849,10.775,10.775,0,0,1-1.83,3.384,6.822,6.822,0,0,1-2.653,1.921,7.877,7.877,0,0,1-6.221,0,7.926,7.926,0,0,1-2.653-1.921,9.84,9.84,0,0,1-1.829-3.384,18.356,18.356,0,0,1-.64-4.849" transform="translate(-1372.385 -95.579)"/><path id="Pfad_1172" data-name="Pfad 1172" d="M1767.659,125.7a3.668,3.668,0,0,0,2.47-.823,2.855,2.855,0,0,0,.915-2.378c0-1.19-.275-2.013-.915-2.378a4.926,4.926,0,0,0-2.47-.64H1766.1V125.7h1.556Zm-5.4-9.056h6.495a7.043,7.043,0,0,1,2.47.365,4.287,4.287,0,0,1,1.921,1.006,4.126,4.126,0,0,1,1.28,1.738,6.978,6.978,0,0,1,.458,2.471,5.188,5.188,0,0,1-1.1,3.386,4.841,4.841,0,0,1-2.928,1.555v.092a2.366,2.366,0,0,1,.64.183,5.192,5.192,0,0,1,.64.365,2.565,2.565,0,0,1,.55.732,7.476,7.476,0,0,1,.548,1.188l2.744,7.96h-4.026l-2.013-6.77a3.569,3.569,0,0,0-1.1-1.738,3.5,3.5,0,0,0-1.738-.458h-.823v8.965h-3.842V116.64h-.181Z" transform="translate(-1472.209 -97.442)"/><path id="Pfad_1173" data-name="Pfad 1173" d="M1865.035,134.57h1.281a6.123,6.123,0,0,0,2.745-.548,4.047,4.047,0,0,0,1.921-1.555,5.2,5.2,0,0,0,1.1-2.378,10.74,10.74,0,0,0,.365-3.111,11.211,11.211,0,0,0-.365-3.111,8.166,8.166,0,0,0-1.1-2.378,6.275,6.275,0,0,0-1.921-1.555,6.691,6.691,0,0,0-2.745-.548h-1.281V134.57Zm-3.843-17.93h5.4c3.293,0,5.764.915,7.41,2.653s2.561,4.391,2.561,7.867a13.7,13.7,0,0,1-.732,4.574,8.871,8.871,0,0,1-2.1,3.293,8.447,8.447,0,0,1-3.111,1.921,11.262,11.262,0,0,1-4.026.64h-5.4V116.64Z" transform="translate(-1554.856 -97.442)"/><rect id="Rechteck_624" data-name="Rechteck 624" width="11.049" height="3.019" transform="translate(329.845 30.084)"/><path id="Pfad_1174" data-name="Pfad 1174" d="M2125.544,125.206a14.178,14.178,0,0,0,.365,3.66,6.432,6.432,0,0,0,.915,2.378,3.3,3.3,0,0,0,1.373,1.373,3.53,3.53,0,0,0,3.476,0,3.306,3.306,0,0,0,1.373-1.373,7.175,7.175,0,0,0,.915-2.378,18.506,18.506,0,0,0,0-7.319,6.449,6.449,0,0,0-.915-2.378,3.3,3.3,0,0,0-1.373-1.373,3.53,3.53,0,0,0-3.476,0,3.308,3.308,0,0,0-1.373,1.373,7.191,7.191,0,0,0-.915,2.378,14.092,14.092,0,0,0-.365,3.659m-3.934,0a15.194,15.194,0,0,1,.64-4.849,10.8,10.8,0,0,1,1.83-3.386,6.824,6.824,0,0,1,2.653-1.921,7.877,7.877,0,0,1,6.221,0,7.905,7.905,0,0,1,2.653,1.921,10.809,10.809,0,0,1,1.831,3.386,15.439,15.439,0,0,1,.732,4.849,15.027,15.027,0,0,1-.732,4.849,10.781,10.781,0,0,1-1.831,3.384,6.821,6.821,0,0,1-2.653,1.921,7.877,7.877,0,0,1-6.221,0,7.923,7.923,0,0,1-2.653-1.921,9.9,9.9,0,0,1-1.83-3.384,15.194,15.194,0,0,1-.64-4.849" transform="translate(-1772.413 -95.579)"/><path id="Pfad_1175" data-name="Pfad 1175" d="M2241.11,116.64h3.751v17.838h6.862V137.5H2241.11Z" transform="translate(-1872.245 -97.442)"/><path id="Pfad_1176" data-name="Pfad 1176" d="M2323.315,134.57h1.28a6.111,6.111,0,0,0,2.744-.548,4.047,4.047,0,0,0,1.921-1.555,5.2,5.2,0,0,0,1.1-2.378,10.741,10.741,0,0,0,.365-3.111,11.225,11.225,0,0,0-.365-3.111,8.173,8.173,0,0,0-1.1-2.378,6.261,6.261,0,0,0-1.921-1.555,6.69,6.69,0,0,0-2.744-.548h-1.28V134.57Zm-3.843-17.93h5.4c3.293,0,5.764.915,7.41,2.653s2.561,4.391,2.561,7.867a13.7,13.7,0,0,1-.732,4.574,8.85,8.85,0,0,1-2.1,3.293,8.449,8.449,0,0,1-3.111,1.921,11.269,11.269,0,0,1-4.026.64h-5.4V116.64Z" transform="translate(-1937.707 -97.442)"/><path id="Pfad_1177" data-name="Pfad 1177" d="M2432.87,116.64h10.886v3.019h-7.135v5.58h6.77v3.02h-6.77v6.22h7.41V137.5H2432.87Z" transform="translate(-2032.443 -97.442)"/><path id="Pfad_1178" data-name="Pfad 1178" d="M2521.24,116.64h4.483l6.952,16.375h.091V116.64h3.385V137.5h-4.574l-6.862-16.283V137.5h-3.476Z" transform="translate(-2106.268 -97.442)"/><path id="Pfad_1179" data-name="Pfad 1179" d="M2640.494,134.57h2.1a2.879,2.879,0,0,0,3.2-3.2,3.8,3.8,0,0,0-.732-2.288,3.136,3.136,0,0,0-2.561-.915h-2.013v6.4Zm0-9.24h1.921a2.711,2.711,0,0,0,2.2-.915,3.2,3.2,0,0,0,.732-2.2,2.756,2.756,0,0,0-.823-2.1,3.34,3.34,0,0,0-2.2-.732h-1.83Zm-3.66-8.69h6.037a7.394,7.394,0,0,1,4.757,1.281,4.735,4.735,0,0,1,1.463,3.934,4.832,4.832,0,0,1-.365,2.1,9,9,0,0,1-.823,1.373,4.309,4.309,0,0,1-1.1.823,9.635,9.635,0,0,1-1.1.458v.092a11.321,11.321,0,0,1,1.281.458,3.025,3.025,0,0,1,1.281.915,4.558,4.558,0,0,1,1.006,1.463,5.529,5.529,0,0,1,.365,2.2,7.491,7.491,0,0,1-.458,2.561,4.616,4.616,0,0,1-1.373,1.83,7.113,7.113,0,0,1-2.013,1.1,7.874,7.874,0,0,1-2.561.365h-6.4V116.64Z" transform="translate(-2202.833 -97.442)"/><path id="Pfad_1180" data-name="Pfad 1180" d="M2737.97,116.64v13.539a5.666,5.666,0,0,0,.823,3.568,3.533,3.533,0,0,0,4.941,0,5.669,5.669,0,0,0,.823-3.568V116.64h3.842v13.539a10.456,10.456,0,0,1-.548,3.568,6.313,6.313,0,0,1-1.555,2.378,5.307,5.307,0,0,1-2.286,1.373,8.46,8.46,0,0,1-5.489,0,5.9,5.9,0,0,1-2.286-1.373,6.333,6.333,0,0,1-1.555-2.378,10.1,10.1,0,0,1-.548-3.568V116.64h3.84Z" transform="translate(-2284.118 -97.442)"/><path id="Pfad_1181" data-name="Pfad 1181" d="M2848.44,125.7a3.67,3.67,0,0,0,2.47-.823,2.855,2.855,0,0,0,.915-2.378c0-1.19-.275-2.013-.915-2.378a4.925,4.925,0,0,0-2.47-.64h-1.555V125.7h1.555Zm-5.4-9.056h6.495a7.921,7.921,0,0,1,2.561.365,4.288,4.288,0,0,1,1.921,1.006,4.114,4.114,0,0,1,1.28,1.738,6.978,6.978,0,0,1,.458,2.471,5.188,5.188,0,0,1-1.1,3.386,4.841,4.841,0,0,1-2.928,1.555v.092a2.365,2.365,0,0,1,.64.183,5.2,5.2,0,0,1,.64.365,2.533,2.533,0,0,1,.548.732,7.5,7.5,0,0,1,.548,1.188l2.745,7.96h-4.026l-2.013-6.77a3.57,3.57,0,0,0-1.1-1.738,3.5,3.5,0,0,0-1.738-.458h-.823v8.965h-3.841V116.64h-.271Z" transform="translate(-2375.102 -97.442)"/><path id="Pfad_1182" data-name="Pfad 1182" d="M2947.166,123.925h6.77V134.9a8.712,8.712,0,0,1-2.2.732,17.639,17.639,0,0,1-3.477.365,11.071,11.071,0,0,1-4.391-.823,8.183,8.183,0,0,1-3.2-2.288,8.822,8.822,0,0,1-1.921-3.386,14.756,14.756,0,0,1,0-8.6,10.22,10.22,0,0,1,1.921-3.386,9.257,9.257,0,0,1,3.2-2.288,11.037,11.037,0,0,1,4.391-.823,15.746,15.746,0,0,1,3.111.275,8.394,8.394,0,0,1,1.921.55l-.183,3.476a8.647,8.647,0,0,0-2.1-.915,8.442,8.442,0,0,0-2.653-.365,4.966,4.966,0,0,0-2.653.64,4.741,4.741,0,0,0-1.921,1.648,6.924,6.924,0,0,0-1.19,2.471,10.493,10.493,0,0,0-.365,3.019,11.387,11.387,0,0,0,.365,3.2,7.726,7.726,0,0,0,1.19,2.471,5.355,5.355,0,0,0,1.921,1.555,5.844,5.844,0,0,0,2.561.548,5.105,5.105,0,0,0,2.2-.367v-5.672h-3.2v-3.019h-.092Z" transform="translate(-2454.525 -95.579)"/><rect id="Rechteck_625" data-name="Rechteck 625" width="58.321" height="58.321" transform="translate(0.63 0.466)" fill="%23fff"/><path id="Pfad_1183" data-name="Pfad 1183" d="M17.96,156.22v26.522l4.385-.026s14.63-24.537,48.957-23.183V156.22Z" transform="translate(-15.004 -130.508)" fill="%23001a33"/><path id="Pfad_1184" data-name="Pfad 1184" d="M17.96,54.1H34.419v5.362l-1.787,1.978,1.957,1.766v5.1H17.96Z" transform="translate(-15.004 -45.196)" fill="%238bd6e6"/><rect id="Rechteck_626" data-name="Rechteck 626" width="4.51" height="2.143" transform="translate(9.015 12.343)" fill="%23fff"/><rect id="Rechteck_627" data-name="Rechteck 627" width="4.511" height="2.141" transform="translate(9.015 17.814)" fill="%23fff"/><path id="Pfad_1185" data-name="Pfad 1185" d="M127.4,68.309V54.1h17.006v9.135H133.832v5.074Z" transform="translate(-106.431 -45.196)" fill="%238bd6e6"/><rect id="Rechteck_628" data-name="Rechteck 628" width="4.51" height="2.143" transform="translate(27.287 12.343)" fill="%23fff"/><path id="Pfad_1186" data-name="Pfad 1186" d="M239.217,54.1h5.863l5.16,7.1V54.1h5.9V68.309H250.04l-4.646-6.468v6.468H239.21Z" transform="translate(-199.838 -45.196)" fill="%238bd6e6"/><path id="Pfad_1187" data-name="Pfad 1187" d="M59.253,0H0V59.253H59.253Zm-.918.918V58.334H.918V.918H58.334Z" fill="%23001a33"/></g></g></g></svg>');
                background-size: contain;
                background-repeat: no-repeat;
                text-indent: -99999px;
                background-position: center center;
           
            }
        }
    }
}