/* General */

* {
    padding: 0;
    margin: 0;
}

body {
    background-image: linear-gradient(to right bottom, #9f5870, #ac5e71, #b96471, #c56b71, #d07270, #d9796f, #e2816d, #e9896b, #f09369, #f69d67, #fba865, #ffb464);
    font-family: HK Grotesk, sans-serif;
    color: #fff;
    font-weight: 500;
}

.Button {
    display: inline-block;
    background-color: #202230;
    color: #fff;
    box-shadow: none;
    border-radius: .25rem;
    font-weight: 500;
    transition: all .15s ease;
    padding: 12px 16px 10px;
    border: 2px solid #202230;
    text-decoration: none;
}

.Button:hover {
    background-color: transparent;
    color: #202230;
}

.image-wrapper img {
    height: 400px;
    border-radius: 20px;
}


/* Navbar */

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
}

.scrolled {
    background-color: rgb(32, 34, 48, 0.7);
}

.navbar-left {
    float: left;
}

.navbar-right {
    float: right;
}

.navbar li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 20px 16px;
    text-decoration: none;
}

.navbar-image {
    padding: 0px 16px;
    height: 60px;
}

li img {
    height: 60px;
}

li a:hover:not(.active) {
    background-color: rgb(17, 17, 17, 0.5);
}

.scrolled li a:hover:not(.active) {
    background-color: rgb(17, 17, 17);
}


/* Home */

.home-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(images/dot.svg);
    background-repeat: repeat;
}

.logo {
    width: 100%;
    height: 100%;
    max-width: 700px;
    max-height: 288.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: none;
    text-align: center;
}

#logo {
    width: 650px;
}

#logo path:nth-child(1) {
    stroke-dasharray: 509;
    stroke-dashoffset: 509;
}

#logo path:nth-child(2) {
    stroke-dasharray: 1637.380126953125;
    stroke-dashoffset: 1637.380126953125;
}

#logo path:nth-child(3) {
    stroke-dasharray: 1699.107177734375;
    stroke-dashoffset: 1699.107177734375;
}

#logo path:nth-child(4) {
    stroke-dasharray: 1408.68701171875;
    stroke-dashoffset: 1408.68701171875;
}

#logo circle:nth-child(5) {
    opacity: 0;
}

#logo circle:nth-child(6) {
    opacity: 0;
}

#logo circle:nth-child(7) {
    opacity: 0;
}

#logo circle:nth-child(8) {
    opacity: 0;
}

#logo path:nth-child(9) {
    opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .home-svg-logo-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .home-svg-logo-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
    .home-svg-logo-animation path:nth-child(3) {
        animation: line-anim 2s ease forwards;
    }
    .home-svg-logo-animation path:nth-child(4) {
        animation: line-anim 2s ease forwards;
    }
    .home-svg-logo-animation circle:nth-child(5) {
        animation: makeVisible 0s ease forwards 1.85s;
    }
    .home-svg-logo-animation circle:nth-child(6) {
        animation: makeVisible 0s ease forwards 1.95s;
    }
    .home-svg-logo-animation circle:nth-child(7) {
        animation: makeVisible 0s ease forwards 2.05s;
    }
    .home-svg-logo-animation circle:nth-child(8) {
        animation: makeVisible 0s ease forwards 1.85s;
    }
    .home-svg-logo-animation path:nth-child(9) {
        animation: makeVisible 0s ease forwards 1.95s;
    }
}

.home-wrapper .left-lineart {
    width: 100%;
    height: 100%;
    max-width: 77px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-wrapper #left-lineart path:nth-child(1) {
    stroke-dasharray: 1223.7939453125;
    stroke-dashoffset: 1223.7939453125;
}

.home-wrapper #left-lineart path:nth-child(2) {
    stroke-dasharray: 1223.79638671875;
    stroke-dashoffset: 1223.79638671875;
}

@media (prefers-reduced-motion: no-preference) {
    .home-svg-left-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .home-svg-left-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.home-wrapper .right-lineart {
    width: 100%;
    height: 100%;
    max-width: 77px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-wrapper #right-lineart path:nth-child(1) {
    stroke-dasharray: 1223.795166015625;
    stroke-dashoffset: 1223.795166015625;
}

.home-wrapper #right-lineart path:nth-child(2) {
    stroke-dasharray: 1223.7952880859375;
    stroke-dashoffset: 1223.7952880859375;
}

