* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

li {
    list-style: none;
}

a {
    color: #4c4c4c;
    text-decoration: none;
}


/* Styles for Loading Screen */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading-screen img {
  width: 100px; /* Adjust size as needed */
  height: auto;
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}




.welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh; /* Passt die Höhe der Div an */
    background-color: rgba(247, 82, 224, 0.3);


}

.download {
  border: #fff solid 1px;
  border-radius: 15px;
  padding-right: 8px;
  padding-left: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  color:white;
}

.navbar {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  position: relative;
}

.nav-menu {
  display: flex;
  justify-content: flex-end; /* Ändern Sie diese Zeile */
  align-items: center;
  gap: 60px;
  background-color: white;
  margin-top: 2.5vh;
  margin-left: auto; /* Fügen Sie diese Zeile hinzu */
}

.nav-branding {
  font-size: 2rem;
  color: #4c4c4c;
  padding: 0;
  font-weight: normal;
  margin: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-branding img {
  height: 10vh;
  width: auto;
}

.nav-button {
  border: #F752E0 solid 2px;
  border-radius: 15px;
  padding-right: 8px;
  padding-left: 8px;
  color: #F752E0;
}

@media(max-width: 768px) {
  .nav-branding {
      font-size: 1rem;
      color: #4c4c4c;
      padding: 0;
      font-weight: normal;
  }

  .nav-branding img {
      height: 10vh;
      width: auto;
  }
}

.nav-link {
  position: relative;
  color: #F752E0;
}

.nav-link::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F752E0;
  transition: 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  color: #4c4c4c;
  margin: 5px;
  position: relative;
  width: 30px;
  height: 24px;
}

.bar {
  width: 100%;
  height: 4px;
  background-color: #F752E0;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.5s ease;
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 10px;
}

.bar:nth-child(3) {
  top: 20px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media(max-width: 768px) {
  .hamburger {
      display: block;
      margin-left: auto;

  }

  .nav-menu {
      position: absolute;
      left: -100%;
      top: 45px;
      gap: 0;
      flex-direction: column;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      z-index: 1;
  }

  .nav-item {
      margin: 16px 0;
  }

  .nav-menu.active {
      left: 0;
  }

  main {
      margin-left: 0;
  }
}


.slideshow-container {
  position: relative;
  max-width: 100%;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.slides {
  display: flex;
}

.slides img {
  width: 100%;
  display: none;
}

.slides img:first-child {
  display: block;
}

.slides.large-screen {
  display: flex;
}

.slides.small-screen {
  display: none;
}

@media(max-width: 768px) {
  .slides.large-screen {
      display: none;
  }

  .slides.small-screen {
      display: flex;
  }

  .slides img {
      height: 60vh;
      width: auto;
  }
}


.scroll-down-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200vh; /* Extra height to enable scrolling */
  padding: 20px;
}

.phone {
  position: sticky;
  top: 10%; /* Adjust the position as needed */
  width: 100%; /* Make sure it takes full width */
  max-width: 600px; /* Set a max-width for better responsiveness */
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 20px; /* Add some margin for better spacing */
}

.phone img {
  max-width: 100%;
  height: auto;
}

.content {
  flex: 1; /* Content takes up the remaining width */
  padding: 20px;
  width: 100%; /* Ensure full width */
}

.text-box {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  font-size: 50px;
}

.text-box.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-down-container {
      flex-direction: column;
      height: auto; /* Adjust height for smaller screens */
  }

  .phone {
      position: relative; /* Remove sticky position on smaller screens */
      top: auto;
      margin-bottom: 20px;
  }

  .content {
      padding: 10px; /* Adjust padding for smaller screens */
  }
}




















  .data {
    text-align: center;
    margin-top: 5vh;
  }

  .data h1 {
    font-size: 42px;
  }

  .blog {
    border-radius: 25px;
    background-color: rgba(247, 82, 224, 0.1);
    float: left;
    width: 40%;
    margin: 5%;
    padding-bottom: 5vh;
    padding-top: 5vh;
    transition: background-color 0.3s ease; /* Übergangseffekt hinzufügen */
  }
  
  .blog:hover {
    background-color: rgba(247, 82, 224, 0.2); /* Die gewünschte Hintergrundfarbe beim Hover-Effekt */
  }
  
  .blog img {
    height: 35vh;
    margin: 2.5vh;
  }

  .blog h3 {
    font-size: 20px;
    text-align: left;
    margin-left: 10vh;
    margin-bottom: 10px;
  }

  .blog p {
    font-size: 30px;
    text-align: left;
    margin-left: 10vh;
    margin-bottom: 20px;
    color: #F752E0;
  }
  @media(max-width: 768px) {

    .blog {
        
        border-radius: 25px;
        background-color: rgba(247, 82, 224, 0.1);
        float: none;
        width: 80%;
        margin: 10%;

     
      }
      .blog img {
        height: 25vh;
      }
    
      .blog h3 {
        font-size: 20px;
        text-align: left;
        margin-left: 5vh;
        margin-bottom: 10px;
      }
    
      .blog p {
        font-size: 30px;
        text-align: left;
        margin-left: 5vh;
        margin-bottom: 20px;
      } 
    }


