:root {
    --gps-orange: rgb(239, 125, 0);
    --gps-light-orange: rgb(246, 147, 81);
    --gps-blue: rgb(64, 146, 187);
    --gps-light-blue: rgb(119, 197, 238);
    --gps-green: rgb(140, 192, 77);
    --gps-yellow: rgb(255, 215, 65);
    --gps-logo-color: rgb(89, 89, 87);
    --gps-font-color: rgb(68, 68, 68);
    --gps-font-dark-color: rgb(44, 44, 44);
    --gps-background: rgb(248, 248, 248);
    --gps-font-family: "Frankling Gohtic Book", Arial;
    --gps-text-shadow: 3px 3px 4px #00000080;
    --gps-box-shadow: 0px 2px 20px #00000040;
}

body {
    margin: 0;
    padding: 0;
    color: var(--gps-font-color);
    font-family: var(--gps-font-family);
    font-size: 16px;
    background-color: white;
    overflow-x: hidden;
}

p {
    line-height: 20px;
}

h1 {
    margin: unset;
    font-size: 64px;
}

h2 {
    font-size: 77px;
    margin: unset;
}

h3 {
    font-size: 38px;
    margin: unset;
}

h3.headline {
    font-size: 42px;
    font-style: italic;
}

h4 {
    font-size: 34px;
    margin: unset;
}

div.spacer {
    height: 30px;
}

span.note {
    font-style: italic;
    font-size: 12px;
}

section.preload-screen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 4;
    background-color: white;
    will-change: opacity;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.preload-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

section.sticky-navbar {
    background: white;
    padding: 5px;
    position: sticky;
    z-index: 4;
    box-shadow: var(--gps-box-shadow);
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.sticky-navbar .navigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    position: relative;
    gap: 75px;
}

section.sticky-navbar .navigation .augen-navigator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 70px;
}

section.sticky-navbar .navigation .augen-navigator,
section.sticky-navbar .navigation .augen-navigator a {
    font-size: 14px;
    margin: 0;
    color: white;
}

section.sticky-navbar .navigation .augen-navigator svg {
    width: 26px;
    height: 26px;
}

section.sticky-navbar .navigation .augen-navigator .augen-upper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
    cursor: pointer;
    position: relative;
    gap: 3px;
}

section.sticky-navbar .navigation .augen-navigator .augen-upper a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gps-light-blue);
    height: 89%;
    width: 100%;
}

section.sticky-navbar .navigation .augen-navigator .augen-upper a.auge-left {
    border: 2px solid var(--gps-light-orange);
    background-color: var(--gps-light-orange);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

section.sticky-navbar .navigation .augen-navigator .augen-upper a.auge-right {
    padding-top: 2px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    border-radius: 4px;
}

section.sticky-navbar .navigation .augen-navigator .augen-lower {
    background-color: var(--gps-light-orange);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bolder;
}

section.sticky-navbar .navigation .augen-navigator .augen-lower div p {
    font-size: 12px;
    font-weight: lighter;
    margin: unset;
}

section.sticky-navbar #menue-icon {
    display: none;
    cursor: pointer;
    color: var(--gps-font-color);
}

h1.main-headline {
    font-size: 60px;
}

h2.sub-headline {
    font-size: 40px;
}

#mobile-menue {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

#mobile-menue.show {
    opacity: 1;
    max-height: 300px;
}

#mobile-menue ul li {
    font-size: 18px;
    display: block;
    padding: 10px 5px;
    text-decoration: none;
}

#mobile-menue i {
    margin-right: 10px;
    width: 24px;
    text-align: center;
}

#mobile-menue a {
    color: var(--gps-font-color);
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background: var(--gps-font-color);
    margin: 9px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 17px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

section.sticky-navbar a {
    color: var(--gps-font-color);
    text-decoration: none;
}

#home-logo {
    cursor: pointer;
    width: 50%;
    max-width: 250px;
    position: absolute;
    left: 5px;
}