@media (prefers-reduced-motion: no-preference) {
    .home-svg-right-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .home-svg-right-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

@keyframes line-anim {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes makeVisible {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Bilder */

.bilder-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    background-image: url(images/powerpole.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
}


/* Gesamtplanung */

.gesamtplanung-wrapper {
    padding-top: 70px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gesamtplanung-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.gesamtplanung-content .list-wrapper {
    max-width: 700px;
    width: 100%;
    justify-content: left;
    align-items: left;
}

.gesamtplanung-content h2 {
    padding-bottom: 50px;
}

.gesamtplanung-content .text-wrapper {
    padding-bottom: 50px;
}

.gesamtplanung-content ul {
    padding-top: 20px;
    padding-left: 20px;
}

.gesamtplanung-wrapper .left-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gesamtplanung-wrapper #left-lineart path:nth-child(1) {
    stroke-dasharray: 1277.2166748046875;
    stroke-dashoffset: 1277.2166748046875;
}

.gesamtplanung-wrapper #left-lineart path:nth-child(2) {
    stroke-dasharray: 1170.3726806640625;
    stroke-dashoffset: 1170.3726806640625;
}

@media (prefers-reduced-motion: no-preference) {
    .gesamtplanung-svg-left-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .gesamtplanung-svg-left-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.gesamtplanung-wrapper .right-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gesamtplanung-wrapper #right-lineart path:nth-child(1) {
    stroke-dasharray: 1277.21728515625;
    stroke-dashoffset: 1277.21728515625;
}

.gesamtplanung-wrapper #right-lineart path:nth-child(2) {
    stroke-dasharray: 1170.373046875;
    stroke-dashoffset: 1170.373046875;
}

@media (prefers-reduced-motion: no-preference) {
    .gesamtplanung-svg-right-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .gesamtplanung-svg-right-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}


/* Interception1 */

.interception1-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.interception1-svg {
    height: 25px;
}

@media (prefers-reduced-motion: no-preference) {
    .interception1-svg-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .interception1-svg-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.interception1-svg path:nth-child(1) {
    stroke-dasharray: 1416.2578125;
    stroke-dashoffset: 1416.2578125;
}

.interception1-svg path:nth-child(2) {
    stroke-dasharray: 1416.2606201171875;
    stroke-dashoffset: 1416.2606201171875;
}


/* Projektbegleitung */

.projektbegleitung-wrapper {
    padding-top: 75px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.projektbegleitung-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.projektbegleitung-content .list-wrapper {
    max-width: 700px;
    width: 100%;
    justify-content: left;
    align-items: left;
}

.projektbegleitung-content h2 {
    padding-bottom: 50px;
}

.projektbegleitung-content .text-wrapper {
    padding-bottom: 50px;
}

.projektbegleitung-content ul {
    padding-top: 20px;
    padding-left: 20px;
}

.projektbegleitung-wrapper .left-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projektbegleitung-wrapper #left-lineart path:nth-child(1) {
    stroke-dasharray: 1277.2166748046875;
    stroke-dashoffset: 1277.2166748046875;
}

.projektbegleitung-wrapper #left-lineart path:nth-child(2) {
    stroke-dasharray: 1170.3726806640625;
    stroke-dashoffset: 1170.3726806640625;
}

@media (prefers-reduced-motion: no-preference) {
    .projektbegleitung-svg-left-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .projektbegleitung-svg-left-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.projektbegleitung-wrapper .right-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projektbegleitung-wrapper #right-lineart path:nth-child(1) {
    stroke-dasharray: 1277.21728515625;
    stroke-dashoffset: 1277.21728515625;
}

.projektbegleitung-wrapper #right-lineart path:nth-child(2) {
    stroke-dasharray: 1170.373046875;
    stroke-dashoffset: 1170.373046875;
}

@media (prefers-reduced-motion: no-preference) {
    .projektbegleitung-svg-right-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .projektbegleitung-svg-right-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}


/* Interception2 */

.interception2-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.interception2-svg {
    height: 25px;
}

@media (prefers-reduced-motion: no-preference) {
    .interception2-svg-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .interception2-svg-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.interception2-svg path:nth-child(1) {
    stroke-dasharray: 1416.2578125;
    stroke-dashoffset: 1416.2578125;
}

.interception2-svg path:nth-child(2) {
    stroke-dasharray: 1416.2606201171875;
    stroke-dashoffset: 1416.2606201171875;
}


/* Abnahme */

.abnahme-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.abnahme-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.abnahme-content .list-wrapper {
    max-width: 700px;
    width: 100%;
    justify-content: left;
    align-items: left;
}

.abnahme-content h2 {
    padding-bottom: 50px;
}

.abnahme-content .text-wrapper {
    padding-bottom: 50px;
}

.abnahme-content ul {
    padding-top: 20px;
    padding-left: 20px;
}

.abnahme-wrapper .left-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abnahme-wrapper #left-lineart path:nth-child(1) {
    stroke-dasharray: 1277.2166748046875;
    stroke-dashoffset: 1277.2166748046875;
}

.abnahme-wrapper #left-lineart path:nth-child(2) {
    stroke-dasharray: 1170.3726806640625;
    stroke-dashoffset: 1170.3726806640625;
}

@media (prefers-reduced-motion: no-preference) {
    .abnahme-svg-left-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .abnahme-svg-left-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.abnahme-wrapper .right-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abnahme-wrapper #right-lineart path:nth-child(1) {
    stroke-dasharray: 1277.21728515625;
    stroke-dashoffset: 1277.21728515625;
}