.imagetext {
    text-align: center;
     margin-top: 5vh;
}
.imagetext h1{
font-size: 42px;
}
.container-imagetext {
    float: left;
    width: 40%;
    margin: 5%;
    
}
.container-imagetext p {
    color: #F752E0;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 5vh;
}
.container-imagetext img{
    height: 40vh;
    width: auto;
    margin-bottom: 5vh;
}

@media(max-width: 768px) {
    
    .container-imagetext {
    float: none;
    width: 90%;
    margin: 5%;
    
}
.container-imagetext img{
    height: 30vh;
    width: auto;
}
}

.cities {
    text-align: center;
     margin-top: 5vh;
}

.cities h1 {
    font-size: 42px;
}

#google-map {
    margin: 10vh;
    height: 70vh;
    
    border: #4c4c4c 1px solid;
    border-radius: 25px;
}
@media(max-width: 768px) { 
    #google-map {
        margin: 2.5vh;
        height: 60vh;
        
        border: #4c4c4c 1px solid;
        border-radius: 25px;
    }
}




.bewerbung {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10vh;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.left-container {
  flex: 1;
  padding: 20px;
}

.left-container h1 {
  text-align: left;
  font-size: 42px;
  color: #F752E0;
  margin-bottom: 10px;
}

.left-container h2 {
  font-size: 36px;
  color: #333; /* Adjust the color as needed */
  margin-bottom: 20px;
}

.left-container p {
  font-size: 25px;
  color: #555; /* Adjust the color as needed */
  margin-bottom: 20px;
}

.left-container .btn-bewerben {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  background-color: #F752E0;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
}

.right-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.right-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .bewerbung {
      flex-direction: column;
      align-items: flex-start;
      margin: 2.5vh;
  }
  .left-container h1 {
    font-size: 30px;
    color: #F752E0;
    margin-bottom: 10px;
    text-align: center;
  }

  .left-container, .right-container {
      width: 100%;
      text-align: center;
      padding: 10px 0;
  }

  .left-container {
      order: 1;
  }

  .right-container {
      order: 2;
  }
}






.divider {
    border: none; /* Entfernt die Standard-Rahmenlinie */
    border-top: 1px solid #F752E0; /* Legt die Strichfarbe und -dicke fest */
    margin: 50px; /* FÃ¼gt oben und unten einen Abstand hinzu */
  }
  
  .questions{
    text-align: center;
  }
  .questions h2{
    font-size: 30px;
  }
  .questions p{
    font-size: 20px;
    padding: 20px;
  }
  .faq-container {
    width: 80%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    color: #F752E0;
  }
  
  .faq-item {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  
  .faq-question {
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 10px;
    font-weight: bold;
  }
  
  .faq-answer {
    padding: 10px;
    display: none;
  }
  
  
  

  footer {
    
    color: #4c4c4c;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #F752E0; /* Adjust the color as needed */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #4c4c4c;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}









/* About us css */

.uptext {
  text-align: center;
  margin-top: 5vh;
}

.uptext h1 {
  font-size: 54px;
  margin-bottom: 2.5vh;
  color: #F752E0;
  margin-left: 10%;
  margin-right: 10%;
}

.uptext h2 {
  margin-bottom: 2.5vh;
  font-size: 36px;
  margin-left: 10%;
  margin-right: 10%;
}

.uptext p {
  font-size: 22px;
  margin-bottom: 20vh;
}

.uptext h3 {
  font-size: 48px;
  margin-bottom: 2.5vh;
  color: #F752E0;
  margin-left: 10%;
  margin-right: 10%;
}

.numbersData {
  text-align: left;
  margin-left: 10vh;
  margin-right: 10vh;
}

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.left-text {
  margin: 0;
  text-align: left;
  font-size: 40px;
  font-weight: bold;
  color: #000;
}

.right-text {
  margin: 0;
  text-align: right;
  font-size: 36px;
  font-weight: bold;
  color: #ff00ff; /* Adjust color as needed */
}

hr {
  border: 0;
  height: 1px;
  background: #ff00ff; /* Adjust color as needed */
  margin-bottom: 20px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .uptext h1 {
      font-size: 36px;
  }

  .uptext h2 {
      font-size: 24px;
  }

  .uptext p {
      font-size: 18px;
      margin-bottom: 10vh;
  }

  .uptext h3 {
      font-size: 28px;
  }

  .numbersData {
      margin-left: 2vh;
      margin-right: 2vh;
  }

  .flex-container {
      flex-direction: column;
      align-items: flex-start;
  }

  .left-text,
  .right-text {
      font-size: 24px;
      text-align: left;
      margin-bottom: 10px;
  }

  hr {
      margin-bottom: 10px;
  }
}










/* Impressum css */
.impressum-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
/* Überschrift "Impressum" */
h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  text-align: center;
  color: #F752E0;
}

/* Horizontale Trennlinien */
hr.divider {
  border: none;
  border-top: 2px solid #F752E0;
  margin: 20px 0;
}

/* Unterüberschriften */
h3 {
  font-size: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #F752E0;
}

/* Allgemeine Absatzstile */
p {
  margin: 0.5em 0;
}

/* Kontakt-Email-Link */
p a {
  color: #F752E0;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
  main {
      padding: 10px;
  }

  h1 {
      font-size: 1.5em;
  }

  h3 {
      font-size: 1.2em;
  }
}




/*Cookie-Richtlinien css*/
/* Container für Cookie-Richtlinien */
.cookie-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Überschrift "Cookie-Richtlinien" */
.cookie-container h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  text-align: center;
  color: #F752E0;
}

