
.überschrift_cont {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Abstand zwischen Linie und Text */
}

.line {
  flex: 1; /* Linie dehnt sich aus */
  height: 2px; /* Dicke der Linie */
  background-color: #388a9c90; /* Farbe der Linie */
}

.text {
  font-size: 2em; /* Schriftgröße */
  text-align: center; /* Text zentrieren */
  line-height: 1.4; /* Zeilenhöhe */
  word-wrap: break-word; /* Erlaubt den Zeilenumbruch */
  overflow-wrap: anywhere; /* Bricht überall um */
  white-space: normal; /* Normale Zeilenumbrüche */
  max-width: 100%; /* Text passt sich der Breite an */
}


.dienstleistungen {
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0px;
    width: 100%;
    height: auto;
}

.dienstleistung_typ {
    display: flex;
    flex-direction: column;
    width: 30%;
    height:auto;
    align-items: center;
}
.img_wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #ccc;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    aspect-ratio: 1/1;
    position: relative;
}

.beratung_img,
.planung_img {
    width: 131vh;
    height: 131vh;
    position: relative;
    object-fit: cover;
    object-position: center 35%;
    top: 0;
    border-radius: 30px;
}

.ausführung_img {
    width: 131vh;
    height: 131vh;
    position: relative;
    object-fit: cover;
    object-position: center 10%;
    top: 0;
    border-radius: 30px;
}

.hacken_liste {
    list-style-type: none; /* Entfernt die Standard-Bullets */
    padding: 0; /* Entfernt die Standard-Padding der Liste */
    font-size: 1.3rem;
    padding-left: 0px;
}

/* Stile für die einzelnen Listenelemente */
.hacken_liste li {
    position: relative; /* Ermöglicht das Positionieren der benutzerdefinierten Häkchen */
    padding-left: 25px; /* Platz für das benutzerdefinierte Häkchen */
    margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
    color: #388a9c;
}

/* Stile für das benutzerdefinierte Häkchen */
.hacken_liste li::before {
    content: '\2714'; /* Unicode für das Häkchen-Symbol */
    font-size: 20px; /* Größe des Häkchens */
    color: #388a9c; /* Farbe des Häkchens */
    position: absolute; /* Positionierung des Häkchens */
    left: 0; /* Position des Häkchens links */
/*
    top: 50%;  Vertikale Zentrierung des Häkchens
*/
/*
    transform: translateY(-50%); */
/* Korrektur der vertikalen Zentrierung *//

}

h1 {
    color: #388a9c;
    text-transform: uppercase;
}

@media (max-width:576px) {
    .dienstleistungen {
        flex-direction: column;
    }
    .dienstleistung_typ{
    width: 100%;
    }
}
.objektart h1 {
    color: white;
    text-transform: uppercase;
}

.objektart {
    display: flex;
    flex-direction: column;
    background-color: #388a9c90;
}

.objektart_elt_cont {
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0px;
    width: 100%;
    height: auto;
}

.objektart_elt {
    display: flex;
    flex-direction: column;
    width: 30%;
    height:auto;
    align-items: center;
}

.objektart_elt .img_wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #ccc;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.objektart_elt .img_wrapper .neubau_img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: center 35%;
    top: 0;
    border-radius: 30px;
}

.objektart_elt .img_wrapper .umbau_img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: center 65%;
    top: 0;
    border-radius: 30px;
}

.objektart_elt .img_wrapper .sanierung_img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: center 50%;
    top: 0;
    border-radius: 30px;
}

.obj_lst {
    display: flex;
    justify-content: center;
    width: 100%;
}

.list_neu_um_cont {
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    }

.list_neu_um_cont div h2 {
    text-align: center;
    color: white;
}

.list_sani_cont div h2 {
    text-align: center;
    color: white;
}

.list_sani_cont {
    width: 30%;
    display: flex;
    justify-content: center;
}

.hacken_liste_white_small {
    list-style-type: none; /* Entfernt die Standard-Bullets */
    padding: 0; /* Entfernt die Standard-Padding der Liste */
    font-size: 1.0rem;
    padding-left: 0px;
}

/* Stile für die einzelnen Listenelemente */
.hacken_liste_white_small li {
    position: relative; /* Ermöglicht das Positionieren der benutzerdefinierten Häkchen */
    padding-left: 25px; /* Platz für das benutzerdefinierte Häkchen */
    margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
    color: white;
}

/* Stile für das benutzerdefinierte Häkchen */
.hacken_liste_white_small li::before {
    content: '\2714'; /* Unicode für das Häkchen-Symbol */
    font-size: 15px; /* Größe des Häkchens */
    color: #388a9c; /* Farbe des Häkchens */
    position: absolute; /* Positionierung des Häkchens */
    left: 0; /* Position des Häkchens links */
    top: 0%;  /*Vertikale Zentrierung des Häkchens */
    transform: translateY(-50%); /* Korrektur der vertikalen Zentrierung *//
}

@media (max-width:576px) {
    .dienstleistungen {
        padding: 10px;
    }
    .objektart_elt_cont {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px;
    }
    .objektart_elt {
        width: 100%;
    }
    .obj_lst {
        flex-direction: column;
        align-items: center;
    }
    .list_neu_um_cont {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .list_neu_um_cont div h2{
        text-align: left;
    }    .list_sani_cont {
        align-items: center;
        width: 100%;
    }
}