/***********************************/

/***** GLOBAL.CSS 30.06.2020  *****/

/************************************/

/* Allgemeines */

/* Sektionen: */

/* Sektion: Logo: -> ist Individuell */

/* Sektion: Header: -> ist Individuell */

/* Sektion: Navigation: -> ist Individuell*/

/* Sektion: Navigation mobile: -> ist Individuell*/

/* Sektion: TOP BAR: -> ist Individuell */

/* Sektion: Intro -> ist Individuell */

/* Sektion: featuregallery */

/* Sektion Trenner */

/* Sektion: Merkmale: */

/* Sektion: Preise: */

/* Sektion: Kontakt:" */

/* Sektion: Modals:" */

/********************************/

/* Allgemeines: */

body {
    overflow-x: hidden;
    overflow-y: visible;
}

* {
    box-sizing: border-box;
}

/* Text Ausrichtung: */

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

.start {
    text-align: start;
}

.end {
    text-align: end;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Videos: */

#Video {
    width: 100%;
    height: auto;
}

.videorundeecken {
    border-radius: 22px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    width: 100%;
}

.rundeecken {
    border-radius: 22px;
    border: 0px;
}

.modal-body video {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Bilder responsive: */

img {
    width: 100%;
    height: auto;
}

.imgmodalvorschau {
    height: auto;
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 1rem;
    /*     border-radius: 25px; */
}

/* TODO: neu machen */

.imgmodal {
    height: auto;
    width: 100%;
}

/* Bilder Effekte: */

.clickme {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.clickme:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

/* Link: */

body {
    overflow-x: hidden;
    overflow-y: visible;
}

a:hover, a:active, a:focus {
    outline: none;
    text-decoration: none;
}

a {
    /*     font-weight: bold; */
    transition: 2s;
}

a:hover, a:active, a:focus {
    outline: none;
    text-decoration: none;
    transition: 2s;
}

/* Schriftart: */

h1, h2, h3, h4, h5, h6, a, p, b {
    /* font-family: "Roboto", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial sans-serif; */
    overflow: hidden;
}

/* Schriftgöße: */

h1 {
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h4 {
    display: block;
    font-size: 1em;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h5 {
    display: block;
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h6 {
    display: block;
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.section-header h3 {
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    position: relative;
    font-family: "Roboto", "Montserrat", sans-serif;
}

.section-header h4 {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    position: relative;
    font-family: "Roboto", "Montserrat", sans-serif;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 18px;
    padding-bottom: 60px;
    width: 80%;
}

/* Sektion: Logo: -> ist Individuell */

/* Sektion: Header: -> ist Individuell */

/* Sektion: Navigation: -> ist Individuell*/

/* Sektion: Navigation mobile: -> ist Individuell*/

.mobile-nav {
    position: fixed;
    /*     top: 0; */
    height: 200px;
    bottom: 0;
    z-index: 9998;
    overflow-y: auto;
    left: 100%;
    width: 100%;
    padding-top: 18px;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    padding: 10px 20px;
    font-weight: 500;
    font-weight: bold;
}

.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
    text-decoration: none;
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    margin: 18px 18px 0 0;
}

.mobile-nav-overlay {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

/* Sektion: TOP BAR: -> ist Individuell */

/* Sektion: Trenner: */

.trenner {
    opacity: 0.9;
    width: auto;
    height: 110px;
    padding: 20px;
    box-shadow: 0px -5px 5px rgb(0, 0, 0, 0.26), 0px 5px 5px rgba(0, 0, 0, 0.26);
}

/* Sektion: Intro: */

.datenliste {
    padding: 0;
    margin: 0;
}

.datenliste li {
    padding-left: 22px;
    text-indent: -22px;
}

.datenliste li>* {
    text-indent: 0;
}

/* Sektion: featuregallery: */

#featuregallery img {
    width: auto;
    height: auto;
    display: block;
}

#featuregallery {
    padding: 36px 0 20px 0;
}

#featuregallery figure.col {
    flex-grow: 0;
}

#featuregallery figcaption {
    text-align: center;
    font-size: 26px;
}

/* Sektion: Merkmale: */

/* löschen */

/* #Merkmale {
    padding: 80px 0;
} */

#Merkmale .box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 40px 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    cursor: -moz-pointer;
    cursor: -webkit-pointer;
    cursor: pointer;
}

#Merkmale .box:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#Merkmale .icon {
    margin: 0 auto 15px auto;
    padding-top: 12px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

#Merkmale .icon i {
    font-size: 36px;
    line-height: 1;
}

#Merkmale .box:hover i.Uhr {
    transform: rotate(360deg);
    transition: all 4s;
}

#Merkmale .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    font-style: italic;
}

#Merkmale .description {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: left;
    /*   display: none; */
}

#Merkmale .tabelle a {
    font-weight: bold;
}

#Merkmale .tabelle table {
    border-collapse: separate;
    border-spacing: 0.2em;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

#Merkmale .tabelle th, td {
    padding: 0.2em 0.5em;
    border-radius: 0.1em;
}

#Merkmale .tabelle td {
    font-style: italic;
    text-align: left;
}

#Merkmale .tabelle td:empty {
    box-shadow: none;
}

#Merkmale .tabelle th[scope=row] {
    text-align: right;
}

/* Sektion: Preise: */

#Preise .card .title {
    font-size: 1.5rem;
    display: inline-block;
    line-height: inherit;
}

#Preise .card .price {
    color: #6a6a6a;
    font-size: 1.4rem;
    font-weight: bold;
}

#Preise {
    padding: 80px 0;
}

#Preise a {
    color: #535074;
    font-weight: bold;
}

