/** BEGIN CSS reset **/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 100%;
    font-family: "omnes-pro", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/** END CSS reset **/

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

h3.service-citation {
    /* margin-bottom: 0.5vh;
        margin-top: 1.5vh;*/
    margin-top: 2.5vh;
}

#fineLoader {
    background-color: rgb(222, 222, 222);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadein 4s;
    -moz-animation: fadein 4s;
    /* Firefox */
    -webkit-animation: fadein 4s;
    /* Safari and Chrome */
    -o-animation: fadein 4s;
    /* Opera */
    /* -webkit-filter: grayscale(1);
    filter: grayscale(1); */
}

#fineLoader-logo {
    max-width: 90%;
    max-height: 90%;
}

#fineHeader {
    position: fixed !important;
    z-index: 99;
    height: max-content;
    top: 0px;
    border: 0;
    display: none;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 10px;
}

#fineHeader-logo-image {
    display: inline-block;
    height: 85px;
    width: 255px;
    border: none;
    background-image: url(../images/Logo-schwarz_800px.png);
    background-size: cover;
}

#fineMenuContainer {
    display: flex;
    align-items: flex-start;
    width: 60%;
}

#fineMenuContainer a,
#fineMenuContainer a:link,
#fineMenuContainer a​:active,
#fineMenuContainer a​:visited,
#fineMenuContainer a​:hover {
    color: black;
    font-size: 1.5em;
    text-decoration: none;
}

#fineMenuContainer li.active {
    font-weight: 600;
}

#fineMenu {
    flex-direction: row;
    display: inline-flex;
    flex: auto;
    justify-content: space-around;
}

.fp-table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.fp-tableCell {
    text-align: center;
    vertical-align: bottom;
}

/* arrow overrides*/

.fp-controlArrow {
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.fp-controlArrow.fp-prev {
    top: 95%;
    left: 60px;
    display: inline-block;
    width: 42px;
    height: 42px;
    padding: 12px;
    border: none;
    background-image: url(../images/arrow-left-black.png);
    background-size: cover;
}

.no-border .fp-controlArrow.fp-prev {
    background-image: url(../images/arrow-left-white.png);
}

.fp-controlArrow.fp-next {
    top: 95%;
    right: 60px;
    display: inline-block;
    width: 42px;
    height: 42px;
    padding: 12px;
    border: none;
    background-image: url(../images/arrow-right-black.png);
    background-size: cover;
}

.no-border .fp-controlArrow.fp-next {
    background-image: url(../images/arrow-right-white.png);
}

/* END arrow overrides*/

#fp-nav {
    position: fixed;
    z-index: 500;
    margin-top: 0px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    color: black;
    display: none;
}

#fp-nav.fp-right {
    right: 20px;
    top: 3px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: #000;
}

#fp-nav ul li .fp-tooltip {
    color: #000;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 10px;
    height: 7px;
}

#navigation-right {
    height: 16px;
    width: 220px;
    right: -85px;
    margin-top: -9px;
    position: absolute;
    top: 47%;
    z-index: 500;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: none;
}

.navigation-right-elements {
    margin-left: 20px;
    margin-right: 20px;
}

#navigation-right a {
    color: black;
}

#navigation-right a:hover {
    color: black;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {

    /* Firefox */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {

    /* Safari and Chrome */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {

    /* Opera */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#fullpage {
    display: none;
    text-align: center;
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    /* Firefox */
    -webkit-animation: fadein 2s;
    /* Safari and Chrome */
    -o-animation: fadein 2s;
    /* Opera */
}

.turnDeviceNotification {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    background-image: url(../images/turnDevice.jpg);
    background-repeat: no-repeat;
    background-color: #dedede;
    background-position: center;
    background-size: 40%;
    z-index: 9999;
}

.section {
    background-size: cover;
}


.slide {
    background-size: cover;
}

.section ul {
    list-style: none;
    padding: 0px;
    font-size: 1em;
}

.citation-box {
    margin: auto;
    padding: 3%;
    font-size: 1.5em;
}

.service-citation-box {
    text-align: left;
    margin: auto;
    padding: 3%;
    line-height: 1.5;
    width: 80%;
}

.citation {
    width: 85%;
    margin: auto;
    /* margin-block-start: revert; */
}

.service-citation,
ul.service-citation-ul {
    font-size: 1.5em;
}

.slogan-box {
    display: inline-flex;
    align-content: flex-end;
    align-items: flex-end;
    margin: 2vh auto 3vh auto;
    width: 90%;
}

#slide-50 .slogan-box {
    display: block;
}

.slogan {
    width: 90%;
    margin: auto;
}

#slide-50 .slogan {
    margin: auto;
    color: black;
    text-align: center;
    width: 100%;
}

