/*

@font-face {
  font-family: Poppins;
  src: url('/assets/poppins/Poppins-Regular.ttf') format('ttf');
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url('/assets/poppins/Poppins-ExtraBold.ttf') format('ttf');
  font-weight: 800;
}

*/

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/poppins-v20-latin/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/assets/poppins-v20-latin/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/assets/poppins-v20-latin/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/assets/poppins-v20-latin/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/assets/poppins-v20-latin/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/assets/poppins-v20-latin/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/poppins-v20-latin/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/assets/poppins-v20-latin/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/assets/poppins-v20-latin/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/assets/poppins-v20-latin/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/assets/poppins-v20-latin/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/assets/poppins-v20-latin/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('/assets/poppins-v20-latin/poppins-v20-latin-800.eot'); /* IE9 Compat Modes */
  src: url('/assets/poppins-v20-latin/poppins-v20-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/assets/poppins-v20-latin/poppins-v20-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('/assets/poppins-v20-latin/poppins-v20-latin-800.woff') format('woff'), /* Modern Browsers */
       url('/assets/poppins-v20-latin/poppins-v20-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/assets/poppins-v20-latin/poppins-v20-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */
}


*, html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

body {
    width: 100%;
    max-width: 1200px;
    padding: 32px;
    margin: 0 auto;
    color: rgb(0 0 0 / 80%);
}

b {
  font-weight: 800;
}

p {
    line-height: 1.3;
    margin-bottom: 10px;
}

.hero {
    width: 100%;
    height: 500px;
    max-height: 100vh;
    padding: 32px;
    background-color: #eee;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    background-image: url(./hero.jpg);
    background-image: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,.4) 100%),url(./hero.jpg);
    background-image: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,.4) 100%),url(./hero.jpg);
    background-image: linear-gradient(to top,  rgba(255,255,255,1) 0%,rgba(255,255,255,.4) 100%),url(./hero.jpg);
    background-size: cover;
    background-position: center;
}
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    background-color: #fff;
    position: sticky;
    top: 0;
    padding: 16px 32px;
}
.navigation #logo {
    height: 45px;
}
.navigation ul {
    display: flex;
    list-style: none;
}
.navigation ul li a {
    color: rgba(0, 0, 0, .6);
    text-decoration: none;
    margin-right: 32px;
}
.navigation ul li a.active {
    color: #89618B;
    font-weight: 800;
}
.navigation ul li a:hover {
    color: rgba(0, 0, 0, 1);
}
.navigation ul li:last-of-type a {
    margin-right: 0;
}
.hero h1 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1.2;
    text-align: center;
}

h1 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero h2 {
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

h2, h3 {
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.hero .ctas {
    margin-top: 32px;
}
.btn {
    display: inline-block;
    padding: 16px;
    border-radius: 5px;
    color: #89618B;
    border: 1px solid #89618B;
    text-decoration: none;
    cursor: pointer;
}
.btn.btn-primary {
    background-color: #89618B;
    color: #fff;
}
.divider {
    display: flex;
    padding: 64px 0;
}
.content {
    width: 100%;
    padding: 32px;
}
.content .about {
    line-height: 2;
    margin-top: 32px;
}
.content .services {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content .service {
    width: calc(25% - 12px);
    background-color: #eee;
    flex-shrink: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.content .service:nth-child(5n) {
    margin-top: 16px;
}
.content .service img {
    width: 45px;
    margin-bottom: 8px;
}

.contact {
    padding: 32px;
    background: #fff;
    background-image: url(./footer.jpg);
    background-image: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,.6) 100%),url(./footer.jpg);
    background-image: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,.6) 100%),url(./footer.jpg);
    background-image: linear-gradient(to top,  rgba(255,255,255,1) 0%,rgba(255,255,255,.6) 100%),url(./footer.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}
.contact h3 {
    margin-bottom: 16px;
}
.contact form {
    width: calc(100% - 382px);
    padding: 32px;
    border-radius: 5px;
}
.contact input {
    display: block;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    margin-bottom: 16px;
    border-bottom: 3px solid #89618B;
}
.contact textarea {
    display: block;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    margin-bottom: 16px;
    resize: none;
    height: 150px;
    border-bottom: 3px solid #89618B;
}
.contact .not-required {
    border-bottom-color: #ccc;
}
.contact label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}
.sidebar {
    width: 350px;
    margin-left: 32px;
    border-left: 1px solid rgb(137, 97, 139);
    padding: 32px;
    flex-shrink: 0;
    background: #fff;
    background-image: url(./footer.jpg);
    background-image: -moz-linear-gradient(right,  rgba(137, 97, 139, .2) 0%, rgba(255,255,255,.6) 4px);
    background-image: -webkit-linear-gradient(right,  rgba(137, 97, 139, .2) 0%,rgba(255,255,255,.6) 4px);
    background-image: linear-gradient(to right,  rgba(137, 97, 139, .2) 0%,rgba(255,255,255,.6) 4px);
}
.profile img {
    width: 100%;
    border-radius: 5px;
}
.profile .name {
    margin-top: 16px;
    font-weight: 800;
}
.profile .desc {
    text-decoration: none;
    color: rgba(0, 0, 0, .6);
    margin-top: 16px;
    margin-bottom: 4px;
}
.profile .value, .profile a {
    text-decoration: none;
    color: #89618B;
    cursor: pointer;
}
.footer {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 32px;
}
.footer ul {
    margin-top: 16px;
    display: flex;
    list-style: none;
}
.footer a {
    color: rgba(0, 0, 0, .6);
}
.footer a:last-of-type {
    margin-left: 16px;
}
.dsgvo {
    display: flex;
}
.dsgvo input {
    display: inline;
    width: 20px;
    margin-top: 7px;
    margin-right: 8px;
}
form button {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 5px;
    color: #89618B;
    border: 1px solid #89618B;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
}
form button:hover {
    color: #fff;
    background-color: #89618B;
}
h4 {
    margin-top: 16px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 600px) {
    body {
        padding: 8px;
    }
    .content .service {
        width: calc(50% - 8px);
        margin-bottom: 16px;
    }
    .contact {
        flex-wrap: wrap;
    }
    .contact form {
        width: 100%;
    }
    .sidebar {
        width: 100%;
        margin-left: -8px;
    }
    .hero, .navigation, .content, .contact {
        padding: 8px;
    }
    .navigation ul li a {
        color: rgba(0, 0, 0, .6);
        text-decoration: none;
        margin-right: 8px;
    }
    .navigation ul li:last-of-type a {
        margin-right: 0;
    }
}