#Preise .card {
    border: 0;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    padding: 36px 0;
    position: relative;
    cursor: -moz-pointer;
    cursor: -webkit-pointer;
    cursor: pointer;
}

#Preise .imgbox {
    padding-left: 20px;
    padding-right: 20px;
}

#Preise .Stichpunkte {
    margin-left: -0px;
}

#Preise img {
    max-height: 200px;
    border: 0;
    border-radius: 10px;
    height: Auto;
    width: 100%;
}

/* TODO: Klasse umbennen*/

#Preise .card.Farbe-Preise {
    /* TODO */
    min-height: 0px;
}

#Preise .card.Farbe-zusätzliche-Angebote {
    /* TODO */
    min-height: 550px;
}

#Preise .card.Farbe-etc {
    /* TODO */
    min-height: 200px;
}

#Preise .card:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 0%;
    height: 10px;
    transition: 0.5s;
    border: 0;
    border-radius: 10px;
}

#Preise .card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

#Preise .card:hover:after {
    width: 100%;
}

#Preise .card .card-header {
    border-bottom: 0px;
    -moz-text-align-last: center;
    text-align-last: center;
}

#Preise .card .card-title {
    margin-bottom: 16px;
    border-radius: 20px;
}

#Preise .card .card-block {
    padding-top: 0;
    text-align: left;
    background-attachment: fixed;
    background-position: center center;
}

#Preise .card .card-block ul {
    list-style: none;
}

#Preise .card h3 {
    font-size: 32px;
    margin-bottom: 0px;
}

#Preise .card h3 .currency {
    font-size: 15px;
    position: relative;
    font-weight: 400;
    top: -20px;
    letter-spacing: 0px;
}

#Preise .card h3 .fußnote {
    font-size: 12px;
    position: relative;
    font-weight: 400;
    top: -25px;
    letter-spacing: 0px;
}

#Preise .card h3 .period {
    font-size: 16px;
    letter-spacing: 0px;
}

#Preise .card .list-group {
    margin-bottom: 15px;
}

#Preise .fußnote {
    font-size: 15px;
    position: relative;
    font-weight: 400;
    top: -10px;
    letter-spacing: 0px;
}

#Preise .beschreibungfußnote p {
    font-size: 15px;
}

.box:last-child {
    margin-right: 0;
}

/* Sektion: Kontakt: */

#Kontakt {
    background-size: cover;
    padding: 40px 0;
}

#Kontakt .title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

#Kontakt .kontakt:hover {
    text-decoration: underline;
}

#Kontakt .box {
    float: left;
    width: 44%;
    margin-right: 4%;
    padding-top: 10px;
    box-sizing: border-box;
}

.box:last-child {
    margin-right: 0;
}

#Kontakt .icon {
    text-align: right;
}

#Kontakt .textleft {
    text-align: left;
}

/* Selktion: Footer: */

footer {
    padding: 0px 0;
    text-align: center;
}

footer a {
    font-weight: bold;
    font-size: 1.1em;
}

footer span.copyright {
    font-size: 90%;
    line-height: 40px;
    text-transform: none;
}

footer ul.quicklinks {
    font-size: 90%;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: none;
}

/* Sektion: Modals:" */

.modal li b {
    color: #444;
}

.modal .title {
    font-size: 1.75rem;
}

.modal a {
    font-weight: bold;
    font-size: 1em;
}

.modal .report {
    height: 20vh;
    width: auto;
}

.modal {
    z-index: 9999;
}

.modal .modal-body {
    min-height: 60vh;
}

.modal-title {
    display: none;
}

.modal ul {
    list-style: none;
}

.modal-header {
    height: 20px;
}

.modal-header h1 {
    font-size: 20px;
}

.modal-footer {
    height: 20px;
}

.modal-footer .btn {
    height: 23px;
    line-height: 21px;
    padding: 0px 10px 0px 10px;
    margin-top: 3px;
    margin-right: -13px;
}

/*LISTE mit Icons*/

/*TODO: ICONS in CSS */

.Modal-Liste {
    width: auto;
}

.Modal-Liste ul {
    margin-left: -15px;
}

.Modal-Liste ul li {
    list-style-type: none;
    margin-bottom: 5px;
    display: flex;
}

.Modal-Liste ul li i {
    margin-right: 10px;
    margin-top: 5px;
}

.Modal-Liste ul li a {
    font-size: 1em;
}

.Modal-Liste ul li p {
    margin: 0;
}

.Modal-Liste ul li b {
    font-size: 1.1em;
}

.Modal-Liste ul li .beispiel {
    font-size: 1em;
    list-style-type: none;
    margin-bottom: 5px;
    /* display: flex; */
}

.Modal-Liste ul li .beispiel {
    margin-top: -10px;
    margin-left: 30px;
    font-style: italic;
}

/* Feature: back-to-top:*/

.Kontaktaufnahme {
    position: fixed;
    width: 150px;
    height: 54px;
    text-align: center;
    line-height: 1.2;
    font-size: 12px;
    border-radius: 18px;
    right: 60px;
    bottom: 26px;
    z-index: 12;
}

.Kontaktaufnahme a {
    font-weight: bold;
}

.Kontaktaufnahme .Kontaktaufnahme i {
    padding-top: 12px;
}

.Kontaktaufnahme i .uniqueword {
    font-size: 18px;
}

i:hover .uniqueword {
    transition: all 2s;
}

.back-to-top {
    position: fixed;
    width: 76px;
    height: 76px;
    text-align: center;
    line-height: 4;
    font-size: 18px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
}

.fade-in-on-scroll {
    display: none;
}

/* @media (max-width:500px) {
    .back-to-top {
        display: none;
    }
    .Kontaktaufnahme {
        display: none;
    }
} */