.abnahme-wrapper #right-lineart path:nth-child(2) {
    stroke-dasharray: 1170.373046875;
    stroke-dashoffset: 1170.373046875;
}

@media (prefers-reduced-motion: no-preference) {
    .abnahme-svg-right-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .abnahme-svg-right-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}


/* Interception3 */

.interception3-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.interception3-svg {
    height: 25px;
}

@media (prefers-reduced-motion: no-preference) {
    .interception3-svg-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .interception3-svg-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.interception3-svg path:nth-child(1) {
    stroke-dasharray: 1416.2578125;
    stroke-dashoffset: 1416.2578125;
}

.interception3-svg path:nth-child(2) {
    stroke-dasharray: 1416.2606201171875;
    stroke-dashoffset: 1416.2606201171875;
}


/* Gutachten */

.gutachten-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gutachten-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.gutachten-content h2 {
    padding-bottom: 50px;
}

.gutachten-content .text-wrapper {
    padding-bottom: 50px;
}

.gutachten-wrapper .left-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gutachten-wrapper #left-lineart path:nth-child(1) {
    stroke-dasharray: 1277.2166748046875;
    stroke-dashoffset: 1277.2166748046875;
}

.gutachten-wrapper #left-lineart path:nth-child(2) {
    stroke-dasharray: 1170.3726806640625;
    stroke-dashoffset: 1170.3726806640625;
}

@media (prefers-reduced-motion: no-preference) {
    .gutachten-svg-left-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .gutachten-svg-left-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.gutachten-wrapper .right-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gutachten-wrapper #right-lineart path:nth-child(1) {
    stroke-dasharray: 1277.21728515625;
    stroke-dashoffset: 1277.21728515625;
}

.gutachten-wrapper #right-lineart path:nth-child(2) {
    stroke-dasharray: 1170.373046875;
    stroke-dashoffset: 1170.373046875;
}

@media (prefers-reduced-motion: no-preference) {
    .gutachten-svg-right-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .gutachten-svg-right-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}


/* Interception4 */

.interception4-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.interception4-svg {
    height: 25px;
}

@media (prefers-reduced-motion: no-preference) {
    .interception4-svg-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .interception4-svg-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.interception4-svg path:nth-child(1) {
    stroke-dasharray: 1416.2578125;
    stroke-dashoffset: 1416.2578125;
}

.interception4-svg path:nth-child(2) {
    stroke-dasharray: 1416.2606201171875;
    stroke-dashoffset: 1416.2606201171875;
}


/* Kontakt */

.kontakt-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.kontakt-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.kontakt-content .text-wrapper p {
    padding-bottom: 20px;
}

.kontakt-content h2 {
    padding-bottom: 50px;
}

.kontakt-content .text-wrapper {
    padding-bottom: 50px;
}

.kontakt-wrapper .left-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-wrapper #left-lineart path:nth-child(1) {
    stroke-dasharray: 1277.2166748046875;
    stroke-dashoffset: 1277.2166748046875;
}

.kontakt-wrapper #left-lineart path:nth-child(2) {
    stroke-dasharray: 1170.3726806640625;
    stroke-dashoffset: 1170.3726806640625;
}

@media (prefers-reduced-motion: no-preference) {
    .kontakt-svg-left-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .kontakt-svg-left-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}

.kontakt-wrapper .right-lineart {
    width: 100%;
    height: 100%;
    max-width: 45px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-wrapper #right-lineart path:nth-child(1) {
    stroke-dasharray: 1277.21728515625;
    stroke-dashoffset: 1277.21728515625;
}

.kontakt-wrapper #right-lineart path:nth-child(2) {
    stroke-dasharray: 1170.373046875;
    stroke-dashoffset: 1170.373046875;
}

@media (prefers-reduced-motion: no-preference) {
    .kontakt-svg-right-animation path:nth-child(1) {
        animation: line-anim 2s ease forwards;
    }
    .kontakt-svg-right-animation path:nth-child(2) {
        animation: line-anim 2s ease forwards;
    }
}


/* Footer */

.footer {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(32, 34, 48);
    position: relative;
    top: 0;
    width: 100%;
    height: 60px;
}

.footer-left {
    float: left;
}

.footer-right {
    float: right;
}

.footer li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 20px 16px;
    text-decoration: none;
}

.footer-image {
    padding: 0px 16px;
    height: 60px;
}

li img {
    height: 60px;
}

li a:hover:not(.active) {
    background-color: rgb(17, 17, 17, 0.5);
}

.scrolled li a:hover:not(.active) {
    background-color: rgb(17, 17, 17);
}


/* Impressum */

.content-wrapper {
    position: relative;
    min-height: 100vh;
}

.content-grid {
    padding-left: 25%;
    padding-right: 25%;
    margin-top: 60px;
    min-height: 100%;
}

.footer {
    position: relative;
    width: 100%;
    height: 60px;
}