* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Apply a background image to the entire body */
body {
    margin: 0px;
    padding: 0px;
    background-image: url('daria-kurennaya-hSKTi_1SqWg-unsplash.jpg'); /* Replace with your image path */;
    background-size: fixed; /* Ensure the image covers the entire viewport */
    background-position: center; /* Center the image in the viewport */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-attachment: fixed; /* Optional: Fix the background image during scrolling */
    margin-left: auto;
    margin-right: auto;
}


/* Ensure the container for the background image and text is positioned correctly */
.background-image-container {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image-container2 {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 20px;
}



/* Styling for the background image */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
    z-index: -1; /* Ensure the image is behind the text */
    border-radius: 30px; /* Optional: rounded corners if needed */
}

/* Overlay text styling */
.overlay-text {
    position: relative;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px; /* Optional: rounded corners for the text background */
    color: #fff; /* Text color for better visibility */
    margin: 30px;
}

/* Header styling */
header {
    position: relative;
    z-index: 1;
    background-color: rgb(24, 194, 115);
    padding: 4px;
    position: fixed;
    margin-top: -250px;
    text-align: center;
    width: 1000px;
    border-radius: 50px;
}

/* Header content styling */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Styling for the image in the header */
.img.head {
    width: 100%;
    height: 100px;
    transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
    margin-left: 20px;
    margin-right: 20px;
    max-width: 100px;
}

.img.head:hover{
    transform: scale(1.1); /* Increase the image size by 10% */
}

.rotated {
      transform: scaleX(-1);
}

/* Styling for header text */
.header-text {
    text-align: center;
}

.background-image-container{
    margin-top: 250px;
}

/* Specific styling for h1 */
h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin: 0;
}

/* Specific styling for h2 */
h2 {
    font-style: italic;
    font-size: 30px;
    margin: 0;
}

/* Common styling for h1 and h2 */
h1, h2 {
    background-color: rgb(24, 194, 115);
    margin-bottom: 0px;
}

.header-nav{
    position: fixed;
    text-align: center;
}


.hr-head {
    margin: 0px; /* Remove the default margin */
    border: none; /* Remove any default border */
    height: 2px; /* Set a height for the <hr> element */
    background-color: rgb(0, 0, 0); /* Use background-color instead of color */
}

/* Navigation bar styling */
.navbar ul {
    list-style-type: none;
    background-color: rgb(24, 194, 115);
    padding: 0;
    margin: 10px 0;
    overflow: hidden;
    font-size: 25px;
    margin: 10px;
}





.navbar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
}


.navbar a:hover {
    background-color: rgb(141, 141, 141);
    transform: scale(1.1); /* Increase the image size by 10% */
    border-radius: 30px;
}

.navbar li {
    display: inline-block;
}

/* Main content styling */
main {
    margin: 20px;

}

h3{
    font-size: 70px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
}

.p-first{
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Ensure that content below the header is not obscured */
body {
    padding-top: 0px; /* Adjust based on header height */
    width: 1000px;
}

/* Flex container for image and slider */
.image-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between image and slider */
    padding: 20px; /* Padding around the container */
}

/* Styling for the new image container */
.Praxismain-container {
    text-align: center; /* Center the image within the container */
}

/* Styling for the new image */
.Praxismain {
    width: 500px; /* Set the width to 100px */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 360px;
}

/* Slider styling */
.slider {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: auto;
    overflow: hidden;
    border-radius: 25px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* Ensure enough width to fit all slides in a row */
}

.slide {
    min-width: 33.3333%; /* Adjust to fit three slides in the container */
    height: 500px; /* Set a fixed height */
    box-sizing: border-box; /* Include padding and border in the element's width */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
}

/* Hide all slides initially */
input[type="radio"] {
    display: none;
}

/* Controls */
.controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.control-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

/* Show the selected slide */
#slide1:checked ~ .slides {
    transform: translateX(0%);
}

#slide2:checked ~ .slides {
    transform: translateX(-33.3333%);
}

#slide3:checked ~ .slides {
    transform: translateX(-66.6666%);
}

#slide4:checked ~ .slides {
    transform: translateX(-99.9999%);
}

#slide5:checked ~ .slides {
    transform: translateX(-133.34%);
}

#slide6:checked ~ .slides {
    transform: translateX(-166.7%);
}

#slide7:checked ~ .slides {
    transform: translateX(-200%);
}


/* Show active dot */
#slide1:checked ~ .controls .control-dot:nth-of-type(1),
#slide2:checked ~ .controls .control-dot:nth-of-type(2),
#slide3:checked ~ .controls .control-dot:nth-of-type(3) {
    background: rgba(0, 0, 0, 0.8);
}

.footer-container{
    background-color: rgb(24, 194, 115);
    border-radius: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 90%;
        
}


.footer-content{
    text-align: center;
    color: rgb(255, 255, 255);
    margin-left: 10px;
    margin-right: 10px;

}

.h4-container{
    font-size: xx-large;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 20px;
}

.video-container {
    max-width: 80%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;


}

.rounded-video {
    width: 100%;
    height: auto;

}

.footer-box{
    background-color: black;
    width: 100%;
    padding: 5px;
    border-radius: 35px;
    margin-bottom: 10px;
}


.symbol-list {
    list-style-type: none;
    padding: 0;
    margin: 20px; 
}


.symbol-list li {
margin:none; 
    font-size: 18px;

}


