body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
a,
input {
  font-family: "Arimo";
  text-decoration: none;
}

div {
  display: flex;
  flex-direction: column;
}

.Screen {
  width: 100vw;
  height: auto;
  min-height: 100vh;
}

.L_Content_Screen {
  width: 95vw;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
  height: 85vh;
}

.L_CS_Image_Carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.L_CS_Image_Carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Carousel_Image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transform: translateX(100%); /* Start außerhalb des Viewports */
  opacity: 0; /* Unsichtbar, wenn außerhalb */
}

.Carousel_Image.active {
  transform: translateX(0); /* Sichtbar in der Mitte */
  opacity: 1; /* Sichtbar */
}

.Carousel_Image.previous {
  transform: translateX(-100%); /* Links aus dem Viewport geschoben */
  opacity: 0;
}

.Carousel_Darkener {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: black;
  opacity: 0.33;
}

.S2_About {
  width: 90vw;
  height: auto;
  min-height: 50vh;
  box-sizing: border-box;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  padding-top: 2.5vh;
  padding-bottom: 5vh;
  margin-left: 5vw;
  margin-right: 5vw;
}

.S2_About h2 {
  color: #303030;
  font-size: clamp(1em, 1.5vw, 2em);
  font-weight: 400;
  margin-bottom: 1vh;
}

.S2_About span {
  font-weight: 800;
}

.S2_Text{
  width: 100%;
  height: auto;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.S2_T_L, .S2_T_R{
  width: 48%;
  height: auto;
}

.S2_Text p{
  font-size: clamp(1em, 1.25vw, 1.5em);
  font-weight: 300;
  color: grey;
  width: 100%;
  margin: 0;
}

.S2_News_Feed{
  width: 100%;
  height: auto;
  flex-direction: column;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.S2_NF_Header{
  font-family: 'Arimo';
  font-weight: 500;
  color: black;
  font-size: clamp(1em, 1.5vw, 2em);
  margin: 0;
  margin-left: 5px;
}

.S2_NF_Container{
  flex-direction: row;
  width: auto;
  overflow-x: scroll;
  height: 100%;
  box-sizing: border-box;
  padding: 2.5%;
  padding-left: 5px;
}

.S2_NF_Item{
  min-width: 20vw;
  height: 40vh;
  flex-direction: column;
  border-radius: 2px;
  box-shadow: 0px 0px 3px 0px grey;
  margin-right: 10px;
}

.S2_NF_IH{
  height: 15vh;
  width: 100%;
}

.S2_NF_IH img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.S2_NF_TB{
  width: 100%;
  height: 20vh;
  margin-top: 2.5vh;
  padding: 5%;
  box-sizing: border-box;

}

.S2_NF_Title{
  font-family: 'Arimo';
  font-weight: 500;
  color: black;
  font-size: clamp(1em, 1.25vw, 1.5em);
  margin: 0;
  margin-bottom: 1vh;
}

.S2_NF_Text{
  font-family: 'Arimo';
  font-weight: 300;
  color: grey;
  font-size: clamp(0.9em, 1vw, 1.25em);
  margin: 0;
}


@media (max-width: 800px) {

    .Screen{
        align-items: center;
    }
  

  .L_Content_Screen {
    height: 50vh;
  }

  .S2_About h2 {
    font-size: clamp(1em, 3.5vh, 4em);
    margin-bottom: 1vh;
  }

  .S2_About p {
    font-size: clamp(1em, 2vh, 2.5em);
    font-weight: 100;
  }

  .L_Content_Screen{
    width: 90vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .S2_About{
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;

  }

  .S2_Text{
    flex-direction: column;
    height: auto;
  }

  .S2_T_L, .S2_T_R{
    width: 100%;
    height: auto;
    margin-bottom: 1vh;
    margin-top: 1vh;
  }

  .S2_NF_Item{
    min-width: 60vw;
  }

  .S2_NF_Container{
    margin-top: 2vh;
  }
}


@media (min-width: 1800px) {
  .Screen {
    max-width: 1600px; /* Setze hier deine gewünschte maximale Breite */
    margin: 0 auto; /* Zentriert das Container-Element */
  }

  .L_Content_Screen{
    width: 95%;
  }

  .S2_About{
    width: 95%;
  }



}