div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

body,
html {
  margin: 0;
  padding: 0;
}

p,
a {
  font-family: "Titillium Web";
  text-decoration: none;
}

.Screen {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.Landing_Section {
  width: 100%;
  height: 100vh;
  justify-content: space-between;

  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgb(255, 255, 255, 1) 20%,
      rgba(167, 167, 167, 0.5) 50%,
      rgba(82, 82, 82, 0.3) 70%,
      rgba(53, 53, 53, 0.2) 100%
    ),
    url("../images/BG_Architekt.webp");

  background-size: cover;
  background-position: center;
  height: 100vh;
  box-shadow: 0px 0px 5px 0px grey;
  margin-bottom: 5vh;
}

.LS_Text_Box {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 5%;
  padding-right: 5%;
  width: 90%;
}

.LS_First_Heading {
  font-family: "Poppins";
  font-size: clamp(1em, 6vw, 7.5em);
  font-weight: 600;
  padding-bottom: 5vh;
  color: white;
  text-shadow: 0px 0px 20px grey;
  letter-spacing: -2px;
}

.LS_First_Heading span {
  padding-left: 3vw;
  font-weight: 300;
}

.LS_Text_Box h1 {
  line-height: 0.95;
}

.LS_Image_Person {
  display: flex;
  width: 45vw;
  height: 70vh;
  justify-content: flex-end;
  align-items: flex-end;
}

.LS_Image_Person img {
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  transform: scaleX(-1);
}

/*
  Responsive Design  Landing_Section
*/

@media (max-width: 768px) {
  .LS_Text_Box {
    align-items: flex-start;
  }

  .LS_Image_Person img {
    height: 100%;
    max-height: 50vh;
    object-fit: contain;
    transform: scaleX(-1);
  }

  .LS_Image_Person {
    width: 90vw;
  }

  .LS_Text_Box {
    flex-direction: column;
  }

  .LS_First_Heading {
    padding: unset;
    position: absolute;
    top: 40%;
  }
}

.S2_Banner,
.S3_Banner {
  width: 100vw;
  height: auto;
  margin-top: 5vh;
  margin-bottom: 5vh;
  align-items: center;
}

.S2_Content,
.S3_Content {
  width: 90%;
  height: auto;
  flex-direction: row;
}

.S2_L,
.S2_R {
  width: 50%;
  height: auto;
}

.S2_R {
  align-items: center;
  justify-content: center;
}

.S2_R img {
  width: 80%;
  object-fit: cover;
  box-shadow: 0px 0px 3px 0px black;
}

.S2_L h2 {
  font-family: "Poppins";
  font-weight: 700;
  font-size: clamp(1em, 4vw, 4em);
  color: black;
  margin-bottom: 1vh;
  margin-top: 1vh;
  letter-spacing: -1px;
}

.S2_L p {
  font-family: "Titillium Web";
  font-weight: 300;
  font-size: clamp(1em, 1.3vw, 2em);
  color: #151515;
  margin-top: 0;
  width: 80%;
}

.S3_Banner li {
  font-family: "Titillium Web";
  font-weight: 300;
  font-size: clamp(1em, 1.5vw, 2em);
  color: #151515;
}

.Space {
  width: 100vw;
}

/*
  Responsive Design  Landing_Section S2_Banner, S3_Banner
*/

@media (max-width: 768px) {
  .S3_Content,
  .S2_Content {
    display: flex;
    flex-direction: column;
  }

  .S2_L,
  .S2_R {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
  }

  .S2_L p {
    width: 90%;
  }

  .S2_R img,
  .S3_R img {
    width: 90%;
  }

  .S2_L ul {
    align-self: flex-start;
  }
}