.navbar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    position: relative;
    font-size: 16px;
}

.navbar-list>.dropdown-class {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-list>.dropdown-class>a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    min-height: 32px;
    padding: 5px 20px;
}

.navbar-list>.dropdown-class>a:hover {
    /* todo */
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.5);
    background-color: var(--gps-light-orange);
    color: white;
    z-index: 2;
}

.level-2.dropper {
    list-style: none;
    margin: 5px 0 0 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    /* todo */
    box-shadow: 0px 20px 13px 7px rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1;
    /* transform: translateY(10px); */
}

.dropdown-class:hover>.level-2.dropper {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
}

.level-2.dropper li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    font-weight: bolder;
}

.level-2.dropper li a:hover {
    background-color: var(--gps-light-orange);
    color: white;
}

.dropdown-class-toggle::after {
    content: " ▾";
    font-size: 24px;
    padding-left: 5px;
}

section.content .content-start {
    height: 80px;
}

section.content .content-end {
    height: 1px;
}

section.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-image: url(../images/decoration/lines-straight.png);
    background-repeat: no-repeat;
    background-size: 101%;
    background-attachment: fixed;
    position: relative;
}

section.footer .company-logo {
    width: 60%;
}

section.footer div.footer-elem {
    width: 33%;
}

section.footer .footer-upper {
    background: white;
    /* padding: 40px; */
    /* box-shadow: var(--gps-box-shadow); */
    margin-bottom: -90px;
    z-index: 1;
    max-width: 83vw;
    margin-left: 11vw;
}

section.footer .footer-upper p {
    max-width: 90%;
}

section.footer .footer-upper .footer-cta-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: end;
    align-items: center;
    padding-top: 30px;
}

section.footer .footer-upper .footer-cta-wrapper a.button {
    max-width: 400px;
}

section.footer .footer-lower {
    width: 100%;
    background-color: var(--gps-font-color);
    color: white;
}

section.footer .footer-lower a {
    color: white;
}

section.footer .footer-lower .footer-content {
    max-width: 60vw;
    padding: 40px;
    margin: auto;
    background-color: var(--gps-font-color);
    margin-top: 90px;
}

section.footer .footer-lower .footer-content .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
}

section.footer .footer-lower .footer-content .separator-line {
    height: 3px;
    width: 100%;
    background-color: white;
    margin-bottom: 30px;
}

section.footer .footer-lower .footer-content .more-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 80px;
}

section.footer .footer-lower .footer-content .more-info p.res-width {
    max-width: 60%;
}

section.footer .copyright {
    width: 100%;
    position: absolute;
    background-color: rgb(55 55 55);
    bottom: 40px;
    padding: 20px 0;
    color: white;
}

section.footer .copyright .center-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
}

section.footer .copyright .copyright-content {
    max-width: 60vw;
    margin: auto;
}

section.footer .copyright .copyright-content .left-copy {
    float: left;
}

section.footer .copyright .copyright-content .right-product {
    float: right;
}

section.content {
    width: 100%;
    background-image: url(../images/decoration/lines-straight.png);
    background-repeat: no-repeat;
    background-size: 101%;
    background-attachment: fixed;
}

#mobile-links {
    padding-inline-start: 5px;
}

.none {
    display: none !important;
}

.appstore-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.btn-amazon {
    background-color: #232F3E !important;
    border-color: #232F3E !important;
}

.appstore-buttons a {
    width: 47%;
    cursor: pointer;
}

.appstore-buttons img {
    width: 100%;
}

.orange {
    color: var(--gps-orange);
}

.content-box {
    /* background: white; */
    margin-bottom: 200px;
    /* display: flex;
    flex-direction: column; */
    max-width: 83vw;
    margin-left: 11vw;
    /* box-shadow: 7px 10px 18px #aea3a340; */
}

