/* :root {} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-family: "Nunito", sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

html {
    /* border: 3px solid lawngreen; */

    scroll-behavior: smooth;
    margin: 0;
    overflow: hidden;
}

body {
    /* border: 3px solid red; */
    /* position: relative; */
    margin: 0;
    /* height: 100vh; */
    overflow: hidden;
    /* height: 100%; */
}

/* .body::-webkit-scrollbar {
    width: 5px;
}

.body::-webkit-scrollbar-track {
    background-color: rgb(70, 70, 70);
    border-radius: 50px;
}

.body::-webkit-scrollbar-thumb {
    background-color: rgba(240, 240, 240, 0.5);
    border-radius: 50px;
} */
.body::-webkit-scrollbar {
    display: none;
}

.display-contact {
    /* border: 3px solid red; */
    background-color: rgba(0, 0, 0, 0.7);
    background-color: rgb(75, 135, 190);
    color: rgb(35, 55, 110);
    position: absolute;
    top: 150px;
    /* top: var(--element-height); */

    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */

    height: 0px;


    margin-top: auto;

    opacity: 1;
    z-index: 1;
    /* display: none; */

    transition: 0.3s;
}
.display-contact.show {
    height: 100px;
}
.display-contact.show-big {
    height: calc(100% - 100px);
}

.display-contact svg {
    /* border: 3px solid green; */
    margin-top: -68.5px;
    margin-top: -60px;
    cursor: pointer;
    transition: 0.2s;
}

.display-contact svg:first-of-type.show {
    /* border: 3px solid red; */
    margin-top: -52px;
    width: 150px;
    height: 60px;
}

.display-contact-arrow {
    /* border: 3px solid yellow; */
    color: white;

    position: absolute;
    top: 20px;
    right: 0;
    bottom: 0;
    left: 0;

    width: 23px;
    margin: 0 auto;
    /* height: 100px; */
}
.display-contact-arrow.show {
    top: 30px;
}