#slide-50 a {
    text-decoration: none;
}

.page0-image-box {
    width: 95%;
    max-height: 80%;
    margin: auto auto 2vh auto;
    overflow: hidden;
}

.image-box {
    width: 95%;
    max-height: 80%;
    margin: auto;
    overflow: hidden;
}

.cover {
    object-fit: contain;
    height: 100%;
}

/* 
#section-1 {
    background-image: none;
}

.section-1 {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 70%;
} */

.unternehmen-citation-box {
    margin: auto;
    padding: 3%;
    width: 80%;
}

.unternehmen-citation-text {
    display: inline-block;
    /* margin: auto; */
    margin: 1vh auto;
    font-size: 1.5em;
    text-align: justify;
    line-height: 1.5;
}

#contact-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: center;
    line-height: 1.5;
    font-size: 1.5em;
}

#address-block {
    text-align: left;
}

#onlineshop {
    margin-bottom: 2vh;
}

#postal-address {
    /* display: inline-flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start; */
    margin-bottom: 2vh;
}

#address-block a,
#address-block a:visited {
    color: black;
}

.fa-solid,
.fa-brands {
    font-size: 1.5em;
    vertical-align: middle;
}

#show-on-maps {
    display: none;
}

#phone-mail-social {
    line-height: 1.5;
}

#short-email {
    display: none;
}

#oeffnungszeiten {
    text-align: left;
}

#buerozeiten,
#beratungszeiten {
    margin-top: 1vh;
}

#reparaturannahme {}

/* Small devices (portrait tablets and large phones, up to 759px) */
@media screen and (orientation: portrait) and (max-width: 759px) {

    #fineMenuContainer {
        display: none;
    }

    .slide {
        background-size: 80% !important;
    }

    #navigation-right {
        display: none !important;
    }

    #fp-nav.fp-right {
        right: 5px;
        top: 5px;
    }

    #logo-header {
        display: none;
    }

    #logo-header-image {}

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.25em;
    }

    h3 {
        font-size: 1em;
    }

    h3.service-citation {
        margin-top: 1.5vh;
    }

    .page0-image-box {
        margin: 60% auto auto;
    }

    /* #slide-21 .image-box, 
    #slide-22 .image-box {
        width: 95%;
        max-height: 80%;
        margin: 60% auto auto;
        overflow: hidden;
    } */

    .section ul {
        list-style: none;
        padding: 0px;
        font-size: 1em;
    }

    .citation-box {
        margin: auto;
        padding: 5%;
        font-size: 1.25em;
    }

    /* #slide-21 .citation-box,
    #slide-22 .citation-box {
        margin: 0 auto;
        padding: 0 0 1vh 0;
        font-size: 1em;
        width: 75%;
    } */

    .service-citation-box {
        margin-top: 30%;
        padding: 0 2vh 0 2vh;
        width: 100%;
        line-height: 1;
    }

    .citation {
        /* width: 70%; */
        color: black;
    }

    .service-citation,
    ul.service-citation-ul {
        font-size: 1.15em;
    }

    .referee {
        width: 65%;
        font-size: 0.75em;
    }

    .slogan-box {}

    .slogan {
        width: 75%;
        margin: auto;
    }

    #slide-11 .slogan {
        margin-top: 0.25vh;
    }

    .fp-controlArrow.fp-prev {
        top: 97.5%;
        width: 24px;
        height: 24px;
        left: 30px;
    }

    .fp-controlArrow.fp-next {
        top: 97.5%;
        width: 24px;
        height: 24px;
        right: 30px;
    }

    .fp-tooltip {
        display: none !important;
    }

    #slide-10 .image-box {
        margin: 30vh auto;
    }

    .unternehmen-citation-box {
        /* margin: 7em auto auto auto; */
        /* margin-bottom: 4vh;
        padding: 0 2vh 0 2vh; */
        margin: 30% auto auto auto;
        padding: 0 2vh 0 2vh;
        width: 100%;
    }

    .unternehmen-citation-text {
        display: inline-block;
        margin: 1vh auto;
        font-size: 1.15em;
        line-height: 1;
    }

    #contact-content {
        display: flex;
        flex-wrap: nowrap;
        justify-content: unset;
        flex-direction: column;
        text-align: left;
        margin: auto;
        line-height: 1.15;
        width: 100%;
        font-size: 1.15em;
        padding: 0 2vh 0 2vh;
    }

    #oeffnungszeiten {
        text-align: left;
        font-size: 100%;
    }

    #buerozeiten {
        text-align: left;
        margin-top: 5px;
    }

    #reparaturannahme {
        text-align: left;
    }

    #address-block {
        font-size: 100%;
        display: flex;
        align-content: flex-start;
        justify-content: center;
        align-content: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
        page-break-after: always;
        break-after: always;
    }

    #postal-address {
        width: 100%;
        text-align: left;
        margin-bottom: 1vh;
    }

    #phone-mail-social {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }

    #full-email {
        display: inline;
    }

    #short-email {
        display: none;
    }

}

