.header {
    position: relative;
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
}
.header a {
    color: #0E3A2F;
    text-decoration: none;
}
.header .top-row {
    height: 70px;
    position: relative;
    padding: 0 5%;
    background-color: #fff;
}
.header .top-row .motto {
    font-weight: 700;
    line-height: 150%;
    letter-spacing: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #979797;
    float: right;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
@media (min-width: 576px) {
    .header .top-row .motto {
        display: inline;
    }
}
.header .top-row .logo-wrapper {
    display: block;
    position: relative;
    width: 180px;
    height: 38px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/SkodaLogo2023.svg") 50% no-repeat;
    background-size: contain;
}
.header .bottom-row {
    padding: 9px 5%;
    color: #78FAAE;
    background-color: #0E3A2F;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: normal;
    font-size: 14px;
}
.header .bottom-row a {
    color: inherit;
}

.footer {
    background-color: #394748;
    color: #fff;
    padding: 20px;
}
.footer a {
    color:#78FAAE;
    text-decoration: none;
}
.footer-wrapper {
    text-align: center;
    padding: 0 5%;
}
.footer-copyright {
    padding-bottom: 10px;
}
@media (min-width: 992px) {
    .footer-wrapper {
        display: flex;
        justify-content: space-between;
    }
    .footer-copyright {
        padding-bottom: 0px;
    }
}
