* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    scroll-margin-top: 50px;
}

p {
    color: black;
    font-size: 17px;
    margin: 0 10px;
    font-weight: 600;
    letter-spacing: 1.125px;
    text-transform: uppercase;
    line-height: 1.35;
    font-family: Montserrat, sans-serif;
}

a {
    color: #777;
    font-size: 17px;
    margin: 0 10px;
    font-weight: 290;
    letter-spacing: 1.125px;
    text-transform: uppercase;
    line-height: 1.35;
}

h1 {
    font-size: 2em;
    margin: 0 10px;
    font-weight: 450;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    color: #000;
    font-size: 20px;
    margin: 0 10px;
    font-weight: 350;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h3 {
    text-align: center;
    font-weight: 600;
    color: #000;
    margin: 15px;
}

h4 {
    font-family: 'Quentin', sans-serif;
    color: rgba(197, 157, 95, 1);
    display: block;
    font-size: 66px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 6;
    line-height: 1em;
}

h5 {
    color: #000;
    font-size: 37px;
    font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.2em;
    
    font-family: Montserrat, sans-serif;
}

h6 {
    font-size: 20px;
    font-weight:400;
    letter-spacing: .25em;
    line-height: 1.33em;
    color: #000;
}



header {
    height: auto;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    background-color: #fff;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

nav.tall {
    height: 100px;
}

.navbar-logo img {
    padding-left: 1vw;
    -webkit-transition: right 0.5s, max-height 0.2s ease-out;
    transition: right 0.5s, max-height 0.2s ease-out;
}

.navbar-links {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    transition: 0.5s;
    background-color: transparent;
    padding-right: 30px;
}

.navbar-links .active {
    color: rgba(200, 170, 34, 1)
}

.navbar-links li a {
    font-size: 16px;
    line-height: em;
    /*---regelt Abstand zwischen Auflistungspunkten---*/
    letter-spacing: 0.19em;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 0 20px 0 0;
}

.navbar-links li div a {
    color: #fff;
}

.navbar-links_kontakt {
    background-color: black;
    padding: 10px 50px 10px 0px;
}

.navbar-links li a:hover {
    color: rgba(120, 102, 20, 1);
}

.navbar-toggle {
    position: absolute;
    display: none;
    right: min(2vw, 50px);
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: url(bilder/menu_1.png);
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.navbar-toggle.active {
    right: min(2vw, 50px);
    background: url(bilder/close_4.png);
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 998;
}

.highlighted-links-container {
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 60%);
    width: 200px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(200, 170, 34, 1);
    letter-spacing: 0.2em;
}

.highlighted-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlighted-links li {
    font-weight: 600;
    font-size: 16px;
}

.overlayer.active {
    /*---Grauer Schleier, wenn navbar-toggle offen---*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2;
    transition: ease-in-out 0.3s;
}

/* Feedback */

.feedback_container {
    position: fixed;
    top: 50%;
    right: 0;
    height: 130px;
    width: 45px;
    transform: translate(0%, -50%);
    z-index: 100;
}

.feedback_container_link {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 200;
}

.feedback_background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 0, 0, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.feedback_container_text {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.feedback_container_text h1 {
    text-transform: none;
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.feedback_container_emoji {
    background-image: url(bilder/feedback.png);
    background-size: cover;
    height: 30px;
    width: 30px;
    margin-top: 7px;
}

.feedback_container:hover .feedback_background {
    background-color: rgba(255, 50, 50, 1);
}

.Startseite,
.Startseite_zweithaar {
    
    width: 100vw;
    height: auto;
    background-color: rgba(197, 157, 95, 1);
    margin-left: auto;
    margin-right: auto;
}

.video_container {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.video_container_frame {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: solid 3px rgba(200, 170, 34, 1);
    ;
}

.video_banner {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 20%;
}

.text-box,
.text-box_zweithaar {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.text-box_zweithaar {
    top: 40%;
}

.text-box h1,
.text-box_zweithaar h1 {
    text-transform: none;
    font-family: 'Quentin', sans-serif;
    color: rgba(200, 170, 34, 1);
    display: block;
    font-size: min(10vw, 66px);
    font-style: normal;
    font-weight: 100;
    letter-spacing: 0;
    line-height: 0.5em;
}

.text-box h2,
.text-box_zweithaar h2 {
    font-size: min(10vw, 80px);
    text-transform: none;
    color: #fff;
    
}

.text-box h3,
.text-box_zweithaar h3 {
    font-size: min(6vw, 30px);
    font-weight: 400;
    text-transform: none;
    color: #fff;
}

.text-box p,
.text-box_zweithaar p {
    font-size: min(5vw, 20px);
    font-weight: 400;
    text-transform: none;
    color: #fff;
}

.text-box span,
.text-box_zweithaar span {
    
    color: rgba(200, 170, 34, 1);
    font-weight: 600;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
    -moz-text-stroke: 1px rgba(0, 0, 0, 0.2);
}

.banner_container_main {
    display: flex;
    flex-direction: row;
}

.banner_container_main h1 {
    color: #6e6e73;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .25em;
    line-height: 1.33em;
    text-transform: uppercase;
}

.banner_container_main h2 {
    color: rgba(200, 170, 34, 1);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
    line-height: 2em;
}

.banner_container_2 h2 {
    color: #fff;
}

.header-btn-total {
    padding-top: 50px;
}

.header-btn-total a {
    text-decoration: none;
}


.banner_container_1,
.banner_container_2,
.banner_container_3 {
    position: relative;
    background-color: #fff;
    height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner_container_2 {
    background-color: #000;
}

.banner_container_1::before,
.banner_container_2::before,
.banner_container_3::before {
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 3px solid transparent;
    transform: scale(0.96);
    transition: all .2s cubic-bezier(.77, 0, .175, 1);
}

.banner_container_1:hover::before,
.banner_container_2:hover::before,
.banner_container_3:hover::before {
    border-color: rgba(200, 170, 34, 1);
    transform: scale(1);
    transition: all .2s cubic-bezier(.77, 0, .175, 1);
}

.banner_container_2:hover::before {
    border-color: #fff;
}

.banner_container_link {
    position: absolute;
    background-color: transparent;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.banner_container_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner_container_1_text {
    background-color: red;
}

.über_uns {
    
    width: 100vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.toggle_window_krankenkasse,
.toggle_window {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 1142px;
    height: 100%;
    background-color: black;
    z-index: 10;
    border-radius: 15px;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    opacity: 1;
}

.toggle_window_krankenkasse {
    background-color:#fff;
}

.toggle_window_krankenkasse.active,
.toggle_window.active {
    bottom: -56px;
    opacity: 1;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.overlayer1_krankenkasse,
.overlayer1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: cubic-bezier(0.3, 0, 0.8, 0) 0.6s;
    z-index: -1;
    opacity: 0;
}

.overlayer1_krankenkasse.active,
.overlayer1.active {
    /*---Grauer Schleier, wenn navbar-toggle offen---*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: cubic-bezier(0.3, 0, 0.8, 0) 0.7s;
    z-index: 2;
    opacity: 1;
}

.toggle_window_container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exit_container {
    position: relative;
    height: auto;
    display: flex;
    justify-content: end;
    border-radius: 15px;
    margin: 20px 20px 0 0;
}
.exit_icon,
.exit_icon_krankenkasse {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: url(bilder/close_4.png);
    background-size: 26px;
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: center;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.exit_icon_krankenkasse:hover,
.exit_icon:hover {
    background-color: #ccc; 
}

.text_kontainer_krankenkasse,
.text_kontainer {
    margin: 40px 30px 0px 30px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.text_kontainer_krankenkasse h5,
.text_kontainer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.text_kontainer_krankenkasse h5 {
    color: rgba(110, 110, 115, 1)
}

.text_kontainer h5 span,
.text_kontainer p span {
    color: #86868b;
    margin-bottom: 20px;
}

.text_kontainer_krankenkasse h5 span {
    color: rgba(200, 170, 34, 1);
    font-family: Montserrat, sans-serif;
}

.text_kontainer_krankenkasse p,
.text_kontainer p {
    color: #fff;
    text-transform: none;
}

.text_kontainer_krankenkasse p {
    color: rgba(110, 110, 115, 1);
}

.text_kontainer_krankenkasse p span {
    color: rgba(200, 170, 34, 1);
}

.text_kontainer_outer_scroll {
    margin: 0px 0px 90px ;
}

.über_uns .navbar-toggle {
    top: 0%;
    right: 50%;
    background-color: blue;
    transform: translateY(-0%,0);
}

.navbar-toggle {
    position: absolute;
    display: none;
    right: min(2vw, 50px);
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: url(bilder/menu_1.png);
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.navbar-toggle.active {
    right: min(2vw, 50px);
    background: url(bilder/close_4.png);
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 998;
}

.Über_uns_background {
    background-color: transparent;
}

.Über_uns_background:after {
    content: "";
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: -1;
    background: url('bilder/background_black.jpg') 60% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.über_uns_content {
    padding: 150px;
    background-color: rgba(0, 0, 0, 0.6);
}

.über_uns .content_text_content {
    margin-top: 70px
}

.headline_text {
    position: relative;
    display: inline-block;
    width: 100%;
}

.headline_text h4 {
    position: absolute;
    font-size: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, -45%);
    font-size: 200px;
    opacity: 0.2;
    white-space: nowrap;
}

.über_uns_content .headline_text h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.15em;
}

.über_uns_content .headline_text h6 span {
    color: rgba(200, 170, 34, 1);
    font-weight: 550;
    
}

.über_uns_content .headline_text h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 90%);
    color: #fff;
    white-space: nowrap;
    font-size: 45px;
    text-transform: uppercase;
}

.über_uns_content_colum,
.über_uns_content_colum_1 {
    height: 100%;
    width: 100%;
    max-width: 1242px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 180px;
}

.über_uns_content_colum {
    margin-top: 0px;
}

.über_uns_content_column_picture {
    position: relative;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
}

.über_uns_content_column_picture h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .25em;
    line-height: 1.33em;
    text-transform: none;
    padding-top: 15px;
}

.über_uns_content_column_picture h1 {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .25em;
    line-height: 1.33em;
    text-transform: none;
    padding-top: 15px;
}

.über_uns_content_colum_picture_cicle {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 50%;
    background-color: #007bff;
    background-image: url(bilder/carmen_3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.content_text {
    position: relative;
    width: 66%;
    text-align: center;
    padding: 0 0 0 0;
}

.textanimation,
.textanimation_1 {
    opacity: 0;
    transform: translateY(25px);
    transition: transform 500ms cubic-bezier(0, 0, 0.5, 1), opacity 500ms cubic-bezier(1, 1, 0.5, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0, 0, 0.5, 1), opacity 500ms cubic-bezier(0, 0, 0.5, 1);
}

.textanimation.active,
.textanimation_1.active {
    transform: translateY(0);
    opacity: 1;
    -webkit-transform: translateY(0);
}


.content_text_content  {
    margin-top: 180px ;
}

.content_text_content h5 {
    color: #fff;
}

.content_text_content h5 span {
    color: #86868b;
    font-family: Montserrat, sans-serif;
}

.content_text_content p {
    color: #fff;
}

.content_text_column {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  


.card input {
    opacity: 0;
}

.toggle {
    pointer-events: none;
    border-radius: 50%;
    transition: 0.5s;
    text-align: center;
    line-height: 50px;
    font-size: 36px;
    font-weight: 250;
    box-shadow: 0 0 0 0px rgba(236, 204, 95);
    color: #222;
}

.card input:checked~.toggle {
    box-shadow: 0 0 0 750px rgba(236, 204, 95, 1);
    transform: rotate(225deg);
    border: 1px solid #fff;
    color: #fff;
}

.details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    box-sizing: border-box;
    z-index: 1;
    pointer-events: none;
    transition: 0.5s;
    opacity: 0;
}

.card input:checked~.details {
    opacity: 1;
    transition-delay: 0.5s;
}

.details p {
    color: #000;
    font-size: min(3.5vw, 17px);
    font-weight: 290;
    letter-spacing: 1.125px;
    text-transform: none;
    line-height: 1.35;
}

.details h2 {
    color: #000;
    font-weight: 600;
}

.details h3 {
    padding-bottom: 15px;
}

.details h2:hover {
    color: #fff;
    cursor: pointer;
}

.details ul li a:hover {
    color: #fff;
    cursor: pointer;
}

/*--- Service_3-Schritte---*/

.service {
    position: relative;
    width: 100vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;

}

/*--------*/

.sticky {
    height: 100%;
    width: 100%;
    background-color: transparent;
    padding: 110px 0px 70px 0px;
}

.perücken_background .sticky {
    padding: 110px 0px 150px 0px;
}

.Über_uns_background_1 {
    background-image: url(bilder/leistungen_backgound_2_1920x1100.jpg);
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    /* Für WebKit-Browser */
    background-size: cover;
    background-position: 50%;
    /* Y-Position wird durch JS-Code beeinflusst! */
    background-repeat: no-repeat;
    padding: 40px 0px 150px 0px;
}

.über_uns_background_1_content {
    max-width: 1142px;
    margin: auto;
}

.über_uns_content_1 {
    background-color: rgba(0, 0, 0, 0);
    padding: 0% 45% 0% 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline_text {
    position: relative;
    display: inline-block;
    width: 100%;
}

.über_uns_content_1 .headline_text h4 {
    position: absolute;
    font-size: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, -45%);
    font-size: 200px;
    opacity: 0.2;
    white-space: nowrap;
}

.über_uns_content_1 .headline_text h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.15em;
}

.über_uns_content_1 .headline_text h6 span {
    color: rgba(200, 170, 34, 1);
    font-weight: 550;
   
}

.über_uns_content_1 .headline_text h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 90%);
    color: #000;
    font-size: 45px;
    text-transform: uppercase;
}

.über_uns_content_1 .content_text_1 {
    position: relative;
    width: 100%;
    margin-top: 180px;
    padding: 0px 10%;
    text-align: center;
}

.über_uns_content_1 .content_text_content_1 h5 {
    color: #6e6e73;
}

.über_uns_content_1 .content_text_content_1 h5 span {
    color: rgba(200, 170, 34, 1);
    font-family: Montserrat, sans-serif;
    
}

.service_video_background {
    padding: 100px 0 0 0;
    /*background-image: url(bilder/leistungen_video_background.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    background-attachment: fixed;*/
}

.servic_video_sice {
    max-width: 1142px;
    margin: auto;
}

.service_video_container {
    position: relative;
    width: 100%;
}

.service_video_element {
    width: 100%;
    height: 100%;
}

/* einbauen */

.service_video_media_player {
    position: absolute;
    background-color: rgba(200, 170, 34, 0.25);
    width: 100%;
    bottom: 1.2%;
    padding-bottom: 10px;
    opacity: 0;
    transition: 0.2s;
}

/* Apply hover effect only when infoOverlayer is not displayed */
.service_video_container:not(.info-overlayer-displayed):hover .service_video_media_player {
    opacity: 1;
}

.service_video_media_player_top {
    margin: 10px 10px 0 10px;
}

.service_video_timeline {
    width: 100%;
    background-color: transparent
}

/* Webkit-basierte Browser (Chrome, Safari, etc.) */
.service_video_timeline::-webkit-slider-runnable-track {
    background-color: black;
    height: 5px;
    border-radius: 15px;
}

.service_video_timeline::-webkit-slider-thumb {
    background-color: rgba(200, 170, 34, 1);
}

/* Firefox-Browser */
.service_video_timeline::-moz-range-track {
    background-color: black;
    height: 5px;
    border-radius: 15px;
}

.service_video_timeline::-moz-range-thumb {
    background-color: rgba(200, 170, 34, 1);
}

/* Internet Explorer */
.service_video_timeline::-ms-track {
    background-color: black;
    height: 5px;
    border-radius: 15px;
}

.service_video_timeline::-ms-thumb {
    background-color: rgba(200, 170, 34, 1);
}

.service_video_media_player_bottm {
    display: flex;
    margin: 0 10px 0 10px;
    align-items: center;
}

.service_video_play-button {
    background: url(bilder/play-button.png);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    margin: 0 10px 0 0;
    padding: 10px;
    transition: 0.2s;
}

.service_video_play-button.active {
    background: url(bilder/pause-button.png);
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    margin: 0 10px 0 0;
}

.service_video_info-overlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
}

.service_video_info-overlayer_titel_poster {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border: solid 3px rgba(200, 170, 34, 1);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.service_video_info-overlayer_titel_playbutton {
    width: 100%;
    height: 100%;
    background-image: url(bilder/play-button_800x800_rgba_200_170_34.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200px;
}

/*.service_video_info-overlayer_titel_playbutton::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: solid 3px rgba(200, 170, 34, 1);
}*/

.service_video_info-overlayer_titel {
    margin: 20px;
}

.service_video_info-overlayer_titel h1 {
    color: rgba(110, 110, 115, 1);
    text-transform: none;
}

.service_video_container_play-button.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(bilder/pause-button.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200px;
}

.service_video_info-overlayer_titel_text {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 12px;
}

.play-button {
    font-size: 48px;
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.service_video_volume {
    display: flex;
}

.service_video_volume_icon {
    background: url(bilder/icon_volume_mid_500x474.png);
    background-size: 23px;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    margin: 0 10px 0 0;
    padding: 12px;
}

.service_video_volume_icon.active {
    background: url(bilder/icon_volume_mute_500x474.png);
    background-size: 23px;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    margin: 0 10px 0 0;
    padding: 12px;
}

.service_video_volume-slider {
    width: auto;
    margin: 0 10px 0 0;
    background-color: transparent;
}

/* Webkit-basierte Browser (Chrome, Safari, etc.) */
.service_video_volume-slider::-webkit-slider-runnable-track {
    background-color: black;
    height: 5px;
    border-radius: 15px;
}

.service_video_volume-slider::-webkit-slider-thumb {
    background-color: rgba(200, 170, 34, 1);
}

/* Firefox-Browser */
.service_video_volume-slider::-moz-range-track {
    background-color: black;
    height: 5px;
    border-radius: 15px;
}

.service_video_volume-slider::-moz-range-thumb {
    background-color: rgba(200, 170, 34, 1);
}

/* Internet Explorer */
.service_video_volume-slider::-ms-track {
    background-color: black;
    height: 5px;
    border-radius: 15px;
}

.service_video_volume-slider::-ms-thumb {
    background-color: rgba(200, 170, 34, 1);
}

.service_video_duration {
    width: auto;
}

/*einbauen*/

.NavService_container {
    max-width: 1142px;
    margin: auto;
}

.NavService {
    position: relative;
    height: auto;
    width: auto;
}

.NavService h2 {
    font-size: min(2.8vw, 20px);
}

.BtnNavService,
.BtnNavService1,
.BtnNavService2 {
    position: absolute;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 0px;
    height: 80px;
    width: 34%;
}

.BtnNavService::after,
.BtnNavService1::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    /* Abstand zur rechten Seite */
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
}

/*BtnNavService*/

.BtnNavService {
    z-index: 3;
    background-color: rgba(200, 170, 34, 1);
}

.BtnNavService::after {
    border-left: 15px solid rgba(200, 170, 34, 1);

}

.BtnNavService.active {
    background-color: rgba(200, 170, 34, 1);
}

.BtnNavService.active::after {
    border-left: 15px solid rgba(200, 170, 34, 1);
}

.BtnNavService:hover {
    background-color: rgba(250, 250, 200, 1);
}

.BtnNavService:hover::after {
    border-left: 15px solid rgba(250, 250, 200, 1);
    ;
}

/*BtnNavService1*/

.BtnNavService1 {
    background-color: rgba(236, 204, 95);
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 2;
}

.BtnNavService1:after {
    border-left: 15px solid rgba(236, 204, 95);
    /* Farbe ändern bei Hover */
}

.BtnNavService1.active {
    background-color: rgba(236, 204, 95);
    /* Hintergrundfarbe ändern bei Aktivierung */
}

.BtnNavService1.active::after {
    border-left: 15px solid rgba(236, 204, 95);
    /* Farbe ändern bei Hover */
}

.BtnNavService1:hover {
    background-color: rgba(250, 250, 200, 1);

}

.BtnNavService1:hover::after {
    border-left: 15px solid rgba(250, 250, 200, 1);

}

/*BtnNavService2*/

.BtnNavService2 {
    background-color: rgba(236, 220, 150);
    right: 0%;
    transform: translate(0.1%, 0%);
    z-index: 1;
}

.BtnNavService2.active {
    background-color: rgba(236, 220, 150);
    /* Hintergrundfarbe ändern bei Aktivierung */
}

.BtnNavService2:hover {
    background-color: rgba(250, 250, 200, 1);
    ;
    /* Hintergrundfarbe ändern bei Hover */
}

.NavService button p {
    text-transform: none;
    font-weight: 450;
}

/* BtnNavservice Ende */

.ServiceContent {
    position: relative;
    height: 600px;
    width: 100%;
    background-color: rgba(200, 170, 34, 1);
}

.ServiceContent1 {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    
}

.ServiceContent p {
    margin: 0;
    padding: 0;
    color: #000;
}

.ServiceContentColumn {
    position: absolute;
    height: 75%;
    width: 88%;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 15%);
}

.ServiceContentColumn_Content_1 {
    text-align: left;
}

.ServiceContentColumn_Content_1 h1 {
    margin: 0px;
    margin-bottom: 20px;
}

.ServiceContentColumn_Content_1 h3 {
    text-align: left;
    font-weight: 600;
    margin: 0px;
}

.ServiceContentColumn_Content_1 p,
.ServiceContentColumn_Content_1 ul li,
.ServiceContentColumn_Content_1 a {
    color: rgba(110, 110, 115, 1);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.125px;
    text-transform: none;
    line-height: 1.35;
}

.ServiceContentColumn_Content_1 span,
.ServiceContentColumn_Content_1 ul li {
    font-weight: 600;
    color: #000;
}

.ServiceContentColumn_Content_1 ul {
    margin: 15px 30px;
    list-style: disc;
}

.ServiceContentColumn_Content_1 a {
    margin: 0;
    text-decoration: none;
}

.ServiceContentColumn_Content_1 ul li a:hover {
    color: #fff;
    cursor: pointer;
}

/*---Partner---*/

.partner {
    width: 100vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.partner_background {
    background-color: #000;
    padding: 100px 0px;
}

.partner_backgrund_max-width {
    position: relative;
    max-width: 1142px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto;
    height: 150px;
}

.partner_backgrund_max-width_caroussel {
    display: flex;
}

.partner_content_brand_position {
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: transform 0.4s ease;
    /* Hinzugefügt für sanfte Animation */
    padding: 0 30px;
}

.partner_content_brand_position:hover {
    transform: translateY(-180px);
    /* Verschiebe die Bilder nach oben */
}

.partner_content_brand_position img {
    height: 142px;
    margin: 15px 0px;
}

/*----Krankenkasse----*/

.krankenkasse {
    width: 100vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.krankenkasse .content_text_content h5 {
    color: rgba(200, 170, 34, 1);
}

.krankenkasse .hover-container3 {
    position: relative;
    margin-top: 70px;
}

.Über_uns_background_krankenkasse {
    background-image: url("bilder/krankenkasse_7_1920x1100_weiß.jpg");
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    /* Für WebKit-Browser */
    background-size: cover;
    background-position: 50%;
    /* Y-Position wird durch JS-Code beeinflusst! */
    background-repeat: no-repeat;
    padding: 150px 0px;
}

.card_krankenkasse {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    height: 450px;
    background-attachment: fixed;
    background-position: 0px, 400px;
    background-image: url("bilder/krankenkasse_5_2248x1500.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.card_krankenkasse input,
.toggle {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    outline: none;
    z-index: 1;
    background-color: #007bff;
    cursor: pointer;
}

.card_krankenkasse input {
    opacity: 0;
}

.card_krankenkasse input:checked~.toggle {
    box-shadow: 0 0 0 2200px rgba(255, 182, 71, 1);
    transform: rotate(225deg);
    color: #000;
}

.card_krankenkasse input:checked~.details {
    opacity: 1;
    transition-delay: 0.5s;
}

.krankenkasse_text {
    text-align: center;
    padding: 15px;
}

.krankenkasse_text h1 {
    font-size: 60px;
    font-weight: 1000;
    color: #007bff;
}

.krankenkasse_text p {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
}

.krankenkasse_text_1 {
    text-align: center;
    padding-top: 80px;
}

.krankenkasse_text_1 h1 {
    font-size: 40px;
    font-weight: 800;
    color: #000;
}

.krankenkasse_text_1 p {
    position: absolute;
    bottom: 40px;
    right: 80px;
    font-size: 15px;
    font-weight: 800;
    color: #007bff
}

.krankenkasse_text_1 span {
    color: #007bff
}

/*----footer----*/


.footer {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #000;
}

.footer p {
    color: #fff;
    text-transform: none;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7em;
}

.footer a {
    color: #fff;
    text-transform: none;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7em;
    margin: 0px 0px;
    text-decoration: none;
}

.footer h2 {
    font-weight: 600;
}

.footer_background {
    background-color: #000;
    padding: 100px 5%;
}

.footer_background_max-width {
    max-width: 1242px;
    margin: auto;
}

.footer_background_max-width_container {
    display: flex;
    text-align: left;
}

.footer_background_max-width_container_double_1 {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.footer_background_max-width_container_double_2 {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.footer_background_max-width_container_1 {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.footer_background_max-width_container_1_logo {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100%;
}

.footer_background_max-width_container_1_logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.footer_background_max-width_container_2 {
    width: 40%;
}

.footer_background_max-width_container h2 {
    color: #fff;
    margin-bottom: 24px;
}

.footer_background_max-width_container_2_email {
    padding-top: 16px;
}

.footer_background_max-width_container_3 {
    width: 50%;
}

.footer_background_max-width_container_3_container {
    display: flex;
    justify-content: space-between;
    width: 270px;
}

.footer_background_max-width_container_4 {
    max-width: 50%;
}

.footer_company_contact_impressum_safety {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
}

.footer_company_contact_impressum_safety:hover a {
    color: rgba(236, 204, 95);
    font-weight: 300;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.fa-heart {
    color: rgba(236, 204, 95);
}

.footer_contact_impressum_safety {
    padding-bottom: 30px;
}

.footer_contact_impressum_safety a {
    padding: 5px;
}

.footer_phone span {
    color: rgba(236, 204, 95);
    padding: 0 0 0 10px;
}

.footer_advertisment_background {
    background-color: #141414;
}

.footer_background_max-width {
    max-width: 1142px;
    margin: auto;
}

.footer_advertisment_background_max-width_container {
    padding: 30px;
}


/*------contact us page-------*/

.location {
    width: 100%;
    padding: 85px 0 50px;
    margin: auto;
    text-align: center;
    background-color: #fff;
}

.location_background {
    margin: auto;
}

.location_background h5 {
    text-transform: uppercase;
    font-size: 45px;
}

.location .content_text_content_1 {
    width: 90%;
    margin: auto;
}


.location .content_text_content_1 p {
    color: #000;
    text-transform: none;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7em;
    padding-top: 60px;
}

.location iframe {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    margin: auto;
}

.iframe {
    width: 90%;
    margin-top: 50px;
    height: 500px;
    border: 1px solid #000;
    border-radius: 0px;
    margin: 50px auto 0px auto;
}

.location {
    width: 100%;
    padding: 85px 0 50px;
    text-align: center;
    background-color: #fff;
}

.contact-us {
    width: 100%;
    padding-bottom: 185px;
    margin: auto;
    background-color: #fff;
}

.contact-us_background {
    margin: auto;
    width: 90%;
}

.contact-us_text_info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.row {
    display: flex;
    justify-content: space-between;
}

.contact-col {
    position: relative;
    flex-basis: 48%;
    width: 90%;
    margin: auto;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa-solid,
.contact-col div .fa-regular {
    font-size: 28px;
    color: #000;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 20px;
    line-height: 1.2em;
    text-decoration: none;
    text-transform: none;
    font-weight: 450;
}

.contact-col div h5 a {
    font-size: 16px;
    /* Hier die gewünschte Schriftgröße eintragen */
}

.contact-col div h5 a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 20px;
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1;
}

.contact-col input,
.contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #000;
    border-radius: 0px;
    box-sizing: border-box;
}

.contact-col textarea {
    margin-bottom: 0;
}


.contact-us_background .hover-container2 {
    border: 1px solid #000;
    color: #fff;
}

.contact-us_background .hover-container2::before {
    background-color: #000;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}


.contact-us_text {
    text-align: center;
    padding: 200px 0 50px 0;
}

.contact-us_text h1 {
    font-size: 60px;
}

/*--- Überführung neu---*/

.überführung {
    width: 90%;
    /* Breite ist 90% in px der Bildschirmbreite*/
    max-width: 1251px;
    /* Wenn Bildschirmbreite >1251px, --> width: 90% passt sich bis zu max-width: 1251px automatisch an! */
    min-height: auto;
    margin: auto;
    padding-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

/*--- impressum ---*/

.impressum {
    width: 90%;
    /* Breite ist 90% in px der Bildschirmbreite*/
    max-width: 1251px;
    /* Wenn Bildschirmbreite >1251px, --> width: 90% passt sich bis zu max-width: 1251px automatisch an! */
    min-height: auto;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 100px 0px;
}

.impressum p {
    color: #777;
    font-size: 15px;
    margin: 0 10px;
    font-weight: 290;
    letter-spacing: 1.125px;
    text-transform: none;
    line-height: 1.35;
}

.impressum h3 {
    font-size: 2em;
    margin: 0 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*--- Datenschutz---*/

.datenschutz {
    width: 90%;
    /* Breite ist 90% in px der Bildschirmbreite*/
    max-width: 1251px;
    /* Wenn Bildschirmbreite >1251px, --> width: 90% passt sich bis zu max-width: 1251px automatisch an! */
    min-height: auto;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 100px 0px;
}

.datenschutz ul {
    padding-left: 10%;
}

.datenschutz ul li {
    color: #777;
    font-size: 15px;
    font-weight: 290;
    letter-spacing: 1.125px;
    text-transform: none;
    line-height: 1.35;
    list-style: decimal;
}

.datenschutz p {
    color: #777;
    font-size: 15px;
    font-weight: 290;
    letter-spacing: 1.125px;
    text-transform: none;
    line-height: 1.35;
}

.datenschutz h2 {
    color: #222;
    font-size: 15px;
    margin: 0 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: none;
}

.datenschutz h3 {
    font-size: 2em;
    margin: 0 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*--- Perücken ---*/

.perücken_überführung {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.perücken_überführung .headline_text h4 {
    color: rgba(236, 204, 95, 1);
    opacity: 1;
}

.Über_uns_background {
    background-color: transparent;
}

.perücken_background_kontrast {
    background-color: rgba(0, 0, 0, 0.5);
}

.perücken_background_max-widh {
    max-width: 1142px;
    margin: auto;
    padding: 40px 0px 50px 0px;
}

.perücken_content {
    padding: 0% 0% 0% 0%;
    margin: 0 0 0 0;
    --width_image: 450px;
    --height_image: 600px;
    --width_image_start: 653px;
    --width_image_end: 653px;
}

.perücken_content .headline_text h4 {
    position: absolute;
    font-size: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, -45%);
    font-size: 200px;
    opacity: 0.2;
    white-space: nowrap;

}

.perücken_content .headline_text h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    color: #000;
    white-space: nowrap;
    color: #fff;
}

.perücken_content .headline_text h6 span {
    color: rgba(236, 204, 95);
    font-weight: 550;
    font-family: "Times New Roman", Times, serif;
}

.perücken_content .headline_text h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 90%);
    color: #000;
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
}

.perücken_content .content_text {
    position: relative;
    width: 100%;
    margin-top: 130px;
    text-align: left;
    padding-left: calc(50% - var(--width_image_start)/2);
}

.perücken_headline_1 .perücken_background_max-widh {
    align-items: left;
    padding: 0px;
    max-width: none;
    margin: none;
    padding-left: calc(50% - 653px/2);
    margin-inline-start: 20px;
}

.perücken_headline_1 .content_text {
    padding: 0;
    text-align: left;
}

.perücken_headline h2 {
    color: #fff;
    font-size: 60px;
    margin: 0;
}

.perücken_headline h1 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .25em;
    line-height: 1.33em;
    text-transform: none;
}

.perücken_gallery {
    position: relative;
    --width_image: 450px;
    --height_image: 600px;
    --width_image_start: 653px;
    --width_image_end: 653px;
    display: flex;
    flex-direction: column;
    margin-top: 45px;
}

.perücken_scroll_container {
    position: relative;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-bottom: 30px;
}

.image_container {
    position: relative;
    display: grid;
    grid-gap: 10px;
    grid-auto-flow: column;
    width: fit-content;
    padding-left: calc(50% - var(--width_image_start)/2);
    padding-right: calc(50% - var(--width_image_end)/2);
    list-style-type: none;
}

.perücken_image {
    position: relative;
    width: var(--width_image);
    min-height: var(--height_image);
    scroll-snap-align: center;
    list-style-type: none;
}

.perücken_image_1 {
    background-image: url(bilder/bergmann/frauen/model_3/Kira_grey-mix_1240x1754_70prozent_qualität.jpg);
    background-size: cover;
}

.perücken_image_2 {
    background-image: url(bilder/bergmann/frauen/hintergrund_weiß/Amelie_champagne-rooted_1200x1697_70prozent_qualität.jpg);
    background-size: cover;
}

.perücken_image_3 {
    background-image: url(bilder/bergmann/frauen/model_2/Alina_lightblonde-rooted_1240x1754_70prozent_qualität.jpg);
    background-size: cover;
}

.perücken_image_4 {
    background-image: url(bilder/bergmann/frauen/hintergrund_weiß/Cool_orange-rooted_1200x1697_70prozent_qualität.jpg);
    background-size: cover;
}

.perücken_image_5 {
    background-image: url(bilder/bergmann/frauen/model_1/Mandy_iced-pink-rooted_groß_1200x1697_70prozent_qualität.jpg);
    background-size: cover;
}

.perücken_max-width_scroll_arrow,
.perücken_max-width_scroll_arrow_1 {
    max-width: 1142px;
}

.perücken_max-width_scroll_arrow {
    margin: auto;
}

.perücken_content_scroll_arrow {
    display: flex;
    justify-content: right;
    padding: 0 20px 50px 0;
}

.sroll-arrow_container {
    padding-right: 150px;
}

.perücken_max-width_scroll_arrow .sroll-arrow_container {
    padding-right: 0px;
}



.scroll-arrows {
    width: 100px;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
    background-color: transparent;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
    background-color: #fff;
    border: none;
    color: #222;
    cursor: pointer;
    border-radius: 50%;
}

.scroll-arrow:last-child {
    margin-left: 10px;
}

.scroll-arrow:hover {
    color: rgba(110, 110, 115, 1);
}

.perücken_video_banner {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 20%;
}

.perücken_video_frame {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.perücken_video_frame::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(200, 170, 34, 1);
}

.perücken_video_frame .text-box {
    position: absolute;
    top: 40%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.perücken_background .banner_container_1,
.perücken_background .banner_container_2,
.perücken_background .banner_container_3 {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    height: 421px;

}

.perücken_background .banner_container_1 {
    background-image: url(bilder/Kunsthaar_4_rgba_234_230_225_773x515.jpg);
}

.perücken_background .banner_container_2 {
    background-image: url(bilder/Echthaar_5_rgba_234_230_225_597x515.jpg);
}


.perücken_background .banner_container_3 {
    background-image: url(bilder/zweithaarsysteme_rgba_234_230_225_771x515.jpg);
}

.perücken_background .banner_container_1::before,
.perücken_background .banner_container_2::before,
.perücken_background .banner_container_3::before {
    border-radius: 50%;
}

.perücken_background .banner_container_1:hover::before,
.perücken_background .banner_container_2:hover::before,
.perücken_background .banner_container_3:hover::before {
    border-color: #c59d5f;
    transform: scale(1);
    transition: all .2s cubic-bezier(.77, 0, .175, 1);
}

.perücken_background .banner_container_text {
    position: absolute;
    bottom: 0;
    padding-bottom: 20px;
}

.perücken_background .banner_container_text h4 {
    font-size: 58px;
    color: #000;
}

.perücken_background .banner_container_text h1 {
    color: #000;
}

.perücken_background .banner_container_text h2 {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
    -moz-text-stroke: 1px rgba(0, 0, 0, 0.2);
}

.perücke_banner_container_text_download {
    display: flex;
    justify-content: center;

    padding: 20px 20px;
}

.perücke_banner_container_text_download a {
    margin: 0px;
}

.perücke_banner_container_text_download_pdf-icon {
    background-image: url(bilder/icon_pdf_1.png);
    padding: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}

.perücke_banner_container_text_download h1 {
    font-size: 16px;
    color: rgba(200, 170, 34, 1)
}

.perücke_banner_container_text_download a {
    text-decoration: none;
    /* Unterstreichung für den Link entfernen */
}

.perücke_banner_container_text_download:hover a h1 {
    text-decoration: underline;
    /* Unterstreichung aktivieren */
    color: rgba(120, 102, 20, 1);
    /* Textfarbe ändern */
}

.perücken_background_kontrast .banner_container_main {
    padding: 100px 0 50px 0;
}

.banner_container_outer_frame {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.perücken_background_kontrast .banner_container_1,
.perücken_background_kontrast .banner_container_2,
.perücken_background_kontrast .banner_container_3 {
    border-radius: 50%;
    width: 421px;
}

.banner_container_text_container {
    margin: 50px 10px 0 10px;
    text-align: center;
}

.banner_container_text_container .perücke_banner_container_text_download {
    justify-content: center;
    margin: 30px 0px;
}

.banner_container_text_container .perücke_banner_container_text_download h1 {
    color: #fff;
}

.scroll-container2 {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 150px;
    z-index: 1;
}

.Karten {
    display: flex;
    max-width: 1142px;
    ;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    padding-top: 70px;
}

.Karten p {
    font-weight: 400;
}

.Karten h1 {
    font-weight: 450;
}

.Karten h2 {
    font-weight: 450;
}

.Karte-container {
    perspective: 1000px;
    padding-right: min(30px, auto);
}

.Karte {
    width: 350px;
    height: 515px;
    position: relative;
    border: solid 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    cursor: pointer;
    margin: auto;
}

.Karte.is-flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.front,
.front1,
.front2,
.front3,
.front4,
.front5,
.back,
.back1,
.back2,
.back3,
.back4,
.back5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.front-hover-text,
.front,
.front1,
.front2,
.front3,
.front4,
.front5 {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.front {
    background-image: url(bilder/Kunsthaar_4.jpeg);
    background-position: center;
    background-size: cover;
}

.front1 {
    background-image: url(bilder/Echthaar_5.jpg);
    background-position: -225px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.front2 {
    background-image: url(bilder/zweithaarsysteme.jpeg);
    background-position: center;
    background-size: cover;
}

.front3 {
    background-image: url(bilder/Hausbesuche_4_rgba_234_230_225_525x350.jpg);
    background-position: center;
    background-size: cover;
}

.front4 {
    background-image: url(bilder/Überführung_Bild_Die_passende_Perücke_rgba_234_230_225_515x467.jpg);
    background-position: center;
    background-size: cover;
}

.front5 {
    background-image: url(bilder/Echte_Erfahrung_3_771x515.jpg);
    background-position: center;
    background-size: cover;
}

.front_foreground_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.front h3,
.front1 h3,
.front2 h3,
.front3 h3,
.front4 h3,
.front5 h3 {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.7);
    margin: 0;
    color: #fff;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 1);
    font-size: 40px;
    mix-blend-mode: darken;
    text-align: center;
    padding: 10px;
    display: none;
    text-transform: uppercase;
    z-index: 1;
}

.front:hover h3,
.front1:hover h3,
.front2:hover h3,
.front3:hover h3,
.front4:hover h3,
.front5:hover h3,
p {
    display: block;
}

.front-hover-text1 {
    position: absolute;
    height: 110px;
    width: 100%;
    bottom: -110px;
    right: 0%;
    background: transparent;
    text-align: left;
    padding: 50px 30px;
    z-index: 1;
    transition: ease-in-out 0.35s;
}

.front:hover .front-hover-text1,
.front1:hover .front-hover-text1,
.front2:hover .front-hover-text1,
.front3:hover .front-hover-text1,
.front4:hover .front-hover-text1,
.front5:hover .front-hover-text1 {
    bottom: 0px;
}

.front-hover-text1 h2 {
    color: rgba(110, 110, 115, 1);
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}

/* TEST*/

.front-hover-text_frame::before {
    content: "";
    position: absolute;
    width: calc(100% - 5px);
    height: calc(100% - 40px);
    border: 3px solid transparent;
    transform: scale(0.96);
    transition: all .3s cubic-bezier(.77, 0, .175, 1);
}

.front:hover .front-hover-text_frame:before,
.front1:hover .front-hover-text_frame:before,
.front2:hover .front-hover-text_frame:before {
    border-color: rgba(120, 102, 20, 1);
    transform: scale(1);
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
}

/*TEST ENDE*/



.front-banner {
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.front-banner_1 {
    padding: 10px 30px;
}

.front-banner_1 h2 {
    font-weight: 400;
}

.front-banner_1 p {
    color: #000;
    font-size: 12px;
    text-transform: none;
}

.front-banner_2 {
    text-align: center;
}

.front-banner_2 p {
    color: #000;
    font-size: 10px;
    text-transform: none;
}

.back,
.back1,
.back2,
.back3,
.back4,
.back5 {
    transform: rotateY(180deg);
    border-radius: 15px;
}

.back p,
.back1 p,
.back2 p,
.back3 p,
.back4 p,
.back5 p {
    text-transform: none;
    color: #000;
}

.back_background,
.back_background1,
.back_background2,
.back_background3,
.back_background4,
.back_background5 {
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: unset;
    background-size: cover;
    opacity: 1;
}

.back_background {
    background-image: url(bilder/Kunsthaar_4_rgba_234_230_225_773x515.jpg);
}

.back_background1 {
    background-image: url(bilder/Echthaar_5_rgba_234_230_225_597x515.jpg);
}

.back_background2 {
    background-image: url(bilder/zweithaarsysteme_rgba_234_230_225_771x515.jpg);
}

.back_background3 {
    background-image: url(bilder/Hausbesuche_4_rgba_234_230_225_525x350.jpg);
}

.back_background4 {
    background-image: url(bilder/Überführung_Bild_Die_passende_Perücke_rgba_234_230_225_515x467.jpg);
}

.back_background5 {
    background-image: url(bilder/Echte_Erfahrung_3_771x515.jpg);
}

.back_foreground_1 {
    position: absolute;
    margin: 40px 20px;
    z-index: 2;
}

.back_foreground_1 h3 {
    margin: 0 9px;
    text-align: unset;
}

.back_foreground_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);

    top: 0;
    left: 0;
}

.back_foreground_3 {
    position: absolute;
    width: 100%;
    height: 100%;
    /*linar-gradient effekt from top to bottom (70% - 100%), 0%-70% are 100% transparent*/
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%, transparent 100%);
    background-image: linear-gradient(rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%, transparent 100%);
    top: 0;
    left: 0;
}

.über_uns .hover-container3 {
    position: relative;
    margin-top: 70px;
}

.service .hover-container3 {
    position: -webkit-sticky;
    position: sticky;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 2;
    width: auto;
    white-space: nowrap;
}

.perücken_überführung .hover-container3 {
    position: -webkit-sticky;
    position: sticky;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 2;
    width: auto;
    white-space: nowrap;
}

.contact-us .hover-container3 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    white-space: nowrap;
}


.Startseite .hover-container3 {
    position: relative;
}

.über_uns .hover-container3,
.Startseite .hover-container3 {
    color: #000;
}

.Startseite .banner_container_2 .hover-container3:hover {
    color: #fff;
}

.hover-container3 a {
    text-decoration: none;
    color: #fff;
    text-transform: none;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 350ms;
}

.hover-container3:hover a {
    color: #000;
}

.perücken_überführung .hover-container3 a {
    color: #000;
}

.über_uns .hover-container3:hover,
.perücken_überführung .hover-container3:hover a {
    color: #fff;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 350ms;
}

.hover-container2,
.hover-container3 {
    position: absolute;
    text-transform: uppercase;
    padding: 12px 20px;
    min-width: auto;
    cursor: pointer;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 350ms;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.125px;
    line-height: 1.35;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 170, 34, 1);
    text-transform: none;
}

.banner_container_2 .hover-container3,
.über_uns .hover-container3,
.perücken_background .hover-container3 {
    border: 1px solid rgba(255, 255, 255, 1);
}

.perücken_background .hover-container3 a {
    text-transform: none;
}

.hover-container2 {
    bottom: 0%;
    left: 0%;
    transform: translate(0%, 67px);
    border: 1px solid rgba(200, 170, 34, 1);
}

.hover-container3::before {
    background-color: rgba(200, 170, 34, 1);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: rgba(200, 170, 34, 1);
}

.banner_container_2 .hover-container3::before,
.über_uns .hover-container3::before,
.perücken_überführung .hover-container3::before {
    background-color: rgba(255, 255, 255, 1);
}

.hover-container2:hover,
.hover-container3:hover {
    color: #000;
}

.hover-container2::before,
.hover-container3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 170, 34, 1);
    border: none;
    z-index: -1;
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
    transform: scaleY(1.0);
}

.hover-container2:hover:before,
.hover-container3:hover:before {
    transform-origin: bottom;
    transition: transform 0.3s ease-out;
    transform: scaleY(0);
}

/*Zweithaar.html*/

.zweithaar_cards .perücken_background_max-widh {
    display: flex;
    align-items: start;
    padding: 120px 0px 0px 0px;
}

.zweithaar_cards_headline {
    text-align: right;
}

.zweithaar_cards_headline_1 {
    text-align: left;
}

.zweithaar_cards_headline h5,
.zweithaar_cards_headline_1 h5 {
    color: #6e6e73;
}

.zweithaar_cards_headline h5 span,
.zweithaar_cards_headline_1 h5 span {
    color: rgba(200, 170, 34, 1);
    font-family: Montserrat, sans-serif;
}

.zweithaar_cards_headline p,
.zweithaar_cards_headline_1 p {
    margin: 10px 0 0 0;
}

/*gallery_perücken*/

.gallery_perücken {
    max-width: 1663px;
    margin: auto;
}

.gallery_perücken .perücken_background_max-widh {
    padding: 80px 0px 50px 0px;
}

.gallery_container {
    background-color: #fff;
    display: grid;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(5, 1fr);
}

.image_card_blank,
.image_card,
.image_card_1,
.image_card_2,
.image_card_3,
.image_card_4,
.image_card_5,
.image_card_6,
.image_card_7,
.image_card_8,
.image_card_9,
.image_card_10,
.image_card_11,
.image_card_12,
.image_card_13,
.image_card_14,
.image_card_15,
.image_card_16,
.image_card_17,
.image_card_18,
.image_card_19,
.image_card_20,
.image_card_21,
.image_card_22,
.image_card_23,
.image_card_24,
.image_card_25,
.image_card_26,
.image_card_27,
.image_card_28,
.image_card_29,
.image_card_30,
.image_card_31,
.image_card_32,
.image_card_33,
.image_card_34,
.image_card_35,
.image_card_36,
.image_card_37 {
    display: inline-block;
    position: relative;
    z-index: 2;
    background-size: cover;
    height: calc(186.01942px + 9.06149vw);

}

.image_card {
    background-image: url(bilder/bergmann/frauen/model_2/Alina_lightblonde-rooted_1240x1754_70prozent_qualität.jpg);
}

.image_card_1 {
    background-image: url(bilder/bergmann/frauen/model_2/Alina_lightred-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_2 {
    background-image: url(bilder/bergmann/frauen/model_2/Amelie_chocolate-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_3 {
    background-image: url(bilder/bergmann/frauen/model_2/Chiara_hazelnut-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_4 {
    background-image: url(bilder/bergmann/frauen/model_2/Cool_crazy-silver-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_5 {
    background-image: url(bilder/bergmann/frauen/model_2/Tina_darksand-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_6 {
    background-image: url(bilder/bergmann/frauen/model_2/Luna_lightblonde-rooted_1240x1754_70prozent_qualität.jpg);
}

.image_card_7 {
    background-image: url(bilder/bergmann/frauen/model_2/Marina_aubergine-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_8 {
    background-image: url(bilder/bergmann/frauen/model_2/Marina_caramel-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_blank {
    background-image: url();
}

.image_card_9 {
    background-image: url(bilder/bergmann/frauen/model_3/Carla_caramel-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_10 {
    background-image: url(bilder/bergmann/frauen/model_3/Carla_tobacco-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_11 {
    background-image: url(bilder/bergmann/frauen/model_3/Greta_lightchocolate-mix_groß_1240x1754_70prozent_qualität.jpg);
}

.image_card_12 {
    background-image: url(bilder/bergmann/frauen/model_3/Greta_lightchocolate-mix_klein_1240x1754_70prozent_qualität.jpg);
}

.image_card_13 {
    background-image: url(bilder/bergmann/frauen/model_3/Kira_grey-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_14 {
    background-image: url(bilder/bergmann/frauen/model_3/Lara_frosty-cream-rooted_groß_1240x1754_70prozent_qualität.jpg);
}

.image_card_15 {
    background-image: url(bilder/bergmann/frauen/model_3/Lara_frosty-cream-rooted_klein_1240x1754_70prozent_qualität.jpg);
}

.image_card_16 {
    background-image: url(bilder/bergmann/frauen/model_3/Lea_safranred-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_17 {
    background-image: url(bilder/bergmann/frauen/model_3/Lisa_caramel-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_18 {
    background-image: url(bilder/bergmann/frauen/model_3/Mandy_lightblonde-rooted_1240x1754_70prozent_qualität.jpg);
}

.image_card_19 {
    background-image: url(bilder/bergmann/frauen/model_3/Ronja_white-mix_1240x1754_70prozent_qualität.jpg);
}

.image_card_20 {
    background-image: url(bilder/bergmann/frauen/model_3/Mia_iced-caramel-rooted_groß_1240x1754_70prozent_qualität.jpg);
}

.image_card_21 {
    background-image: url(bilder/bergmann/frauen/model_3/Mia_iced-caramel-rooted_klein_1240x1754_70prozent_qualität.jpg);
}

.image_card_22 {
    background-image: url(bilder/bergmann/frauen/model_3/Samira_champagne-mix-groß_1240x1754_70prozent_qualität.jpg);
}

.image_card_23 {
    background-image: url(bilder/bergmann/frauen/model_3/Samira_champagne-mix_klein_1240x1754_70prozent_qualität.jpg);
}

.image_card_24 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.27.1_1248x1872_70prozent_qualität.jpg);
}

.image_card_25 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.27.2_1200x1800_70prozent_qualität.jpg);
}

.image_card_26 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.14.2_1200x1800_70prozent_qualität.jpg);
}

.image_card_27 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.14_1200x1800_70prozent_qualität.jpg);
}

.image_card_28 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.25.2_1200x1800_70prozent_qualität.jpg);
}

.image_card_29 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.24.1_1200x1800_70prozent_qualität.jpg);
}

.image_card_30 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.21.1_1200x1800_70prozent_qualität.jpg);
}

.image_card_31 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.20_1200x1800_70prozent_qualität.jpg);
}

.image_card_32 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.17.1.jpg);
}

.image_card_33 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.17.3_1200x1800_70prozent_qualität.jpg);
}

.image_card_34 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.4.2_1200x1800_70prozent_qualität.jpg);
}

.image_card_35 {
    background-image: url(bilder/bergmann/männer_zweithaarsysteme/S.5.1_1200x1800_70prozent_qualität.jpg);
}

/* Leistungen */



.Startseite_leistung .video_banner {
    object-position: 0% 0%;
}




/*--- Responsive Webpage---*/

@media (max-width: 420px) {
    .ServiceContentColumn h3 {
        font-size: 18px;
    }

    .ServiceContentColumn p {
        font-size: 15px;
    }

    .datenschutz ul li {
        font-size: 15px;
        margin: 0 10px;
    }

    .contact-col h5 span {
        display: none;
    }

    .footer {
        height: 100vh;
    }

    .footer a {
        margin: 0px;
        line-height: 2;
    }

    .footer_phone {
        padding: 15px 0px 15px 0px;
    }

    .footer .sice_1 {
        display: none;
    }

    .footer_contact_impressum_safety {
        padding: 0px 0px 50px 0px;
    }
}

@media (max-width: 700px) {
    .datenschutz h1 {
        font-size: 1.5em;
        margin: 0 10px;
        font-weight: 300;
        letter-spacing: 2px;
    }
}

@media (min-width: 421px) {
    .datenschutz span {
        display: none;
    }
}

@media (min-width: 701px) {

    .sice {
        display: none;
    }

}

@media (max-width: 768px) {
    /* Navigationslinks */

    header {
        z-index: 4;
    }

    .navbar-logo {
        z-index: 5;
    }

    .overlayer {
        z-index: 3;
    }

    .navbar-links {
        display: none;
    }

    .navbar-links_kontakt {
        display: flex;
        margin: 10px 0px;
    }

    .navbar-links li .navbar-links_kontakt a {
        line-height: 1.5em;

    }

    .navbar-links.active {
        position: fixed;
        top: 40px;
        left: 0;
        display: flex;
        flex-direction: column;
        list-style: none;
        background-color: #fff;
        transition: 0.5s;
        height: auto;
        width: 100%;
        padding: 100px 0px;
        z-index: 997;
    }

    .navbar-links li {
        width: 80%;
    }

    .navbar-links li:not(:last-child) {
        width: 80%;
        border-bottom: 1px solid #ccc;
    }

    .navbar-links li a {
        font-size: min(6vw, 28px);
        line-height: 2.5em;
        /*---regelt Abstand zwischen Auflistungspunkten---*/
        letter-spacing: 0.19em;
        font-weight: 500;
        color: #222;
        text-decoration: none;
    }

    .navbar-links li a:hover {
        color: rgba(120, 102, 20, 1);
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
    }

    .navbar-toggle.active:hover {
        width: 50px;
        height: 50px;
        background-color: transparent;
        border-radius: 50%;
    }

    .navbar-toggle:hover {
        width: 50px;
        height: 50px;
        background-color: transparent;
        border-radius: 50%;
    }

    .feedback_container {
        position: fixed;
        top: -30px;
        left: 80%;
        height: 130px;
        width: 45px;
        transform: translate(0%, 0%);
        z-index: 2;
        transition: 0.5s;
    }

    .feedback_container.active {
        top: 56px;
    }

    .hover-container2 {
        left: 50%;
        transform: translate(-50%, 67px);
    }

    .text-box h1 {
        line-height: 1.5em;
    }

    .video_banner {
        object-position: 85%;
    }

    .banner_container_text {

        top: 50%;
    }

    /* Über uns */

    .über_uns_content {
        padding: 150px 0px;
    }

    .headline_text {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .headline_text h4 {
        font-size: 80px;
        display: none;
    }

    .über_uns_content .headline_text h6 {
        white-space: nowrap;
        font-size: 1em;
        letter-spacing: 0.25em;
        font-weight: 50;
    }

    .über_uns_content .headline_text h5 {
        transform: translate(-50%, 70%);
        -webkit-transform: translate(-50%, 70%);
        white-space: nowrap;
        font-size: 35px;
    }

    .content_text {
        margin-top: 0px;
    }

    .text_kontainer h5 {
        font-size: 35px;
    }
    
    .text_kontainer h5 span {
        font-family: Montserrat, sans-serif;
    }

    .content_text_content h5 {
        font-size: 40px;
    }

    .content_text_content h5 span {
        color: #86868b;
        font-family: Montserrat, sans-serif;
        font-size: 35px;
    }

    .Über_uns_background {
        background-size: scroll;
        background-attachment: scroll;
        /* Oder 'scroll' anstelle von 'fixed', je nachdem, was du bevorzugst */
    }

    .über_uns_content {
        padding: 150px 20px;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .über_uns_content_1 .content_text_content_1 h5 span  {
        font-size: 40px;
      }

    .über_uns_content_1 .content_text_content_1 h5  {
        font-size: 35px;
      }

    .headline_text {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .headline_text h4 {
        position: absolute;
        font-size: 200px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, -45%);
        font-size: 200px;
        opacity: 0.2;
        white-space: nowrap;
    }

    .über_uns_content .headline_text h6 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        color: #fff;
        white-space: nowrap;
    }

    .über_uns_content .headline_text h6 span {
        color: rgba(236, 204, 95);
        font-weight: 550;
        font-family: "Times New Roman", Times, serif;
    }

    .über_uns_content .headline_text h5 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 90%);
        color: #fff;
        white-space: nowrap;
    }

    .über_uns_content_1 .headline_text h5 {
        font-size: 35px;
    }

    .über_uns_content_1 .content_text_1 {
        padding: 0px 20px;
    }

    .über_uns_content_colum,
    .über_uns_content_colum_1 {
        height: 100%;
        width: 100%;
        max-width: 1242px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        margin-top: 180px;
    }

    .über_uns_content_colum {
        margin-top: 0px;
    }

    .über_uns_content_colum_1 {
        margin-top: 130px;
    }

    .über_uns_content_column_picture {
        position: relative;
        width: 350px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        text-align: center;
    }

    .über_uns_content_column_picture h2 {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: .25em;
        line-height: 1.33em;
        text-transform: none;
        padding-top: 15px;
    }

    .über_uns_content_column_picture h1 {
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .25em;
        line-height: 1.33em;
        text-transform: none;
        padding-top: 15px;
    }

    .über_uns_content_colum_picture_cicle {
        position: relative;
        width: 100%;
        height: 350px;
        border-radius: 50%;
        background-color: #007bff;
    }

    /* Einführung */

    .überführung {
        width: 100%;
        min-height: auto;
        margin: auto;
        padding-top: 85px;
    }

    .Karten {
        flex-direction: column;
        padding: 0px;
    }

    .Karte-container {
        perspective: 1000px;

    }

    .Karte {
        margin-bottom: 30px;
    }

    .Karte-container:last-child .Karte {
        margin-bottom: 0px;
    }

    .zweithaar_cards .scroll-arrows {
        display: none;
    }

    /* Leistung */

    .service_video_media_player {
        display: none;
    }

    .service_video_play-button {
        background: url(bilder/play-button.png);
        background-size: 20px;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        cursor: pointer;
        margin: 0 10px 0 0;
        padding: 10px;
        transition: 0.2s;
    }

    .service_video_play-button.active {
        background: url(bilder/pause-button.png);
        background-size: 26px;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        cursor: pointer;
        margin: 0 10px 0 0;
    }

    .service_video_info-overlayer {
        background-size: 50px;
    }

    .service_video_info-overlayer_titel {
        margin: 10px;
    }

    .service_video_info-overlayer_titel_text {
        display: none;
    }

    .service_video_info-overlayer_titel_poster {
        border: solid 2px rgba(200, 170, 34, 1);
    }    

    .service_video_info-overlayer_titel h1 {
        font-size: 20px;
    }

    .service_video_info-overlayer_titel_playbutton {

        background-size: 90px;
    }

    /* Zweithaar */

    .perücken_gallery {
        --width_image: 275px;
        --height_image: 367px;
        --width_image_start: 275px;
        --width_image_end: 53px;
    }

    .perücken_überführung .hover-container3 {
        left: 50%;
        transform: translate(-35%, 0%);
    }

    .perücken_content {
        padding: 0% 0% 0% 0%;
        margin: 0 0 0 0;
        --width_image: 275px;
        --height_image: 367px;
        --width_image_start: 275px;
        --width_image_end: 53px;
    }

    .perücken_überführung {
        position: relative;
        width: 100%;
        min-height: auto;
        margin: auto;
    }

    .perücken_background {
        background-attachment: scroll;
    }

    .perücken_background .video_container {
        height: 400px;
    }

    .perücken_background .video_banner {
        object-position: 45%;
        object-fit: cover;
    }

    .perücken_background .banner_container_main {
        margin: 0px;
    }

    .perücken_background .banner_container_1,
    .perücken_background .banner_container_2,
    .perücken_background .banner_container_3 {
        height: 350px;
        width: 350px;
    }

    .perücken_background .banner_container_1::before,
    .perücken_background .banner_container_2::before,
    .perücken_background .banner_container_3::before {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .perücken_background .banner_container_text h4 {
        font-size: 52px;
    }

    .perücken_background .banner_container_text_container {
        margin: 50px 20px 50px 20px;
    }

    .perücken_video_banner {
        object-position: 38%;
    }

    .perücken_content .content_text {
        padding-left: calc(50% - var(--width_image_start)/2);
    }

    .perücken_headline {
        text-align: center;
    }

    .perücken_headline h2 {
        font-size: 40px;
    }

    .perücken_überführung .headline_text h5 {
        font-size: 35px;
    }

    /* service, leistung */

    .Über_uns_background_1 {
        background-attachment: scroll;
        -webkit-background-attachment: scroll;
        background-position: -1100px 0%;
    }

    .über_uns_content_1 {
        background-color: rgba(0, 0, 0, 0);
        padding: 0% 0% 0% 0%;
    }

    .über_uns_content_1 .headline_text h6 {
        white-space: nowrap;
        font-size: 1em;
        letter-spacing: 0.25em;
        font-weight: 50;
    }

    /* service, leistung ENDE*/

    /* Krankenkasse */
    .Über_uns_background_krankenkasse {
        background-attachment: scroll;
        -webkit-background-attachment: scroll;
        /* Für WebKit-Browser */
        background-size: cover;
        background-position: 60%;
        /* Y-Position wird durch JS-Code beeinflusst! */
        background-repeat: no-repeat;
        padding: 150px 0px;
    }

    .card_krankenkasse {
        width: 100%;
        border-radius: 0px;
        background-position: 30%;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll;
        object-fit: contain;
    }

    .card_krankenkasse input:checked~.toggle {
        box-shadow: 0 0 0 800px rgba(255, 182, 71, 1);
    }

    .krankenkasse_text h1 {
        font-size: min(8vw, 36px);
        font-weight: 1000;
        color: #007bff;
    }

    .krankenkasse_text p {
        font-size: min(5vw, 16px);
        line-height: 3;
    }

    .krankenkasse_text_1 p {
        position: absolute;
        bottom: 40px;
        right: 80px;
        font-size: min(3vw, 12px);
        font-weight: 800;
        color: #007bff
    }

    .krankenkasse_text_1 h1 {
        font-size: min(8vw, 36px);
        font-weight: 800;
        color: #000;
    }

    /* partner */

    .partner {
        width: 100vw;
        height: auto;
        max-width: 1663px;
        margin-left: auto;
        margin-right: auto;
    }

    .partner_background {
        background-color: #000;
        padding: 100px 0px;
    }


    .partner_backgrund_max-width_caroussel {
        transition: transform 0.4s ease;
        flex: 0 0 100%;
        display: flex;
    }

    .partner_backgrund_max-width {
        position: relative;
        max-width: 1142px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        margin: auto;
        height: 150px;
    }

    .partner_content_brand_position {
        height: 540px;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
        transition: transform 0.4s ease;
        /* Hinzugefügt für sanfte Animation */
        padding: 0;
    }

    .partner_content_brand_position:hover {
        transform: translateY(-180px);
        /* Verschiebe die Bilder nach oben */
    }

    .partner_content_brand_position img {
        height: 142px;
        margin: 15px 0px;
    }

    /* Kontakt */

    .row {
        flex-direction: column;
    }

    .contact-col div h5 {
        border-bottom: none;
    }

    .contact-col div h5 a {
        border-bottom: none;
    }

    /* footer */

    .footer_background_max-width_container {
        flex-direction: column;
    }

    .footer_background_max-width_container_double_1 {
        flex-direction: column;
        width: 100%;
        padding-bottom: 40px;
    }

    .footer_background_max-width_container_1 {
        width: 100%;
        align-items: center;
        padding-bottom: 60px;
    }

    .footer_background_max-width_container_2 {
        width: 100%;
    }


    .footer_background_max-width_container_double_2 {
        flex-direction: column;
    }

    .footer_background_max-width_container_3 {
        width: 100%;
        padding-bottom: 60px;
    }

    .footer_background_max-width_container_4 {
        width: 100%;
        white-space: nowrap;
    }

    /*Zweithaar.html*/

    .zweithaar_cards_headline,
    .zweithaar_cards_headline_1 {
        text-align: left;
        padding: 20px;
    }

    .zweithaar_cards .perücken_background_max-widh {
        padding: 80px 0px 50px 0px;
    }

    .zweithaar_cards_headline h5,
    .zweithaar_cards_headline_1 h5 {
        font-size: 35px;
        color: #6e6e73;
    }

    .zweithaar_cards_headline h5 span,
    .zweithaar_cards_headline_1 h5 span {
        font-size: 45px;
        line-height: 1.2em;
    }

    .gallery_container {
        grid-template-columns: repeat(3, 1fr);
    }

    .video_container {
        height: 600px;
    }

    .video_container_frame {
        top: 76px;
    }

    .Startseite_zweithaar .video_banner {
        object-position: 47% 0%;
    }

    /*Leistung*/

    .NavService button p {
        font-size: 12px;
        text-transform: none;
        font-weight: 600;
    }

    .ServiceContentColumn_Content_1 h1 {
        font-size: 1.5em;
    }

    .ServiceContent {
        height: 725px;
    }

}

@media (min-width: 769px) and (max-width: 1010px) {
    
    .footer_background_max-width_container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer_background_max-width_container_double_1 {
        width: 100%;
        padding-bottom: 50px;

    }

    .footer_background_max-width_container_1 {
        width: 50%;

    }

    .footer_background_max-width_container_2 {
        width: 50%;
        padding: 0 0 0 50px;
    }

    .footer_background_max-width_container_double_2 {
        width: 100%;
        justify-content: start;
    }

    .footer_background_max-width_container_4 {
        padding: 0 0 0 50px;
    }

    /*Zweithaar.html*/

    .Startseite_zweithaar .video_banner {
        object-position: 45% 0%;
    }

    .gallery_container {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (min-width: 769px) and (max-width: 1250px) {

    .navbar-links li .navbar-links_kontakt a {
        line-height: 1.5em;
    }

    .video_banner {
        object-position: 70% 0%;
    }

    .scroll-container1 {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: thin;
        padding-bottom: 15px;
        z-index: 1;
        padding-left: 5px;
    }

    .scroll-container2 {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 30px;
        z-index: 1;
        padding-left: 5px;
    }

    .Karte-container {
        padding-right: 30px;
    }

    .Karte-container:last-of-type {
        padding-right: 5px;
    }



    /* Navigationslinks */

    header {
        z-index: 4;
    }

    .navbar-logo {
        z-index: 5;
    }

    .overlayer {
        z-index: 3;
    }

    /*header */

    .Startseite,
    .Startseite_zweithaar {
        margin-top: 56px;
    }

    .navbar-links {
        display: none;
    }

    .navbar-links.active {
        position: fixed;
        top: 40px;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
        background-color: #fff;
        transition: 0.5s;
        height: auto;
        width: 100%;
        padding: 10vh 0;
    }

    .navbar-links li {
        width: 80%;
    }

    .navbar-links li:not(:last-child) {
        width: 80%;
        border-bottom: 1px solid #ccc;
    }

    .navbar-links li a {
        font-size: min(6vw, 28px);
        line-height: 2.5em;
        /*---regelt Abstand zwischen Auflistungspunkten---*/
        letter-spacing: 0.19em;
        font-weight: 500;
        color: #222;
        text-decoration: none;
    }

    .navbar-links li a:hover {
        color: #007bff;
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
    }

    .navbar-toggle.active:hover {
        width: 50px;
        height: 50px;
        background-color: transparent;
        border-radius: 50%;
    }

    .navbar-toggle:hover {
        width: 50px;
        height: 50px;
        background-color: transparent;
        border-radius: 50%;
    }

    /* Über Uns*/

    .über_uns_content {
        padding: 150px 8%;
    }

    .headline_text h4 {
        font-size: 160px;
    }

    /* üerführung */

    .überführung {
        width: 90vw;
    }

    .ServiceContentColumn {
        overflow: scroll;
    }

    .perücken_headline {
        text-align: center;
    }

    /* Krankenkasse */

    .card_krankenkasse {
        width: 100%;
        border-radius: 0px;
        background-position: 30%;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll;
        object-fit: contain;
    }

    .krankenkasse_text h1 {
        font-size: min(8vw, 60px);
    }

    .krankenkasse_text_1 p {
        position: absolute;
        bottom: 40px;
        right: 80px;
        font-size: min(3vw, 20px);
        font-weight: 800;
        color: #007bff
    }

    .krankenkasse_text_1 h1 {
        font-size: min(8vw, 36px);
        font-weight: 800;
        color: #000;
    }

    /* Kontakt */

    .contact-col div h5 {
        border-bottom: none;
    }

    .contact-col div h5 a {
        border-bottom: none;
    }

    /*Zweithaar.html*/

    .zweithaar_cards_headline,
    .zweithaar_cards_headline_1 {
        padding: 10px;
    }

    .zweithaar_cards .perücken_background_max-widh {
        padding: 80px 0px 40px 0px;
    }

    .zweithaar_cards_headline br,
    .zweithaar_cards_headline_1 br {
        display: none;
    }

    .zweithaar_cards_headline h5,
    .zweithaar_cards_headline_1 h5 {
        color: #6e6e73;
    }

    .zweithaar_cards_headline h5 span,
    .zweithaar_cards_headline_1 h5 span {
        color: rgba;
    }

    .Karten {
        padding-top: 0px;
      }

}


@media (max-width: 1250px) {
    .front-hover-text1 {
        display: none;
    }

    .front:hover .front-hover-text1,
    .front1:hover .front-hover-text1,
    .front2:hover .front-hover-text1,
    .front3:hover .front-hover-text1,
    .front4:hover .front-hover-text1,
    .front5:hover .front-hover-text1 {
        display: none;
    }

    .perücken_background .banner_container_main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .banner_container_text_container {
        margin: 50px 10% 50px 10%;
    }


}

@media (max-width: 1010px) {
    .banner_container_main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .perücken.back_background .banner_container_main {
        margin: 0px;
    }

    .banner_container_1,
    .banner_container_2,
    .banner_container_3 {
        height: 421px;
    }

    .über_uns_content_colum,
    .über_uns_content_colum_1 {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .über_uns_content_column_picture h1 {
        padding-bottom: 50px;
    }

    .content_text {
        width: 100%;
        padding: 0px 0px;
    }

}


@media (min-width: 1251px) {
    .navbar-links {
        padding-right: 0px;
    }

    .front-banner_2 {
        display: none;
    }

    .zweithaar_cards .scroll-arrows {
        display: none;
    }

    .card_krankenkasse {
        background-position: 30%;
        background-size: cover;
        background-repeat: no-repeat;
        object-fit: contain;
    }

    .contact-us_text {
        text-align: center;
        padding: 200px 0 0 0;
    }

    .contact-us .hover-container3 {
        display: none;
    }

    .impressum {
        padding: 175px 0px 100px 0px;
    }

    .datenschutz {
        padding: 175px 0px 100px 0px;
    }

    .zweithaar_cards_headline br,
    .zweithaar_cards_headline_1 br {
        display: none;
    }

}