
/**
lila: #c42d6d
rosa: #b690bb
grau: #758087
**/
:root {
    --main-color:#C42E6D;
    --second-color: #EA7FB1;
    --third-color: #758087;
}

/* 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('fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - 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: 500;
  src: url('fonts/poppins-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - 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: 600;
  src: url('fonts/poppins-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* 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('fonts/poppins-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* 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('fonts/poppins-v23-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-900 - 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: 900;
  src: url('fonts/poppins-v23-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size:18px;
    margin:0;
    background:var(--second-color);
    font-weight:300;
    color:#353535;
    /*background-image:url('hintergrund_neu.png');
    background-repeat: repeat-x;
    background-attachment: fixed; */
}

hr {
    border-color: var(--main-color);
    border-style: solid;
    max-width: 600px;
    margin: 1em auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins';
    font-weight:600;
    color:var(--third-color);
    hyphens: auto;
    letter-spacing: -0.5px;
    margin:0.1em 0;
}

h1 {
    font-size:34px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h1>span {
    text-transform: uppercase;
    vertical-align: middle;
    font-weight:300;
}

h2>span, h3>span {
    text-transform: uppercase;
    vertical-align: middle;
    font-weight:800;
    font-size:80%;
}

h3 + p {
    margin-top: 0.5em;
}

a {
    color:var(--main-color);
    text-decoration:none;
}

a:hover {
    color:var(--main-color);
    text-decoration:underline;
}

a:visited, a:active {
    color:var(--main-color);
}

table th {
    text-align:left;
    padding-right:10px;
}


strong {
    font-weight:800;
}
.container {
    position: relative;
    background-color:transparent;
    position:relative;
    max-width: 1100px;
    margin: 0 auto;
    border-left: 1px solid #f0f1ed;
    border-right: 1px solid #f0f1ed;
    transition:0.5s max-width ease-in-out;
}

svg#Hintergrund {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.logo {
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    max-height:99px;
    height:99px;
    z-index:3;
    background-repeat: repeat-x;
    background-color:#f2ecec;
    border-bottom:1px solid white;
}

.logo img {
    position: relative;
    padding: 5px 0 5px 40px;
    width: auto;
    height: 100%;
}

.logo-hg {
    position: relative;
    width: 295px;
    max-height:99px;
}

.logo-hg a {
    display:flex;
    height:99px;
    max-height:99px;
    align-items:center;
}

.menu-top {
    flex:1 1 auto;
    text-align: right;
    margin-left: -20px;
    padding-right: 20px;
}

.menu-container {
    padding:2.5%;
}

.menu-container a {
    padding:0 20px;
    font-weight:bold;
    color: var(--third-color);
    text-decoration: none;

}

.menu-container a.link.active, .menu-container a:hover {
    text-decoration: underline;
    color: var(--main-color);
}

.unterseiten .content {
    padding: 2% 5% 5% 5%;
    background-color: white;
}

.content {
    position: relative;
}

@media screen and (min-width:990px) {
    .content {
        min-height: 500px;
    }
}

.flex-container {
    clear:right;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
    position: relative;
    z-index: 2;
    background-color: white;
    padding:25px 50px;
    gap:40px;
}

.flex-container .flex-div {
    padding: 2% 2% 8% 2%;
    width: 46%;
}

.flex-container .flex-full {
    width: 100%;
    text-align:center;
    color: #353535;
    align-content: center;
}

.flex-container .flex-half {
    flex: 1 1 auto;
    align-self: flex-start;
}

.unterseiten .header.header-full {
    padding: 1% 5% 0.5% 5%;
    display: block;
    width: auto;
    left: 0;
}

.unterseiten .header.header-full h1 {
    color:#fff;
    font-weight:700;
}

.unterseiten .header {
    background-color: var(--main-color);
    color: #fff;
    z-index: 1;
    position: relative;
    padding: 3% 4% 1% 4%;
    margin: 2% 0;
}

@media screen and (max-width:768px) {
    .container {
        margin:0;
    }

    .not-mobile {
        display:none;
    }

    .menu-top {
        text-align:center;
    }

    .menu-container a {
        display:block;
    }
}

.footer {
    background-color: #f2ecec;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    padding:20px;
    bottom: 0;
    color:#484848;
    /*position: sticky; */
    z-index: 2;
}

.footer-trenner {
    margin:0 10px;
}

.contact-footer {
    white-space: nowrap;
}

.footer a {
    color:#484848;
}

.footer-left {
    width:75%;
}

.footer-right {
    text-align:right;
    width:25%;
}

.footer-right a, .footer > a {
    margin: 0 10px;
}

.footer-right a:first-of-type {
    margin-left:0;
}

.footer-right a:last-of-type {
    margin-right: 0;
  }

.footer-right a:hover, .footer > a:hover {
    text-decoration: underline;
    color:#fff;
}

.footer .link.active {
    text-decoration: underline;
}

@media (max-width:989px) {

    .container, .flex-container {
        min-height:auto;
    }

    .flex-container .flex-div {
        width: 100%;
    }

    .text-left {
        max-width: 100%;
        margin-top:50%;
        margin-bottom:15%;
    }

    .footer div {
        width:100%;
        text-align: center;
    }

    .footer .footer-left:not(:empty),
    .footer .footer-right:not(:empty) {
        margin:2% 0;
        text-align:center;
    }

    .contact-footer {
        display:block;
        width:100%;
    }

    .footer-trenner {
        display: none;
    }

}

@media (min-width:768px) and (max-width:989px) {

    .footer {
        padding: 10px;
    }

    .footer .footer-left:not(:empty), .footer .footer-right:not(:empty) {
        margin: 1% 0;
    }
}

@media (max-width:767px) {

}

@media (max-width:576px) {


}



/* Menu Icon */

.menu-container {
    display:none;
}

#menu .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    z-index:10;
}

#menu .menu-icon .navicon {
    background: white;
    display: block;
    height: 2px;
    width: 18px;
    position: relative;
    transition: background .2s ease-out;

}

#menu .menu-icon .navicon:before,
#menu .menu-icon .navicon:after {
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

#menu .menu-icon .navicon:before {
    top: 5px;
}

#menu .menu-icon .navicon:after {
    top: -5px;
}

/* Menu Button */
#menu .menu-btn {
    display: none;
}

#menu .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

#menu .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

#menu .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

#menu .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
#menu .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
    #menu li {
        float: left;
    }

    #menu li a {
        padding: 20px 30px;
    }

    #menu .menu-container {
        display:block;
    }

    #menu .menu-icon {
        display: none;
    }
}

@media (max-width:48em) {
    #menu .menu-btn:checked~.menu-container {
        position:fixed;
        display:block;
        top:0;
        left:0;
        height: 100%;
        width:100%;
        background-color: rgba(120, 120, 120, 0.8);
        backdrop-filter: blur(2px);
        z-index: 5;
        padding-top: 50px;
    }

    #menu .menu-btn:checked~.menu-container a {
        margin:50px 20px;
    }
}

.logo-content {
    max-width:300px;
    height:auto;
    margin-bottom:-20px;
    margin-left:-20px;
}