.text-box {
    /* padding: 0 40px 40px 40px; */
    max-width: 83vw;
    margin: 0 0 50px 11vw;
    text-align: left;
    font-size: 24px;
}

.attribute {
    font-style: normal;
}

.green {
    color: var(--gps-green);
}

.green-bg {
    background-color: var(--gps-green);
}

.blue {
    color: var(--gps-blue);
}

.blue-bg {
    background-color: var(--gps-blue);
}

.yellow {
    color: var(--gps-yellow);
}

.yellow-bg {
    background-color: var(--gps-yellow);
}

.button {
    border-radius: 40px;
    padding: 10px 12px;
    box-shadow: var(--gps-box-shadow);
    background-color: var(--gps-orange);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    font-weight: bolder;
    border: 4px solid var(--gps-orange);
    text-decoration: none;
    text-align: center;
}

.separator-lines {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 5%;
}

.separator-lines .line-1,
.separator-lines .line-2,
.separator-lines .line-3 {
    width: 5px;
    height: 230px;
    border-radius: 10px;
}

.separator-lines .line-1 {
    background-color: var(--gps-yellow);
    margin-top: -20px;
}

.separator-lines .line-2 {
    background-color: var(--gps-blue);
}

.separator-lines .line-3 {
    background-color: var(--gps-green);
    margin-top: 20px
}

.copy {
    width: 18px;
    height: 18px;
    padding-right: 5px;
}

.construction {
    width: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 20vh;
    margin-bottom: 10vh;
    gap: 50px;
    text-align: center;
}

.construction svg {
    max-width: 25%;
}

.items {
    padding: 30px;
    position: relative;
}

.btn-more {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-top: 80px;
}

.topic {
    position: relative;
}

.orange-marker {
    position: sticky;
    top: 10vh;
    background-color: var(--gps-orange);
    /* background-color: rgba(239, 125, 0, 0.66);
    backdrop-filter: blur(4px); */
    color: white;
    font-size: 32px;
    font-style: italic;
    font-weight: 600;
    width: fit-content;
    padding: 10px 20px;
    margin: 50px 0 75px 20px;
    /* border: 10px solid white; */
    z-index: 3;
}

.jammer {
    font-style: italic;
}