.display-contact-child-box,
.display-contact-child {
    /* border: 3px solid purple; */
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: fit-content;
    margin: auto;
    padding: 0.5rem;
    height: fit-content;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.display-contact-child-box {
    /* border: 3px solid purple; */
    flex-direction: column;
    width: 90%;
    max-width: 300px;
    cursor: inherit;
}

.display-contact-child-box.show {
    opacity: 1;
    visibility: inherit;
    margin: 8rem auto 0;
}
.display-contact-child.show {
    opacity: 1;
    visibility: inherit;
}
.display-contact-child.show-big {
    opacity: 1;
    visibility: inherit;
    margin: 4rem auto 0;

    display: none;
}

.display-contact-child:hover {
    scale: 1.02;
    transition: 0.2s;
}
.display-contact-child svg {
    /* border: 3px solid lawngreen; */
    height: fit-content;
    margin: auto 0;
    margin-right: 1rem;

    /* width: 15px; */
}
.display-contact-child p {
    /* border: 3px solid red; */

    font-size: 1.1rem;
}

.display-contact-child-box-parent {
    /* border: 3px solid red; */
    width: 100%;
}

.pervida-logo-container {
    /* border: 3px solid green; */
    position: relative;
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin-top: 0.3rem;
    /* padding: 0.3rem; */
    padding-left: 1rem;
}

.pervida-logo {
    /* border: 3px solid red; */
    width: 100%;
    max-width: 220px;
}

.pervida-logo-container div {
    /* border: 3px solid yellow; */
    background-color: rgba(75, 135, 190, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

@media (min-height: 675px) {
    .pervida-logo-container {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (min-height: 700px) {
    .pervida-logo-container {
        width: 100%;
        margin-top: 2rem;
    }
}


.display-contact-child-box-element {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.display-contact-child-box-element-svg-container {
    /* border: 3px solid yellow; */
    background-color: white;
    color: rgb(35, 55, 110);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    margin: 0;
    /* padding: 0.5rem; */
    border-radius: 50%;
    /* margin-bottom: 1rem; */
    box-shadow: 0 0 5px rgb(35, 55, 110);
    box-shadow: 0 0 3px rgb(70, 70, 70);
}
.display-contact-child-box-element svg {
    /* border: 3px solid green; */
    margin: 0;
}
.display-contact-child-box-element a,
.display-contact-child-box-element .contact-form-link {
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.display-contact-child-box-element a:hover,
.display-contact-child-box-element p:hover {
    color: rgb(35, 55, 110);
    scale: 1.02;
    transition: 0.1s;
}

.display-contact-close {
    /* border: 3px solid lawngreen; */
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: fit-content;
    margin: auto;
    padding: 0.5rem;
    height: fit-content;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: rotate(45deg);
    transition: 0.5s;
}
.display-contact-close.show {
    opacity: 1;
    visibility: inherit;
    transform: rotate(225deg);
    transition: 0.5s;
    margin: 2rem auto 0;
}

.display-contact-close svg {
    margin: 0;
}

.display-contact-close svg:hover {
    scale: 1.2;
    transition: 0.2s;
}

@media (min-width: 700px) {
    .display-contact-child-box-element a,
    .display-contact-child-box-element .contact-form-link {
        font-size: 1.1rem;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}


.header {
    /* border: 3px solid red; */
    background-color: whitesmoke;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: fit-content;
    height: 100px;
    position: fixed;

    padding: 0.5rem 3%;
    z-index: 9999;

    box-shadow: 0 0 15px rgb(170, 170, 170);
    
    /* display: none; */
}

.header-title {
    /* border: 3px solid purple; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.7rem;

    cursor: pointer;
}

.header .header-title-img {
    /* border: 3px solid blue; */
    display: block;
    width: 100%;
    max-width: 190px;
    /* max-height: 100%; */
    object-fit: cover;
    /* padding-right: 0.5rem; */
}

.header-navigation-bottom,
.header-navigation {
    /* border: 3px solid orangered; */
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;

    display: none;
}

.header-navigation {
    height: 35.2px;
}

.header-navigation-bottom {
    /* border: 3px solid yellow; */
    position: absolute;
    top: 95%;
    transition: 0.2s;

    align-items: start !important;
    /* display: none; */
    display: none !important;
}
.header-navigation-bottom .nav-leistung {
    /* border: 3px solid green; */
}
.header-navigation-bottom.show {
    display: flex !important;
}

.header-navigation div {
    /* border: 3px solid purple; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
}

.header-navigation p {
    /* border: 3px solid green; */
    font-size: 1rem;
    /* font-weight: 500; */

    width: fit-content;
    /* padding: 0.5rem 1.5rem; */
    padding: 0.5rem 0.8rem;
}

.header-navigation-bottom .nav-contact,
.header-navigation-bottom .nav-referenz,
/* .header-navigation-bottom .nav-koop, */
/* .header-navigation-bottom .nav-leistung, */
.header-navigation-bottom .nav-team,
.header-navigation-bottom .nav-home {
    visibility: hidden;
    opacity: 0;
}

.header-navigation-bottom .nav-koop,
.header-navigation-bottom .nav-leistung {
    cursor: inherit;
}

.header-navigation .nav-koop.show,
.header-navigation .nav-leistungen.show {
    scale: 1.01;
    background-color: rgb(75, 135, 190);
    color: white;
}

.header-navigation .nav-koop p,
.header-navigation .nav-leistungen p {
    padding-right: 0.3rem;
}

.header-navigation svg {
    /* border: 3px solid blue; */
    height: fit-content;
    margin-right: 1rem;
    transition: 0.1s;
}
.header-navigation svg.show {
    transform: rotate(180deg);
}

@media (min-width: 1100px) {
    .header-navigation p {
        padding: 0.5rem 1.2rem;
    }
}

@media (min-width: 1200px) {
    .header-navigation p {
        font-size: 1.1rem;
        padding: 0.2rem 1.5rem;
    }
}

@media (min-width: 1250px) {
    .header-navigation p {
        font-size: 1.1rem;
        padding: 0.2rem 2rem;
    }
    .header-navigation svg {
        margin-right: 2rem;
    }
}

.header-navigation .nav-contact:hover,
.header-navigation .nav-ref:hover,
/* .header-navigation .nav-koop:hover, */
.header-navigation .nav-team:hover,
.header-navigation .header-nav-koop:hover,
.header-navigation .header-nav-leistungen:hover,
.header-navigation .nav-home:hover {
    scale: 1.01;
    background-color: rgb(75, 135, 190);
    height: fit-content;
    margin: auto 0;
    color: white;
    transition: 0.2s;
    height: 35.2px;
}
.header-navigation .header-nav-koop:hover,
.header-navigation .header-nav-leistungen:hover {
    height: 35.2px;
}

.header-navigation .header-navigation-bottom:hover {
    scale: inherit;
    background-color: transparent;
    color: inherit;
    transition: inherit;
    cursor: inherit;
}

.side-news,
.header-news {
    /* border: 3px solid red; */
    /* background-color: rgb(35, 55, 110); */
    /* background-color: rgb(35, 100, 170); */
    /* background-color: rgb(255, 255, 255); */
    /* color: rgb(35, 55, 110); */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 0.7rem;
    /* padding: 0.7rem 1rem; */
    
    /* box-shadow: 0 0 3px rgb(75, 135, 190); */
    /* box-shadow: 0 0 2px rgb(35, 55, 110); */
    /* box-shadow: 0 0 4px rgb(70, 70, 70); */

    display: none;
    transition: 0.2s;
}

.header-news-container {
    /* border: 3px solid green; */
    max-width: 100%;
    margin-right: 1rem;
}

.header-news-container img {
    max-width: 100%;
    max-height: 80px;
    object-fit: cover;
    display: block;
}

.header-news-container-wefox {
    border-radius: 10px;

    margin: 0;
    margin-left: 1rem;

    cursor: pointer;
    box-shadow: 0 0 4px rgb(70, 70, 70);
    overflow: hidden;
}


@media (min-width: 1100px) {
    .header-news-container {
        margin-right: 1.4rem;
    }
    
    .header-news-container-wefox {
        margin: 0;
        margin-left: 1.4rem;
    }
}

@media (min-width: 1250px) {
    .header-news-container {
        margin-right: 1.6rem;
    }
    
    .header-news-container-wefox {
        margin: 0;
        margin-left: 1.6rem;
    }
}

@media (min-width: 1400px) {
    .header-news-container {
        margin-right: 2.2rem;
    }
    
    .header-news-container-wefox {
        margin: 0;
        margin-left: 2.2rem;
    }
}


.side-news {
    /* border: 1px solid rgb(75, 135, 190); */
    width: 100%;
    /* background-color: rgb(225, 225, 225); */
    /* display: flex; */
    /* max-width: 200px; */
    max-width: fit-content;
    /* margin: 1.5rem auto; */
    /* height: 36.8px; */

    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
}

.header-news-container-wefox:hover {
    scale: 1.05;
    /* background-color: rgb(75, 135, 190); */
    /* color: white; */
    /* border: 2px solid rgb(75, 135, 190); */
    box-shadow: 0 0 2px rgb(70, 70, 70);
    /* box-shadow: none; */
    transition: 0.2s;
}

.header-news-container-side {
    /* border-bottom: 1pt solid rgba(70, 70, 70, 0.3); */
    margin: 0.5rem;
    margin-bottom: 1.7rem;
}

.header-news-container-side:last-child {
    margin: 0;
}

.side-news p,
.header-news p {
    font-weight: 500;
    margin-left: 0.5rem;
}

.side-news img {
    max-height: 65px;
}

.top {
    /* border: 3px solid orangered; */
    /* background-color: var(--gold); */
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0.5rem;

    width: 100%;

}

.bar {
    /* border: 3px solid red; */
    width: 30px;
    width: 25px;
    height: 3px;
    /* background-color: var(--black); */
    background-color: black;
    border-radius: 5px;
    transition: all 0.3s ease-in;
}

#bar2,
#bar3 {
    margin-top: 5px;
}

a {
    /* color: var(--gold); */
    text-decoration: none;
}

/* a, button{
    cursor: pointer;
} */

.navigation {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(30, 30, 30);
    background-color: white;
    position: fixed;
    top: 100px;

    /* top: var(--top-margin); */

    left: -500px;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow: scroll;
}

.nav-shadow {
    /* border: 3px solid blue; */
    /* background: linear-gradient(to bottom, rgb(220, 220, 220), transparent); */
    background-color: whitesmoke;
    position: relative;
    top: -20px;
    width: 100%;
    height: 20px;

    /* border-radius: 0 0 10px 10px; */
    box-shadow: 0 0 15px rgb(170, 170, 170);
    /* box-shadow: 0 0 15px red; */
    z-index: 999;
}

.navigation::-webkit-scrollbar {
    display: none;
}

.nav {
    /* border: 3px solid green; */
    position: absolute;
    width: 80%;
    max-width: 250px;
    padding: 30px 0;

}

.nav-inner-child-koop,
.nav-inner-child-leistung {
    /* border: 3px solid yellow; */
    background-color: white;
    position: absolute;
    width: 80%;
    height: 100%;
    max-width: 250px;
    padding: 30px 0;

    left: -150%;
}
.nav-inner-child-koop.show,
.nav-inner-child-leistung.show {
    left: auto;
}

.nav-back-two,
.nav-back-one,
.nav-back {
    /* border: 3px solid blue; */
    width: fit-content;
    padding: 0.2rem;
    /* margin-bottom: 1rem; */
    cursor: pointer;
}

.nav-back-two:hover,
.nav-back-one:hover,
.nav-back:hover {
    color: rgb(50, 70, 130);
    scale: 1.02;
    transition: 0.2s;
}

.nav-box-one,
.nav-box-two,
.nav-box-three,
.nav-box-four,
.nav-box-five,
.nav-box-six,
.nav-box-seven {
    /* border: 3px solid red; */
    display: none;
}
.nav-box-one.show,
.nav-box-two.show,
.nav-box-three.show,
.nav-box-four.show,
.nav-box-five.show,
.nav-box-six.show,
.nav-box-seven.show {
    display: inherit;
}

.nav-box-one a {
    color: black;
}

.nav-child,
.nav-list-child {
    /* border: 3px solid purple; */
    /* color: var(--gold); */
    /* color: black; */
    /* color: whitesmoke; */
    text-align: left;
    /* text-transform: uppercase; */
    list-style-type: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 30px;
    border-bottom: 1pt solid rgba(70, 70, 70, 0.3);
    cursor: pointer;
}
.nav-child-kfz,
.nav-child-contact { 
    border: none;
}

/* .nav-child.show-border {
    background: linear-gradient(0deg, rgba(30, 65, 160, 0.2), rgba(245, 245, 245, 0.03) 35%, transparent);
    border-bottom: 3px solid rgb(30, 65, 160);
} */

/* zusammen mit mouseover function over navChild in js:1556 */

.nav-child:hover {
    transition: 0.2s;
    scale: 1.01;
    /* font-weight: bold; */
    border-bottom: 2px solid rgb(30, 65, 160);
    border-bottom: 2px solid rgb(50, 70, 130);
    border-bottom: 2px solid rgb(65, 80, 160);
    color: rgb(50, 70, 130);
    color: rgb(65, 80, 160);

    /* color: rgb(35, 50, 90); */

    /* border-bottom: 3px solid rgb(0, 80, 52); */
}


.hamburger.bar {
    /* border: 3px solid blue; */
    /* position: fixed; */
}

.hamburger {
    background: 0;
    border: 0;
    /* border: 1px solid red; */
    cursor: pointer;
}
.hamburger:hover {
    scale: 1.02;
    transition: 0.2s;
}

.navigation.active {
    transition: 0.3s;
    left: 0;
}

.hamburger.open #bar1 {
    /* background-color: var(--gold); */
    transform: rotate(45deg) translate(5.4px, 6px);
}

.hamburger.open #bar2 {
    background-color: transparent;
    transform: translateX(-30px);
}

.hamburger.open #bar3 {
    /* background-color: var(--gold); */
    transform: rotate(-45deg) translate(5.4px, -6px);
}

@media (min-width: 400px) {
    .top {
        padding: 1rem;
    }
}

@media (min-width: 450px) {
    .navigation {
        width: 330px;
    }

    .nav {
        width: 220px;
    }
}

@media (min-width: 1000px) {
    .header-navigation {
        display: flex;
    }

    .header-news {
        display: flex;
    }

    .top {
        display: none;
    }

    .navigation {
        display: none;
    }
}
 
.header-navigation .header-bottom-parent-two,
.header-navigation .header-bottom-parent {
    /* border: 3px solid red; */
    left: 0;
    right: 0;
    bottom: 0;
    font-weight: 500;
    /* font-size: 1.1rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 100%;

    transition: 0.2s;

    /* display: none; */
    visibility: hidden;
    opacity: 0;
}

.header-navigation .header-bottom-parent-two.show,
.header-navigation .header-bottom-parent.show {
    /* display: flex; */
    visibility: inherit;
    opacity: 1;
    cursor: pointer;
}

/* .header-bottom-child {
    border: 3px solid yellow;
    color: white;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 14px 0;
    cursor: pointer;
} */

.header-bottom-child:hover {
    scale: 1.02;
    /* transition: 0.1s; */
}

.header-nav-child-container-two,
.header-nav-child-container {
    /* border: 3px solid lawngreen; */
    /* border-top: 3px solid rgb(50, 110, 150); */
    /* background-color: rgba(255, 255, 255, 0.9); */
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: bold;
    width: 120%;
    /* margin-top: 3px; */
    padding: 0;
    padding-top: 0.5rem;
    padding-top: 2.2rem;
    /* border-radius: 0 0 7px 7px; */
    /* border-radius: 0 0 3px 3px; */

    z-index: 99;

    display: none;
}
.header-nav-child-container-two.show,
.header-nav-child-container.show {
    display: flex;
}

.header-nav-child {
    /* border: 3px solid black; */
    /* color: white; */
    background-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(225, 225, 225, 0.9);
    background-color: rgb(125, 125, 125);
    background-color: rgb(120, 120, 120);
    background-color: rgb(70, 70, 70);
    background-color: rgb(75, 135, 190);
    background-color: rgb(50, 110, 150);



    color: white;
    /* background-color: rgb(50, 110, 150); */


    text-align: center;
    font-size: 1rem;
    /* font-size: 0.9rem; */
    font-weight: 400;
    width: 100%;
    padding: 0.7rem 0.2rem;
    /* margin-top: 0.2rem; */
    /* margin-top: 4px; */
    border-bottom: 1pt solid whitesmoke;
    border-radius: 0 !important;

    letter-spacing: 0.2px;
    cursor: pointer;
}

.header-nav-child-koop {
    padding: 0.7rem;
}

.header-nav-child-koop b {
    font-weight: 400;
    display: inline-block;
}

.header-nav-child-koop-side b {
    font-weight: 500;
}

.header-nav-child a {
    color: white;
}

.header-nav-child:first-of-type {
    /* border-radius: 5px 5px 0 0 !important; */
}
.header-nav-child:last-of-type {
    border: none;
    border-radius: 0 0 5px 5px !important;
}

.header-nav-child-box {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: column;

    display: none;
}
.header-nav-child-box.show {
    display: flex;
}

.header-nav-child-box .header-nav-child {
    background-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(170, 170, 170, 0.9);
    color: white;
    font-weight: 400;
}

.header-nav-child:hover {
    color: rgb(40, 40, 140);
    color: rgb(50, 70, 130);
    color: rgb(65, 80, 160);
    color: white;
    background-color: rgb(50, 110, 150);
    background-color: rgb(75, 135, 190);
    /* background-color: rgb(75, 145, 200); */

    /* background-color: rgba(255, 255, 255, 0.9); */

    scale: 1.015;
    transition: 0.2s;
    /* font-weight: bold; */
}


.main {
    /* border: 3px solid lawngreen; */
    position: relative;
    /* background-color: white; */
    /* height: 100%; */
    /* height: fit-content; */

    /* height: fit-content; */
    /* min-height: 100vh; */
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;

    /* overflow-y: scroll; */

    z-index: 1;

    /* display: none; */
}

.background-image-container {
    /* border: 3px solid yellow; */
    position: absolute;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    width: 100%;
    /* height: 100vh; */
    height: calc(100vh - 100px);
    /* height: 100%; */

    /* transform-style: preserve-3d; */
    z-index: 1;
    /* position: fixed; */

    /* display: none; */
}

.background-image-container.hide {
    display: none;
}

.background-image-container img {
    /* border: 3px solid red; */
    display: block;
    width: 100%;
    height: 100%;
    /* height: calc(100vh - 100px); */
    /* max-height: 1150px; */

    object-fit: cover;
    
    
    /* transform: translateZ(-10px) scale(2); */
    
}
.background-image-container .background-image-one {
    object-position: center 30%;
}
.background-image-container .background-image-one.hide {
    display: none;
}
.background-image-container .background-image-two {
    display: none;
}
.background-image-container .background-image-two.show {
    display: block;
}


.main::-webkit-scrollbar {
    width: 5px;
}

.main::-webkit-scrollbar-track {
    background-color: rgb(70, 70, 70);
    border-radius: 50px;
}

.main::-webkit-scrollbar-thumb {
    background-color: rgba(240, 240, 240, 0.5);
    border-radius: 50px;
}

.main-home {
    /* border: 3px solid purple; */
    position: relative;

    /* margin-top: 65vh; */

    /* transform-style: preserve-3d; */
    z-index: 999;
    
    /* opacity: 0; */
    /* display: none; */
}

.main-home-start {
    /* border: 3px solid blue; */
    background-color: rgba(0, 0, 0, 0.6);
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 0 10% 22.5vh;
    /* margin-top: 157px; */
    width: 100%;
    height: calc(100vh - var(--element-height));
    height: 100vh;
    /* height: calc(100vh - 150px); */
    /* max-height: calc(1150px - var(--element-height)); */

    /* transform-style: preserve-3d; */
    z-index: 999;
    
    /* transform: translateZ(-10px) scale(2); */
    /* display: none; */
}

.main-home .bild {
    border: 3px solid red;
    padding: 2rem;
    background-color: white;
    position: absolute;
    top: 100px;
    bottom: 0;
    right: 0;
    left: 0;
}
.main-home .bild img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.main-home .bild div {
    border: 3px solid yellow;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.main-home-start-header-one {
    color: rgb(35, 55, 110);
    color: rgb(75, 135, 190);
    color: rgb(85, 150, 205);
    /* color: white; */
    /* text-align: center; */
    font-size: 3rem !important;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 3px black;
    transform: translateY(100vh);

    animation: start-animate-header 1.5s ease-in-out 0s forwards;
}
.main-home-start-header-two {
    color: white;
    /* text-align: center; */
    font-size: 1.2rem !important;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 0 7px black;
    transform: translateY(100vh);

    animation: start-animate-header 1.5s ease-in-out 0s forwards;
}
.main-home-start-header-three {
    color: white;
    /* color: rgb(35, 55, 110); */
    /* color: rgb(75, 135, 190); */
    /* text-align: center; */
    max-width: 300px;
    font-size: 2rem !important;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 0 3px black;
    /* transform: translateY(100vh); */
    opacity: 0;
    visibility: hidden;

    animation: start-animate-header-three 1s ease-in-out 1.3s forwards;
}

@keyframes start-animate-header {
    100% {
        transform: translateY(0);
    }
}
@keyframes start-animate-header-three {
    100% {
        opacity: 1;
        visibility: inherit;
    }
}

.main-home-info-ref,
.main-home-info {
    /* border: 3px solid red; */
    background-color: white;
    /* border: 1px solid white; */
    text-align: center;
    padding-top: 1rem;
    /* padding-bottom: 3rem; */
    /* display: none; */
}

.main-home-info-ref {
    /* border: 3px solid red; */
    scroll-margin-top: 6rem;
    padding-bottom: 3rem;
}

.main-home-info-ref h1,
.main-home-info h1 {
    /* border: 3px solid red; */
    font-size: 1.7rem;
    margin: 2rem 0;
    padding: 0 1rem;
    letter-spacing: 0;
}

.main-home-info-ref h2,
.main-home-info h2 {
    /* border: 3px solid red; */
    color: rgb(50, 70, 130);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    /* text-decoration: underline; */
    /* margin: 2rem 0; */
    letter-spacing: 1px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.main-home-info-ref .categories,
.main-home-info .categories {
    /* border: 3px solid green; */
    background-color: rgba(50, 70, 130, 0.1);
    background-color: rgb(220, 240, 250);
    background-color: rgba(220, 240, 250, 0.5);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem 0.8rem 2rem;
    margin-bottom: 0.5rem;
}

.main-home-info-ref .categories ul,
.main-home-info .categories ul {
    /* border: 3px solid yellow; */
    display: flex;
    flex-direction: column;
    /* justify-content: start; */
    /* align-items: start; */
    width: 100%;
    max-width: 460px;
    margin-left: 1rem;
    line-height: 1.5;
}

.main-home-info-ref .categories li,
.main-home-info .categories li {
    /* border: 3px solid purple; */
    width: fit-content;
    text-align: start;
    margin: 0 0 1.2rem 1rem;
    list-style-position: outside;
    font-weight: 500;
    cursor: pointer;
}

.main-home-info-ref .categories a,
.main-home-info .categories a {
    /* border: 3px solid red; */
    color: black;
    font-weight: 500;
    padding: 0.2rem 0;
}

.main-home-info-ref .categories a:hover,
.main-home-info-ref .categories li:hover,
.main-home-info .categories a:hover,
.main-home-info .categories li:hover {
    color: rgb(50, 70, 130);
    scale: 1.01;
    transition: 0.2s;
}

.main-home-info-ref p,
.main-home-info p {
    /* border: 3px solid red; */
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;

    line-height: 1.8;
}

.main-home-info-ref p b,
.main-home-info p b {
    color: rgb(50, 70, 130);
    font-weight: 500;
}

.main-home-info-ref p .p-bold,
.main-home-info p .p-bold {
    color: black;
    font-weight: 600;
}
.main-home-info-ref p .p-bold-white,
.main-home-info p .p-bold-white {
    color: white;
    font-weight: 500;
}

.main-home-info-ref .gutachten-btn,
.main-home-info .gutachten-btn {
    border: 2px solid rgb(65, 80, 160);
    border: 2px solid rgb(50, 110, 150);
    border: 2px solid rgb(50, 70, 130);
    color: rgb(65, 80, 160);
    color: rgb(50, 110, 150);
    color: rgb(50, 70, 130);
    font-weight: bold;
    width: fit-content;
    min-width: 250px;
    margin: 2.5rem auto 0;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
}

.main-home-info-ref .gutachten-btn:hover,
.main-home-info .gutachten-btn:hover {
    background-color: rgb(65, 80, 160);
    background-color: rgb(50, 110, 150);
    background-color: rgb(50, 70, 130);
    color: white;
    font-weight: 500;
    scale: 1.03;
    /* transition: 0.1s; */
}

.main-home-info .vergleichsrechner {
    background-color: rgba(220, 240, 250, 0.5);
    padding: 3.5rem 0;
}

.main-home-info .vergleichsrechner h2 {
    color: black;
    line-height: 1.8;
}

.main-home-info .vergleichsrechner h2 b {
    color: rgb(50, 70, 130);
    font-weight: 600;
    text-transform: capitalize;
}

.main-home-info .vergleichsrechner svg {
    color: rgb(50, 70, 130);
    /* height: fit-content; */
    margin: 0 0.2rem -0.1rem;
}

.main-home-info .vergleichsrechner div {
    /* border: 3px solid red; */
    background-color: white;
    position: relative;
    width: 90%;
    height: fit-content;
    max-width: 250px;
    margin: 2.5rem auto 1rem;
    padding: 1rem 0;
    border-radius: 7px;
    box-shadow: 0 0 7px rgb(130, 130, 130);
    cursor: pointer;
    transition: 0.2s;
}

.main-home-info .vergleichsrechner div:hover {
    scale: 1.03;
    transition: 0.2s;
}

.main-home-info .vergleichsrechner div img {
    /* border: 3px solid green; */
    max-width: 70%;
}

.main-home-info .vergleichsrechner div a {
    /* border: 3px solid green; */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.main-home-end {
    /* border: 3px solid green; */
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
    /* height: calc(100vh - var(--element-height)); */
    height: 50vh;

    /* transform-style: preserve-3d; */
    z-index: -1;
    
    /* transform: translateZ(-10px) scale(2); */
    /* display: none; */
}

.gutachten-section {
    /* border: 3px solid yellow; */
    background-color: white;
    width: 100%;
}

.gutachten-section-box {
    /* border: 3px solid green; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1rem 0;
}

.gutachten-section h2 {
    font-size: 1.25rem;
    font-weight: bold;
    font-weight: 500;
    color: rgb(50, 70, 130);
    /* color: rgb(65, 80, 160); */
}

.gutachten-section img {
    /* border: 3px solid red; */
    max-width: 55px;
    object-fit: cover;
    display: block;
    margin: 1.5rem 0 0;
}

.gutachten-section svg {
    margin: 1.5rem 0 0;
}

.gutachten-section p {
    /* border: 3px solid red; */
    /* background-color: white; */
    text-align: center;
}

.gutachten-section-bottom {
    /* border: 3px solid yellow; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1200px;

    flex-wrap: wrap;

    /* max-width: 900px; */
}

.gutachten-section-child {
    /* border: 3px solid green; */
    background-color: rgb(235, 235, 235);
    background-color: rgb(245, 245, 245);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    flex-basis: 350px;
    flex-grow: 1;

    min-height: 175px;
    width: 90%;
    max-width: 400px;
    padding: 1rem;
    margin: 0 0.5rem 1.5rem;
    /* margin-bottom: 3rem; */
    border-radius: 7px;
    box-shadow: 0 0 3px rgb(150, 150, 150);
    box-shadow: 0 0 3px rgb(170, 170, 170);

    cursor: pointer;
}
.gutachten-section-child:hover {
    scale: 1.03;
    transition: 0.2s;
}

.gutachten-section-child h2 {
    text-transform: capitalize;
    padding: 0 0.5rem;
}
.gutachten-section-beratung-bottom {
    /* border: 3px solid lawgreen; */
    /* margin-bottom: 1.5rem; */
    
    /* display: none; */
}

.gutachten-section-privat {
    /* border: 3px solid lawgreen; */
    /* margin: 0 0.8rem 0; */
}

.gutachten-section-gericht {
    /* border: 3px solid orangered; */
    /* margin: 0 0.8rem 3rem; */
}

.gutachten-section-box p {
    /* border: 3px solid red; */
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;

    line-height: 1.7;
}

.gutachten-section-box p b {
    color: rgb(50, 70, 130);
    font-weight: 500;
}

.gutachten-section-box p .p-bold {
    color: black;
    font-weight: bold;
}

.gutachten-section-box .gutachten-btn {
    border: 2px solid rgb(65, 80, 160);
    border: 2px solid rgb(50, 110, 150);
    border: 2px solid rgb(50, 70, 130);
    color: rgb(65, 80, 160);
    color: rgb(50, 110, 150);
    color: rgb(50, 70, 130);
    font-weight: bold;
    width: fit-content;
    margin: 2.5rem auto 0;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
}

.gutachten-section-box .gutachten-btn:hover {
    background-color: rgb(65, 80, 160);
    background-color: rgb(50, 110, 150);
    background-color: rgb(50, 70, 130);
    font-weight: 500;
    color: white;
    scale: 1.03;
    /* transition: 0.1s; */
}

@media (min-width: 350px) {
    .main-home-info-ref,
    .main-home-info {
        padding-top: 1.5rem;
        /* padding-bottom: 3rem; */
    }

    .main-home-info-ref h1,
    .main-home-info-ref h2,
    .main-home-info-ref p,
    .main-home-info h1,
    .main-home-info h2,
    .main-home-info p,
    .gutachten-section-box p {
        padding: 0 1.5rem;
    }
}

@media (min-width: 650px) {
    .main-home-start-header-three {
        max-width: inherit;
    }

    .gutachten-section-box {
        padding: 3rem 1rem 1.5rem;
    }

    .gutachten-section-bottom {
        /* flex-direction: row; */
        /* align-items: center; */
        /* justify-content: space-evenly; */
    }

    .gutachten-section-child {
        /* max-width: 330px; */
    }

    .gutachten-section-privat {
        /* margin: 0 0.8rem 3rem; */
    }
}

@media (min-width: 700px) {
    .main-home-start-header {
        font-size: 2.2rem;
    }

    .gutachten-section-child {
        margin: 0 1rem 2rem;
    }
}

@media (min-width: 900px) {
    .main-home-info-ref h1,
    .main-home-info h1 {
        font-size: 2rem;
    }

    .main-home-info-ref h2,
    .main-home-info h2 {
        font-size: 1.4rem;
    }

    .main-home-info-ref .categories div,
    .main-home-info .categories div {
        font-size: 1.1rem;
    }

    .main-home-info-ref .categories,
    .main-home-info .categories {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: start;
        padding: 3.5rem 1.5rem 2.3rem 4rem;
    }
    
    .main-home-info-ref p,
    .main-home-info p,
    .gutachten-section-box p {
        font-size: 1.1rem;
    }

    .gutachten-section {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .gutachten-section-child {
        /* max-width: 330px; */
    }

    .gutachten-section-privat {
        /* border: 3px solid lawgreen; */
        /* margin: 0 0 1.5rem; */
    }
    
    .gutachten-section-gericht {
        /* border: 3px solid orangered; */
        /* margin: 0 0 1.5rem; */
    }

}

@media (min-width: 1100px) {
    .gutachten-section-beratung-top {
        /* display: none; */
    }
    .gutachten-section-beratung-bottom {
        /* display: flex; */
    }
}

@media (min-width: 1200px) {
    .gutachten-section {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .gutachten-section-child {
        /* max-width: 370px; */
    }
}

.main-leistungen {
    /* border: 3px solid purple; */
    position: relative;
    background-color: white;
    background-color: rgba(220, 240, 250, 0.5);
    background-color: rgba(220, 240, 250, 1);
    /* background-color: rgb(110, 120, 125); */
    /* background-color: rgb(55, 55, 55); */

    padding-top: 100px;

    display: none;
}

.main-leistungen-container {
    /* border: 3px solid lawngreen; */
    padding: 0 1rem;
    scroll-margin-top: 100px;
}

.main-leistungen-container-header {
    /* border: 3px solid lawngreen; */
    background-color: rgb(35, 100, 170);
    background-color: rgb(75, 135, 190);
    color: white;
    margin-bottom: 3rem;
    padding: 1.5rem 1rem;
}

.main-leistungen-container h2 {
    /* border: 3px solid red; */
    /* color: rgb(35, 100, 170); */
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0 1rem;
    text-align: center;
}

.main-leistungen-container p {
    /* border: 3px solid red; */
    max-width: 970px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    /* text-align: justify; */

    line-height: 1.8;
}
.main-leistungen-container .p-big {
    padding: 0 0.7rem;
    max-width: 1020px;
}

.main-leistungen-container p b {
    color: rgb(50, 70, 130);
    font-weight: 500;
}

.main-leistungen-container p .p-bold {
    color: black;
    font-weight: bold;
}

.main-leistungen-container .gutachten-btn {
    border: 2px solid rgb(65, 80, 160);
    border: 2px solid rgb(50, 110, 150);
    border: 2px solid rgb(50, 70, 130);
    color: rgb(65, 80, 160);
    color: rgb(50, 110, 150);
    color: rgb(50, 70, 130);
    font-weight: bold;
    width: fit-content;
    margin: 2.5rem auto 0;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
}

.main-leistungen-container .gutachten-btn:hover {
    background-color: rgb(65, 80, 160);
    background-color: rgb(50, 110, 150);
    background-color: rgb(50, 70, 130);
    font-weight: 500;
    color: white;
    scale: 1.03;
    /* transition: 0.1s; */
}

.main-leistungen-team {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-leistungen-team-one,
.main-leistungen-team-two {
    /* border: 3px solid blue; */
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    max-width: 380px;
    box-shadow: 0 0 10px rgb(70, 70, 70);

    /* transform: translateX(-100vw); */

    opacity: 0;
    visibility: hidden;

    animation: animate-team 3s ease-in-out 0.1s forwards;
}

@keyframes animate-team {
    100% {
        /* transform: translateX(0); */
        opacity: 1;
        visibility: inherit;
    }
}

.main-leistungen-team-up {
    /* border: 3px solid green; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 430px;
}

.main-leistungen-team-up img {
    /* border: 3px solid yellow; */
    display: block;
    max-width: 100%;
    object-fit: cover;
    transition: 0.25s;
}

.main-leistungen-team-up img:hover {
    scale: 1.07;
    transition: 0.25s;
}

.main-leistungen-team-down {
    /* border: 3px solid purple; */
    background-color: rgb(30, 30, 30);
    color: white;
    text-align: center;
    padding: 2rem 1rem 1.3rem;
}

.main-leistungen-team-down h3 {
    /* border: 3px solid red; */
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.main-leistungen-team-down p {
    /* border: 3px solid yellow; */
    font-size: 0.9rem !important;
    line-height: 1.3;
    padding: 0.3rem !important;
}

.main-leistungen-team-down .team-description {
    /* border: 3px solid yellow; */
    font-size: 0.9rem !important;
    line-height: 1.3;
    margin-bottom: 0.7rem;
    margin-top: 1.2rem !important;
    padding: 0 0.5rem !important;
}

.main-leistungen-team-down p a {
    font-size: 1rem !important;
    /* border: 3px solid green; */
    color: rgb(115, 150, 210);
    font-weight: 500;
}

.main-leistungen-team-down p a:hover {
    color: rgb(75, 120, 190) !important;
    font-size: 1.02rem !important;
    transition: 0.2s !important;
}


@media (min-width: 400px) {
    .main-leistungen-container {
        padding: 0 2rem 1rem;
    }

    .main-leistungen-container-header {
        padding: 1.5rem 1rem;
    }
}

@media (min-width: 700px) {
    .main-leistungen-container {
        padding: 0 2.5rem 1rem;
    }

    .main-leistungen-container-header {
        padding: 1.5rem 1rem;
    }

    .main-leistungen-container h2 {
        max-width: 625px;
    }

    .main-leistungen-container p {
        font-size: 1.1rem;
    }

}

@media (min-width: 900px) {
    .main-leistungen-container h2 {
        max-width: 850px;
    }
}

@media (min-width: 950px) {
    .main-leistungen-team {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .main-leistungen-team-one,
    .main-leistungen-team-two {
        margin: 0 1rem 3rem;
    }
}


.main-fachgebiete {
    /* border: 3px solid green; */
    background-color: white;
    position: relative;
    padding-top: 100px;

    display: none;
}

.main-fachgebiete-container {
    /* border: 3px solid yellow; */
    background-color: white;
    padding: 1rem;
    padding-bottom: 0;
}

.main-fachgebiete-container p {
    /* border: 3px solid red; */
    /* max-width: 850px; */
    margin: 0 auto;
    padding: 0 1rem;

    /* text-align: center; */
    /* text-align: justify; */

    line-height: 1.8 !important;
}

.main-fachgebiete-container p b {
    color: rgb(50, 70, 130);
    color: black;
    color: rgb(20, 30, 60);
    color: rgb(30, 55, 120);

    font-weight: 500;
    font-weight: 600;
}

.main-fachgebiete-container p .p-bold {
    color: black;
    color: rgb(20, 30, 60);
    color: rgb(30, 55, 120);

    font-weight: 600;
}

.main-fachgebiete-container-overview {
    /* border: 3px solid blue; */
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-fachgebiete-container-top-rv,
.main-fachgebiete-container-top {
    /* border: 3px solid red; */
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.main-fachgebiete-container-top-rv .fachgebiete-infos,
.main-fachgebiete-container-top .fachgebiete-infos {
    /* border: 3px solid yellow; */
    font-size: 1.1rem;
    /* text-transform: uppercase; */
    background: linear-gradient(to top, rgb(0, 0, 0, 0.5) , transparent);
    color: white;
    text-align: center;
    height: 70px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 0.5rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    /* display: none; */
}

.main-fachgebiete-container-top-rv .fachgebiete-infos-child,
.main-fachgebiete-container-top .fachgebiete-infos-child {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* display: none; */
    cursor: pointer;
}

.main-fachgebiete-container-top-rv .fachgebiete-infos-child:hover,
.main-fachgebiete-container-top .fachgebiete-infos-child:hover {
    scale: 1.03;
    transition: 0.2s;
}

.main-fachgebiete-container-top-rv .fachgebiete-infos-child p,
.main-fachgebiete-container-top .fachgebiete-infos-child p {
    font-weight: 500;
    padding: 0;
}

.main-fachgebiete-container-top-rv .fachgebiete-infos-child .info-svg,
.main-fachgebiete-container-top .fachgebiete-infos-child .info-svg {
    margin-left: 0.7rem;
    transition: 0.3s;
}
.main-fachgebiete-container-top-rv .fachgebiete-infos-child .info-svg.turn,
.main-fachgebiete-container-top .fachgebiete-infos-child .info-svg.turn {
    transform: rotate(180deg);
}

.main-fachgebiete-container-top-left-rv,
.main-fachgebiete-container-top-left {
    /* border: 3px solid purple; */
    background-color: rgb(50, 110, 150);
    /* min-height: 50vh; */
    min-height: 120px;

    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}

.main-fachgebiete-container-top-left-rv h3,
.main-fachgebiete-container-top-left h3 {
    font-size: 1.3rem;
    /* margin-bottom: 1.5rem; */
}

.main-fachgebiete-container-top-right-rv,
.main-fachgebiete-container-top-right {
    /* border: 3px solid green; */
    position: relative;
    min-height: 50vh;
    min-height: 290px;
    height: auto;
    
    width: 100%;
}

.main-fachgebiete-container-top-right-rv div,
.main-fachgebiete-container-top-right div {
    /* border: 3px solid red; */
    background: linear-gradient(to top right, rgb(50, 110, 150) 50%, transparent 50%);

    position: absolute;
    /* width: 16.67%; */
    width: 20%;
    height: 100%;
 
    display: none;
}
.main-fachgebiete-container-top-right-rv div {
    background: linear-gradient(to bottom left, rgb(50, 110, 150) 50%, transparent 50%);
    right: 0;
}

.main-fachgebiete-container-top-right-versicherung::before,
.main-fachgebiete-container-top-right-finanzierung::before,
.main-fachgebiete-container-top-right-leasing::before,
.main-fachgebiete-container-top-right-schadensbearbeitung::before,
.main-fachgebiete-container-top-right-vertragsverwaltung::before,
.main-fachgebiete-container-top-right-kfz::before {
    content: "";
    width: 100%;
    height: 100%;
    max-width: 100%;
    /* background-image: url(images/Gutachten-Fachgebiet-Sport.jpeg), linear-gradient(90deg, rgba(50, 110, 150, 1), rgba(50, 110, 150, 1) 30%, transparent); */
    background-image: url(images/pervida-leistung-kfz.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    /* background-attachment: fixed; */
    background-blend-mode: screen;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center right;
    /* background-position: 40% 70%; */
    background-size: cover;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    /* z-index: -1; */
}
.main-fachgebiete-container-top-right-versicherung::before {
    background-image: url(images/pervida-leistung-versicherung.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-position: center right;
}
.main-fachgebiete-container-top-right-finanzierung::before {
    background-image: url(images/pervida-leistung-finanzierung.png), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-image: url(images/leistung-finanzierung-haus.jpeg), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    /* background-position: top left; */
    background-position: 30%;
}
.main-fachgebiete-container-top-right-leasing::before {
    background-image: url(images/pervida-leistung-leasing.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-position: top center;
}
.main-fachgebiete-container-top-right-schadensbearbeitung::before {
    background-image: url(images/pervida-leistung-schadensbearbeitung.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-position: center;
}
.main-fachgebiete-container-top-right-vertragsverwaltung::before {
    background-image: url(images/pervida-leistung-vertragsverwaltung.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    background-position: top center;
}

.main-fachgebiete-container-top-right-rv img,
.main-fachgebiete-container-top-right img {
    /* border: 3px solid lawngreen; */
    display: block;
    /* width: 100%; */
    height: 100%;
    max-height: 65vh;
    object-fit: cover;
}

.main-fachgebiete-container-bottom {
    /* border: 3px solid blue; */
    /* background-color: whitesmoke; */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0;
    
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.main-fachgebiete-container-bottom.show {
    height: fit-content;
    opacity: 1;
    transition: 0.7s;
}

.main-fachgebiete-container-bottom-box {
    /* border: 3px solid red; */
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
}

.main-fachgebiete-container-bottom p {
    line-height: 1.4;
}

.main-fachgebiete-anfrage {
    /* border: 3px solid red; */
    background-color: rgb(235, 235, 235);
    background-color: rgba(220, 240, 250, 0.5);
    background-color: rgb(210, 210, 210);
    background-color: rgb(210, 220, 225);
}
.main-fachgebiete-anfrage-dark {
    /* border: 3px solid red; */
    color: white;
    background-color: rgb(50, 70, 130);
    background-color: rgb(50, 90, 150);
    /* background-color: rgb(65, 80, 160); */
}

.main-leistung-anfrage {
    /* border: 3px solid red; */
    background-color: rgba(220, 240, 250, 0.5);
    margin-bottom: 3rem;
}
.main-leistung-anfrage-bottom {
    background-color: rgb(220, 240, 250);
    margin-bottom: 0;
}

.main-leistung-anfrage p,
.main-fachgebiete-anfrage p {
    /* border: 3px solid red; */
    color: black;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;

    text-align: center;

    line-height: 1.8;
}

.main-leistung-anfrage .gutachten-btn,
.main-fachgebiete-anfrage .gutachten-btn {
    border: 2px solid rgb(65, 80, 160);
    border: 2px solid rgb(50, 110, 150);
    border: 2px solid rgb(50, 70, 130);
    color: rgb(65, 80, 160);
    color: rgb(50, 110, 150);
    color: rgb(50, 70, 130);
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
}
.main-fachgebiete-anfrage-dark .gutachten-btn {
    border: 2px solid white;
    color: white;
    font-weight: 500;
}

.main-leistung-anfrage .gutachten-btn:hover,
.main-fachgebiete-anfrage .gutachten-btn:hover {
    background-color: rgb(65, 80, 160);
    background-color: rgb(50, 110, 150);
    background-color: rgb(50, 70, 130);
    font-weight: 500;
    color: white;
    scale: 1.03;
    /* transition: 0.1s; */
}
.main-fachgebiete-anfrage-dark .gutachten-btn:hover {
    font-weight: bold;
    background-color: white;
    color: rgb(50, 70, 130);
    color: rgb(50, 90, 150);
    /* color: rgb(50, 110, 150); */
    /* color: rgb(65, 80, 160); */
}

/* .main-fachgebiete-container-overview, */
.main-fachgebiete-container-versicherung,
.main-fachgebiete-container-finanzierung,
.main-fachgebiete-container-leasing,
.main-fachgebiete-container-schadensbearbeitung,
.main-fachgebiete-container-vertragsverwaltung,
.main-fachgebiete-container-kfz {
    scroll-margin-top: calc(100px + 1rem);
}

@media (min-width: 300px) {
    .main-fachgebiete-container-top-left-rv,
    .main-fachgebiete-container-top-left {
        padding: 0 0.7rem;
    }
}

@media (min-width: 350px) {
    .main-fachgebiete-container-top-left-rv h3,
    .main-fachgebiete-container-top-left h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 370px) {
    .main-fachgebiete-container-top-left-rv,
    .main-fachgebiete-container-top-left {
        padding: 0 1rem;
    }
}

@media (min-width: 400px) {
    .main-fachgebiete-container-top-left-rv,
    .main-fachgebiete-container-top-left {
        padding: 0 1.5rem;
    }

    .main-fachgebiete-container-top-left-rv h3,
    .main-fachgebiete-container-top-left h3 {
        font-size: 1.7rem;
    }

    .main-fachgebiete-container-bottom-box {
        padding: 1rem;
    }
}

@media (min-width: 600px) {
    .main-fachgebiete-container-top-rv,
    .main-fachgebiete-container-top {
        padding: 0 1.7rem;
    }

    .main-fachgebiete-container-top-rv .fachgebiete-infos,
    .main-fachgebiete-container-top .fachgebiete-infos {
        width: auto;
        left: 1.7rem;
        right: 1.7rem;
    }

    .main-fachgebiete-container-bottom {
        padding: 0 1.7rem;
    }
}

@media (min-width: 700px) {
    .main-fachgebiete-container p {
        font-size: 1.1rem;
    }

    .main-fachgebiete-container-top-right-rv,
    .main-fachgebiete-container-top-right {
        min-height: 50vh;
        min-height: 280px;
    }

    .main-fachgebiete-container-top-left-rv,
    .main-fachgebiete-container-top-left {
        /* padding: 1.5rem; */
    }

    .main-fachgebiete-container-top-left-rv h3,
    .main-fachgebiete-container-top-left h3 {
        font-size: 2rem;
    }

    .main-fachgebiete-container-bottom-box {
        padding: 2rem;
    }
}

@media (min-width: 900px) {
    .main-fachgebiete-container-top {
        flex-direction: row;
    }
    .main-fachgebiete-container-top-rv {
        flex-direction: row-reverse;
    }

    .main-fachgebiete-container-top-left-rv,
    .main-fachgebiete-container-top-left {
        /* padding: 1.5rem; */
        /* padding-top: 2rem; */
        padding-left: 3rem;

        width: 55%;
    }
    .main-fachgebiete-container-top-left-rv {
        padding-left: 0;
    }

    .main-fachgebiete-container-top-left-rv h3,
    .main-fachgebiete-container-top-left h3 {
        font-size: 2.2rem;
        /* margin-bottom: 2rem; */
    }

    .main-fachgebiete-container-top-right-rv,
    .main-fachgebiete-container-top-right {
        width: 45%;
    }

    .main-fachgebiete-container-top-right-rv div,
    .main-fachgebiete-container-top-right div {
        display: inherit;
    }

    .main-fachgebiete-container-overview p,
    .main-fachgebiete-container-bottom p,
    .main-leistung-anfrage p,
    .main-fachgebiete-anfrage p {
        font-size: 1.1rem;
    }

    /* .main-fachgebiete-container-overview, */
    .main-fachgebiete-container-versicherung,
    .main-fachgebiete-container-finanzierung,
    .main-fachgebiete-container-leasing,
    .main-fachgebiete-container-schadensbearbeitung,
    .main-fachgebiete-container-vertragsverwaltung,
    .main-fachgebiete-container-kfz {
        scroll-margin-top: calc(100px + 2rem);
    }
}

@media (min-width: 1100px) {
    .main-fachgebiete-container-top-left-rv,
    .main-fachgebiete-container-top-left {
        /* padding-top: 3rem; */
    }
}


.main-kontakt {
    /* border: 3px solid red; */
    position: relative;
    width: 100%;

    padding-top: 100px;

    display: none;
}
.main-kontakt-top {
    /* border: 3px solid green; */
    width: 100%;
    display: flex;
    flex-direction: column;
}
.main-kontakt-top-img {
    /* border: 3px solid black; */
    position: relative;
    width: 100%;
    height: 50vh;
}
.main-kontakt-top-img::before {
    content: "";

    max-width: 100%;

    /* background-image: url(fileadmin/code/images/contact.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 35%, transparent); */
    /* background-image: url(fileadmin/code/images/contact.jpg); */
    background-image: url(images/pervida-contact.jpg);

    /* background-color: rgba(255, 255, 255, 0.3); */
    background-color: rgba(37, 37, 37, 0.3);
    /* background-blend-mode: screen; */
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 50% 80%;
    /* background-attachment: fixed; */
    background-size: cover;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;
    
}

.main-kontakt-top-container {
    /* border: 3px solid blue; */
    background-color: white;
    color: rgb(20, 30, 60);
    color: rgb(30, 65, 160);
    color: rgb(30, 55, 120);
    color: rgb(35, 100, 170);

    width: 100%;
    padding: 2rem 1rem;
}
.main-kontakt-top-container h3 {
    font-size: 2.2rem;
    /* text-transform: uppercase; */
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 2.5px;
}

.main-kontakt-top-container-box {
    /* border: 3px solid purple; */
    background-color: whitesmoke;
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-top: 2.5rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
    
.main-kontakt-top-container-box-child {
    /* border: 3px solid yellow; */
    width: 100%;
    padding: 1rem 0;
    padding-left: 5%;
}

.main-kontakt-top-container-box-child-middle {
    /* border: 3px solid lawngreen; */

    border-left: 1px solid rgb(170, 170, 170);
    width: 0%;
    padding: 0;
    height: 270px;

    display: none;
}

.main-kontakt-caption {
    /* border: 3px solid green; */
    color: black;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1;
}

.main-kontakt-caption span {
    /* border: 3px solid yellow; */
    color: black;
    font-size: 1.1rem;
    font-weight: bold;
}

.main-kontakt-caption a {
    color: black;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    margin-left: 43px;
    /* cursor: pointer; */
}
.main-kontakt-caption a:hover {
    color: rgb(20, 30, 60);
    color: rgb(30, 55, 120);
    color: rgb(35, 100, 170);

    font-size: 1.02rem;
    transition: 0.2s;
}
.main-kontakt-caption svg {
    color: rgb(20, 30, 60);
    color: rgb(30, 65, 160);
    color: rgb(30, 55, 120);
    color: rgb(35, 100, 170);

    margin-bottom: -0.3rem;
    margin-right: 1rem;
}
.main-kontakt-caption-address svg {
    margin-right: 1rem;
}

.main-kontakt-caption-contact {
    margin-bottom: 0.5rem;
}

.main-kontakt-caption .svg-location {
    margin-right: 1.1rem;
    opacity: 0;
    visibility: hidden;
}

.main-kontakt-bottom {
    /* border: 3px solid purple; */
    display: flex;
    flex-direction: column;
    background-color: rgb(30, 30, 30);
    width: 100%;
    height: fit-content;

    scroll-margin-top: calc(100px + 2rem);
    scroll-behavior: smooth;
    /* scroll-margin-block: 0; */
    /* scroll-margin-inline: 0; */
}

.main-kontakt-bottom-maps {
    /* border: 3px solid green; */
    position: relative;
    background-color: rgb(30, 30, 30);
    width: 100%;
    height: 400px;
    padding: 3rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.maps-info {
    /* border: 3px solid blue; */
    background-color: rgb(245, 245, 245);
    width: 80%;
    max-width: 375px;
    height: fit-content;
    line-height: 1.4;
    text-align: center;
    /* height: 400px; */
    padding: 1rem;

    position: absolute;

    z-index: 9999;
}
.maps-cookies {
    /* border: 3px solid blue; */
    font-weight: 500;
    color: black;
    color: rgb(50, 70, 130);
    color: rgb(35, 100, 170);

    cursor: pointer;
}

.main-kontakt-bottom-maps iframe {
    width: 100%;
    height: 100%;

    z-index: 9999;
}

.main-kontakt-bottom-form {
    /* border: 3px solid red; */
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.send-form-successful {
    /* border: 3px solid blue; */
    background-color: rgb(0, 130, 0);
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 1.5rem;
    width: 90%;
    height: fit-content;
    max-width: 400px;
    margin: auto;
    line-height: 1.3;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(245, 245, 245, 0.2);

    display: none;
}

.send-form-successful.show {
    display: inherit;
}

.send-form-successful svg {
    margin-bottom: 1rem;
}

.main-kontakt-bottom-form h2 {
    /* border: 3px solid red; */
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    padding: 0 0.5rem 2rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 1rem;
}

.form-parent-container {
    /* border: 3px solid yellow; */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.form-parent-container.hide {
    opacity: 0;
    visibility: hidden;
}

.form-parent {
    /* border: 3px solid green; */
    color: white;
    width: 100%;
    padding: 0 0.5rem;
}
.form-parent-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-input-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* margin-bottom: 0.5rem; */
    padding: 0.4rem 0.5rem;
    border: 1pt solid rgb(30, 30, 30);

    width: 100%;
    height: 35px;
    background-color: white;

    border-radius: 5px;
    margin: 0.3rem 0 0.7rem;
}

.main-kontakt-bottom-form input {
    font-size: 1rem;
    background-color: transparent;
    width: 100%;
    border: none;
    /* border: 3px solid red; */
    /* max-width: 300px; */
    letter-spacing: 0.5px;
    outline: none;
}

.form-message {
    font-size: 1rem;
    width: 100%;
    padding: 0.5rem;
    resize: none;
    border-radius: 5px;
    letter-spacing: 0.5px;
    outline: none;

    margin-top: 0.3rem;
}

.form-send-btn {
    /* border: 3px solid rgb(30, 55, 120); */
    background-color: rgb(30, 65, 160);
    background-color: rgb(50, 110, 150);
    background-color: rgb(35, 100, 170);
    background-color: rgb(75, 135, 190);
    color: white;
    font-weight: 500;
    width: fit-content;
    padding: 0.4rem 1rem;
    margin-top: 1rem;
    border-radius: 10px;

    cursor: pointer;
}
.form-send-btn:hover {
    scale: 1.01;
    transition: 0.2s;
}

.fail {
    border: 2px solid rgb(230, 0, 0);
    background-color: rgb(255, 245, 245);
}


.main-slider {
    /* border: 3px solid yellow; */
    background-color: transparent;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    width: 100%;
    height: 100%;
    height: calc(100% - 200px);
    /* height: 150vh; */
    padding: 1rem;
    /* padding-top: 15vh; */
    padding-left: 5vw;
    padding-bottom: 10vh;
    padding-bottom: 7vh;
    overflow: hidden;
}


.main-news {
    /* border: 3px solid red; */
    position: relative;
    width: 100%;

    padding-top: 100px;

    display: none;
}
.main-news-top {
    /* border: 3px solid green; */
    width: 100%;
    display: flex;
    flex-direction: column;
}
.main-news-top-img {
    /* border: 3px solid black; */
    position: relative;
    width: 100%;
    height: 60vh;
}
.main-news-top-img::before {
    content: "";

    max-width: 100%;

    /* background-image: url(fileadmin/code/images/contact.jpg), linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 35%, transparent); */
    /* background-image: url(fileadmin/code/images/contact.jpg); */
    background-image: url(images/pervida-news.jpg);

    /* background-color: rgba(255, 255, 255, 0.3); */
    background-color: rgba(37, 37, 37, 0.3);
    /* background-blend-mode: screen; */
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 80% 50%;
    /* background-attachment: fixed; */
    background-size: cover;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;
    
}

.main-news-top-container {
    /* border: 3px solid blue; */
    background-color: white;
    color: rgb(20, 30, 60);
    color: rgb(30, 65, 160);
    color: rgb(30, 55, 120);
    color: rgb(35, 100, 170);

    width: 100%;
    padding: 2rem 1rem 1rem;
}
.main-news-top-container h3 {
    font-size: 2.2rem;
    /* text-transform: uppercase; */
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2.5px;
}

.main-news-top-container-box {
    /* border: 3px solid purple; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.main-news-top-container-box-child {
    /* border: 3px solid green; */
    background-color: rgb(75, 135, 190);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    max-width: 330px;
    height: 270px;
    margin: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 7px rgb(130, 130, 130);
}

.main-news-top-container-box-child h2 {
    font-weight: 500;
    padding: 2rem 1.5rem 0;
    margin-bottom: auto;
    text-align: center;
    letter-spacing: 0px;
    line-height: 1.3;
}

.main-news-top-container-box-child p {
    padding: 1.5rem;
    text-align: center;
    color: black;
}

.main-news-top-container-box-child .btn-container {
    /* border: 3px solid red; */
    background-color: whitesmoke;
}

.main-news-top-container-box-child p a {
    /* border: 3px solid yellow; */
    /* font-weight: 500; */
    background-color: white;
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: black;
    padding: 0.5rem 2rem;
    margin: 1rem auto;
}
.main-news-top-container-box-child p a svg {
    /* border: 3px solid green; */
    height: fit-content;
    margin-left: 0.5rem;
}

@media (min-width: 900px) {
    .main-news-top-container-box {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
}


.main-datenschutz {
    /* border: 3px solid lawngreen; */
    background-color: white;
    position: relative;
    width: 100%;

    padding-top: 100px;

    display: none;
}

.main-datenschutz h1 {
    font-size: 1.7rem;
}

.main-datenschutz h2 {
    margin-top: 1.3rem;
}

.main-datenschutz h3 {
    margin-top: 1rem;
    font-weight: 500;
}

.impressum-start,
.datenschutz-start {
    scroll-margin-top: 200px;
}

.main-impressum {
    /* border: 3px solid red; */
    background-color: white;
    position: relative;
    width: 100%;

    padding-top: 100px;

    display: none;
}

.impressum-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 2rem;
    line-height: 1.3;
}
.impressum-container b {
    font-weight: 600;
}

.impressum-container .impressum-br {
    margin-top: 1rem;
}

.impressum-container p {
    margin-top: 0.7rem;
}

.impressum-container .impressum-copyright {
    margin-top: 0.5rem;
}

.impressum-container h1 {
    padding: 1.8rem 0;
}

.y-lam,
.contact-number-impressum,
.contact-email-impressum {
    color: black;
    text-decoration: none;
}

.contact-phone {
    /* border: 3px solid red; */
    font-weight: bold;
    font-weight: 500;
    font-weight: 600;
    padding-left: 2.65rem;
    padding-right: 0.5rem;
    /* margin-left: 2.7rem; */
    line-height: 1.4;
}


@media (min-width: 370px) {
    .main-kontakt-top-container-box-child {
        padding-left: 7%;
    }
}

@media (min-width: 400px) {
    .main-kontakt-top-container {
        /* padding: 3rem 4rem; */
        /* padding-bottom: 1rem; */
    }

    .main-kontakt-bottom-form h2 {
        font-size: 1.25rem;
    }

    .impressum-container {
        padding: 1rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 450px) {
    .main-datenschutz h1 {
        font-size: 2rem;
    }

    .impressum-container {
        padding: 2rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 500px) {
    .main-kontakt-top-container-box-child {
        padding-left: 10%;
    }
}

@media (min-width: 700px) {
    .main-kontakt-top {
        /* flex-direction: row; */
    }
    .main-kontakt-top-img {
        /* width: 50%; */
        /* height: auto; */
    }

    .main-kontakt-top-container {
        /* width: 50%; */
        /* padding: 3rem; */
        /* padding-bottom: 1rem; */
    }

    .main-kontakt-top-container-box {
        

        /* WENN FLEX-DIRECTION: ROW IS DEACTIVATED THAN SCROLL IS WORKING */

        
        flex-direction: row;
        
        
        align-items: start;
        justify-content: space-evenly;
        padding: 2rem 0;
    }

    .main-kontakt-top-container-box-child {
        width: fit-content;
        padding-left: 0;
    }

    .main-kontakt-top-container-box-child-middle {
        display: inherit;
    }

    .main-kontakt-caption-contact {
        margin: 0;
    }

    .main-kontakt-bottom {
        flex-direction: row-reverse;
    }
    
    .main-kontakt-bottom-maps {
        height: auto;
        padding: 3rem 2rem;
    }

    .main-kontakt-bottom-form h2 {
        margin-top: 0;
    }

    .main-kontakt-bottom-form {
        /* border: 3px solid red; */
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 3rem 1.5rem;
    
        /* scroll-margin-top: inherit; */
    }
}

@media (min-width: 1000px) {
    .main-kontakt-top-container {
        padding: 3rem 1rem;
    }

    .main-kontakt-bottom {
        padding: 1rem;
    }

    .form-parent-container {
        flex-direction: row;
    }

    .main-kontakt-bottom-maps {
        margin-left: 1rem;
    }

    .main-kontakt-bottom-form {
        margin-right: 1rem;
    }
}

/*================
  footer
==================*/

.main-start-footer {
    /* border: 3px solid red; */
    background-color: rgb(220, 240, 250);
    background-color: rgb(35, 100, 170);
    color: white;

    padding: 2rem 1rem 7rem;

    /* display: none; */
}

.main-start-footer-container {
    /* border: 3px solid yellow; */
    display: flex;
    flex-direction: column;
    /* justify-content: start; */
}

.main-start-footer-header {
    /* border: 3px solid blue; */
}
.main-start-footer-header-box {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1.5rem;
}

.footer-logo {
    /* border: 3px solid lawngreen; */
    width: 25%;
    max-width: 80px;
    margin-bottom: 1rem;
}
.footer-logo img {
    /* border: 3px solid black; */
    display: block;
    max-width: 100%;
    object-fit: cover;
}
.footer-title {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: row;
    align-items: end;
    width: 100%;
    max-width: 300px;
}
.footer-title img {
    /* border: 3px solid black; */
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.main-start-footer-body {
    /* border: 3px solid red; */
    display: flex;
    flex-direction: column;
}

.main-start-footer-body-container {
    /* border: 3px solid yellow; */
    padding: 1rem 0;
    margin: 0 2rem 3rem;
}
.main-start-footer-body-container-box {
    /* border: 3px solid green; */
    display: flex;
    flex-direction: column;
}
.main-start-footer-body-container-first {
    margin: 1.5rem 2rem 2rem;
}

.main-start-footer-body-header {
    /* border: 3px solid blue; */
    font-size: 15px;
    font-weight: bold;
    font-weight: 500;
    /* color: whitesmoke; */
    width: fit-content;
    margin-bottom: 1.5rem;
    text-decoration: underline;
    letter-spacing: 0;
}

.main-start-footer-body-caption {
    /* border: 3px solid green; */
    font-size: 14px;
    font-weight: 400;
    /* color: rgb(197, 242, 228); */
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: black;
    color: white;

    width: fit-content;
    margin-top: 1.2rem;
    cursor: pointer;
    letter-spacing: 0;
}

.main-start-footer-body-caption-phone a,
.main-start-footer-body-caption-contact a {
    font-weight: 400;
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: black;
    color: white;

}
.main-start-footer-body-caption-address,
.main-start-footer-body-caption-phone,
.main-start-footer-body-caption-contact {
    /* border: 3px solid green; */
    font-size: 14px;
    font-weight: 400;
    /* color: rgb(197, 242, 228); */
    color: rgb(200, 240, 230);
    color: rgb(20, 30, 60);
    color: black;
    color: white;

    display: flex;
    flex-direction: row;
    /* align-items: start; */
    justify-content: start;
    width: fit-content;
    margin-top: 1.2rem;
    letter-spacing: 0;
}
.main-start-footer-body-caption-address svg,
.main-start-footer-body-caption-phone svg,
.main-start-footer-body-caption-contact svg {
    margin-bottom: -0.2rem;
    margin-right: 0.2rem;
}
.main-start-footer-body-caption-address svg {
    margin-bottom: -0.2rem;
    margin-right: 0.5rem;
}
.main-start-footer-body-caption-address .svg-location {
    opacity: 0;
    visibility: hidden;
}

.main-start-footer-body-caption-phone a:hover,
.main-start-footer-body-caption-contact a:hover,
.main-start-footer-body-caption:hover {
    color: rgb(20, 30, 60);
    color: rgb(30, 55, 120);

    scale: 1.01;
    transition: 0.2s;
}

.main-start-footer-bottom {
    /* border: 3px solid lawngreen; */
    font-size: 14px;
    border-top: 1pt solid rgb(200, 200, 200);
    color: rgb(30, 30, 30);
    color: whitesmoke;
    /* width: 100%; */
    text-align: center;
    margin: 1rem 1.5rem 5rem;
    padding: 1rem 0 0;
}

.main-start-footer .main-start-footer-bottom span {
    letter-spacing: -0.3px !important;
}

@media (min-width: 500px) {
    .main-start-footer-header-box {
        flex-direction: row;
    }

    .footer-logo {
        margin-bottom: 0;
        margin-right: 1.5rem;
    }
}

@media (min-width: 600px) {
    .main-start-footer-header-box {
        padding: 0 3rem 1.5rem;
    }

    .main-start-footer-body {
        align-items: center;
    }

    .main-start-footer-body-container-box {
        flex-direction: row;
    }

    .main-start-footer-body-container {
        margin: 0 0 1.5rem 3rem;
    }
    .main-start-footer-body-container-first {
        margin: 0 1.5rem 1.5rem 3rem;
    }
}

@media (min-width: 1000px) {
    .main-start-footer-body {
        flex-direction: row-reverse;
        justify-content: space-around;
    }

    .main-start-footer-header-box {
        flex-direction: column;
    }

    .footer-logo {
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-right: 0;
    }
}