/* Allgemeine Absatzstile */
.cookie-container p {
  margin: 0.5em 0;
}

/* Abstände für spezielle Absätze */
.cookie-container .paddingTop {
  margin-top: 1em;
  font-weight: bold;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
  .cookie-container {
      padding: 10px;
  }

  .cookie-container h1 {
      font-size: 1.5em;
  }
}





/* Datenschutzrichtlinien CSS*/
/* Container für die Datenschutzerklärung */
.privacy-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Überschrift "Datenschutzerklärung" */
.privacy-container h1 {
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
  color: #F752E0;
}

/* Abschnittsüberschriften */
.privacy-container h2 {
  font-size: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #F752E0;
}

/* Unterabschnittsüberschriften */
.privacy-container h3 {
  font-size: 1.2em;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #F752E0;
}

/* Allgemeine Absatzstile */
.privacy-container p {
  margin: 0.5em 0;
}

/* Kontakt-Email-Link */
.privacy-container a {
  color: #F752E0;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
  .privacy-container {
      padding: 10px;
  }

  .privacy-container h1 {
      font-size: 1.5em;
  }

  .privacy-container h2 {
      font-size: 1.2em;
  }

  .privacy-container h3 {
      font-size: 1em;
  }
}


/* bewerbung css */
.explaination-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.explaination-container h1 {
  font-size: 2rem;
  color: #333;
  border-bottom: 2px solid #F752E0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.explaination-container h3 {
  font-size: 1.5rem;
  color: #F752E0;
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 10px;
  font-size: 1.5rem;
}

.task, .requirement, .salary {
  margin-bottom: 20px;
}

p {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .explaination-container {
      padding: 10px;
  }

  .explaination-container h1 {
      font-size: 1.5rem;
  }

  .explaination-container h3 {
      font-size: 1.25rem;
  }

  .icon {
      font-size: 1.25rem;
  }

  p {
      font-size: 0.875rem;
  }
}




/* offers css */
h1.eventsmitrabatt {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
  color: #F752E0;
}

#eventsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.event-item {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px);
  max-width: 350px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.event-item img {
  border-radius: 8px;
  margin-bottom: 10px;
}

.event-item p {
  font-size: 0.9em;
  margin-bottom: 8px;
}

.event-item .voucher {
  font-weight: bold;
  color: #F752E0;
}

.event-item .ticket-link {
  display: inline-block;
  padding: 10px 15px;
  background-color: #F752E0;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.event-item .ticket-link:hover {
  background-color: #357ABD;
}



/* kontakt css */

#contactForm {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  padding: 20px;
  margin: 5%;
  text-align: center;
}


#contactForm h1 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

#contactForm label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 10px;
  text-align: left;
}

#contactForm input, textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}

#contactForm input:focus, textarea:focus {
  border-color: #4A90E2;
}

#contactForm button {
  width: 25vh;
  padding: 10px 0;
  background-color: #F752E0;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contactForm button:hover {
  background-color: #ff00ff;
}