/* REALLY small devices (portrait tablets and phones, up to 641px) */
/* iPhone SE hack */
@media only screen and (max-width: 375px) and (orientation: portrait) {

    #fineMenuContainer {
        display: none;
    }

    #logo-header {
        position: fixed !important;
        z-index: 99;
        /* top: 21px; */
        border: 0;
        display: none;
        min-width: 44px;
    }

    #logo-header-image {}

    h1 {
        font-size: 1.25em;
    }

    h2 {
        font-size: 1.15em;
    }

    h3 {
        font-size: 1em;
    }

    h3.service-citation {
        margin-top: 1.5vh;
    }

    p {
        font-size: 1em;
    }

    .page0-image-box {
        margin: 45% auto auto;
    }

    .citation-box,
    div.white-border .citation-box,
    div.color-border .citation-box {
        margin: auto;
        padding: 5%;
        font-size: 1em;
    }

    /* #slide-31 .service-citation-box {
        margin-bottom: 1vh;
    } */

    .citation {
        width: 90%;
        color: black;
    }

    .unternehmen-citation-box {
        margin: 7em auto auto auto;
        padding: 0 2vh 0 2vh;
    }

    .service-citation-box {
        line-height: 1;
    }

    .unternehmen-citation-text {
        display: inline-block;
        margin: 1vh auto;
        font-size: 1em;
        line-height: 1;
    }

    .slogan-box,
    div.white-border .slogan-box,
    div.color-border .slogan-box {
        margin: 2vh auto 1vh auto;
        padding: 5%;
    }

    /* #slide-31 .slogan-box {
        margin: 0.25vh auto 1vh auto;
        padding: 5%;
    } */

    .slogan {
        width: 75%;
        margin: auto;
    }

    .fp-controlArrow.fp-prev {
        top: 97%;
        width: 18px;
        height: 18px;
        left: 30px;
    }

    .fp-controlArrow.fp-next {
        top: 97%;
        width: 18px;
        height: 18px;
        right: 30px;
    }

    div.no-border .fp-controlArrow.fp-prev {
        top: 97%;
        width: 18px;
        height: 18px;
        background-image: url(../images/arrow-left-black.png);
    }

    div.no-border .fp-controlArrow.fp-next {
        top: 97%;
        width: 18px;
        height: 18px;
        background-image: url(../images/arrow-right-black.png);
    }

    .fp-tooltip {
        display: none !important;
    }

    #contact-content {
        margin: 7em auto auto auto;
    }

}

