@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap'); 

#cookie-banner {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

#cookie-banner p {
    margin-bottom: 10px;
}

#cookie-banner button {
    background-color: #4caf50;
    color: white;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}


body {
      font-family: 'Anonymous Pro', sans-serif;
      font-size: 21px;
	  line-height: 1.5;
      margin: 0;
      padding: 0;
    }

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px;
}

	.left-column {
	  background-color: #f5f5f5;
	  padding: 50px;
	}

	.left-column h3 {
	  font-weight: bold;
	  font-size: 250px;
	  margin-top: 50px;
	  margin-bottom: 0px;
	  text-align: center;
	  color: #D73CBE;
	  line-height: .75;
	}

	.left-column h5 {
	  font-weight: bold;
	  font-size: 40px;
	  margin-top: 50px;
	  margin-bottom: 0px;
	  text-align: center;
	  color: #D73CBE;
	  line-height: .75;
	}

	.right-column {
	  padding: 20px 150px;
	}

	.right-column hr {
	  height: 2px; /* Höhe des Strichs */
	  width: 20%; /* Breite des Strichs */
	  margin: 5px 0px; /* Abstand oben und unten sowie horizontale Zentrierung */
	  background-color: #000; /* Hintergrundfarbe des Strichs */
	  border: none; /* Entfernt die Standardgrenze des Strichs */
	  background-color: #D73CBE;
	}

    .header {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    
    .video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
    
    .header-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
    }
    
    .header-content h1 {
      font-size: 66px;
      margin-bottom: 20px;
	  line-height:1;
    }
    
    .content {
      padding: 20px;
    }
    
    .content .headline {
      font-size: 24px;
      font-weight: bold;
      text-align: left;
      margin-bottom: 10px;
    }
    
    .content .text {
      text-align: justify;
    }
    
    .content .bullets {
      margin-top: 20px;
      margin-left: 20px;
    }
    
    .content .bullets li {
      margin-bottom: 10px;
    }

	.logo {
	  position: absolute;
	  top: 10px;
	  right: 10px;
	  width: 250px; /* Passe die Breite entsprechend an */
	  height: auto;
	}

	hr {
		background-color: white;
	}
    
	.theam h2 {
		left: 50%;
		font-size:40px;
		text-align: center;
		color: #D73CBE;
	}
    .image-container {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  grid-gap: 20px;
	}

	.image {
	  position: relative;
	}

	.image img {
	  width: 100%;
	  height: auto;
	}

	.caption {
	  position: absolute;
	  bottom: 0;
	  margin-left: 10px;
	  margin-right: 10px;
	  width: 92%;
	  background-color: rgba(0, 0, 0, 0.5);
	  color: #fff;
	  padding: 10px;
	}

	.container {
	  display: flex;
	  flex-direction: column;
	}

	.row {
	  padding: 10px;
	}

	.row-1 {
	  width: 50%;
      height: 10%;
	  background-color: #D73CBE;
	  color: white;
	  text-align: left;
	  padding-left:50px;
	  margin-left:50px;
	}

	.row-2 {
	  background-color: white;
	  color: black;
	  font-size: 1.2em;
	  margin-right:300px;
	  margin-left:50px;
	}

	.contact-section {
	  background-color: black;
	  color: white;
	  padding: 40px;
	}

	.container {
	  max-width: 1200px;
	  margin: 0 auto;
	}

	.contact-details {
	  text-align: center;
	}

	a.pink-link {
	  color: #D73CBE;
	  text-decoration: none;
	}

	.footer {
	  background-color: black;
	  color: white;
	  padding: 20px;
	  text-align: center;
	}

	.containerfooter {
	  max-width: 1200px;
	  margin: 0 auto;
	}

	.footer-links {
	  margin-top: 10px;
	}

	.footer-links a {
	  color: white;
	  text-decoration: none;
	  margin: 0 10px;
	}

	.footer-links a:hover {
	  text-decoration: underline;
	}

	.footer-content {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding: 10px;
	}

	.footer-content .copyright {
	    background-color: black;
		display: flex;
	  align-items: center;
	}

	.logofooter img {
	  height: 250px;
	  margin-left: auto;
	}

    @media (max-width: 768px) {
      /* Stile für kleine Bildschirme (z. B. Smartphones) */
		
	body {
      font-size: 14px;
	  line-height: 1.15;
    }	  
		
	  main {
		grid-template-columns: 1fr;
	  }
		

      .header-content h1 {
        font-size: 44px;
      }
	  
	.right-column {
	  padding: 20px 50px;
	  }			

	.left-column h3 {
	  font-weight: bold;
	  font-size: 100px;
	  margin-top: 10px;
	  margin-bottom: 0px;
	  text-align: center;
	  color: #D73CBE;
	  line-height: .75;
	}
		
	.image-container {
    	grid-template-columns: 1fr;
  	}

	.row-1 {
	  width: 70%;
	  margin-right:50px;
	}
		
	.row-2 {
	  background-color: white;
	  color: black;
	  font-size: 1.0em;
	  margin-right:50px;
	  margin-left:50px;
	}		
		
	  .contact-details {
		text-align: left;
	  }
		
	.footer-links {
		

		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	  }

	  .footer-links a {
		margin: 5px;
	  }
		
    }