.flip-card {
    background-color: transparent;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: var(--gps-box-shadow);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.jammersvg {
    transform: scale(0.9);
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bolder;
}

.larger {
    font-size: larger;
}

.smaller {
    font-size: smaller;
}

.text-highlight-green {
    background-color: var(--gps-green);
    color: white;
    font-weight: bold;
    padding: 2px 5px;
}

.text-highlight-yellow {
    background-color: var(--gps-yellow);
    color: white;
    font-weight: bold;
    padding: 2px 5px;
}

.text-highlight-blue {
    background-color: var(--gps-blue);
    color: white;
    font-weight: bold;
    padding: 2px 5px;
}

.box-shadow {
    box-shadow: var(--gps-box-shadow);
}

section.quick-sidebar {
    position: fixed;
    background: transparent;
    border-radius: 3px;
    display: block;
    width: auto;
    top: 40vh;
    right: 0px;
    left: auto;
    bottom: auto;
    z-index: 4;
    cursor: pointer;
}

section.quick-sidebar .quick-sidebar-button {
    width: 42px;
    height: 36px;
    line-height: 36px;
    display: block;
    position: relative;
    color: white;
    transition: all 0.4s ease-in-out 0s;
    margin-top: 1px;
}

section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon {
    width: 42px;
    float: right;
    font-size: 24px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    position: relative;
    z-index: 2;
    right: 0px;
    background: var(--gps-light-blue);
    border-bottom: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon.first {
    border-top-left-radius: 4px;
}

section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon.last {
    border-bottom-left-radius: 4px;
    border-bottom: none;
}

section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon svg {
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
}

section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-text {
    display: block;
    transform: scale(1, 0);
    transition: all 0.4s ease-in-out 0s;
    width: auto;
    white-space: nowrap;
    background: var(--gps-light-orange);
    float: left;
    text-align: left;
    padding: 0 40px 0 15px;
    height: 36px;
    font: 14px/36px var(--gps-font-family);
    color: #ffffff;
    border-radius: 4px 0 0 4px;
    position: absolute;
    right: 25px;
    z-index: 1;
    font-weight: bolder;
}

section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon:hover {
    background-color: var(--gps-light-orange);
}

section.quick-sidebar .quick-sidebar-button:hover .quick-sidebar-button-text {
    opacity: 1;
    transform: scale(1, 1);
}

@media (max-width: 1700px) {

    section.content,
    section.footer {
        background-image: none !important;
    }

    .content-box {
        margin-left: 0;
        margin: auto;
        margin-bottom: 100px;
    }
}

@media (max-width: 1500px) {
    .construction {
        max-width: 80vw;
    }

    .content-box {
        max-width: 90vw;
    }
}

@media (max-width: 1100px) {
    body {
        font-size: 14px;
    }

    section.sticky-navbar #menue-icon {
        display: block;
    }

    section.sticky-navbar .navigation .augen-navigator,
    section.sticky-navbar .navbar-list {
        display: none;
    }

    /* todo */
    section.content .sticky-navbar {
        display: none;
    }
}

@media (max-width: 700px) {
    p {
        line-height: 15px !important;
    }

    h1 {
        margin: unset;
        font-size: 38px !important;
    }

    h2 {
        font-size: 32px !important;
        margin: unset;
    }

    h3 {
        font-size: 24px !important;
        margin: unset;
    }

    h3.headline {
        font-size: 20px !important;
        font-style: italic;
    }

    h4 {
        font-size: 18px !important;
        margin: unset;
    }

    .content-box {
        margin-bottom: 50px;
    }

    .items {
        padding: 10px;
    }

    .text-highlight-green,
    .text-highlight-yellow,
    .text-highlight-blue {
        padding: 0;
    }

    section.quick-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border-radius: unset;
        max-width: 100vw;
        box-sizing: border-box;
    }

    section.quick-sidebar a {
        flex: 1;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 48px;
        box-sizing: border-box;
    }

    section.quick-sidebar .quick-sidebar-button {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon {
        float: none;
        background: var(--gps-blue);
        border: none;
        border-radius: 0;
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border-right: none;
        border-left: none;
    }

    section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-text {
        display: none;
    }

    section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon svg {
        width: 28px;
        height: 28px;
    }

    section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon.first,
    section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon.last {
        border-radius: unset;
    }

    section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon {
        border-right: 1px solid white;
    }

    section.quick-sidebar .quick-sidebar-button .quick-sidebar-button-icon.last {
        border-right: none;
    }

    .button {
        font-size: 20px;
    }

    section.footer .footer-lower .footer-content .contact-info {
        flex-direction: column;
    }

    section.footer .footer-lower .footer-content .separator-line,
    section.footer .footer-lower .footer-content .more-info {
        display: none;
    }

    section.footer div.footer-elem {
        width: 100%;
    }

    section.footer .copyright {
        bottom: -65px;
    }

    section.footer .copyright .copyright-content {
        max-width: unset;
        text-align: center;
    }

    section.footer .copyright .copyright-content .left-copy,
    section.footer .copyright .copyright-content .right-product {
        float: unset;
    }

    section.footer .copyright .copyright-content .left-copy {
        margin-bottom: 10px;
    }

    section.footer .copyright .center-footer {
        justify-content: center;
    }

    section.footer .footer-upper .footer-cta-wrapper {
        flex-direction: column;
    }

    section.footer .footer-upper .footer-cta-wrapper a.button {
        max-width: unset;
        width: 100%;
    }
}

/* TODO */
.finance {
    background-color: rgb(255, 135, 135) !important;
}