/* Medium devices (portrait tablets, 760px and up)*/
@media only screen and (min-width: 760px) and (orientation: portrait) {

    .slide {
        background-size: 80% !important;
    }

    #navigation-right {
        display: none !important;
    }

    #fp-nav.fp-right {
        right: 10px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }

    .page0-image-box {
        margin: 40% auto auto;
    }

    .citation {
        width: 75%;
        color: black;
    }

    .service-citation,
    ul.service-citation-ul {
        font-size: 1.5em;
    }

    .unternehmen-citation-text {
        display: inline-block;
        margin: 1vh auto;
        font-size: 1.5em;
    }

    /* #slide-13 div.citation {
        width: 75%;
    } */

    .referee {
        width: 75%;
        font-size: 1em;
    }

    .slogan-box {
        margin: 1vh auto 1vh auto;
        padding: 4%;
    }

    /* #slide-21 .slogan-box, 
    #slide-22 .slogan-box {
        margin: 3vh auto 0 auto;
        padding: 1vh;
    } */

    .slogan {
        width: 75%;
        margin: auto;
    }

    .citation-box {
        margin: auto;
        padding: 5%;
        font-size: 1.5em;
    }

    .fp-controlArrow.fp-prev {
        top: 96%;
        width: 32px;
        height: 32px;
    }

    .fp-controlArrow.fp-next {
        top: 96%;
        width: 32px;
        height: 32px;
    }

    .fp-tooltip {
        display: none !important;
    }

    #address-block {
        font-size: 1.5em;
    }

    #full-email {
        display: inline;
    }

    #short-email {
        display: none;
    }

    #oeffnungszeiten {
        font-size: 1.5em;
    }
}

/* Small landscape devices (laptops/desktops, below or equal 1024px)*/
@media only screen and (max-width: 1024px) and (orientation: landscape) {

    .slide {
        background-size: 60%;
    }

    #navigation-right {
        display: none !important;
    }

    #fp-nav.fp-right {
        right: 10px;
    }

    #logo-header {
        position: fixed !important;
        z-index: 99;
        top: 20px;
        border: 0;
        display: none;
    }

    #logo-header-image {
        top: 90%;
        right: 20px;
        border: none;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1em;
    }

    .citation-box,
    div.white-border .citation-box,
    div.color-border .citation-box {
        padding: 5%;
        font-size: 1em;
    }

    .citation {
        width: 75%;
        color: black;
    }

    .unternehmen-citation-text {
        display: inline-block;
        /* margin: 1.5em 2.5em; */
        margin: 1vh auto;
        font-size: 1.75em;
        line-height: 1;
    }

    .slogan-box,
    div.white-border .slogan-box,
    div.color-border .slogan-box {
        margin: auto;
        padding: 5%;
    }

    #address-block {
        font-size: 1.5em;
    }

    .slogan {
        width: 75%;
        margin: auto;
    }

    .fp-controlArrow.fp-prev {
        top: 95%;
        width: 32px;
        height: 32px;
        left: 30px;
    }

    .fp-controlArrow.fp-next {
        top: 95%;
        width: 32px;
        height: 32px;
        right: 30px;
    }

    div.no-border .fp-controlArrow.fp-prev {
        top: 95%;
        width: 32px;
        height: 32px;
        background-image: url(../images/arrow-left-black.png);
    }

    div.no-border .fp-controlArrow.fp-next {
        top: 95%;
        width: 32px;
        height: 32px;
        background-image: url(../images/arrow-right-black.png);
    }

    .fp-tooltip {
        display: none !important;
    }

}