.symbol-home::before {
    content: '🏠';
    margin-right: 10px;
    color: blue;
}

.symbol-lokation::before {
    content: '📍'; 
    margin-right: 10px;
    color: green;
}

.symbol-telephone::before {
    content: '📞';  
    margin-right: 10px;
    color: red;
}

.symbol-email::before{
    content: '📧';  
    margin-right: 10px;
    color: red;
}

.symbol-whatsapp::before{
    content: '📲';  
    margin-right: 10px;
    color: red;
    text-decoration: none;
}

.symbol-whatsapp a{
    text-decoration:dotted;
    color: inherit;
}

iframe{
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-bottom: -3px;
    padding: none;
    
    margin-left:auto;
    margin-right: auto;
}

.iframe-container{
    background-color: rgb(0, 0, 0);
    width: 101%;
    padding: 3px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-bottom: -7px;
    margin-left: -5px;
    margin-right: auto;
}






/* page 2 */

.slide-text-container{
    font-size: 150px;
    text-align: center;

}

.slide-text-box{
    background-color: rgb(24, 194, 115);
    border-radius: 60px;
    padding-bottom: 20px;
}

.slide-text-box-box{
    background-color: black;
    padding: 5px;
    border-radius: 65px;
    animation: zoomIn 1s cubic-bezier(1, 0.01, 0, 0.99);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;


}

.h5{
    font-family: Arial, Helvetica, sans-serif;
}

@keyframes zoomIn{
    0%{
        transform: scale(0.3);
    }
    100%{
        transform: scale(1);
    }
}





.img-das-sind-wir{
    width: 770px;
    border-radius: 60px;
    align-self: center;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    align-self: center;

}

.img-das-sind-wir-box{

    background-color: black;
    margin-top: 20px;
    margin-right: auto;
    margin-left: -24px;
    width: 92%;
    align-self: center;
    border-radius: 60px;
}

.img-das-sind-wir-box-box{
    margin-left: 120px;
    margin-right: auto;
    animation: zoomIn 1s cubic-bezier(1, 0.01, 0, 0.99);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

}


.comments {
    margin-top: 50px;
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
}


    
.comment1 {
    background-color: #e1ffc7;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 15px;
    position: relative;
    width: fit-content;
    max-width: 80%;
    animation: fadeIn 1s ease-out;
    animation-timeline: scroll;
    animation-delay: 0s;
    animation-duration: 1s;
    margin-left: 140px;
}


.comment2 {
    background-color: #e1ffc7; 
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 15px;
    position: relative;
    width: fit-content;
    max-width: 80%;
    margin-left: 620px;
    margin-top: -70px;
}

.comment3 {
    background-color: #e1ffc7;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 15px;
    position: relative;
    width: fit-content;
    max-width: 80%;
    animation: fadeIn 1s ease-out;
    animation-timeline: scroll;
    animation-delay: 0s;
    animation-duration: 1s;
    margin-top: -68px;
    margin-left: auto;
    margin-right: auto;
}

.comment1::after {
    content: "";
    position: absolute;
    top: 15px; /* Adjusts the vertical position of the triangle */
    left: -20px; /* Positions the triangle to the left side */
    border-width: 0 10px 20px 10px;
    border-style: solid;
    border-color: transparent #e1ffc7 transparent transparent;
}


.comment2::after {
    content: "";
    position: absolute;
    top: 20px; /* Adjusts the vertical position of the triangle */
    left: 108px; /* Positions the triangle to the left side */
    border-width: 0 10px 20px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #e1ffc7; /* Adjusts the color to match the comment box */
}

.comment3::after {
    content: "";
    position: absolute;
    top: -10px; /* Adjust the vertical position of the triangle */
    left: 35px; /* Adjust the horizontal position so it aligns properly */
    border-width: 0 10px 10px 10px; /* Adjusts the direction of the triangle to point upwards */
    border-style: solid;
    border-color: transparent transparent #e1ffc7 transparent; /* Adjust the color to match the comment box */
    margin: auto;
}


.h6page2 {
    color: black;
    font-size: x-large;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0 10px 5px 0;
}

.p-page2 {
    color: #333;
    padding-left: 10px;
    margin: 0;
    padding-bottom: 10px;
}

.h4termin{
    font-size: 45px;
    text-align: start;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px;
    margin-bottom: none;
    
}

.p-termine{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: start;
}

.p-termine2{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: start;
    color: rgb(24, 194, 115);;;
}


.h3bewerbung{
   font-size: 60px;
}

.p-bewerbung{
        color: rgb(24, 194, 115);
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        font-size: 30px;
}

.ul-bewerbung{
    list-style-type: none;
    padding: 0;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
    color: rgb(24, 194, 115);;
}

.img-bewerbung{
width: 1000px;
border-radius: 50px;
margin: 30px;
margin-left: auto;
margin-right: auto;

}

.h5-unserteam{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 80px;
margin-bottom: 20px;
}

.überuns-container{
    margin-top: -200px;
}

.p-first-überuns{
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;   
}



.leistungen-liste-box {
    background-color: rgb(24, 194, 115);
    border-radius: 20px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leistungen-liste {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.leistungen-liste li {
    margin: 10px 0;
}

.leistungen-liste a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    display: block;
    transition: background-color 0.3s, transform 0.3s;
}

.leistungen-liste a:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.h5-leistungen{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 70px;
    padding: 20px;
}

.p-first-leistungen{
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 20px;
    margin-top: -20px;
}