/* Small devices in landscape mode (lanscape tablets and large phones, up to 767px) */
@media only screen and (max-width: 768px) and (orientation: landscape) {

    #fineMenuContainer a,
    #fineMenuContainer a:link,
    #fineMenuContainer a​:active,
    #fineMenuContainer a​:visited,
    #fineMenuContainer a​:hover {
        color: black;
        font-size: 1.25em;
    }

    .slide {
        background-size: 60% !important;
    }

    #navigation-right {
        display: none !important;
    }

    #fp-nav {
        top: 40%;
    }

    #fp-nav.fp-right {
        right: 10px;
    }

    #logo-header {
        position: fixed !important;
        z-index: 99;
        top: 20px;
        border: 0;
        display: none;
        min-width: 56px;
        max-width: 56px;
    }

    #logo-header-image {
        top: 90%;
        right: 0px;
        border: none;
        height: 56px;
        width: 56px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1em;
    }

    .citation-box,
    div.white-border .citation-box,
    div.color-border .citation-box {
        padding: 4%;
        font-size: 1em;
    }

    .citation {
        width: 75%;
        color: black;
    }

    .unternehmen-citation-text {
        display: inline-block;
        /* margin: 1.5em 2.5em; */
        margin: 1vh auto;
        font-size: 1.75em;
    }

    .slogan-box,
    div.white-border .slogan-box,
    div.color-border .slogan-box {
        margin: auto;
        padding: 5%;
    }

    .slogan {
        width: 75%;
        margin: auto;
    }

    #address-block {
        font-size: 1.25em;
    }

    .fp-controlArrow.fp-prev {
        top: 95%;
        width: 21px;
        height: 21px;
    }

    .fp-controlArrow.fp-next {
        top: 95%;
        width: 21px;
        height: 21px;
    }

    div.no-border .fp-controlArrow.fp-prev {
        top: 95%;
        width: 21px;
        height: 21px;
        background-image: url(../images/arrow-left-black.png);
    }

    div.no-border .fp-controlArrow.fp-next {
        top: 95%;
        width: 21px;
        height: 21px;
        background-image: url(../images/arrow-right-black.png);
    }

    .fp-tooltip {
        display: none !important;
    }

}

/* Normal landscape devices (laptops/desktops, between 1024px and 1250px)*/
@media only screen and (min-width: 1024px) and (max-width: 1250px) and (orientation: landscape) {

    #navigation-right {
        display: none !important;
    }

    #fp-nav.fp-right {
        right: 10px;
    }

    #logo-header-image {
        top: 90%;
        right: 20px;
        border: none;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.75em;
    }

    .section-1 {
        background-size: auto 60% !important;
    }

    .page0-image-box {
        max-height: 70%;
    }

    .slogan-box,
    div.white-border .slogan-box,
    div.color-border .slogan-box {
        margin: 0 auto;
        padding: 3%;
    }

    .citation-box,
    div.white-border .citation-box,
    div.color-border .citation-box {
        padding: 3%;
        font-size: 1.5em;
    }

    .citation {
        width: 75%;
        color: black;
    }

    #slide-11 br {
        display: none;
    }

    .unternehmen-citation-text {
        font-size: 1.5em;
    }

    .service-citation,
    ul.service-citation-ul {
        font-size: 1.5em;
    }

    .slogan {
        width: 75%;
        margin: auto;
    }

    #address-block {
        font-size: 1em;
    }

    #oeffnungszeiten {
        font-size: 1em;
    }

    #contact-content {
        font-size: 1.5em;
    }

    .fp-controlArrow.fp-prev {
        top: 95%;
        width: 32px;
        height: 32px;
        left: 30px;
    }

    .fp-controlArrow.fp-next {
        top: 95%;
        width: 32px;
        height: 32px;
        right: 30px;
    }

    div.no-border .fp-controlArrow.fp-prev {
        top: 95%;
        width: 32px;
        height: 32px;
        background-image: url(../images/arrow-left-black.png);
    }

    div.no-border .fp-controlArrow.fp-next {
        top: 95%;
        width: 32px;
        height: 32px;
        background-image: url(../images/arrow-right-black.png);
    }

    .fp-tooltip {
        display: none !important;
    }

}

@media only screen and (orientation: landscape) {

    /* #fineLoader-logo {
        max-width: 20%;
    } */
}